* {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
@font-face {
  font-family: "SF Compact Display";
  src: url(../fonts/SF_Compact_Display_Bold.ttf);
  font-size: 700;
}

@font-face {
  font-family: "SF Compact Display";
  src: url(../fonts/SF_Compact_Display_Regular.ttf);
  font-size: 600;
}

.banner {
  width: 240px;
  height: 400px;
  background: linear-gradient(39deg, #72001b 0%, #ff003c 100%);
  padding: 8px;
}

.banner_cards {
  display: flex;
  margin: -4px;
  flex-wrap: wrap;
}

.logo {
  width: 120px;
  height: 26px;
  margin-bottom: 10px;
}

.card {
  max-width: 108px;
  padding: 8px;
  border-radius: 8px;
  background: url("../img/card_bg.png");
  background-size: 100% 100%;
  width: 100%;
  position: relative;
  margin: 4px;
}

.card_img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 8px 24px;
  margin-bottom: 8px;
  border-radius: 6px;
}
.card_img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card_head {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  font-family: "SF Compact Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.price {
  color: #fff;
  text-align: center;
  font-family: "SF Compact Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: url("../img/price_bp.png");
  background-size: 100% 100%;
  padding: 6px 0;
}

.sale {
  color: #fff;
  font-family: "SF Compact Display";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: url("../img/sale_bg.png");
  background-size: 100% 100%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4px;
  left: 4px;
}
