@charset "UTF-8";
/* 位置 */
.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.left-2 {
  left: 2%;
}

.top-2 {
  top: 2%;
}

.left-4 {
  left: 4%;
}

.top-4 {
  top: 4%;
}

.left-6 {
  left: 6%;
}

.top-6 {
  top: 6%;
}

.left-8 {
  left: 8%;
}

.top-8 {
  top: 8%;
}

.left-10 {
  left: 10%;
}

.top-10 {
  top: 10%;
}

.left-12 {
  left: 12%;
}

.top-12 {
  top: 12%;
}

.left-14 {
  left: 14%;
}

.top-14 {
  top: 14%;
}

.left-16 {
  left: 16%;
}

.top-16 {
  top: 16%;
}

.left-18 {
  left: 18%;
}

.top-18 {
  top: 18%;
}

.left-20 {
  left: 20%;
}

.top-20 {
  top: 20%;
}

.left-22 {
  left: 22%;
}

.top-22 {
  top: 22%;
}

.left-24 {
  left: 24%;
}

.top-24 {
  top: 24%;
}

.left-26 {
  left: 26%;
}

.top-26 {
  top: 26%;
}

.left-28 {
  left: 28%;
}

.top-28 {
  top: 28%;
}

.left-30 {
  left: 30%;
}

.top-30 {
  top: 30%;
}

.left-32 {
  left: 32%;
}

.top-32 {
  top: 32%;
}

.left-34 {
  left: 34%;
}

.top-34 {
  top: 34%;
}

.left-36 {
  left: 36%;
}

.top-36 {
  top: 36%;
}

.left-38 {
  left: 38%;
}

.top-38 {
  top: 38%;
}

.left-40 {
  left: 40%;
}

.top-40 {
  top: 40%;
}

.bottom-2 {
  bottom: 2%;
}

.right-2 {
  right: 2%;
}

.bottom-4 {
  bottom: 4%;
}

.right-4 {
  right: 4%;
}

.bottom-6 {
  bottom: 6%;
}

.right-6 {
  right: 6%;
}

.bottom-8 {
  bottom: 8%;
}

.right-8 {
  right: 8%;
}

.bottom-10 {
  bottom: 10%;
}

.right-10 {
  right: 10%;
}

.bottom-12 {
  bottom: 12%;
}

.right-12 {
  right: 12%;
}

.bottom-14 {
  bottom: 14%;
}

.right-14 {
  right: 14%;
}

.bottom-16 {
  bottom: 16%;
}

.right-16 {
  right: 16%;
}

.bottom-18 {
  bottom: 18%;
}

.right-18 {
  right: 18%;
}

.bottom-20 {
  bottom: 20%;
}

.right-20 {
  right: 20%;
}

/* 尺寸 */
.h-10 {
  height: 10%;
}

.w-10 {
  width: 10%;
}

/* 层级 */
.z-index-1 {
  z-index: 10;
}

.h-20 {
  height: 20%;
}

.w-20 {
  width: 20%;
}

/* 层级 */
.z-index-2 {
  z-index: 20;
}

.h-30 {
  height: 30%;
}

.w-30 {
  width: 30%;
}

/* 层级 */
.z-index-3 {
  z-index: 30;
}

.h-40 {
  height: 40%;
}

.w-40 {
  width: 40%;
}

/* 层级 */
.z-index-4 {
  z-index: 40;
}

.h-50 {
  height: 50%;
}

.w-50 {
  width: 50%;
}

/* 层级 */
.z-index-5 {
  z-index: 50;
}

.h-60 {
  height: 60%;
}

.w-60 {
  width: 60%;
}

/* 层级 */
.z-index-6 {
  z-index: 60;
}

.h-70 {
  height: 70%;
}

.w-70 {
  width: 70%;
}

/* 层级 */
.z-index-7 {
  z-index: 70;
}

.h-80 {
  height: 80%;
}

.w-80 {
  width: 80%;
}

/* 层级 */
.z-index-8 {
  z-index: 80;
}

.h-90 {
  height: 90%;
}

.w-90 {
  width: 90%;
}

