.main {
  margin: 0 auto;
  width: 80%;
  min-width: 1340px;

}
.header,
.header2,
.footer{
  min-width: 1340px;
}

.banner {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-image: url('/public/images/pics/specialactivity.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1 {
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    word-spacing: 1rem;
}

h1 span[lang="cn"] {
    letter-spacing: 1rem;
    word-spacing: 0;
}

.optionsBox2 {
  width: 100%;
  padding-top: 1vw;
  position: sticky;
  top: 4vh;
  background-color: white;
  box-sizing: border-box;
  z-index: 0;
}

.titleBox1 {
  padding-bottom: 15px;
  justify-content: left;
  font-size: 15px;
  cursor: pointer;
}

.titleBox1>div {
  margin-left: 5%;
}

.voucher {
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 4px solid var(--blue-deep);
  margin: 24px 0 10px;
}

.blueBox {
  padding: 0 14px;
  height: 46px;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
  font-size: 20px;
}

.more {
  color: var(--text-color2);
  font-size: 14px;
}

.FiveBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 20px 0;
  /* 行/列间距（可调） */
}

/* 商品卡片样式 */
.product-card {
  background: #fff;
  border: 1px solid #e8eaec;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 280px;
  position: relative;
  padding: 15px;
  min-width: 218px;
}

.product-card:hover {
  border: 1px solid var(--blue-deep);
}

.pagination {
  text-align: right;
  margin-top: 20px;
}

.product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-image::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(62, 160, 221, 0.1);

}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}



.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 77, 79, 0.4);
  letter-spacing: 0.5px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.product-title {
  height: 18px;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  font-size: 16px;
  color: #2E2E2E;
  line-height: 18px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin: 15px 0;
}

.product-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* gap: 10px;
  flex-wrap: wrap; */
}

.discount {
  display: flex;
  flex-direction: column;
  margin-left: -10px;

}

.triangleBox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-tag {
  width: 36px;
  height: 16px;
  line-height: 16px;
  background-color: #FE3846;
  color: var(--white);
  font-size: 10px;
  position: relative
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #FE3846 transparent transparent;
  display: inline-block;
}

/* .discount-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  transform: translateY(-50%);
  transform: scaleX(-1);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #FE3846;
} */

.current-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: 0.5px;
  width: 60px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.original-price {
  width: 46px;
  font-size: 13px;
  color: #8c8c8c;
  text-decoration: line-through;
  font-weight: 400;
  margin-top: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.add-to-cart {
  width: 64px;
  margin-right: 2px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #2C79E8 0%, #2C79E8 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  letter-spacing: 0.5px;
}

button:hover {
  color: var(--white);
}

.selectBox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.selectBox li {
  padding: 5px 10px;
  border: 1px solid var(--text-color5);
  border-radius: 3px;
  cursor: pointer;
  color: var(--text-color5);
}

.selectBox .act {
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}



.floor-price {
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-top: -20px;
  color: var(--white);
  background-color: var(--blue-deep);
  border-radius: 30px;
  z-index: 99;
  border: 5px solid var(--white);
  /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); */
  font-size: 12px;
  font-weight: 600;
}

.seckill-height {
  height: 346px;
  align-items: center;
}

.seckill {
  width: 200px;
  margin: 20px 0 0;
}

.tac {
  align-items: center;
}

.p1 {
  color: var(--text-color1);
  margin-bottom: 10px;
}

.p2 {
  color: red;
  font-size: 14px;
}

.s1 {
  margin-top: 10px;
  color: var(--text-color5);
}

.s2 {
  color: var(--blue-deep);
  font-size: 24px;
}

.textOver {
  width: 218px;
}

.not-started {
  background: var(--text-color4);
}

.end {
  width: 90px;
  background: rgba(254, 56, 70, 0.6);
}

.noData {
  width: 100%;
  height: 60vh;
  text-align: center;
}

.noDataText {
  margin-top: 1vw;
  text-align: center;
  color: rgba(0, 0, 0, 0.89);
  font-size: 1.1vw;
}

.noDataBtn {
  width: 35%;
  border-radius: 45px;
  margin-top: 1vw;
  padding: .5vw 0px;
  font-size: 1vw;
}


@media screen and (max-width: 1300px) {
  .main {
    margin: 0 auto !important;
  }
}