/* 层级 */
.z-index-9 {
  z-index: 90;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

/* 层级 */
.z-index-10 {
  z-index: 100;
}

.w-5 {
  width: 5%;
}

/* Flex 相关 */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-column {
  flex-direction: column;
}

/* Flex 弹性增长和收缩 */
.flex-1 {
  flex: 1;
}

.flex-grow {
  flex-grow: 1;
}

.flex-none {
  flex-grow: 0;
  flex-shrink: 0;
}

/* 主轴对齐方式 */
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* 交叉轴对齐方式 */
.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

/* 其他 */
.inline-block {
  display: inline-block;
}

.display-block {
  display: block;
}

.grad-container {
  display: grid;
}

.place-items-center {
  place-items: center;
}

.box {
  box-sizing: border-box;
}

.margin-auto {
  margin: auto;
}

.m-0 {
  margin: 0px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.p-0 {
  padding: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.round-0 {
  border-radius: 0px;
}

.m-1 {
  margin: 10px;
}

.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

.ml-1 {
  margin-left: 10px;
}

.mr-1 {
  margin-right: 10px;
}

.p-1 {
  padding: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pl-1 {
  padding-left: 10px;
}

.pr-1 {
  padding-right: 10px;
}

.round-1 {
  border-radius: 10px;
}

.m-2 {
  margin: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.ml-2 {
  margin-left: 20px;
}

.mr-2 {
  margin-right: 20px;
}

.p-2 {
  padding: 20px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pl-2 {
  padding-left: 20px;
}

.pr-2 {
  padding-right: 20px;
}

.round-2 {
  border-radius: 20px;
}

.m-3 {
  margin: 30px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.ml-3 {
  margin-left: 30px;
}

.mr-3 {
  margin-right: 30px;
}

.p-3 {
  padding: 30px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pl-3 {
  padding-left: 30px;
}

.pr-3 {
  padding-right: 30px;
}

.round-3 {
  border-radius: 30px;
}

.m-4 {
  margin: 40px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.ml-4 {
  margin-left: 40px;
}

.mr-4 {
  margin-right: 40px;
}

.p-4 {
  padding: 40px;
}

.pt-4 {
  padding-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pl-4 {
  padding-left: 40px;
}

.pr-4 {
  padding-right: 40px;
}

.round-4 {
  border-radius: 40px;
}

.m-5 {
  margin: 50px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.ml-5 {
  margin-left: 50px;
}

.mr-5 {
  margin-right: 50px;
}

.p-5 {
  padding: 50px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.pl-5 {
  padding-left: 50px;
}

.pr-5 {
  padding-right: 50px;
}

.round-5 {
  border-radius: 50px;
}

.m-6 {
  margin: 60px;
}

.mt-6 {
  margin-top: 60px;
}

.mb-6 {
  margin-bottom: 60px;
}

.ml-6 {
  margin-left: 60px;
}

.mr-6 {
  margin-right: 60px;
}

.p-6 {
  padding: 60px;
}

.pt-6 {
  padding-top: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

.pl-6 {
  padding-left: 60px;
}

.pr-6 {
  padding-right: 60px;
}

.round-6 {
  border-radius: 60px;
}

.m-7 {
  margin: 70px;
}

.mt-7 {
  margin-top: 70px;
}

.mb-7 {
  margin-bottom: 70px;
}

.ml-7 {
  margin-left: 70px;
}

.mr-7 {
  margin-right: 70px;
}

.p-7 {
  padding: 70px;
}

.pt-7 {
  padding-top: 70px;
}

.pb-7 {
  padding-bottom: 70px;
}

.pl-7 {
  padding-left: 70px;
}

.pr-7 {
  padding-right: 70px;
}

.round-7 {
  border-radius: 70px;
}

.m-8 {
  margin: 80px;
}

.mt-8 {
  margin-top: 80px;
}

.mb-8 {
  margin-bottom: 80px;
}

.ml-8 {
  margin-left: 80px;
}

.mr-8 {
  margin-right: 80px;
}

.p-8 {
  padding: 80px;
}

.pt-8 {
  padding-top: 80px;
}

.pb-8 {
  padding-bottom: 80px;
}

.pl-8 {
  padding-left: 80px;
}

.pr-8 {
  padding-right: 80px;
}

.round-8 {
  border-radius: 80px;
}

.m-9 {
  margin: 90px;
}

.mt-9 {
  margin-top: 90px;
}

.mb-9 {
  margin-bottom: 90px;
}

.ml-9 {
  margin-left: 90px;
}

.mr-9 {
  margin-right: 90px;
}

.p-9 {
  padding: 90px;
}

.pt-9 {
  padding-top: 90px;
}

.pb-9 {
  padding-bottom: 90px;
}

.pl-9 {
  padding-left: 90px;
}

.pr-9 {
  padding-right: 90px;
}

.round-9 {
  border-radius: 90px;
}

.font-bold {
  font-weight: bold;
}

/* 文本对齐 */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.line-through {
  text-decoration: line-through;
}

.fs-1 {
  font-size: 8px;
}

.fs-2 {
  font-size: 16px;
}

.fs-3 {
  font-size: 24px;
}

.fs-4 {
  font-size: 32px;
}

.overflow-hidden {
  overflow: hidden;
}

.text-black {
  color: black;
}

.text-white {
  color: white;
}

.card-top-round-2 {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.line-height-1-4 {
  line-height: 1.4;
}

.fz-container {
  font-size: 20px;
}
.fz-container .fz-9 {
  font-size: 0.9em;
}
.fz-container .fz-8 {
  font-size: 0.8em;
}
.fz-container .fz-7 {
  font-size: 0.7em;
}
.fz-container .fz-6 {
  font-size: 0.6em;
}
.fz-container .fz-10 {
  font-size: 1em;
}
.fz-container .fz-12 {
  font-size: 1.2em;
}
.fz-container .fz-14 {
  font-size: 1.4em;
}
.fz-container .fz-16 {
  font-size: 1.6em;
}
.fz-container .fz-20 {
  font-size: 2em;
}
.fz-container .fz-30 {
  font-size: 3em;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .fz-container {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .fz-container {
    font-size: 16px;
  }
}
@media (max-width: 384px) {
  .fz-container {
    font-size: 14px;
  }
}
/*****************以上是base*****************/
.roanyerAlert {
  position: fixed;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 10px;
  z-index: 999999;
  font-size: 10px;
}

/*****************PC端 菜单*****************/
.pc-navbar {
  margin: 20px 0;
  font-size: 18px;
}
.pc-navbar a {
  color: black;
  font-size: 18px;
}

.pc-dropdown {
  position: relative;
}
.pc-dropdown .pc-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 100;
}
.pc-dropdown .pc-dropdown-menu .pc-dropdown-item {
  box-sizing: border-box;
  padding: 5px 10px;
  color: white;
}
.pc-dropdown .pc-dropdown-menu .pc-dropdown-item a {
  font-size: 14px;
  color: black;
}
.pc-dropdown .pc-dropdown-menu .pc-dropdown-item:hover {
  background-color: #584db2;
}
.pc-dropdown .pc-dropdown-menu .pc-dropdown-item:hover a {
  color: white;
}

@media (min-width: 767px) and (max-width: 1200px) {
  .pc-navbar {
    font-size: 10px;
  }
  .pc-navbar a {
    font-size: 10px;
  }
  .pc-navbar a img {
    height: 20px;
  }
  .pc-dropdown .pc-dropdown-menu .pc-dropdown-item a {
    font-size: 9px;
  }
}
/*****************购物车 显示数量小点*****************/
.cart-show-point {
  position: relative;
}
.cart-show-point i {
  position: relative;
  z-index: 1;
}
.cart-show-point #cart-total-num {
  position: absolute;
  z-index: 2;
  background-color: #ff007d;
  color: white;
  border-radius: 50%;
  left: 14px;
  top: -7px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

/*****************手机端 菜单*****************/
@media (max-width: 767px) {
  .mobile-header {
    background-color: white;
  }
  .mobile-header .fa {
    font-size: 18px;
    color: #666;
  }
  .mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    height: 100%;
    width: 100%;
  }
  .mobile-navbar .fa {
    font-size: 18px;
    color: #666;
  }
  .mobile-navbar .mobile-navbar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: white;
    color: black;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 2%;
  }
  .mobile-navbar .mobile-navbar-content-top {
    height: auto;
  }
  .mobile-navbar .mobile-navbar-content-top .nav-close-btn {
    position: fixed;
    top: 0;
    left: 70%;
    z-index: 9999;
    font-weight: 700;
    line-height: 50px;
    font-size: 24px;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #5b0467;
  }
  .mobile-navbar .mobile-navbar-content-center div[class^=shows-] {
    display: none;
  }
  .mobile-navbar .mobile-navbar-content-center a {
    color: black;
  }
  .mobile-navbar .mobile-navbar-content-center .category-thumb {
    width: 46px;
    border-radius: 50%;
    /*border: 1px solid $navbar-border-color;*/
    padding: 1px;
  }
  .mobile-navbar .mobile-navbar-content-center .border-bottom {
    border-bottom: 1px solid #ccc;
  }
  .mobile-navbar .mobile-navbar-content-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 70% !important;
  }
  .mobile-navbar .mobile-navbar-content-bottom .fa {
    font-size: 22px;
    color: #fe017e;
  }
  .mobile-navbar .mobile-navbar-content .bottom-space {
    height: 8vh;
  }
  /*****************购物车 显示数量小点*****************/
  .cart-show-point {
    position: relative;
  }
  .cart-show-point i {
    position: relative;
    z-index: 1;
  }
  .cart-show-point #cart-total-num {
    position: absolute;
    z-index: 2;
    background-color: #ff007d;
    color: white;
    /* padding: 2px 4px; */
    border-radius: 50%;
    left: 12px;
    top: -7px;
    width: 17px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
  }
}
/**自定义的活动弹框**/
.active-clover .active-btn {
  display: none;
  opacity: 0;
  position: relative;
  line-height: 15px;
  z-index: 1000;
}
.active-clover .active-btn .active-btn-front {
  position: fixed;
  bottom: 1%;
  left: 1%;
  cursor: pointer;
}
.active-clover .active-btn .active-btn-front .front-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  box-sizing: border-box;
}
.active-clover .active-btn .active-btn-front .front-icon img {
  width: 80%;
  height: 80%;
}
.active-clover .active-content {
  display: none;
  position: fixed;
  z-index: 11112;
  width: 100%;
  top: 16%;
}
.active-clover .active-content-el-center-bg {
  max-width: 500px;
}
.active-clover .active-close {
  line-height: 1;
}
.active-clover .active-close-x {
  color: #000;
  cursor: pointer;
  font-size: 30px;
  background-color: white;
  padding: 0 12px;
  border-radius: 50%;
  font-weight: bold;
}

@media (max-width: 767px) {
  .active-clover .active-content {
    top: 26%;
  }
  .active-clover .active-content-el-center-bg {
    max-width: 70vw;
  }
  .active-clover .active-content .active-close-x {
    padding: 0 8px;
    font-size: 20px;
  }
}
/****************************************首页相关****************************************/
/*秒杀倒计时样式*/
.ends-time {
  background-color: #8a38e4;
}

.ends-time-flash {
  width: 100%;
  text-align: center;
  /*margin: 20px 0;*/
}

.ends-time-ends {
  width: 50%;
  text-align: right;
  padding-right: 10px;
  /*margin: 20px 0;*/
}

.ends-time-in {
  width: 50%;
  text-align: left;
  padding-left: 10px;
  margin: 20px 0;
}

.ends-time-number {
  border-radius: 5px;
  margin: 0 5px;
  background: #ffffff;
  border: 1px solid #ccc;
  padding: 4px 2px;
  font-size: 30px;
  line-height: 1.4;
  color: #fd5a4c;
}

.ends-time-dot {
  font-size: 30px;
  color: #fd5a4c;
}

.ends-time-product {
  width: 49%;
  margin: 5px 0;
  box-sizing: border-box;
  padding: 5px;
}

@media (max-width: 767px) {
  .ends-time-flash {
    margin: 1% 0;
  }
  .ends-time-ends {
    margin: 3% 0;
  }
  .ends-time-in {
    margin: 3% 0;
  }
  .ends-time-product {
    margin: 1% 0;
    padding: 0;
  }
  .ends-time-flash img {
    width: 80%;
  }
  .ends-time-ends img {
    width: 60%;
  }
  .ends-time-number {
    font-size: 20px;
  }
  .ends-time-product {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .price-tax::before {
    content: "";
    display: block;
    margin-bottom: 6px; /* or any other value you need */
  }
  .ends-time-dot {
    font-size: 20px;
  }
}
/*menu 菜单*/
.pc-category-title {
  width: 16%;
  display: block;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin-top: 80px;
  margin-bottom: 20px;
  float: left;
}
.pc-category-title img {
  width: 100%;
}

.sort {
  margin-top: 15px;
}
.sort ul {
  width: 84%;
  float: right;
}
.sort li {
  margin-top: -10px;
  text-align: right;
}
.sort li img {
  width: 70%;
}

.pc-category-title-center {
  width: 80%;
  padding-left: 20%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #f0c779;
}

.pc-category-title-right {
  width: 20%;
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  vertical-align: bottom;
  padding-right: 30px;
}
.pc-category-title-right a {
  color: white;
  border-bottom: 2px solid #ce0000;
}

.mobile-category-title {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin-top: 50px;
  margin-bottom: 20px;
}

.mobile-category-title-center {
  width: 80%;
  padding-left: 20%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #f0c779;
}

.mobile-category-title-right {
  width: 20%;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  padding-right: 10px;
}
.mobile-category-title-right a {
  color: white;
}

.pc-notice {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.pc-notice img {
  width: 100%;
}

.mobile-notice {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-notice img {
  width: 100%;
}

@media (max-width: 767px) {
  .sort ul {
    width: 100%;
    float: none;
  }
  .sort li {
    margin-top: 5px;
    text-align: center;
  }
}
/****************************************首页相关 end****************************************/
/*商品详情*/
.product-detail-title {
  font-size: 36px;
  font-weight: bold;
  padding: 20px 30px;
  color: black;
  background-image: linear-gradient(45deg, #e0bce8, #fbd7db);
}

.product-detail-sub-title {
  font-size: 22px;
  color: #666666;
}

.z-cup-title {
  font-size: 40px;
  line-height: 1;
  color: black;
}

.z-cup-content {
  font-size: 20px;
  line-height: 1;
  padding-left: 1px;
  box-sizing: border-box;
  color: #666666;
}

.z-cup-sub-content {
  font-size: 20px;
  line-height: 1;
}

.z-cup-table-title {
  font-size: 36px;
  font-weight: bold;
  padding: 20px 0;
  color: black;
}

.z-cup-table-bottom-1 {
  font-size: 20px;
  color: #666666;
}

.z-cup-table-bottom-2 {
  font-size: 20px;
  color: #666666;
}

.table-background {
  background-image: linear-gradient(45deg, #e0bce8, #fbd7db);
  border: none;
}

.love-icon-1 img {
  max-width: 40px !important;
}

.love-icon-2 img {
  max-width: 40px !important;
}

.z-cup-pc-8-height {
  height: 1073px;
}

.z-cup-pc-11-height {
  height: 1316px;
}

.z-cup-pc-12-height {
  height: 1088px;
}

.product-detail .main-title {
  font-size: 38px;
  line-height: 1;
  color: black;
}

.product-detail .big-title {
  font-size: 60px;
  line-height: 1;
  color: black;
}

.product-detail .sub-title {
  font-size: 20px;
  line-height: 1;
  color: black;
}

.product-detail .table-title {
  font-size: 36px;
  line-height: 1;
  color: black;
}

.product-detail .table-bottom {
  font-size: 18px;
  line-height: 1;
  color: black;
}

.z-cup-email a {
  width: auto !important;
}

/*ipad 竖版*/
@media (min-width: 768px) and (max-width: 1024px) {
  .z-cup-title {
    font-size: 28px;
  }
  .z-cup-content {
    font-size: 14px;
  }
  .z-cup-sub-content {
    font-size: 18px;
  }
  .product-detail .main-title {
    font-size: 24px;
    line-height: 1;
  }
  .product-detail .big-title {
    font-size: 37px;
    line-height: 1.2;
  }
  .product-detail .sub-title {
    font-size: 18px;
    line-height: 1;
  }
  .product-detail .table-title {
    font-size: 14px;
    line-height: 1;
  }
  .product-detail .table-bottom {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
  }
}
@media (min-width: 767px) and (max-width: 1200px) {
  .z-cup-pc-8-height {
    height: 52.64vw;
  }
  .z-cup-pc-11-height {
    height: 62.98vw;
  }
  .z-cup-pc-12-height {
    height: 52.64vw;
  }
}
@media (min-width: 1200px) {
  .z-cup-pc-8-height {
    height: 672px;
  }
  .z-cup-pc-11-height {
    height: 750px;
  }
  .z-cup-pc-12-height {
    height: 672px;
  }
}
@media (max-width: 301px) {
  .product-detail-title {
    font-size: 14px;
    padding: 7px 14px;
    color: black;
  }
  .product-detail-sub-title {
    font-size: 8px;
    color: #666666;
  }
  .z-cup-title {
    font-size: 16px;
    line-height: 1.2;
    color: black;
  }
  .z-cup-content {
    font-size: 7px;
    line-height: 1;
    padding-left: 2px;
    box-sizing: border-box;
    color: #666666;
  }
  .z-cup-model-title {
    color: black;
    font-size: 8px;
  }
  .z-cup-model-content {
    font-size: 8px;
    color: #666666;
  }
  .z-cup-elastic-content {
    font-size: 8px;
    color: #666666;
  }
  .z-cup-table-bottom-1 {
    font-size: 8px;
    color: black;
  }
  .z-cup-table-bottom-2 {
    font-size: 7px;
    color: black;
  }
  .z-cup-email {
    font-size: 8px;
    color: black;
  }
  .love-icon-1 {
    line-height: 0.2;
  }
  .love-icon-1 img {
    max-width: 7px !important;
  }
  .love-icon-2 img {
    max-width: 12px !important;
  }
  .z-cup-7-height {
    height: 108vw;
  }
  .z-cup-11-height {
    height: 100vw;
  }
  .product-detail .main-title {
    font-size: 10px;
    line-height: 1;
  }
  .product-detail .big-title {
    font-size: 16px;
    line-height: 1.2;
  }
  .product-detail .sub-title {
    font-size: 8px;
    line-height: 1;
  }
  .product-detail .table-title {
    font-size: 14px;
    line-height: 1;
  }
  .product-detail .table-bottom {
    font-size: 8px;
    line-height: 1.2;
    margin-top: 4px;
  }
  .product-detail .table-font {
    font-size: 6px;
  }
  .product-detail .sub-title-1 {
    font-size: 7px;
  }
}
@media (min-width: 301px) and (max-width: 767px) {
  .product-detail-title {
    font-size: 24px;
    padding: 12px 20px;
    color: black;
  }
  .product-detail-sub-title {
    font-size: 14px;
    color: #666666;
  }
  .z-cup-title {
    font-size: 28px;
    line-height: 1.2;
    color: black;
  }
  .z-cup-content {
    font-size: 12px;
    line-height: 1;
    padding-left: 2px;
    box-sizing: border-box;
    color: #666666;
  }
  .z-cup-model-title {
    color: black;
    font-size: 24px;
  }
  .z-cup-model-content {
    font-size: 14px;
    color: #666666;
  }
  .z-cup-elastic-content {
    font-size: 14px;
    color: #666666;
  }
  .z-cup-table-bottom-1 {
    font-size: 14px;
    color: black;
  }
  .z-cup-table-bottom-2 {
    font-size: 12px;
    color: black;
  }
  .z-cup-email {
    font-size: 14px;
    color: black;
  }
  .love-icon-1 {
    line-height: 0.2;
  }
  .love-icon-1 img {
    max-width: 12px !important;
  }
  .love-icon-2 img {
    max-width: 20px !important;
  }
  .z-cup-7-height {
    height: 108vw;
  }
  .z-cup-11-height {
    height: 100vw;
  }
  .product-detail .main-title {
    font-size: 14px;
    line-height: 1;
  }
  .product-detail .big-title {
    font-size: 24px;
    line-height: 1.2;
  }
  .product-detail .sub-title {
    font-size: 14px;
    line-height: 1;
  }
  .product-detail .table-title {
    font-size: 18px;
    line-height: 1;
  }
  .product-detail .table-bottom {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
  }
  .product-detail .table-font {
    font-size: 8px;
  }
  .product-detail .sub-title-1 {
    font-size: 11px;
  }
}
.give-info {
  background-color: #fef1f8;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.give-info .give-info-left {
  width: 10%;
  box-sizing: border-box;
  text-align: center;
}
.give-info .give-info-left .give-info-left-img {
  width: 30% !important;
}
.give-info .give-info-center {
  width: 75%;
  box-sizing: border-box;
  line-height: 1.8;
}
.give-info .give-info-right {
  width: 15%;
  box-sizing: border-box;
  text-align: right;
}

@media (max-width: 767px) {
  .give-info .give-info-left {
    text-align: left;
  }
  .give-info .give-info-left .give-info-left-img {
    width: 80% !important;
  }
}
/**商品详情**/
.product-detail-left {
  width: 65%;
}
.product-detail-left .thumbnail-pic {
  width: 14%;
  min-height: 420px;
}
.product-detail-left .thumbnail-pic .thumbnail-prev-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.product-detail-left .thumbnail-pic .thumbnail-content {
  height: 600px;
  width: 92%;
  overflow: hidden;
}
.product-detail-left .thumbnail-pic .thumbnail-content ul {
  width: 100% !important;
}
.product-detail-left .thumbnail-pic .thumbnail-content ul li {
  width: 100%;
  margin-bottom: 20px;
  padding: 1px;
  list-style: none;
}
.product-detail-left .thumbnail-pic .thumbnail-content ul li img {
  width: 100%;
  border-radius: 7px;
}
.product-detail-left .thumbnail-pic .thumbnail-content ul li.on {
  border: 2px solid #4b2db3;
  border-radius: 10px;
  padding: 0;
}
.product-detail-left .thumbnail-pic .thumbnail-next-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.product-detail-left .normal-pic {
  width: 84%;
  min-height: 420px;
  position: relative;
}
.product-detail-left .normal-pic .normal-content {
  width: 100%;
  overflow: hidden;
}
.product-detail-left .normal-pic .normal-content ul li {
  list-style: none;
  width: 100%;
}
.product-detail-left .normal-pic .normal-content ul li img {
  width: 100%;
}
.product-detail-left .normal-pic .normal-pre-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 30;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
}
.product-detail-left .normal-pic .normal-pre-btn:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
}
.product-detail-left .normal-pic .normal-pre-btn img {
  position: absolute;
  top: 40%;
  left: 10px;
}
.product-detail-left .normal-pic .normal-next-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 30;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
}
.product-detail-left .normal-pic .normal-next-btn:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
}
.product-detail-left .normal-pic .normal-next-btn img {
  position: absolute;
  top: 40%;
  right: 10px;
}
.product-detail-right {
  width: 35%;
}
.product-detail-right .set-label-option.set-label-selected {
  border: 1px solid blue !important; /* 点击后边框颜色变化为蓝色 */
}

@media (max-width: 767px) {
  .product-detail-left {
    width: 100%;
  }
  .product-detail-right {
    width: 100%;
  }
}
.top-target-icon {
  width: 14px;
  margin: 5px;
}

/****loading****/
.loader {
  animation: rotate 2s linear infinite;
}

.loader circle {
  fill: none;
  stroke: #666;
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: stroke 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes stroke {
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40;
  }
  100% {
    stroke-dashoffset: -120;
  }
}
/****loading end****/
/****新UI样式 菜单新菜单****/
#menu-module .a-link {
  color: black;
  cursor: pointer;
}
#menu-module .scroller {
  /* Webkit浏览器 */
  /* Firefox */
  scrollbar-width: thin; /* 滚动条宽度 */
  scrollbar-color: #ff3f70 #F5F5F5; /* 滑块颜色 轨道颜色 */
}
#menu-module .scroller::-webkit-scrollbar {
  width: 6px; /* 滚动条宽度 */
}
#menu-module .scroller::-webkit-scrollbar-thumb {
  background-color: #ff3f70; /* 滑块颜色 */
  border-radius: 5px; /* 滑块圆角 */
}
#menu-module .scroller::-webkit-scrollbar-track {
  background-color: #F5F5F5; /* 轨道颜色 */
}
#menu-module .text-break {
  word-break: break-word;
}
#menu-module .parent-multi-shell:hover {
  border-bottom: 4px solid #ff3f70;
}
#menu-module .parent-multi-shell .child-multi-shell {
  background-color: white;
  display: none;
  left: 0;
  top: 100%;
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option .active {
  border-left: 4px solid rgb(255, 63, 111);
  background: rgb(247, 247, 247);
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option .secondary-option {
  border-left: 4px solid #fff;
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option .secondary-option:hover {
  border-left: 4px solid rgb(255, 63, 111);
  background: rgb(247, 247, 247);
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option .three-option {
  border-left: 4px solid #fff;
}
#menu-module .parent-multi-shell .child-multi-shell .multiple-option-container .group-option .three-option:hover {
  border-left: 4px solid rgb(255, 63, 111);
  background: rgb(247, 247, 247);
}
#menu-module .parent-multi-shell:hover .child-multi-shell {
  display: block;
}
#menu-module .mobile-navbar-2 {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100vw;
}
#menu-module .mobile-navbar-2-right {
  position: absolute;
  right: 0;
  top: 0;
  background-color: white;
  overflow-y: auto;
  overflow-x: hidden;
  /* Webkit浏览器 */
  /* Firefox */
  scrollbar-width: thin; /* 滚动条宽度 */
  scrollbar-color: #ff3f70 #F5F5F5; /* 滑块颜色 轨道颜色 */
}
#menu-module .mobile-navbar-2-right::-webkit-scrollbar {
  width: 6px; /* 滚动条宽度 */
}
#menu-module .mobile-navbar-2-right::-webkit-scrollbar-thumb {
  background-color: #ff3f70; /* 滑块颜色 */
  border-radius: 5px; /* 滑块圆角 */
}
#menu-module .mobile-navbar-2-right::-webkit-scrollbar-track {
  background-color: #F5F5F5; /* 轨道颜色 */
}
#menu-module .mobile-navbar-2-right-top .group-top {
  background-color: #f7f7f7;
  box-sizing: border-box;
  padding: 13px 3% 12px 3%;
}
#menu-module .mobile-navbar-2-right-content .group-wrapper {
  box-sizing: border-box;
  padding: 3%;
}
#menu-module .mobile-navbar-2-right-content .group-wrapper .group-option {
  box-sizing: border-box;
  padding: 13px 0 12px 0;
  border-bottom: 1px solid #ededed;
}
#menu-module .mobile-navbar-2-right-content .group-wrapper .group-option .category-thumb {
  width: 10vw;
  border-radius: 50%;
  padding: 1px;
}
#menu-module .mobile-navbar-2-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
#menu-module .mobile-navbar-2-bottom-media {
  border-top: 1px solid #ccc;
}
#menu-module .mobile-navbar-2-bottom-media a {
  width: 25%;
}
#menu-module .mobile-navbar-2-bottom-media a img {
  max-width: 16px;
}
#menu-module .mobile-navbar-2-bottom .fa {
  font-size: 1.5em;
  color: #000000;
}
#menu-module .mobile-navbar-2-bottom .fa-search {
  font-size: 1.1em;
}
#menu-module .mobile-navbar-2-bottom .fa-home {
  font-size: 1.2em;
}
#menu-module .mobile-navbar-2 .bottom-space {
  height: 10vh;
}

/*动画效果*/
.slide-x-reverse-enter-active {
  transition: all 0.6s ease-out;
}

/* 离开动画 - 向左侧滑出 */
.slide-x-reverse-leave-active {
  transition: all 0.6s ease-in;
}

/* 进入前的初始状态（右侧隐藏） */
.slide-x-reverse-enter-from {
  opacity: 0;
  transform: translateX(30px);
}

/* 离开后的最终状态（左侧隐藏） */
.slide-x-reverse-leave-to {
  opacity: 0;
  transform: translateX(-30px);
}

/* 确保离开的元素脱离文档流 */
.slide-x-reverse-leave-active {
  position: absolute;
  width: 100%;
}

/****新菜单 end****/
/**********新分类页面**********/
#product-category {
  /* ====== 颜色变量 ====== */
  /* ====== 通用样式 ====== */
  /* ====== 导航部分 ====== */
  /* ====== 内容部分 ====== */
}
#product-category .a-link {
  color: #000;
  cursor: pointer;
}
#product-category .display-none {
  display: none;
}
#product-category .content-bg {
  background-color: #f3f3f3;
}
#product-category .show-filter-button {
  width: 40%;
  margin: 2% 0;
  padding: 2% 4%;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 2em;
  font-size: 1em;
  font-weight: bold;
}
#product-category .show-filter-button-show {
  background-color: #992b9e;
}
#product-category .show-filter-button-hide {
  background-color: #777777;
}
#product-category #product-category-nav {
  width: 30%;
  box-sizing: border-box;
  padding: 1.2%;
}
#product-category #product-category-nav #product-name-filter {
  padding-bottom: 6%;
  line-height: 1.4em;
}
#product-category #product-category-nav #product-price-filter .input-container {
  display: flex;
  justify-content: space-between;
}
#product-category #product-category-nav #product-price-filter .input-container .input-box {
  width: 49%;
}
#product-category #product-category-nav #product-price-filter .input-container .input-box input {
  width: 100%;
  padding: 6px 16px;
  box-sizing: border-box;
  border: 1px solid #545454;
  border-radius: 30px;
}
#product-category #product-category-nav #product-price-filter .slider-container {
  height: 40px;
  touch-action: none;
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
  transform: translateY(-50%);
  border-radius: 2px;
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-range {
  position: absolute;
  top: 50%;
  height: 4px;
  background: #000;
  transform: translateY(-50%);
  border-radius: 2px;
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-thumb {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  top: 50%;
  cursor: pointer;
  z-index: 2;
  transform: translate(0, -50%);
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-thumb:first-child {
  transform: translate(0, -50%);
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-thumb:last-child {
  transform: translate(-100%, -50%);
}
#product-category #product-category-nav #product-price-filter .slider-container .slider-thumb:active {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#product-category #product-category-nav #product-option-filter,
#product-category #product-category-nav #product-group-filter {
  margin-top: 4%;
}
#product-category #product-category-nav .group-option {
  color: #000;
  cursor: pointer;
}
#product-category #product-category-nav .group-option .group-option-checkbox {
  display: none;
}
#product-category #product-category-nav .option-name {
  display: block;
  margin-top: 2%;
  width: 100%;
  padding: 9px 20px;
  min-height: 40px;
  line-height: 1.4em;
  font-size: 0.7em;
  background: #ededed;
  border: 2px solid #ededed;
  border-radius: 4px;
  cursor: pointer;
}
#product-category #product-category-nav .option-name:hover {
  border-color: #fe1f87;
}
#product-category #product-category-nav .option-name-active {
  border-color: #fe1f87;
}
#product-category #product-category-nav .title-container {
  cursor: pointer;
}
#product-category #product-category-nav .number-icon {
  display: inline-block;
  font-size: 0.5em;
  background-color: #fe1f87;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  margin-left: 6px;
}
#product-category .product-category-content {
  width: 70%;
  box-sizing: border-box;
  padding: 1.2%;
}

@media (max-width: 768px) {
  #product-category #product-category-nav {
    width: 100%;
    padding: 4%;
  }
  #product-category .product-category-content {
    width: 100%;
  }
}
/**********新分类页面 end**********/
/**********商品列表样式**********/
.product-list {
  /* ====== 颜色变量 ====== */
}
.product-list div[class^=list-item] {
  box-sizing: border-box;
  padding: 0.4%;
}
.product-list .list-item-1 {
  width: 100%;
}
.product-list .list-item-2 {
  width: 50%;
}
.product-list .list-item-3 {
  width: 33.33333%;
}
.product-list .list-item-3-2 {
  width: 66.66%;
}
.product-list .list-item-4 {
  width: 25%;
}
.product-list .list-item-5 {
  width: 20%;
}
.product-list .list-item-6 {
  width: 16.66667%;
}
.product-list .product-info {
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
}
.product-list .product-info .product-image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.product-list .product-info .product-image .hover-image {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
.product-list .product-info .product-image:hover .hover-image {
  opacity: 1;
}
.product-list .product-info .product-info-shell {
  padding: 3%;
}
.product-list .product-info .product-info-shell .product-review {
  margin-top: 9%;
  font-size: 0.6em;
  color: #992b9e;
}
.product-list .product-info .product-info-shell .product-review .star.filled {
  color: #992b9e;
}
.product-list .product-info .product-info-shell .product-name {
  margin-top: 5%;
  font-size: 0.7em;
  line-height: 1.4;
  overflow: hidden;
  height: 2.8em;
}
.product-list .product-info .product-info-shell .product-name .a-link {
  color: #000;
}
.product-list .product-info .product-info-shell .product-price {
  margin-top: 10%;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.product-list .product-info .product-info-shell .product-price .discount-price {
  font-weight: bold;
  font-size: 1.2em;
  color: red;
}
.product-list .product-info .product-info-shell .product-price .original-price {
  margin-left: 4%;
  font-size: 0.75em;
  color: #999;
  text-decoration: line-through;
}
.product-list .product-info .product-info-shell .product-price .discount-percentage {
  margin-left: 4%;
  font-size: 0.7em;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: red;
  color: #fff;
  padding: 0 3%;
}
.product-list .product-info .product-info-shell .product-price .discount-percentage-adjust {
  font-size: 0.8em;
  border-radius: 9px;
  font-weight: bold;
  margin: 4% 0 0 0;
}
.product-list .product-info .product-info-shell .product-button {
  margin-top: 10%;
  margin-bottom: 4%;
}
.product-list .product-info .product-info-shell .product-button .a-link {
  text-align: center;
  width: 88%;
  background-color: #992b9e;
  color: #fff !important;
  border: none;
  font-size: 0.8em;
  padding: 4% 8%;
  border-radius: 2em;
}
.product-list .product-info:hover {
  box-shadow: 0 0 0 1px #f94da3;
}
.product-list .product-info:hover .product-button .a-link {
  background-color: #f94da3;
}
.product-list .list-bottom-info .show-more button {
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  border: 1px solid #000;
  padding: 8px 20px;
  border-radius: 30px;
}
.product-list .list-bottom-info .progress {
  background-color: #ecbeee !important;
  border-radius: 20px !important;
  height: 12px !important;
}
.product-list .list-bottom-info .progress .progress-bar {
  background-color: #992b9e !important;
}
.product-list .list-bottom-info .loader {
  width: 25px;
  height: 25px;
}

@media (max-width: 768px) {
  .product-list div[class^=list-item] {
    box-sizing: border-box;
    padding: 1.2%;
  }
  .product-list .list-item-1 {
    width: 100%;
  }
  .product-list .list-item-2 {
    width: 50%;
  }
  .product-list .list-item-3 {
    width: 50%;
  }
  .product-list .list-item-3-2 {
    width: 100%;
  }
  .product-list .list-item-4 {
    width: 50%;
  }
  .product-list .list-item-5 {
    width: 50%;
  }
  .product-list .list-item-6 {
    width: 50%;
  }
  .product-list .product-info .product-info-shell .product-review .fa {
    font-size: 1em;
  }
  .product-list .product-info .product-info-shell .product-price .discount-percentage {
    width: 30%;
    text-align: center;
    font-size: 0.8em;
    border-radius: 9px;
    font-weight: bold;
    margin: 4% 0 0 0;
  }
  .product-list .product-info:hover {
    border: none;
    box-shadow: none;
  }
  .product-list .product-info:hover .product-button .a-link {
    background-color: #992b9e;
  }
}
/**********商品列表样式end**********/
/*加减号、星星 相关icon样式*/
.icon-container .minus-icon, .icon-container .plus-icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0.5em;
  color: currentColor;
}
.icon-container .minus-icon::before, .icon-container .plus-icon::before, .icon-container .minus-icon::after, .icon-container .plus-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-container .plus-icon::before {
  width: 1em;
  height: 0.1em;
}
.icon-container .plus-icon::after {
  width: 0.1em;
  height: 1em;
}
.icon-container .minus-icon::before {
  width: 1em;
  height: 0.1em;
}
.icon-container .star-rating {
  gap: 4px;
}
.icon-container .star-rating .star {
  color: #ddd; /* 默认未选中颜色 */
  transition: color 0.2s;
}
.icon-container .star-rating .star.filled {
  color: #ffc107; /* 选中星星的颜色 */
}
.icon-container .star-rating .star .fa {
  display: block;
}

.product-youtube-size {
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .product-youtube-size {
    height: 300px;
  }
}
.product-shell,
.product-wrapper {
  margin: auto;
}

@media (min-width: 768px) {
  .product-shell,
  .product-wrapper {
    width: 750px;
  }
}
@media (min-width: 820px) {
  .product-shell,
  .product-wrapper {
    width: 94%;
  }
}
@media (min-width: 1280px) {
  .product-shell {
    width: 1200px;
  }
  .product-wrapper {
    width: 95%;
  }
}
@media (min-width: 1440px) {
  .product-shell {
    width: 1300px;
  }
}
@media (min-width: 1680px) {
  .product-shell {
    width: 1500px;
  }
  .product-wrapper {
    width: 90%;
  }
}
@media (min-width: 1920px) {
  .product-wrapper {
    width: 85%;
  }
}
/*加减号、星星 相关icon样式 end*/

/*# sourceMappingURL=roanyer.css.map */
