.classify .grid {
  margin-top: var(--element-space-XL);
}
.classify .grid.grid-gap {
  grid-gap: 16px 16px;
}
.classify .grid-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s;
}
.classify .grid-item.circle img,
.classify .grid-item.circle .grid-item-title {
  border-radius: 100%;
}
.classify .grid-item .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.classify .grid-item .img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.classify .grid-item .grid-item-title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  color: var(--layout-text-color);
  font-size: 20px;
  background: rgba(0, 0, 0, 0.3);
}
.classify .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.classify .placeholder-svg {
  border: 0;
}
@media screen and (min-width: 768px) {
  .classify h3.title {
    margin: 48px 0;
  }
  .classify .grid {
    display: grid;
  }
  .classify .grid.grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .classify .grid.grid-2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .classify .grid.circle.grid-1 {
    grid-template-columns: repeat(4, 1fr);
  }
  .classify .grid.circle.grid-2 {
    grid-template-columns: repeat(6, 1fr);
  }
  .classify .grid-item:hover img {
    filter: brightness(0.5);
  }
}
@media screen and (max-width: 768px) {
  .classify h3.title {
    margin: 24px 0;
  }
  .classify .grid.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .classify .grid.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .classify .grid.grid-gap {
    grid-gap: 8px 8px;
  }
  .classify .grid.circle.grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .classify .grid-item .grid-item-title {
    font-size: 16px;
  }
}

body {
  margin: 0 auto;
  font-size: 14px;
  position: relative;
  color: var(--text-color);
  background: var(--background-color);
  font-family: 'RobotoLight', Arial, Helvetica, sans-serif;
}
body a {
  color: var(--link-color);
}
body select,
body input {
  font-family: 'RobotoLight', Arial, Helvetica, sans-serif;
  outline: none;
  color: var(--heading-color);
}
body input::-webkit-input-placeholder,
body input::-moz-input-placeholder,
body input::-ms-input-placeholder {
  color: var(--placeholder-color);
}
body select:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
/*===默认图===*/
.placeholder-svg {
  display: block;
  fill: #f1f2f3;
  background-color: #f1f2f3;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
}
/*===主标题&&副标题字体===*/
.np-ui-main-title {
  font-family: "OldStandardRegular", Arial, Helvetica, sans-serif;
}
.np-ui-subhead-title {
  font-family: "RobotoLight", Arial, Helvetica, sans-serif;
}
/*===移动端搜索框默认样式===*/
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}
input[type="search"] {
  -webkit-appearance: none;
}
/*===商品价格===*/
.price {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.price .pay-price,
.price .orig-price {
  margin: 0 4px;
}
.price .pay-price {
  font-weight: 700;
  color: var(--pay-price-color);
}
.price .orig-price {
  text-decoration: line-through;
  color: var(--orig-price-color);
}
/*===折扣标签样式（圆形&&方形）===*/
.sale-tag {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  box-sizing: border-box;
  display: flex;
  padding: 4px 6px;
  z-index: 3;
  color: var(--sale-tag-text-color);
  background: var(--sale-tag-background-color);
  border: 1px solid var(--sale-tag-border-color);
}
.sale-tag.square {
  border-radius: 0;
}
.sale-tag.circle {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sale-tag.triangle {
  background: none;
  border: 0;
  flex-wrap: wrap;
  text-align: right;
  justify-content: flex-end;
}
.sale-tag.triangle .save-price {
  width: 100%;
}
.sale-tag.triangle::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent var(--sale-tag-background-color) transparent transparent;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.sale-tag .save-price {
  display: block;
  margin-left: 4px;
}
/*===商品名称显示设置(不显示&&显示一行&&显示两行&&显示全部)===*/
.product-name.none {
  display: none !important;
}
.product-name.one-line {
  line-height: 20px;
  max-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name.two-line {
  line-height: 20px;
  max-height: 40px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name a {
  display: block;
  width: 100%;
}
.sale-discount {
  z-index: 2;
}
/*===横幅===*/
.content-height {
  height: 40vh;
  padding-bottom: 13vh;
  margin-bottom: -13vh;
  display: flex;
}
.content-height.left {
  text-align: left;
}
.content-height.center {
  text-align: center;
}
.content-height.right {
  text-align: right;
}
.content-layout-color {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.content-main {
  width: 100%;
  max-width: 1180px;
  padding: 0 10px;
  margin: 0 auto;
}
/*===模块宽度===*/
.sections {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0;
  /*===文本对齐方式===*/
}
.sections .title-box {
  padding: 0 8px;
  max-width: 800px;
  margin: 0 auto var(--element-space-XL);
}
.sections.large {
  max-width: 1440px;
}
.sections.medium {
  max-width: 1280px;
}
.sections.small {
  max-width: 960px;
}
.sections.text-left {
  text-align: left;
}
.sections.text-left .title-box {
  margin-left: 0;
}
.sections.text-center {
  text-align: center;
}
.sections.text-center .title-box {
  margin: 0 auto var(--element-space-XL);
}
.sections.text-right {
  text-align: right;
}
.sections.text-right .title-box {
  margin-right: 0;
}
.sections h3.title {
  margin: 0;
  font-size: 28px;
}
.sections .subtitle {
  font-size: 16px;
  margin-top: 8px;
}
.slideshow-with-text.sections,
.image-with-text.sections {
  padding: 0;
}
/*===图片样式===*/
.right-angle {
  border-radius: 0;
}
.round-angle {
  border-radius: 12px;
}
.circle {
  border-radius: 100%;
}
/*===按钮样式===*/
.model-button.text {
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
}
.model-button.text a {
  color: var(--heading-color);
  font-size: 16px;
}
.model-button.text::after {
  content: "\e70b";
  margin-top: 1px;
  margin-left: 8px;
  font-family: iconfont !important;
  font-size: 14px;
  font-style: normal;
}
.model-button.button {
  padding: 12px 32px;
  height: 44px;
}
/*===Popup 多规格属性商品弹框===*/
.product-types-box {
  position: fixed;
  width: 400px;
  z-index: 102;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-types-box::-webkit-scrollbar {
  display: none;
}
.product-types-box.product-types-box--show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s linear;
}
.product-types-box .recommend {
  background: #fff;
  padding: 48px 24px 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*===== 产品摘要 =====*/
}
.product-types-box .recommend .recom-item {
  width: 100%;
}
.product-types-box .recommend .recom-item .colorPiece .colorPice-list,
.product-types-box .recommend .recom-item .product-types-list {
  margin-left: -6px;
}
.product-types-box .recommend h4.title,
.product-types-box .recommend .price,
.product-types-box .recommend .star,
.product-types-box .recommend .types-item,
.product-types-box .recommend .products-tisp,
.product-types-box .recommend .discount-tag,
.product-types-box .recommend .cart-success,
.product-types-box .recommend .inventory-threshold-num {
  margin: 0 0 20px;
}
.product-types-box .recommend .good-quantity-tips {
  padding-bottom: 0;
}
.product-types-box .recommend .cart-success {
  width: 100%;
  max-width: 416px;
  text-align: center;
  display: none;
}
.product-types-box .recommend .cart-success a {
  text-decoration: underline;
}
.product-types-box .recommend .sale-tag {
  position: relative;
  display: inline-flex;
  margin-right: 8px;
}
.product-types-box .recommend .price {
  display: inline-flex;
  align-items: center;
}
.product-types-box .recommend .price .pay-price {
  font-size: 16px;
  font-weight: 700;
}
.product-types-box .recommend .price .orig-price {
  font-size: 16px;
  margin-left: 4px;
}
.product-types-box .recommend .types-item {
  position: relative;
}
.product-types-box .recommend .types-item.button {
  margin-top: 15px;
}
.product-types-box .recommend .types-item .font14 {
  margin: 0;
  padding: 0 0 8px;
  font-size: 14px;
}
.product-types-box .recommend .types-item .font14 > span {
  font-size: 14px;
}
.product-types-box .recommend .types-item .font14 > span:nth-of-type(1) {
  text-transform: capitalize;
}
.product-types-box .recommend .types-item .font14 > span:nth-of-type(2) {
  display: none;
}
.product-types-box .recommend img {
  max-width: 100%;
  height: auto;
}
.product-types-box .recommend .product-types-list {
  font-size: 0;
}
.product-types-box .recommend .product-types-item {
  font-style: normal;
  position: relative;
  display: inline-block;
  margin: 0 6px 8px;
  line-height: 20px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 5px 8px;
  font-size: 14px;
}
.product-types-box .recommend .product-types-select {
  position: relative;
  margin-bottom: 12px;
  max-width: 416px;
  display: inline-flex;
  width: 100%;
}
.product-types-box .recommend .product-types-select > select {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.product-types-box .recommend .product-types-select::after {
  font-family: iconfont !important;
  -webkit-font-smoothing: antialiased;
  content: "\e622";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-weight: 700;
}
.product-types-box .recommend .np-ui-btn,
.product-types-box .recommend .J-PaypalBtn,
.product-types-box .recommend .customize-product-btn {
  width: 100%;
  max-width: 416px;
  margin-bottom: 12px;
  display: inline-block;
  border-radius: 0;
}
.product-types-box .recommend .view-details {
  color: var(--heading-color);
  margin-top: 20px;
  display: block;
  text-align: center;
}
.product-types-box .recommend .view-details:hover {
  text-decoration: underline;
}
.product-types-box .pop-close {
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: var(--heading-color);
  font-weight: 700;
}
.product-types-box .box-title {
  display: grid;
  grid-template-columns: 80px auto;
  grid-gap: 12px 12px;
  margin-bottom: 12px;
}
.product-types-box .box-title .title {
  font-size: 16px;
  margin: 0 0 12px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-main.main {
  margin: 0 auto;
}
/*===404页面最小高度===*/
.no-find {
  min-height: 400px;
}
/*===自定义页面===*/
.user-defined {
  padding: 30px;
  word-wrap: break-word;
  font-size: 14px;
  max-width: 25.5rem;
  margin: 0 auto;
  position: relative;
}
.user-defined a {
  font-size: 14px;
}
.user-defined h3.title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.user-defined li,
.user-defined dt,
.user-defined dd,
.user-defined ul,
.user-defined ol {
  list-style: inherit;
}
.user-defined ul,
.user-defined ol {
  padding-left: 25px;
}
.user-defined p {
  line-height: 20px;
  font-size: 14px;
}
.user-defined img {
  display: inline-block;
  margin: 0.25rem 0;
  max-width: 100%;
  box-sizing: border-box;
}
.user-defined video {
  max-width: 100% !important;
}
/*===移动端===*/
@media screen and (max-width: 768px) {
  /*===模块宽度===*/
  .sections {
    padding: 24px 0;
  }
  .sections.large,
  .sections.medium,
  .sections.small {
    max-width: 100%;
    box-sizing: border-box;
  }
  .sections.large {
    width: calc(100vw - 16px);
  }
  .sections.medium {
    width: calc(100vw - 32px);
  }
  .sections.small {
    width: calc(100vw - 48px);
  }
  .sections h3.title {
    font-size: 24px;
    margin: 0 0 4px;
  }
  /*===Popup 多规格属性商品弹框===*/
  .product-types-box {
    width: 100%;
    left: 0;
    top: auto;
    opacity: 0;
    bottom: -100%;
    display: block;
    transition: bottom 0.3s ease-out;
    padding: 0;
    transform: none;
  }
  .product-types-box.product-types-box--show {
    transform: none;
    opacity: 1;
    bottom: 0;
    transition: bottom 0.3s ease-out;
  }
  .product-types-box .recommend {
    height: 100vh;
    padding: 38px 16px 16px;
    border: 0;
    margin-bottom: 0;
    max-height: 100vh;
    overflow: hidden;
    overflow-y: auto;
  }
  .product-types-box .pop-close {
    display: block;
    position: fixed;
  }
  @supports (-webkit-hyphens: none) and (not (-moz-appearance: none)) {
    /* 适用于触摸屏（手机/平板） */
    .product-types-box .recommend {
      padding: 128px 16px 16px;
    }
  }
}

/*=== 商品列表页 标题 && 排序===*/
.collection-list {
  max-width: 1280px;
  padding: 0 0 36px;
  margin: 0 auto;
  min-height: 400px;
  /*=== 商品列表页===*/
}
.collection-list .collection-list-ad img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.collection-list .featured-product-modle {
  width: 100%;
  transition: all 0.5s;
  text-align: right;
  background: var(--white);
  padding: 16px;
  box-sizing: border-box;
}
.collection-list .featured-product-modle.ratio .img-wrapper {
  padding-left: 100%;
  padding-bottom: 100%;
  width: auto;
  overflow: hidden;
  background: #f1f2f3;
}
.collection-list .featured-product-modle.ratio .img-wrapper a {
  display: block;
  height: 100%;
}
.collection-list .featured-product-modle.ratio .img-wrapper a > div {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.collection-list .featured-product-modle.ratio .img-wrapper img {
  height: 100%;
  object-fit: cover;
}
.collection-list .featured-product-modle .collection-discount-tag {
  position: absolute;
  right: auto;
  top: 0;
  bottom: auto;
  left: 0;
  display: block;
  text-align: left;
}
.collection-list .featured-product-modle .collection-discount-tag .sale-tag,
.collection-list .featured-product-modle .collection-discount-tag .big-group-tag {
  position: relative;
  top: 5px;
  left: 5px;
}
.collection-list .featured-product-modle .collection-discount-tag .sale-tag {
  top: 7px;
  display: inline-flex;
}
.collection-list .featured-product-modle .collection-discount-tag .big-group-tag {
  border-radius: 5px;
}
.collection-list .featured-product-modle .swiper-container {
  width: 100%;
}
.collection-list .featured-product-modle .swiper-container.left {
  text-align: left;
}
.collection-list .featured-product-modle .swiper-container.center {
  text-align: center;
}
.collection-list .featured-product-modle .swiper-container.right {
  text-align: right;
}
.collection-list .featured-product-modle .swiper-slide {
  position: relative;
}
.collection-list .featured-product-modle .star > span {
  display: none;
}
.collection-list .img-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-list .img-wrapper .add-to-cart {
  width: 100%;
}
.collection-list .img-wrapper .featured-img {
  opacity: 1;
  z-index: 1;
}
.collection-list .img-wrapper .second-img {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.collection-list .img-wrapper img {
  width: 100%;
}
.collection-list .good-info .product-name {
  display: -webkit-box;
  word-break: break-all;
  margin-bottom: 8px;
}
.collection-list .good-info .product-name a {
  color: var(--heading-color);
}
.collection-list .add-to-cart {
  width: 100%;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 13px 0;
  display: none;
}
.collection-list .add-to-cart.np-ui-btn-disabled {
  color: var(--disabled-text-color);
  background-color: var(--disabled-color);
  border-color: var(--disabled-color);
  cursor: default;
}
.collection-list-header h3.title {
  text-align: center;
  font-size: 28px;
  margin: 24px 0;
}
.collection-list-header .classified-information {
  margin-bottom: 24px;
}
/*=== 商品列表页 过滤器 && 商品列表===*/
.collection-list-wrap {
  display: flex;
  gap: 20px;
}
.collection-list-wrap .filters {
  flex: none;
  width: 230px;
  background: var(--white);
  height: max-content;
  padding: 16px;
  box-sizing: border-box;
}
.collection-list-wrap .filters .filters-title,
.collection-list-wrap .filters .filters-btn {
  display: none;
}
.collection-list-wrap .filters .filter-list {
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 24px;
}
.collection-list-wrap .filters .title {
  margin-bottom: 12px;
}
.collection-list-wrap .filters .items {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.collection-list-wrap .filters .items .np-ui-checkbox {
  margin-right: 8px;
}
.collection-list-wrap .filters .items .np-ui-checkbox.np-ui-checkbox-active {
  border-color: var(--heading-color);
  background-color: var(--heading-color);
}
.collection-list-wrap .filters .items.item-hidden {
  display: none;
}
.collection-list-wrap .filters .items.item--show {
  display: flex;
}
.collection-list-wrap .filters .items:last-child {
  margin-bottom: 0;
}
.collection-list-wrap .filters .selector {
  width: 100%;
  position: relative;
}
.collection-list-wrap .filters .selector > select {
  height: 36px;
  padding: 0 12px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border-color);
}
.collection-list-wrap .filters .selector::after {
  font-family: iconfont !important;
  -webkit-font-smoothing: antialiased;
  content: "\e622";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-weight: 700;
}
.collection-list-wrap .filters .select-tag {
  margin-bottom: 24px;
}
.collection-list-wrap .filters .select-tag .tag-item {
  display: block;
  margin-top: 8px;
}
.collection-list-wrap .filters .filter-item-selected {
  font-size: 18px;
}
.collection-list-wrap .filters .item-checkbox {
  width: 12px;
  height: 12px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 4px;
}
.collection-list-wrap .filters .item-checkbox::after,
.collection-list-wrap .filters .item-checkbox::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.collection-list-wrap .filters .item-checkbox::after {
  border: 1px solid var(--border-color);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.collection-list-wrap .filters .item-checkbox-checked .item-checkbox {
  background-color: var(--white);
}
.collection-list-wrap .filters .item-checkbox-checked .item-checkbox::before {
  width: 8px;
  height: 8px;
  background: var(--heading-color);
}
.collection-list-wrap .filters .item-checkbox-checked .item-checkbox:hover::before {
  width: unset;
  height: unset;
  color: var(--heading-color);
  content: '×';
  font-weight: 700;
  background: unset;
}
.collection-list-wrap .no-data {
  width: 100%;
  text-align: center;
}
.collection-list-wrap .no-data span {
  display: block;
  font-size: 18px;
  margin-bottom: 24px;
}
.collection-list-wrap .product-sort {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 2px;
  display: inline-flex;
  padding: 5px 30px 5px 8px;
  margin-bottom: 24px;
}
.collection-list-wrap .product-sort::after {
  clear: both;
  content: '';
}
.collection-list-wrap .sort-name {
  margin-right: 8px;
}
.collection-list-wrap .sort-select {
  background: none;
}
.collection-list-wrap .sort-select > select {
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  -webkit-appearance: none;
}
.collection-list-wrap .sort-select > label {
  z-index: auto;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
  pointer-events: none;
}
.collection-list-wrap .sort-select::after {
  content: "\e6f0";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  pointer-events: none;
}
.collection-list-wrap .filters-icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .collection-list {
    /*===网格布局==*/
    /*===列表布局==*/
  }
  .collection-list .img-wrapper:hover .featured-img {
    opacity: 0;
    z-index: -1;
  }
  .collection-list .img-wrapper:hover .second-img {
    opacity: 1;
    z-index: 1;
  }
  .collection-list .img-wrapper.single-img:hover .featured-img {
    opacity: 1;
    z-index: 1;
  }
  .collection-list .grid-pc-2,
  .collection-list .grid-pc-3,
  .collection-list .grid-pc-4,
  .collection-list .grid-pc-5,
  .collection-list .grid-pc-6 {
    display: grid;
    grid-gap: 24px 16px;
  }
  .collection-list .grid-pc-2 .swiper-slide:hover .img-wrapper .add-to-cart,
  .collection-list .grid-pc-3 .swiper-slide:hover .img-wrapper .add-to-cart,
  .collection-list .grid-pc-4 .swiper-slide:hover .img-wrapper .add-to-cart,
  .collection-list .grid-pc-5 .swiper-slide:hover .img-wrapper .add-to-cart,
  .collection-list .grid-pc-6 .swiper-slide:hover .img-wrapper .add-to-cart {
    display: block;
  }
  .collection-list .grid-pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-list .grid-pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-list .grid-pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .collection-list .grid-pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .collection-list .grid-pc-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .collection-list .grid-list {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .collection-list .grid-list .swiper-slide {
    display: grid;
    grid-template-columns: 200px auto 200px;
    grid-gap: 20px;
  }
  .collection-list .grid-list .good-info .name {
    margin: 0 0 12px;
  }
  .collection-list .grid-list .good-info .name a {
    font-size: 20px;
  }
  .collection-list .grid-list .good-info .name a:hover {
    color: var(--heading-color);
  }
  .collection-list .grid-list .star {
    margin: 0;
  }
  .collection-list .grid-list .description {
    margin-top: 12px;
  }
  .collection-list .grid-list .add-to-cart {
    position: relative;
    display: block;
  }
  .collection-list .grid-list .price {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .collection-list {
    /*===网格布局==*/
    /*===列表布局==*/
  }
  .collection-list .featured-product-modle {
    padding: 0;
  }
  .collection-list .good-info .star {
    display: block;
    height: auto;
  }
  .collection-list .good-info .star .score {
    display: block;
  }
  .collection-list .add-to-cart {
    display: block;
    position: relative;
    margin-top: 8px;
  }
  .collection-list .img-wrapper .add-to-cart {
    display: none;
  }
  .collection-list .grid-1,
  .collection-list .grid-2 {
    display: grid;
    grid-gap: 16px 8px;
  }
  .collection-list .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-list .grid-list {
    display: grid;
    grid-gap: 16px 16px;
    padding-bottom: 24px;
    text-align: left;
  }
  .collection-list .grid-list .swiper-slide {
    display: grid;
    grid-template-columns: 120px auto;
    grid-gap: 0 8px;
  }
  .collection-list .grid-list .img-wrapper {
    margin-bottom: 0;
  }
  .collection-list .grid-list .good-info .name {
    margin: 0 0 10px;
  }
  .collection-list .grid-list .good-info .name a {
    font-size: 14px;
  }
  .collection-list .grid-list .description {
    display: none;
  }
  .collection-list .grid-list .product-btn {
    position: absolute;
    bottom: 0;
    padding-left: 128px;
    width: 100%;
    box-sizing: border-box;
    min-height: 40px;
    display: flex;
    align-items: flex-end;
  }
  .collection-list .grid-list .add-to-cart {
    font-size: 0;
    width: 36px;
    min-width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .collection-list .grid-list .add-to-cart::before {
    content: "\e6ec";
    font-family: iconfont !important;
    font-size: 24px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 36px;
    color: var(--heading-color);
  }
  .collection-list .grid-list .price {
    font-size: 16px;
  }
  .collection-list .grid-list .colorPieceList .colorPice-list .swatch-element {
    margin: 0;
  }
  .collection-list-header {
    display: block;
    margin-bottom: 8px;
  }
  .collection-list-header .classified-information {
    padding: 0 12px;
  }
  .collection-list-wrap .filters {
    display: none;
    position: fixed;
    background: var(--white);
    z-index: 999;
    width: calc((100vw - 24px));
    bottom: 0;
    right: 0;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .collection-list-wrap .filters.filters--show {
    display: flex;
    flex-direction: column;
  }
  .collection-list-wrap .filters.filters--show .filters-title,
  .collection-list-wrap .filters.filters--show .filters-btn {
    display: block;
    height: 64px;
    width: 100%;
    flex: none;
    box-sizing: border-box;
  }
  .collection-list-wrap .filters.filters--show .filters-box {
    height: calc((100vh - 128px));
    overflow-y: auto;
    padding-top: 16px;
  }
  .collection-list-wrap .filters.filters--show .filters-box .filter-list {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .collection-list-wrap .filters.filters--show .select-tag {
    padding: 20px 20px 0;
  }
  .collection-list-wrap .filters.filters--show .filters-title {
    padding-left: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
  }
  .collection-list-wrap .filters.filters--show .filters-title .iconfont {
    font-size: 24px;
    margin-right: 4px;
    cursor: pointer;
  }
  .collection-list-wrap .filters.filters--show .filters-btn {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
  }
  .collection-list-wrap .filters.filters--show .filters-btn > span {
    font-size: 16px;
    color: var(--white);
    background: var(--heading-color);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .collection-list-wrap .product-sort {
    width: 100%;
    border-left: 0;
    border-right: 0;
    padding: 12px;
    border-radius: 0;
    border-color: rgba(103, 114, 121, 0.3);
    position: relative;
  }
  .collection-list-wrap .product-sort .filters-icon {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  .collection-list-wrap .product-sort .sort-select {
    padding-right: 30px;
    position: relative;
  }
  .collection-list-wrap .swiper-container {
    padding: 0 16px;
    box-sizing: border-box;
  }
}

/*=====商品详情页=====*/
.product.recommend {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*===== Swiper 轮播图 =====*/
  /*===== 产品摘要 =====*/
}
.product.recommend .recom-item {
  width: 50%;
  flex: none;
  /*===商品图样式=标签===*/
  /*===商品图样式=缩略图===*/
}
.product.recommend .recom-item.paddL80 {
  padding-left: 24px;
  box-sizing: border-box;
}
.product.recommend .recom-item.paddL80.left {
  text-align: left;
}
.product.recommend .recom-item.paddL80.left .colorPice-list,
.product.recommend .recom-item.paddL80.left .share-this,
.product.recommend .recom-item.paddL80.left .good-quantity-sizeChart,
.product.recommend .recom-item.paddL80.left .icon-text,
.product.recommend .recom-item.paddL80.left .discount-tag {
  justify-content: flex-start;
}
.product.recommend .recom-item.paddL80.left .colorPiece .colorPice-list,
.product.recommend .recom-item.paddL80.left .product-types-list {
  margin-left: -6px;
}
.product.recommend .recom-item.paddL80.center {
  text-align: center;
}
.product.recommend .recom-item.paddL80.center .colorPice-list,
.product.recommend .recom-item.paddL80.center .share-this,
.product.recommend .recom-item.paddL80.center .good-quantity-sizeChart,
.product.recommend .recom-item.paddL80.center .icon-text,
.product.recommend .recom-item.paddL80.center .discount-tag {
  justify-content: center;
}
.product.recommend .recom-item.paddL80.center .product-group-buying-section .group-subtitle,
.product.recommend .recom-item.paddL80.center .product-group-buying-section .group-des,
.product.recommend .recom-item.paddL80.center .product-group-buying-section .group-flex1 {
  text-align: left;
}
.product.recommend .recom-item.paddL80.center .product-group-buying-section .group-subtitle.group-people {
  text-align: center;
}
.product.recommend .recom-item.paddL80.right {
  text-align: right;
}
.product.recommend .recom-item.paddL80.right .colorPice-list,
.product.recommend .recom-item.paddL80.right .share-this,
.product.recommend .recom-item.paddL80.right .good-quantity-sizeChart,
.product.recommend .recom-item.paddL80.right .icon-text,
.product.recommend .recom-item.paddL80.right .discount-tag {
  justify-content: flex-end;
}
.product.recommend .recom-item.paddL80.right .colorPiece .colorPice-list,
.product.recommend .recom-item.paddL80.right .product-types-list {
  margin-right: -6px;
}
.product.recommend .recom-item.tag .gallery-thumbs {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
}
.product.recommend .recom-item.tag .swiper-button-next,
.product.recommend .recom-item.tag .swiper-button-prev {
  display: none;
}
.product.recommend .recom-item.thumbs .gallery-thumbs {
  margin: 0 auto 12px;
  width: 100%;
  max-width: 520px;
}
.product.recommend .recom-item.thumbs .gallery-top .swiper-pagination {
  display: none;
}
.product.recommend .product-details-banner {
  position: relative;
}
.product.recommend .product-details-banner .gallery-top {
  width: 100%;
  height: 100%;
  margin-bottom: 16px;
}
.product.recommend .product-details-banner .gallery-top .swiper-slide {
  padding-bottom: 100%;
  position: relative;
}
.product.recommend .product-details-banner .gallery-top .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.product.recommend .product-details-banner .gallery-top:hover .expand-img {
  display: flex;
}
.product.recommend .product-details-banner .gallery-thumbs {
  margin-top: 4px;
}
.product.recommend .product-details-banner .gallery-thumbs .swiper-slide {
  opacity: 1;
  box-sizing: border-box;
}
.product.recommend .product-details-banner .gallery-thumbs .swiper-slide-thumb-active {
  border: 1px solid #000;
}
.product.recommend .product-details-banner .swiper-button-next {
  right: 0;
}
.product.recommend .product-details-banner .swiper-button-prev {
  left: 0;
}
.product.recommend .product-details-banner .swiper-button-next,
.product.recommend .product-details-banner .swiper-button-prev {
  top: auto;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  background: none;
  z-index: 2;
  text-align: center;
  color: #000;
  font-weight: 700;
}
.product.recommend .product-details-banner .swiper-slide-min {
  overflow: hidden;
  display: flex;
  border: 1px solid #fff;
  padding: 1px;
  border-radius: 3px;
  height: 80px;
}
.product.recommend .product-details-banner .swiper-slide-min > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.product.recommend .product-details-banner .swiper-slide-min > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product.recommend .expand-img {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  cursor: pointer;
  pointer-events: none;
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 100%;
}
.product.recommend .icon-text {
  display: flex;
}
.product.recommend .icon-text > div {
  display: inline-flex;
  align-items: center;
  margin: 8px 10px 0;
}
.product.recommend .icon-text > div img {
  max-width: 24px;
  max-height: 24px;
}
.product.recommend .icon-text > div img,
.product.recommend .icon-text > div span {
  margin-right: 10px;
}
.product.recommend h4.title,
.product.recommend .price,
.product.recommend .star,
.product.recommend .types-item,
.product.recommend .flipclock,
.product.recommend .products-tisp,
.product.recommend .discount-tag,
.product.recommend .incentive-share,
.product.recommend hr,
.product.recommend .good-quantity-sizeChart,
.product.recommend .good-quantity-tips,
.product.recommend .cart-success,
.product.recommend .inventory-threshold-num,
.product.recommend .member-price {
  margin: 0 0 20px;
}
.product.recommend .good-quantity-tips {
  padding-bottom: 0;
}
.product.recommend .cart-success {
  width: 100%;
  max-width: 416px;
  text-align: center;
  margin: 0 auto 12px;
  display: none;
}
.product.recommend .cart-success a {
  text-decoration: underline;
}
.product.recommend hr {
  border: 0;
  border-top: 1px solid rgba(103, 114, 121, 0.3);
}
.product.recommend h4.title {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-primary-color);
}
.product.recommend .sub-title {
  margin-bottom: 12px;
  color: var(--text-secondary-color);
}
.product.recommend .sku-hidden {
  margin-left: 8px;
  color: var(--background-color);
}
.product.recommend .star {
  display: block;
}
.product.recommend .price .pay-price {
  font-size: 16px;
  font-weight: 700;
}
.product.recommend .price .orig-price {
  font-size: 16px;
  margin-left: 4px;
}
.product.recommend .types-item {
  position: relative;
}
.product.recommend .types-item.quantity label {
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
}
.product.recommend .types-item.button {
  margin-top: 15px;
}
.product.recommend .types-item .font14 {
  margin: 0;
  padding: 0 0 8px;
  font-size: 14px;
}
.product.recommend .types-item .font14 > span:nth-of-type(1) {
  text-transform: capitalize;
  color: var(--text-thirdy-color);
}
.product.recommend .types-item .font14 > span:nth-of-type(2) {
  display: none;
}
.product.recommend img {
  max-width: 100%;
  height: auto;
}
.product.recommend .product-types-list {
  font-size: 0;
}
.product.recommend .product-types-item {
  font-style: normal;
  position: relative;
  display: inline-block;
  padding: 6px 20px;
  margin: 0 6px 8px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.product.recommend .product-types-select {
  position: relative;
  margin-bottom: 12px;
  max-width: 416px;
  display: inline-flex;
  width: 100%;
}
.product.recommend .product-types-select > select {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.product.recommend .product-types-select::after {
  font-family: iconfont !important;
  -webkit-font-smoothing: antialiased;
  content: "\e622";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-weight: 700;
}
.product.recommend .np-ui-btn,
.product.recommend .J-PaypalBtn,
.product.recommend .customize-product-btn {
  width: 100%;
  max-width: 416px;
  margin-bottom: 12px;
  display: inline-block;
  border-radius: 0;
}
.product.recommend #enhancing-website-trust,
.product.recommend #store-product-description-before {
  width: 100%;
  display: flex;
  justify-content: end;
}
.product .discount-tag .tag-item::before,
.product .discount-tag .tag-item::after {
  background-color: var(--background-color);
}
.product .incentive-share .incentive-share-get::before,
.product .incentive-share .incentive-share-get::after {
  background: var(--background-color);
}
/*=====产品详情=====*/
.product-details-box {
  width: 100%;
  flex: none;
}
.product-details-box .tab-menu {
  border-bottom: 1px solid var(--border-color);
  font-size: 0;
}
.product-details-box .tab-menu > div {
  cursor: pointer;
  font-size: 18px;
  padding: 10px 0px 6px;
  color: var(--secondary-color);
  display: inline-block;
  text-transform: capitalize;
  margin: 0 20px;
}
.product-details-box .tab-menu > div.active {
  color: var(--heading-color);
  border-bottom: 2px solid var(--heading-color);
}
.product-details-box .accordion-menu {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding: 0 10px;
  box-sizing: border-box;
  color: var(--heading-color);
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border-color);
  display: none;
}
.product-details-box .accordion-menu::after {
  position: absolute;
  content: "\e76c";
  font-size: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.product-details-box .accordion-menu.active {
  color: var(--heading-color);
}
.product-details-box .accordion-menu.active::after {
  content: "\e6de";
}
.product-details-box .tab-content {
  width: 100%;
  overflow: hidden;
}
.product-details-box .content {
  display: none;
}
.product-details-box .content:nth-of-type(1) {
  display: block;
}
.product-details-box .product-details {
  padding: 16px 0;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  overflow: hidden;
}
/*=====产品关联博客文章=====*/
.product-blog-posts {
  display: none;
}
.product-blog-posts .picture {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.product-blog-posts .picture a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.product-blog-posts .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-blog-posts .title {
  margin-top: 24px;
  font-weight: 700;
}
.product-blog-posts .title a {
  display: block;
  font-size: 18px;
}
.product-blog-posts .swiper-navigation {
  position: relative;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 0;
  left: 0;
  padding-top: 10px;
  width: 100%;
}
.product-blog-posts .swiper-button-next,
.product-blog-posts .swiper-button-prev {
  width: 48px;
  height: 28px;
  line-height: 28px;
  color: var(--heading-color);
  background: none;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  position: relative;
  top: 0;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  margin: 0 8px;
  font-weight: 700;
}
/*=====分享=====*/
.share-this {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  border-top: 1px solid var(--hr-color);
  padding: 16px 0;
  width: 100%;
}
.share-this a {
  color: #000;
  margin: 0 6px;
}
.share-this .iconfont {
  font-size: 16px;
}
/*====详情页应用 && 组合商品 && 评论 && 推荐商品 && 博客文章=====*/
.product-details-box,
.product-groups,
.reviews,
.model-recommend,
.product-blog-posts {
  padding: 28px 16px;
  box-sizing: border-box;
  margin: 0 auto;
  background: var(--white);
  width: 100%;
  max-width: 1280px;
}
.product-details-box.main h3.title,
.product-groups.main h3.title,
.reviews.main h3.title,
.model-recommend.main h3.title,
.product-blog-posts.main h3.title {
  padding: 0 0 24px;
}
/*===快捷加购===*/
.model-add-to-cart .main {
  max-width: 1280px;
  margin: 0 auto;
}
.flipclock {
  max-width: 480px;
  position: relative;
}
.flipclock.flipclock--show {
  display: inline-flex;
}
.incentive-share {
  display: inline-flex;
}
/*===组合商品===*/
.product-groups .product-groups-info .product-groups-type {
  height: 32px;
  color: var(--text-color);
}
.product-groups h3.title::after {
  display: none;
}
/*===评论===*/
.reviews {
  padding-bottom: 54px;
}
.reviews .reviews-list .reviews-country,
.reviews .reviews-list .reviews-date,
.reviews .reviews-list .helpful-num,
.reviews .reviews-list .report {
  font-size: 14px;
}
.reviews .write-review-box {
  border-top: 1px solid #ddd;
  padding: 20px 0px 82px;
}
.reviews.list-style-column .reviews-list li:last-of-type {
  border-bottom: 0;
}
/*===推荐商品===*/
.model-recommend ul li .attribute > select {
  height: 32px;
}
.model-recommend ul li .grid-picture {
  padding-left: 100%;
  padding-bottom: 100%;
  width: auto;
  overflow: hidden;
  background: #f1f2f3;
}
.model-recommend ul li .grid-picture > a {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.model-recommend ul li .grid-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-recommend .swiper-button-next,
.model-recommend .swiper-button-prev {
  top: 145px;
}
.model-recommend .sale-discount {
  left: -8px;
}
/*====查看大图====*/
.product-big-img .layer-img {
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
}
.product-big-img .layer-img::-webkit-scrollbar {
  display: none;
}
.product-big-img .layer-img img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product.recommend {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .product.recommend .recom-item.paddL80 {
    padding: 0 16px;
  }
  .product.recommend .product-groups {
    border-top: 12px solid #f5f5f5;
    padding: 16px;
  }
  .product.recommend h4.title,
  .product.recommend .price,
  .product.recommend .star,
  .product.recommend .types-item,
  .product.recommend .flipclock,
  .product.recommend .products-tisp,
  .product.recommend .discount-tag,
  .product.recommend .incentive-share,
  .product.recommend hr,
  .product.recommend .good-quantity-sizeChart,
  .product.recommend .good-quantity-tips,
  .product.recommend .cart-success,
  .product.recommend .inventory-threshold-num,
  .product.recommend .member-price {
    margin: 0 0 12px;
  }
  .product.recommend hr {
    margin-bottom: 20px;
  }
  .product.recommend h4.title {
    font-size: 20px;
    margin: 0 0 12px;
  }
  .product.recommend h4.title a {
    font-size: 20px;
  }
  .product.recommend .star {
    display: block;
    margin-top: -8px;
  }
  .product.recommend .types-item .font14 {
    font-size: 14px;
  }
  .product.recommend .product-types-item {
    padding: 9px 20px;
    font-size: 16px;
  }
  .product.recommend .recom-item {
    width: 100%;
  }
  .product.recommend .recom-item.thumbs .gallery-thumbs {
    width: calc(100% - 60px);
  }
  .product.recommend .recom-item.thumbs .swiper-button-next,
  .product.recommend .recom-item.thumbs .swiper-button-prev {
    bottom: calc((100vw - 90px)/8);
    transform: translateY(50%);
    width: 30px;
  }
  .product.recommend .product-details-banner {
    width: 100%;
  }
  .product.recommend .product-details-banner .gallery-top .swiper-pagination {
    display: block;
  }
  .product.recommend .product-details-banner .swiper-slide-min {
    height: calc((100vw - 90px)/4);
  }
  .product.recommend .expand-img {
    display: none;
  }
  .product.recommend .np-ui-btn {
    max-width: 100%;
    margin-bottom: 8px;
    height: 48px;
  }
  .product.recommend .J-PaypalBtn {
    max-width: 100%;
  }
  .product.recommend .Paypal-buy-now {
    height: 48px;
    line-height: 48px;
  }
  .product.recommend .cart-success {
    position: relative;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
  }
  .product #enhancing-website-trust,
  .product #store-product-description-before {
    padding: 0 12px;
    justify-content: center !important;
  }
  /*===移动端==>手风琴模式===*/
  .product-details-box .tab-menu,
  .product-details-box .product-details {
    display: none;
  }
  .product-details-box .accordion-menu {
    display: block;
    height: auto;
    line-height: 24px;
    padding: 10px 0;
  }
  .product-details-box .content {
    display: block;
  }
  .product-details-box .content:nth-of-type(1) .product-details {
    display: block;
  }
  /*====详情页应用 && 组合商品 && 评论 && 推荐商品 && 博客文章=====*/
  .product-details-box,
  .product-groups,
  .reviews,
  .model-recommend,
  .product-blog-posts {
    padding: 16px;
    box-sizing: border-box;
    /*==组合商品&&在详情页上方==*/
  }
  .product-details-box.main,
  .product-groups.main,
  .reviews.main,
  .model-recommend.main,
  .product-blog-posts.main {
    padding: 16px;
  }
  .product-details-box.upward .product-groups-info .product-groups-img,
  .product-groups.upward .product-groups-info .product-groups-img,
  .reviews.upward .product-groups-info .product-groups-img,
  .model-recommend.upward .product-groups-info .product-groups-img,
  .product-blog-posts.upward .product-groups-info .product-groups-img {
    width: calc((100vw - 92px)/3);
    height: calc((100vw - 92px)/3);
  }
  .product-details-box.upward .product-groups-info .product-groups-link,
  .product-groups.upward .product-groups-info .product-groups-link,
  .reviews.upward .product-groups-info .product-groups-link,
  .model-recommend.upward .product-groups-info .product-groups-link,
  .product-blog-posts.upward .product-groups-info .product-groups-link {
    height: calc((100vw - 92px)/3);
    width: 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-details-box .model-recommend .swiper-button-next,
  .product-groups .model-recommend .swiper-button-next,
  .reviews .model-recommend .swiper-button-next,
  .model-recommend .model-recommend .swiper-button-next,
  .product-blog-posts .model-recommend .swiper-button-next,
  .product-details-box .model-recommend .swiper-button-prev,
  .product-groups .model-recommend .swiper-button-prev,
  .reviews .model-recommend .swiper-button-prev,
  .model-recommend .model-recommend .swiper-button-prev,
  .product-blog-posts .model-recommend .swiper-button-prev {
    top: 80px;
  }
}

/*===Search Common CSS===*/
.search-box {
  max-width: 730px;
  width: 100%;
  margin: 0 20px;
}
.search-box .wrap {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #fff;
  height: 40px;
  position: relative;
  background: #FFFFFF;
  border: 2px solid #182E49;
  box-sizing: border-box;
  padding: 0 12px;
  border-radius: 4px;
}
.search-box .search-form {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
}
.search-box .search-form > form {
  width: 100%;
  height: 100%;
}
.search-box .search-form .iconfont,
.search-box .search-form .close-search-popup {
  cursor: pointer;
}
.search-box .search-form .close-search-popup {
  display: none;
}
.search-box .search-select {
  position: relative;
  padding-right: 30px;
  color: var(--heading-color);
}
.search-box .search-select > select {
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  -webkit-appearance: none;
}
.search-box .search-select > label {
  z-index: auto;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  white-space: nowrap;
  pointer-events: none;
}
.search-box .search-select::after {
  content: "\e62a";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  pointer-events: none;
}
.search-box .search {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  border: 0;
}
.search-box .search::-webkit-input-placeholder {
  color: #cccccc;
}
.search-box .search-hot {
  padding-top: 8px;
}
.search-box .search-hot a {
  font-size: 12px;
  margin-right: 20px;
}
/*===页面搜索框===*/
.page-search-box h3.title {
  text-align: center;
  margin: 48px auto 8px;
}
.page-search-box .search-describe {
  font-size: 14px;
  text-align: center;
}
.page-search-box .sale-tag {
  border-radius: 0;
  background: #ED0000;
}
.page-search-box .featured-product-modle {
  margin-top: 24px;
  text-align: center;
}
/*===没有搜索结果===*/
.no-searchdata {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  min-height: 400px;
}
.no-searchdata span {
  font-size: 18px;
  color: #333333;
  line-height: 23px;
}
.no-searchdata .viewall-btn {
  min-width: 200px;
  width: auto;
  padding: 0 10px;
  margin-top: 20px;
}
/*===移动端搜索===*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f4f5f7;
  z-index: 102;
  display: none;
}
@media screen and (max-width: 768px) {
  .search-box {
    display: none;
  }
  /*===页面搜索框===*/
  .page-search-box h3.title {
    margin: 24px 0 4px 0;
  }
  .page-search-box .featured-product-modle {
    margin-top: 24px;
  }
  /*===移动端搜索===*/
  .search-popup .search-box {
    display: block;
    margin: 0;
  }
  .search-popup .search-box .wrap {
    padding: 12px;
    background: #fff;
    height: auto;
    border: 0;
  }
  .search-popup .search-box .search-form > form {
    border: 1px solid #182e49;
    height: 38px;
    border-radius: 4px;
  }
  .search-popup .search-box .search-form .iconfont {
    margin-left: -30px;
    color: rgba(88, 88, 88, 0.6);
  }
  .search-popup .search-box .search-form .close-search-popup {
    display: block;
    flex: none;
    margin-left: 30px;
    color: #528EC1;
  }
  .search-popup .search-box .search-hot {
    padding: 12px;
  }
  .search-popup .search-box .search-hot a {
    color: #585858;
    padding: 8px;
    margin-right: 12px;
    background: rgba(24, 46, 73, 0.06);
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 12px;
  }
}

/**
 * 模板主题色调
 * 所有文本链接a标签颜色
 * 主要按钮，次要按钮主题色调
 * 所有按钮边框统一圆角
 * 标题，文本，价格色调
 * version 0.0.1
 * @date:09/11/2019
 **/
:root {
  --background-color: #fff;
  --white: #fff;
  --heading-color: #000000;
  --text-color: #000000;
  --text-background-color: rgba(123, 75, 53, 0.15);
  --link-color: #7B4B35;
  --secondary-color: #95827D;
  --hr-color: #ccc;
  --placeholder-color: #95827D;
  --border-color: #ccc;
  --disabled-text-color: #fcfcfc;
  --disabled-color: #969696;
  --layout-text-color: #FFF8F4;
  --main-button-text-color: #FFF8F4;
  --main-button-background-color: #56362C;
  --main-button-border-color: #56362C;
  --secondary-button-text-color: #56362C;
  --secondary-button-background-color: #ECD9CC;
  --secondary-button-border-color: #ECD9CC;
  --pay-price-color: #56362C;
  --orig-price-color: #95827D;
  --star-color: #56362C;
  --sale-tag-background-color: #ED4040;
  --sale-tag-border-color: #ED4040;
  --sale-tag-text-color: #fff;
  --success-text-color: #fff;
  --success-background-color: #52C41A;
  --element-space-XL: 24px;
  --text-primary-color: #2E2D23;
  --text-secondary-color: #5D5A46;
  --text-thirdy-color: #9C9676;
  --default-tag-text-color: #5D5A46;
  --default-tag-background-color: #FFFFFF;
  --default-tag-border-color: #EBEAE3;
  --active-tag-text-color: #2E2D23;
  --active-tag-background-color: #FFFFFF;
  --active-tag-border-color: #5D5A46;
}
/*===模板主题统一圆角===*/
.np-ui-textarea,
.np-ui-btn,
.np-ui-input,
.np-ui-select,
.Paypal-buy-now,
input,
select,
.products-tisp,
.reviews,
.np-ui-btn-review,
.currency-tips,
.error-coupon-box,
.cart-coupon-item,
.product-groups-tips {
  border-radius: 0px;
}
/*===主要按钮(np-ui-main-btn) & 次要按钮(np-ui-secondary-btn)===*/
.np-ui-btn {
  font-size: 14px;
  height: 44px;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}
.np-ui-btn.np-ui-main-btn {
  color: var(--main-button-text-color);
  background-color: var(--main-button-background-color);
  border-color: var(--main-button-border-color);
}
.np-ui-btn.np-ui-main-btn .iconfont.loading {
  color: var(--main-button-text-color);
}
.np-ui-btn.np-ui-main-btn a {
  color: var(--main-button-text-color);
}
.np-ui-btn.np-ui-secondary-btn {
  color: var(--secondary-button-text-color);
  background-color: var(--secondary-button-background-color);
  border-color: var(--secondary-button-border-color);
}
.np-ui-btn.np-ui-secondary-btn .iconfont.loading {
  color: var(--secondary-button-text-color);
}
.np-ui-btn:hover {
  opacity: 1;
}
/*========数量选择 Input 样式========*/
.np-ui-input-number {
  width: 160px;
}
.np-ui-input-number .np-ui-input-number-decrease,
.np-ui-input-number .np-ui-input-number-increase {
  width: 40px;
  color: var(--heading-color);
  font-size: 18px;
  border-radius: 0;
  background: #fff;
}
.np-ui-input-number .np-ui-input {
  padding: 0 40px;
  border-color: var(--border-color);
  background: var(--white);
}
.cart-number .np-ui-input-number {
  width: 100px;
}
.cart-number .np-ui-input-number .np-ui-input-number-decrease,
.cart-number .np-ui-input-number .np-ui-input-number-increase {
  width: 30px;
}
.cart-number .np-ui-input-number .np-ui-input {
  padding: 0 30px;
}
/*========商品属性规格选择========*/
.product-types-item {
  color: var(--default-tag-text-color);
  border: 1px solid var(--default-tag-border-color);
  background-color: var(--default-tag-background-color);
}
.product-types-item::before,
.product-types-item::after {
  content: '';
  pointer-events: none;
  position: absolute;
}
.product-types-item::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--default-tag-border-color);
  opacity: 0;
}
.product-types-item.active,
.product-types-item:hover {
  color: var(--active-tag-text-color);
  border-color: var(--active-tag-border-color);
  background-color: var(--active-tag-background-color);
}
.product-types-item.active::before,
.product-types-item:hover::before {
  opacity: 1;
  border-color: var(--active-tag-border-color);
}
.product-types-select > select {
  color: var(--heading-color);
  border: 1px solid var(--heading-color);
}
.product-types-select > select::after {
  color: var(--heading-color);
}
/*=== 商品色板 ===*/
.colorPiece .colorPice-list {
  display: inline-flex;
}
.colorPiece .colorPice-list .swatch-element {
  margin: 0 6px 8px;
}
.colorPiece .colorPice-list .swatch-element .active {
  color: var(--active-tag-text-color);
  border: 1px solid var(--active-tag-border-color);
}
.colorPiece .colorPice-list .list-colorTotle-text {
  color: var(--active-tag-text-color);
  padding: 6px 20px !important;
  border: 1px solid var(--default-tag-border-color);
}
.colorPieceList .colorPice-content {
  margin-bottom: 0;
}
.colorPieceList .colorPice-list {
  display: inline-flex;
}
/*===单选 & 多选 & 分页--颜色===*/
.np-ui-radio.np-ui-radio-active {
  border-color: var(--heading-color);
  background-color: var(--heading-color);
}
.np-ui-checkbox.np-ui-checkbox-active {
  border-color: var(--heading-color);
  background-color: var(--heading-color);
}
.pagination {
  text-align: center;
}
.pagination > li {
  border: 0;
  margin-right: 10px;
}
.pagination > li a {
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.6;
}
.pagination > li:hover,
.pagination > li.active {
  background: none;
}
.pagination > li:hover a,
.pagination > li.active a {
  color: var(--heading-color);
  font-weight: 700;
  opacity: 1;
}
.pagination > li.disabled {
  color: var(--secondary-color);
}
.pagination > li.disabled:hover {
  color: var(--secondary-color);
}
/*===购物车部分 购物车页面 & 侧滑购物车 & 购物车提示等公共部分===*/
.buy-cart-box {
  background: var(--white);
}
.buy-cart-box .buy-product-item .np-ui-input-number .np-ui-input {
  height: 24px;
  line-height: 24px;
}
.buy-cart-box .buy-title,
.buy-cart-box .total-price {
  color: var(--heading-color);
}
.sections h3.cart-title {
  margin: 48px auto;
  text-align: center;
}
.cart-total-price.top {
  display: none;
}
.cart-box {
  margin: 0 auto;
}
.cart-box.empty-wrap {
  padding: 150px 30px 150px;
}
.cart-box.empty-wrap .icon-cart-empty {
  margin: 0 auto 12px;
}
.cart-box h3.title {
  color: var(--heading-color);
  font-size: 32px;
  max-width: 1480px;
  margin: 20px auto;
}
.cart-box .cart-sub-title {
  display: flex;
  border-bottom: 1px solid #f5f5f5;
  padding: 20px;
  justify-content: space-between;
}
.cart-box .cart-sub-title > span {
  width: 140px;
  text-align: left;
}
.cart-box .cart-sub-title > span:nth-of-type(1) {
  width: 120px;
}
.cart-box .cart-sub-title > span:nth-of-type(2) {
  width: calc(100% - 450px);
}
.cart-box .cart-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #f5f5f5;
  padding: 16px 20px;
}
.cart-box .cart-item .cart-img {
  width: 120px;
  height: 120px;
}
.cart-box .cart-item .cart-img img {
  max-height: 120px;
}
.cart-box .cart-item .cart-info {
  width: calc(100% - 140px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-box .cart-item .cart-info .cart-types {
  display: none;
}
.cart-box .cart-item .cart-name {
  width: calc(100% - 450px);
  display: block;
}
.cart-box .cart-item .cart-name a {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  max-height: 48px;
  margin-bottom: 8px;
  display: -webkit-box;
}
.cart-box .cart-item .cart-name .cart-types {
  color: var(--text-color);
  padding: 6px 12px;
  margin-right: 12px;
  background: var(--text-background-color);
  border-radius: 2px;
  display: inline-block;
  width: auto;
  font-size: 12px;
}
.cart-box .cart-item .cart-price,
.cart-box .cart-item .cart-number,
.cart-box .cart-item .cart-del {
  width: 140px;
}
.cart-box .cart-item .cart-del {
  font-size: 18px;
  font-weight: 700;
  padding-right: 20px;
}
.cart-box .flex-cart {
  display: flex;
  justify-content: space-between;
}
.cart-box .cart-comments {
  max-width: 100%;
  margin-bottom: 20px;
}
.cart-box .cart-comments > h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 40px;
}
.cart-box .cart-comments textarea {
  padding: 14px 20px;
  margin: 0 auto;
  height: 120px;
}
.cart-box .cart-coupon-main,
.cart-box .cart-discount,
.cart-box .cart-discount-tips {
  border: 0;
  padding: 0;
}
.cart-box .cart-coupon-main {
  border-bottom: 1px solid rgba(103, 114, 121, 0.3);
  border-top: 1px solid rgba(103, 114, 121, 0.3);
  padding: 8px 0;
}
.cart-box .cart-coupon-main .cart-coupon-box .np-ui-btn {
  min-width: 108px;
}
.cart-box .cart-total {
  min-width: 350px;
  padding: 40px 0px 20px 20px;
}
.cart-box .cart-total .np-ui-btn {
  width: 100%;
}
.cart-box .cart-total .cart-total-describe {
  padding-top: 10px;
}
.cart-box .cart-total strong {
  font-weight: normal;
}
.cart-box .cart-total .cart-total-price .font16,
.cart-box .cart-total .cart-total-price .font20 {
  font-size: 20px;
  font-weight: 400;
}
.cart-box .cart-total .cart-total-price .font16 strong,
.cart-box .cart-total .cart-total-price .font20 strong {
  font-size: 20px;
}
.cart-box .cart-wrap {
  display: flex;
  justify-content: space-between;
}
.cart-box .cart-wrap .cart-left {
  width: 100%;
  height: fit-content;
  background: #fff;
  padding-bottom: 1px;
}
.cart-box .cart-wrap .cart-right {
  position: relative;
  margin-left: 20px;
  width: 395px;
  flex: none;
}
.cart-box .cart-wrap .cart-right .flex-cart {
  flex-direction: column;
  width: 355px;
  height: auto;
  position: sticky;
  top: 120px;
  padding: 20px;
  background: #F5F5F5;
}
.cart-box .cart-wrap .cart-right .flex-cart .cart-total {
  min-width: auto;
  padding: 0;
}
.cart-box .cart-wrap .cart-right .flex-cart .cart-comments > h3 {
  margin-top: 0;
}
.cart-box .cart-discount-tips {
  font-size: 12px;
}
.cart-box .currency-tips {
  margin: 20px;
}
.icon-cart-empty {
  background: #f2f2f2;
}
.cart-coupon-item {
  border: 1px solid #d9d9d9;
  background: #f5f5f5;
}
.cartlist-discount-tips {
  color: #eee;
  background: rgba(51, 51, 51, 0.9);
}
.cartlist-discount-tips::before {
  border-color: rgba(51, 51, 51, 0.9) transparent transparent transparent;
}
.cartlist-discount-tips span {
  color: rgba(51, 51, 51, 0.9);
}
.products-tisp {
  display: inline-block;
  width: fit-content;
}
/*===Paypal 弹窗===*/
.buy-now-main {
  border: 1px solid #000;
  box-sizing: border-box;
}
.buy-now-main .buy-now-title .icon-close {
  width: 32px;
  height: 32px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  top: 5px;
}
.buy-now-main .buy-now-submit .np-ui-btn.np-ui-main-btn {
  max-width: 100% !important;
}
@media screen and (max-width: 768px) {
  .sale-discount {
    top: -8px;
    left: -8px;
  }
  /*===购物车部分 购物车页面 & 侧滑购物车 & 购物车提示等公共部分===*/
  .sections h3.cart-title {
    margin: 24px 0;
  }
  .cart-total-price.top {
    display: block;
    padding: 0 12px 20px;
    color: var(--heading-color);
    text-align: center;
  }
  .cart-total-price.top .font16 {
    margin-right: 4px;
  }
  .cart-box .cart-item {
    padding: 12px 20px;
    margin: 0;
  }
  .cart-box .cart-item .cart-info {
    margin: 0;
    flex-wrap: wrap;
  }
  .cart-box .cart-item .cart-info .cart-name a {
    font-size: 14px;
    line-height: 20px;
    height: auto;
    max-height: 40px;
    margin-bottom: 12px;
  }
  .cart-box .cart-item .cart-info .cart-name .cart-types {
    margin: 0;
    margin-bottom: 12px;
  }
  .cart-box .cart-item .cart-info .cart-types {
    display: none;
  }
  .cart-box .cart-item .cart-info .cart-price {
    padding: 0;
    margin-bottom: 12px;
  }
  .cart-box h3.title {
    font-size: 24px;
    margin: 30px 0;
  }
  .cart-box .cart-sub-title {
    display: none;
  }
  .cart-box .flex-cart {
    flex-wrap: wrap;
  }
  .cart-box .flex-cart .cart-total {
    width: 100%;
    padding: 0;
    min-width: 300px;
  }
  .cart-box .cart-coupon-main {
    padding-bottom: 10px;
  }
  .cart-box .cart-wrap {
    display: block;
  }
  .cart-box .cart-wrap .cart-right {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .cart-box .cart-wrap .cart-right .flex-cart {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
  }
  .cart-box .cart-wrap .cart-right .cart-coupon-main .cart-coupon-box .np-ui-input {
    width: 100%;
    margin-right: 12px;
    border-radius: 3px;
  }
  /*===商品色板===*/
  .colorPieceList .colorPice-list .list-colorTotle-texts {
    width: 22px;
    height: 22px;
  }
  .colorPieceList .colorPice-list .swatch-element .active {
    width: 20px;
    height: 20px;
  }
  .colorPieceList .colorPice-list .swatch-element .active .setCommens {
    width: 18px;
    height: 18px;
  }
  .colorPieceList .colorPice-list .swatch-element .setCommens {
    width: 22px;
    height: 22px;
  }
}

.blog-posts ul {
  display: grid;
  grid-gap: 16px 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}
.blog-posts li {
  text-align: left;
}
.blog-posts li .picture {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.blog-posts li .picture a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.blog-posts li .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-posts li .title,
.blog-posts li .describe,
.blog-posts li .author {
  padding: 0 8px;
}
.blog-posts li .title {
  margin-top: 16px;
  font-weight: 700;
}
.blog-posts li .title a {
  display: block;
  font-size: 18px;
}
.blog-posts li .describe {
  margin-top: 16px;
  font-size: 14px;
}
.blog-posts li .author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: var(--text-color);
  font-size: 12px;
}
.blog-posts li .author > span:first-of-type {
  display: flex;
  align-items: center;
}
.blog-posts li .author img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .blog-posts ul {
    display: flex;
  }
  .blog-posts li .title {
    margin-top: 12px;
  }
  .blog-posts.grid ul {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.brands ul {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: var(--element-space-XL);
}
.brands ul .grid-item {
  text-align: left;
  width: 100%;
  max-width: calc((100% - 20px)/2);
}
.brands ul .grid-item .picture {
  position: relative;
  padding-left: 100%;
  padding-bottom: 51.8309%;
  width: auto;
  overflow: hidden;
}
.brands ul .grid-item .picture a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.brands ul .grid-item .picture a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brands ul .grid-item .title {
  margin-top: 8px;
}
.brands ul .grid-item .view-more {
  opacity: 0.6;
  margin-top: 8px;
  display: block;
}
@media screen and (max-width: 768px) {
  .brands ul {
    margin-top: 0;
    flex-wrap: wrap;
    gap: 8px;
  }
  .brands ul .grid-item {
    width: calc((100% - 8px)/2);
    max-width: 100%;
  }
  .brands ul .grid-item .title,
  .brands ul .grid-item .view-more {
    display: none;
  }
  .brands ul .grid-item .picture {
    padding-bottom: 51.7647%;
  }
}

/*=====活动商品(deals-products)===*/
.deals-products {
  transition: all 0.5s;
}
.deals-products .featured-product-modle {
  display: grid;
  grid-template-columns: calc((100% - 80px)/6) auto;
  grid-gap: 16px;
}
.deals-products .featured-product-modle.left {
  text-align: left;
}
.deals-products .featured-product-modle.center {
  text-align: center;
}
.deals-products .featured-product-modle.right {
  text-align: right;
}
.deals-products .left-banner {
  overflow: hidden;
}
.deals-products .left-banner a {
  width: 100%;
  height: 100%;
  display: block;
}
.deals-products .left-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deals-products .star {
  display: none;
}
.deals-products .collection-discount-tag {
  position: absolute;
  right: auto;
  top: 0;
  bottom: auto;
  left: 0;
  display: block;
  text-align: left;
}
.deals-products .collection-discount-tag .sale-tag,
.deals-products .collection-discount-tag .big-group-tag {
  position: relative;
  top: 5px;
  left: 5px;
}
.deals-products .collection-discount-tag .sale-tag {
  top: 7px;
  display: inline-flex;
}
.deals-products .collection-discount-tag .big-group-tag {
  border-radius: 5px;
}
.deals-products .swiper-container {
  width: 100%;
}
.deals-products .swiper-button-next,
.deals-products .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
}
.deals-products .swiper-button-next {
  right: 0;
}
.deals-products .swiper-button-prev {
  left: 0;
}
.deals-products .swiper-slide {
  background: var(--white);
  position: relative;
  width: 210px;
}
.deals-products .img-wrapper {
  position: relative;
  margin-bottom: 12px;
  padding-left: 100%;
  padding-bottom: 100%;
  width: auto;
  overflow: hidden;
}
.deals-products .img-wrapper .featured-img {
  opacity: 1;
  z-index: 1;
}
.deals-products .img-wrapper .second-img {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.deals-products .img-wrapper a {
  display: block;
  height: 100%;
}
.deals-products .img-wrapper a > div {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.deals-products .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deals-products .good-info {
  padding: 0 8px 12px;
}
.deals-products .good-info .product-name {
  display: -webkit-box;
  word-break: break-all;
  margin-bottom: 8px;
}
.deals-products .good-info .product-name a {
  color: var(--heading-color);
}
.deals-products .good-info .star {
  margin: 0 0 10px;
}
.deals-products .good-info .price .orig-price {
  margin-top: 4px;
  display: inline-block;
}
.deals-products .colorPieceList {
  display: none;
}
@media screen and (min-width: 768px) {
  .deals-products .img-wrapper.single-img:hover .featured-img {
    opacity: 1;
    z-index: 1;
  }
  .deals-products .img-wrapper:hover .featured-img {
    opacity: 0;
    z-index: -1;
  }
  .deals-products .img-wrapper:hover .second-img {
    opacity: 1;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .deals-products .featured-product-modle {
    grid-template-columns: 1fr;
  }
  .deals-products .left-banner,
  .deals-products .swiper-button-next,
  .deals-products .swiper-button-prev {
    display: none;
  }
  .deals-products .swiper-container {
    width: 100%;
  }
  .deals-products .good-info .product-name {
    display: none;
  }
}

.events-highlights {
  width: 100%;
  max-width: 1800px;
  margin-top: 30px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.events-highlights .title-box {
  text-align: center;
  margin: var(--element-space-XL) auto 0 !important;
}
.events-highlights .swiper-container {
  margin: 0 60px;
  padding: 50px 0;
}
.events-highlights .events-highlights-container {
  position: relative;
}
.events-highlights .highlights-des {
  font-size: 20px;
  line-height: 130%;
  padding: 8px 20px;
  text-align: center;
}
.events-highlights .swiper-slide {
  width: 500px;
  position: relative;
}
.events-highlights .swiper-slide .play-button {
  font-size: 26px;
  width: 64px;
  height: 64px;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  padding: 2px 0 0 4px;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.events-highlights .swiper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.events-highlights .events-highlights-image {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}
.events-highlights .events-highlights-image svg,
.events-highlights .events-highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 1s;
}
.events-highlights .swiper-slide:hover .events-highlights-image img {
  transform: scale(1.1);
}
.events-highlights .swiper-container {
  height: 100%;
}
.events-highlights .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(1) translateZ(0) !important;
}
.events-highlights .swiper-slide-active,
.events-highlights .swiper-slide-duplicate-active {
  z-index: 10;
  transform: scale(1.2) translateZ(0) !important;
}
.events-highlights .swiper-pagination {
  display: none;
}
.events-highlights .swiper-button-next,
.events-highlights .swiper-button-prev {
  width: 27px;
  height: 44px;
  color: #868686 !important;
  background: none;
}
.events-highlights .swiper-button-next:after,
.events-highlights .swiper-button-prev:after {
  content: none !important;
}
.events-highlights .highlights-video-mask {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  position: fixed;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}
.events-highlights .highlights-video-section {
  height: auto;
  width: 100%;
  max-width: 1200px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 111;
  display: none;
}
.events-highlights .highlights-video-section .highlights-video-close {
  text-align: right;
  cursor: pointer;
}
.events-highlights .highlights-video-section .highlights-video-close svg {
  color: #FFF;
  width: 30px;
  height: 30px;
}
.events-highlights .highlights-video-section .highlights-video-play {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.events-highlights .highlights-video-section .highlights-video-play div,
.events-highlights .highlights-video-section .highlights-video-play iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .events-highlights {
    padding: 0 16px;
  }
  .events-highlights .swiper-container {
    padding: 30px 0;
    margin: 0;
  }
  .events-highlights .highlights-des {
    font-size: 18px;
    padding: 5px 20px;
  }
  .events-highlights .swiper-pagination {
    display: block;
  }
  .events-highlights .swiper-button-next svg,
  .events-highlights .swiper-button-prev svg {
    color: #FFF;
  }
  .events-highlights .swiper-slide-active,
  .events-highlights .swiper-slide-duplicate-active {
    z-index: 10;
    transform: scale(1) translateZ(0) !important;
  }
}

/*===商品分类（featured-category）===*/
.featured-category .grid.grid-gap {
  grid-gap: 16px 16px;
}
.featured-category .grid-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s;
}
.featured-category .grid-item.circle img,
.featured-category .grid-item.circle .grid-item-title {
  border-radius: 100%;
}
.featured-category .grid-item .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.featured-category .grid-item .img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.featured-category .grid-item .grid-item-title {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  color: var(--layout-text-color);
  font-size: 20px;
  background: rgba(0, 0, 0, 0.3);
}
.featured-category .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-category .placeholder-svg {
  border: 0;
}
@media screen and (min-width: 768px) {
  .featured-category .grid {
    display: grid;
  }
  .featured-category .grid.grid-pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-category .grid.grid-pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-category .grid.grid-pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .featured-category .grid.grid-pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .featured-category .grid.grid-pc-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .featured-category .grid-item:hover img {
    filter: brightness(0.5);
  }
}
@media screen and (max-width: 768px) {
  .featured-category .grid.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .featured-category .grid.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-category .grid.grid-gap {
    grid-gap: 8px 8px;
  }
  .featured-category .grid-item .grid-item-title {
    font-size: 16px;
  }
}

/*=====活动商品 && 精选商品===*/
.featured-product {
  transition: all 0.5s;
}
.featured-product .featured-product-modle.ratio .img-wrapper {
  padding-left: 100%;
  padding-bottom: 100%;
  width: auto;
  overflow: hidden;
  background: #f1f2f3;
}
.featured-product .featured-product-modle.ratio .img-wrapper a {
  display: block;
  height: 100%;
}
.featured-product .featured-product-modle.ratio .img-wrapper a > div {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.featured-product .featured-product-modle.ratio .img-wrapper img {
  height: 100%;
  object-fit: cover;
}
.featured-product .featured-product-modle.left {
  text-align: left;
}
.featured-product .featured-product-modle.center {
  text-align: center;
}
.featured-product .featured-product-modle.right {
  text-align: right;
}
.featured-product .featured-product-modle .collection-discount-tag {
  position: absolute;
  right: auto;
  top: 0;
  bottom: auto;
  left: 0;
  display: block;
  text-align: left;
}
.featured-product .featured-product-modle .collection-discount-tag .sale-tag,
.featured-product .featured-product-modle .collection-discount-tag .big-group-tag {
  position: relative;
  top: 5px;
  left: 5px;
}
.featured-product .featured-product-modle .collection-discount-tag .sale-tag {
  top: 7px;
  display: inline-flex;
}
.featured-product .featured-product-modle .collection-discount-tag .big-group-tag {
  border-radius: 5px;
}
.featured-product .featured-product-modle .swiper-container {
  width: 100%;
}
.featured-product .featured-product-modle .swiper-slide {
  position: relative;
}
.featured-product .featured-product-modle .swiper-navigation {
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: var(--element-space-XL);
}
.featured-product .featured-product-modle .swiper-button-next,
.featured-product .featured-product-modle .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: none;
  -webkit-font-smoothing: antialiased;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.featured-product .featured-product-modle .swiper-button-prev {
  left: 0;
}
.featured-product .featured-product-modle .swiper-button-next {
  right: 0;
}
.featured-product .featured-product-modle .star > span {
  display: none;
}
.featured-product .img-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-product .img-wrapper .add-to-cart {
  width: 100%;
}
.featured-product .img-wrapper .featured-img {
  opacity: 1;
  z-index: 1;
}
.featured-product .img-wrapper .second-img {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.featured-product .img-wrapper img {
  width: 100%;
}
.featured-product .good-info {
  padding: 0 8px;
}
.featured-product .good-info .product-name {
  display: -webkit-box;
  word-break: break-all;
  margin-bottom: 8px;
}
.featured-product .good-info .product-name a {
  color: var(--heading-color);
}
.featured-product .add-to-cart {
  width: calc((100% - 16px));
  text-transform: capitalize;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 13px 0;
  display: none;
}
.featured-product .add-to-cart.np-ui-btn-disabled {
  color: var(--disabled-text-color);
  background-color: var(--disabled-color);
  border-color: var(--disabled-color);
  cursor: default;
}
.featured-product .star .score span.iconfont {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .featured-product {
    /*===网格布局==*/
  }
  .featured-product .img-wrapper.single-img:hover .featured-img {
    opacity: 1;
    z-index: 1;
  }
  .featured-product .img-wrapper:hover .featured-img {
    opacity: 0;
    z-index: -1;
  }
  .featured-product .img-wrapper:hover .second-img {
    opacity: 1;
    z-index: 1;
  }
  .featured-product .img-wrapper img {
    width: 100%;
  }
  .featured-product .swiper-slide:hover .img-wrapper .add-to-cart {
    display: inline-flex;
  }
  .featured-product .slideshow-pc-2 .swiper-slide {
    width: calc((100% - 16px)/2);
  }
  .featured-product .slideshow-pc-3 .swiper-slide {
    width: calc((100% - 32px)/3);
  }
  .featured-product .slideshow-pc-4 .swiper-slide {
    width: calc((100% - 48px)/4);
  }
  .featured-product .slideshow-pc-5 .swiper-slide {
    width: calc((100% - 64px)/5);
  }
  .featured-product .slideshow-pc-6 .swiper-slide {
    width: calc((100% - 80px)/6);
  }
  .featured-product .grid-pc-2,
  .featured-product .grid-pc-3,
  .featured-product .grid-pc-4,
  .featured-product .grid-pc-5,
  .featured-product .grid-pc-6 {
    display: grid;
    grid-gap: 24px 16px;
  }
  .featured-product .grid-pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-product .grid-pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-product .grid-pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .featured-product .grid-pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .featured-product .grid-pc-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .featured-product {
    /*===网格布局==*/
  }
  .featured-product .featured-product-modle .swiper-button-next,
  .featured-product .featured-product-modle .swiper-button-prev {
    display: none;
  }
  .featured-product .good-info .star {
    display: block;
    height: auto;
  }
  .featured-product .good-info .star .score {
    display: block;
  }
  .featured-product .add-to-cart {
    display: block;
    position: relative;
    margin: 8px auto 0;
  }
  .featured-product .img-wrapper .add-to-cart {
    display: none;
  }
  .featured-product .slideshow .swiper-slide {
    width: calc((100% - 16px)/2.2);
  }
  .featured-product .grid-1,
  .featured-product .grid-2 {
    display: grid;
    grid-gap: 16px 8px;
  }
  .featured-product .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*===图片宫格（featured-images-grid）===*/
.featured-images-grid {
  padding: 24px 0;
}
.featured-images-grid .grid {
  display: grid;
}
.featured-images-grid .grid.grid-gap {
  grid-gap: 16px 16px;
}
.featured-images-grid .grid .picture {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.featured-images-grid .grid .picture.height-1 {
  padding-bottom: calc(50% - 8px);
}
.featured-images-grid .grid .picture.height-2 {
  padding-bottom: 50%;
}
.featured-images-grid .grid .picture.height-3 {
  padding-bottom: calc(200% + 16px);
}
.featured-images-grid .grid .picture.height-4 {
  padding-bottom: 200%;
}
.featured-images-grid .grid .picture a {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.featured-images-grid .grid .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .featured-images-grid {
    padding: 12px 0;
  }
  .featured-images-grid .grid.grid-pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-images-grid .grid.grid-pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-images-grid .grid.grid-pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .featured-images-grid .grid.grid-pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .featured-images-grid .grid.grid-pc-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .featured-images-grid .grid.grid-gap {
    grid-gap: 8px 8px;
  }
  .featured-images-grid .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-images-grid .grid .picture.height-1 {
    padding-bottom: calc(50% - 4px);
  }
  .featured-images-grid .grid .picture.height-3 {
    padding-bottom: calc(200% + 8px);
  }
}

/*=====单个商品(featured-single-product)=====*/
.featured-single-product {
  /*=====Swiper 轮播图 =====*/
  /*===== 产品摘要 =====*/
}
.featured-single-product.wide-screen {
  max-width: 100%;
}
.featured-single-product .content-height {
  margin-bottom: -8vh;
  padding-bottom: 0;
}
.featured-single-product .recom-item {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 580px;
}
.featured-single-product .recom-item.paddL80 {
  padding-top: 20px;
}
.featured-single-product .product-details-banner {
  position: relative;
}
.featured-single-product .product-details-banner .gallery-top .swiper-slide img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
.featured-single-product .product-details-banner .gallery-top .swiper-pagination {
  display: none;
}
.featured-single-product .product-details-banner .gallery-thumbs .swiper-slide {
  max-width: 25%;
  opacity: 1;
  box-sizing: border-box;
}
.featured-single-product .product-details-banner .gallery-thumbs .swiper-wrapper {
  margin: 20px 0;
}
.featured-single-product .product-details-banner .swiper-button-prev-thumb,
.featured-single-product .product-details-banner .swiper-button-next-thumb {
  display: inline-block;
  width: 40px;
  color: var(--heading-color);
  font-weight: 700;
  cursor: pointer;
}
.featured-single-product .product-details-banner .swiper-button-prev-thumb.swiper-button-disabled,
.featured-single-product .product-details-banner .swiper-button-next-thumb.swiper-button-disabled {
  opacity: 0.5;
  cursor: grab;
  pointer-events: none;
}
.featured-single-product h4.title,
.featured-single-product .price,
.featured-single-product .star,
.featured-single-product .types-item,
.featured-single-product .products-tisp,
.featured-single-product .discount-tag,
.featured-single-product .cart-success,
.featured-single-product .inventory-threshold-num {
  margin: 0 auto 20px;
}
.featured-single-product h4.title {
  text-align: center;
  font-size: 26px;
  width: 100%;
}
.featured-single-product h4.title a {
  font-size: 26px;
  color: var(--text-primary-color);
}
.featured-single-product h4.title a:hover {
  text-decoration: underline;
}
.featured-single-product .sub-title {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 12px;
  color: var(--text-secondary-color);
}
.featured-single-product .describe {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.featured-single-product .types-item {
  position: relative;
  max-width: 66.66%;
}
.featured-single-product .types-item.quantity label {
  font-size: 16px;
  display: block;
  padding-bottom: 10px;
  font-weight: 700;
}
.featured-single-product .types-item.button {
  margin-top: 15px;
}
.featured-single-product .types-item .font14 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
}
.featured-single-product .types-item .font14 > span:nth-of-type(1) {
  text-transform: capitalize;
  color: var(--text-thirdy-color);
}
.featured-single-product .types-item .font14 > span:nth-of-type(2) {
  display: none;
}
.featured-single-product .view-detail {
  padding: 20px 0;
}
.featured-single-product .view-detail a {
  font-size: 16px;
  transition: all 0.8s ease;
  color: var(--heading-color);
}
.featured-single-product .view-detail a .iconfont {
  margin-left: 5px;
  font-size: 12px;
}
.featured-single-product .view-detail a:hover,
.featured-single-product .view-detail a:active {
  margin-left: 8px;
  transition: all 0.8s ease;
}
.featured-single-product img {
  max-width: 100%;
  height: auto;
}
.featured-single-product .price {
  font-size: 26px;
  font-weight: 700;
}
.featured-single-product .flex-attribute {
  display: flex;
  text-align: left;
}
.featured-single-product .flex-attribute.type-tag {
  flex-wrap: wrap;
  margin-bottom: 0;
}
.featured-single-product .flex-attribute.type-tag > div {
  text-align: left;
  margin-bottom: 30px;
}
.featured-single-product .flex-attribute > div {
  padding: 0 10px;
}
.featured-single-product .product-types-list .product-types-item {
  font-style: normal;
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  margin: 10px 5px 0 5px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.featured-single-product .product-types-select {
  position: relative;
  margin-bottom: 12px;
}
.featured-single-product .product-types-select > select {
  height: 40px;
  padding: 0 5px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.featured-single-product .product-types-select::after {
  font-family: iconfont !important;
  -webkit-font-smoothing: antialiased;
  content: "\e622";
  font-size: 14px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-weight: 700;
}
.featured-single-product .np-ui-btn,
.featured-single-product .J-PaypalBtn {
  width: 100%;
  max-width: 66.66%;
  margin: 0 auto;
  margin-bottom: 12px;
}
.featured-single-product .J-PaypalBtn {
  width: 100%;
  max-width: 300px;
  margin-bottom: 12px;
  margin: 0 auto;
}
.featured-single-product .buy-now-main .buy-now-submit .np-ui-btn {
  max-width: 100%;
}
.featured-single-product .cart-success {
  padding-bottom: 10px;
  color: var(--heading-color);
  display: none;
}
.featured-single-product .cart-success::before {
  content: "\e645";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.featured-single-product .cart-success a {
  text-decoration: underline;
  margin-left: 2px;
}
.featured-single-product .products-tisp {
  margin: 20px auto 0px;
}
.featured-single-product .inventory-threshold-num {
  font-size: 18px;
  font-weight: 700;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .featured-single-product .recommend {
    flex-wrap: wrap;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .featured-single-product .recom-item {
    width: 100%;
  }
  .featured-single-product .recom-item.tag .gallery-thumbs {
    height: 0;
    overflow: hidden;
  }
  .featured-single-product .recom-item.thumbnail .gallery-top .swiper-pagination {
    display: none;
  }
  .featured-single-product .price {
    margin-top: 20px;
  }
  .featured-single-product h4.title {
    font-size: 18px;
    margin: 0;
  }
  .featured-single-product h4.title a {
    font-size: 18px;
  }
  .featured-single-product .types-item .font14 {
    font-size: 12px;
  }
  .featured-single-product .flex-btn {
    flex-wrap: wrap;
    padding: 0 10px;
  }
  .featured-single-product .flex-btn .np-ui-btn,
  .featured-single-product .flex-btn .J-PaypalBtn {
    max-width: 100%;
  }
  .featured-single-product .flex-attribute > div {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .featured-single-product .inventory-threshold-num {
    font-size: 14px;
  }
}

/*===文本模块===*/
.featured-text {
  padding: 72px 0;
  box-sizing: border-box;
}
.featured-text .title-box {
  margin-bottom: 0;
}
.featured-text .describe {
  margin-top: 8px;
}
.featured-text .model-button {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .featured-text {
    padding: 60px 0;
  }
  .featured-text.full-screen {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*===背景单图===*/
.image-with-text-overlay {
  background: #fff;
}
.image-with-text-overlay .sections {
  display: flex;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.image-with-text-overlay .model-image,
.image-with-text-overlay .model-text {
  width: 100%;
}
.image-with-text-overlay .model-image::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.image-with-text-overlay .model-image.fit-image {
  height: auto;
}
.image-with-text-overlay .model-image.large {
  height: 704px;
}
.image-with-text-overlay .model-image.medium {
  height: 530px;
}
.image-with-text-overlay .model-image.small {
  height: 354px;
}
.image-with-text-overlay .model-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.image-with-text-overlay .model-text {
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  text-align: center;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 1560px;
}
.image-with-text-overlay .model-text > a {
  display: block;
  padding: 12px 32px;
}
.image-with-text-overlay .model-text.hidden {
  display: none;
}
.image-with-text-overlay .model-text.left {
  text-align: left;
}
.image-with-text-overlay .model-text.center {
  text-align: center;
}
.image-with-text-overlay .model-text.right {
  text-align: right;
}
.image-with-text-overlay .model-text .describe {
  padding-bottom: 24px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 768px) {
  .image-with-text-overlay .model-image.large {
    height: 522px;
  }
  .image-with-text-overlay .model-image.medium {
    height: 392px;
  }
  .image-with-text-overlay .model-image.small {
    height: 260px;
  }
  .image-with-text-overlay .model-text > a {
    display: block;
    padding: 12px 16px;
  }
}

/*===图片文本===*/
.image-with-text {
  display: flex;
  justify-content: start;
  align-items: center;
}
.image-with-text.left {
  flex-direction: row;
}
.image-with-text.right {
  flex-direction: row-reverse;
}
.image-with-text .model-image,
.image-with-text .model-text {
  width: 50%;
}
.image-with-text .model-image {
  overflow: hidden;
}
.image-with-text .model-image > img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 320px;
}
.image-with-text .model-text {
  padding: 36px;
  box-sizing: border-box;
}
.image-with-text .model-text.left {
  text-align: left;
}
.image-with-text .model-text.center {
  text-align: center;
}
.image-with-text .model-text.right {
  text-align: right;
}
.image-with-text .model-text .describe {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .image-with-text {
    flex-wrap: wrap;
  }
  .image-with-text.left {
    flex-direction: column;
  }
  .image-with-text.right {
    flex-direction: column-reverse;
  }
  .image-with-text .model-image,
  .image-with-text .model-text {
    width: 100%;
  }
  .image-with-text .model-text {
    padding: 20px 24px;
  }
  .image-with-text .model-image > img {
    max-height: auto;
  }
}

.logo-list {
  padding: 54px 0;
}
.logo-list .sections.text-left ul {
  justify-content: flex-start;
}
.logo-list .sections.text-center ul {
  justify-content: center;
}
.logo-list .sections.text-right ul {
  justify-content: flex-end;
}
.logo-list ul {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.logo-list ul .grid-item {
  position: relative;
  width: calc((100% - 80px)/6);
}
.logo-list ul .grid-item .picture {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.logo-list ul .grid-item .picture a {
  width: 100%;
}
.logo-list ul .grid-item .picture a::before {
  content: '';
  display: block;
}
.logo-list ul .grid-item .picture a img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .logo-list {
    padding: 42px 0;
  }
  .logo-list ul {
    display: grid;
    gap: 8;
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-list ul .grid-item {
    width: 100%;
  }
}

/*=====单个商品=====*/
.single-product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.single-product .sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*===== Swiper 轮播图 =====*/
  /*===== 产品摘要 =====*/
}
.single-product .sections .recom-item {
  width: 50%;
  flex: none;
  /*===商品图样式=标签===*/
  /*===商品图样式=缩略图===*/
}
.single-product .sections .recom-item.paddL80 {
  padding: 0 24px;
  box-sizing: border-box;
}
.single-product .sections .recom-item.paddL80.left {
  text-align: left;
}
.single-product .sections .recom-item.paddL80.left .colorPice-list,
.single-product .sections .recom-item.paddL80.left .share-this,
.single-product .sections .recom-item.paddL80.left .good-quantity-sizeChart,
.single-product .sections .recom-item.paddL80.left .discount-tag {
  justify-content: flex-start;
}
.single-product .sections .recom-item.paddL80.left .colorPiece .colorPice-list,
.single-product .sections .recom-item.paddL80.left .product-types-item {
  margin-left: -6px;
}
.single-product .sections .recom-item.paddL80.center {
  text-align: center;
}
.single-product .sections .recom-item.paddL80.center .colorPice-list,
.single-product .sections .recom-item.paddL80.center .share-this,
.single-product .sections .recom-item.paddL80.center .good-quantity-sizeChart,
.single-product .sections .recom-item.paddL80.center .discount-tag {
  justify-content: center;
}
.single-product .sections .recom-item.paddL80.right {
  text-align: right;
}
.single-product .sections .recom-item.paddL80.right .colorPice-list,
.single-product .sections .recom-item.paddL80.right .share-this,
.single-product .sections .recom-item.paddL80.right .good-quantity-sizeChart,
.single-product .sections .recom-item.paddL80.right .discount-tag {
  justify-content: flex-end;
}
.single-product .sections .recom-item.paddL80.right .colorPiece .colorPice-list,
.single-product .sections .recom-item.paddL80.right .product-types-item {
  margin-right: -6px;
}
.single-product .sections .recom-item.tag .gallery-thumbs {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
}
.single-product .sections .recom-item.tag .swiper-button-next,
.single-product .sections .recom-item.tag .swiper-button-prev {
  display: none;
}
.single-product .sections .recom-item.thumbs .gallery-thumbs {
  width: 100%;
  max-width: 520px;
}
.single-product .sections .recom-item.thumbs .gallery-top .swiper-pagination {
  display: none;
}
.single-product .sections .product-details-banner {
  position: relative;
}
.single-product .sections .product-details-banner .gallery-top {
  width: 100%;
  height: 100%;
}
.single-product .sections .product-details-banner .gallery-top .swiper-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.single-product .sections .product-details-banner .gallery-top:hover .expand-img {
  display: flex;
}
.single-product .sections .product-details-banner .gallery-thumbs {
  margin-top: 20px;
}
.single-product .sections .product-details-banner .gallery-thumbs .swiper-slide {
  opacity: 1;
  box-sizing: border-box;
}
.single-product .sections .product-details-banner .gallery-thumbs .swiper-slide-thumb-active {
  border: 1px solid #000;
}
.single-product .sections .product-details-banner .swiper-button-next {
  right: 0;
}
.single-product .sections .product-details-banner .swiper-button-prev {
  left: 0;
}
.single-product .sections .product-details-banner .swiper-button-next,
.single-product .sections .product-details-banner .swiper-button-prev {
  top: auto;
  bottom: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  background: none;
  z-index: 2;
  text-align: center;
  color: var(--heading-color);
  font-weight: 700;
}
.single-product .sections .product-details-banner .swiper-slide-min {
  overflow: hidden;
  display: flex;
  border: 1px solid #fff;
  padding: 1px;
  border-radius: 3px;
  height: 80px;
}
.single-product .sections .product-details-banner .swiper-slide-min > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.single-product .sections .product-details-banner .swiper-slide-min > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product .sections h4.title,
.single-product .sections .price,
.single-product .sections .star,
.single-product .sections .types-item,
.single-product .sections .products-tisp,
.single-product .sections .discount-tag,
.single-product .sections .cart-success,
.single-product .sections .inventory-threshold-num {
  margin: 0 0 20px;
}
.single-product .sections .good-quantity-tips {
  padding-bottom: 0;
}
.single-product .sections .cart-success {
  margin-top: 20px;
  display: none;
}
.single-product .sections h4.title {
  font-size: 28px;
  margin-bottom: 12px;
}
.single-product .sections h4.title a {
  font-size: 28px;
  color: var(--text-primary-color);
}
.single-product .sections .sub-title {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 12px;
  color: var(--text-secondary-color);
}
.single-product .sections .view-detail {
  padding: 20px 0;
}
.single-product .sections .view-detail a {
  font-size: 16px;
  transition: all 0.8s ease;
  color: var(--heading-color);
}
.single-product .sections .view-detail a .iconfont {
  margin-left: 5px;
  font-size: 12px;
}
.single-product .sections .view-detail a:hover,
.single-product .sections .view-detail a:active {
  margin-left: 8px;
  transition: all 0.8s ease;
}
.single-product .sections .price .pay-price {
  font-size: 16px;
  font-weight: 700;
}
.single-product .sections .price .orig-price {
  font-size: 16px;
  margin-left: 4px;
}
.single-product .sections .types-item {
  position: relative;
}
.single-product .sections .types-item.quantity label {
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
}
.single-product .sections .types-item.button {
  margin-top: 15px;
}
.single-product .sections .types-item .font14 {
  margin: 0;
  padding: 0 0 8px;
  font-size: 14px;
}
.single-product .sections .types-item .font14 > span:nth-of-type(1) {
  text-transform: capitalize;
  color: var(--text-thirdy-color);
}
.single-product .sections .types-item .font14 > span:nth-of-type(2) {
  display: none;
}
.single-product .sections img {
  max-width: 100%;
  height: auto;
}
.single-product .sections .product-types-list {
  font-size: 0;
}
.single-product .sections .product-types-item {
  font-style: normal;
  position: relative;
  display: inline-block;
  padding: 6px 20px;
  margin: 0 6px 8px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.single-product .sections .product-types-select {
  position: relative;
  margin-bottom: 12px;
  max-width: 416px;
  display: inline-flex;
  width: 100%;
}
.single-product .sections .product-types-select > select {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
  text-transform: uppercase;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.single-product .sections .product-types-select::after {
  font-family: iconfont !important;
  -webkit-font-smoothing: antialiased;
  content: "\e622";
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-weight: 700;
}
.single-product .sections .np-ui-btn,
.single-product .sections .J-PaypalBtn,
.single-product .sections .customize-product-btn {
  width: 100%;
  max-width: 416px;
  margin-bottom: 12px;
  display: inline-block;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .single-product {
    flex-wrap: wrap;
  }
  .single-product .sections.full-screen .recom-item.paddL80 {
    padding: 0 12px;
  }
  .single-product .sections.large .product-details-banner .swiper-slide-min {
    height: calc((100vw - 106px)/4);
  }
  .single-product .sections.medium .product-details-banner .swiper-slide-min {
    height: calc((100vw - 122px)/4);
  }
  .single-product .sections.small .product-details-banner .swiper-slide-min {
    height: calc((100vw - 138px)/4);
  }
  .single-product .sections h4.title,
  .single-product .sections .price,
  .single-product .sections .star,
  .single-product .sections .types-item,
  .single-product .sections .flipclock,
  .single-product .sections .products-tisp,
  .single-product .sections .discount-tag,
  .single-product .sections .incentive-share,
  .single-product .sections hr,
  .single-product .sections .good-quantity-sizeChart,
  .single-product .sections .good-quantity-tips,
  .single-product .sections .cart-success,
  .single-product .sections .inventory-threshold-num,
  .single-product .sections .member-price {
    margin: 0 0 12px;
  }
  .single-product .sections h4.title {
    font-size: 20px;
    margin: 20px 0 12px 0;
  }
  .single-product .sections h4.title a {
    font-size: 20px;
  }
  .single-product .sections .star {
    display: block;
    margin-top: -8px;
  }
  .single-product .sections .types-item .font14 {
    font-size: 14px;
  }
  .single-product .sections .product-types-item {
    padding: 9px 20px;
    font-size: 16px;
  }
  .single-product .sections .recom-item {
    width: 100%;
  }
  .single-product .sections .recom-item.paddL80 {
    padding: 0;
  }
  .single-product .sections .recom-item.thumbs .gallery-thumbs {
    width: calc(100% - 60px);
  }
  .single-product .sections .recom-item.thumbs .swiper-button-next,
  .single-product .sections .recom-item.thumbs .swiper-button-prev {
    bottom: calc((100vw - 90px)/8);
    transform: translateY(50%);
    width: 30px;
  }
  .single-product .sections .product-details-banner {
    width: 100%;
  }
  .single-product .sections .product-details-banner .gallery-top .swiper-pagination {
    display: block;
  }
  .single-product .sections .product-details-banner .swiper-slide-min {
    height: calc((100vw - 90px)/4);
  }
  .single-product .sections .np-ui-btn {
    max-width: 100%;
    margin-bottom: 8px;
    height: 48px;
  }
  .single-product .sections .J-PaypalBtn {
    max-width: 100%;
  }
  .single-product .sections .Paypal-buy-now {
    height: 48px;
    line-height: 48px;
  }
  .single-product .sections .cart-success {
    position: relative;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: center;
  }
}

/*===横向滚动小图（slideshow-with-images）===*/
.slideshow-with-image .swiper-wrapper.grid-1,
.slideshow-with-image .swiper-wrapper.grid-2 {
  display: grid;
  grid-gap: 16px;
}
.slideshow-with-image .swiper-wrapper.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
.slideshow-with-image .swiper-wrapper.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.slideshow-with-image .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slideshow-with-image .swiper-img {
  position: relative;
  width: auto;
  padding-left: 100%;
}
.slideshow-with-image .swiper-img > div {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
  background-color: #f1f2f3;
}
.slideshow-with-image .swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow-with-image .placeholder-svg {
  border: 0;
  height: auto;
  bottom: 0;
  position: absolute;
  background: none;
}
.slideshow-with-image .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
}
.slideshow-with-image .swiper-navigation {
  position: relative;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  text-align: center;
  margin-top: 24px;
}
.slideshow-with-image .swiper-button-next,
.slideshow-with-image .swiper-button-prev {
  position: relative;
  font-size: 20px;
  color: #1a1a1b;
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.slideshow-with-image .swiper-button-prev {
  left: 0;
}
.slideshow-with-image .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .slideshow-with-image .swiper-wrapper.grid-1,
  .slideshow-with-image .swiper-wrapper.grid-2 {
    grid-gap: 8px;
  }
  .slideshow-with-image .swiper-pagination,
  .slideshow-with-image .swiper-navigation {
    display: none;
  }
  .slideshow-with-image .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .slideshow-with-image.sections.large {
    margin-top: 8px;
  }
  .slideshow-with-image.sections.medium {
    margin-top: 16px;
  }
  .slideshow-with-image.sections.small {
    margin-top: 24px;
  }
}

/*===首页轮播图（slideshow-with-text） && 横向滚动小图（slideshow-with-images）===*/
.slideshow-with-text .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.slideshow-with-text .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
}
.slideshow-with-text .swiper-button-next,
.slideshow-with-text .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: none;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
.slideshow-with-text .swiper-img {
  position: relative;
  width: auto;
  padding-left: 100%;
}
.slideshow-with-text .swiper-img > div {
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
  background-color: #f1f2f3;
}
.slideshow-with-text .swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow-with-text .swiper-item-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
.slideshow-with-text .swiper-item-box.text-left {
  text-align: left;
}
.slideshow-with-text .swiper-item-box.text-center {
  text-align: center;
}
.slideshow-with-text .swiper-item-box.text-right {
  text-align: right;
}
.slideshow-with-text .swiper-item-box > div {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.slideshow-with-text .swiper-item-box .swiper-title {
  font-size: 48px;
  margin-bottom: 12px;
}
.slideshow-with-text .swiper-item-box .swiper-describe {
  font-size: 20px;
  margin-bottom: 24px;
}
.slideshow-with-text .placeholder-svg {
  border: 0;
  height: auto;
  bottom: 0;
  position: absolute;
  background: none;
}
@media screen and (max-width: 768px) {
  .slideshow-with-text .swiper-item-box {
    padding: 12px;
  }
  .slideshow-with-text .swiper-item-box .swiper-title {
    font-size: 24px;
  }
  .slideshow-with-text .swiper-item-box .swiper-describe {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .slideshow-with-text .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .slideshow-with-text .swiper-navigation {
    display: none;
  }
  .slideshow-with-text.sections.large {
    margin-top: 8px;
  }
  .slideshow-with-text.sections.medium {
    margin-top: 16px;
  }
  .slideshow-with-text.sections.small {
    margin-top: 24px;
  }
}

/*===订阅模块===*/
.subscribe {
  box-sizing: border-box;
  padding: 54px 0;
}
.subscribe .describe {
  margin-top: 8px;
}
.subscribe .newsletter {
  margin-top: 24px;
  width: 520px;
  position: relative;
  display: inline-block;
}
.subscribe .newsletter-email {
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  font-size: 14px;
  border: 1px solid #999999;
  padding: 0 12px;
}
.subscribe .newsletter-email.disable-input {
  color: var(--success-text-color);
  background: var(--success-background-color);
  border-color: var(--success-text-color);
}
.subscribe .np-ui-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.subscribe .np-ui-btn em {
  font-style: normal;
}
.subscribe .subscribe-tips {
  color: var(--success-text-color);
  margin-top: 12px;
  display: none;
}
.subscribe .subscribe-tips::before {
  content: '\e69d';
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .subscribe {
    padding: 42px 0;
  }
  .subscribe .sections.full-screen {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
  .subscribe .newsletter {
    width: 100%;
  }
  .subscribe .np-ui-btn {
    min-width: auto;
  }
}

/*=====活动商品 && 精选商品===*/
.tabbed-products {
  transition: all 0.5s;
}
.tabbed-products .tabbed-products-title .swiper-wrapper {
  align-items: flex-end;
}
.tabbed-products .tabbed-products-title .swiper-slide {
  width: auto;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 0;
  min-width: 20%;
  box-sizing: border-box;
  border-bottom: 2px solid var(--white);
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s ease-in;
}
.tabbed-products .tabbed-products-title .swiper-slide.swiper-slide-thumb-active,
.tabbed-products .tabbed-products-title .swiper-slide:hover {
  border-bottom: 2px solid var(--heading-color);
  opacity: 1;
}
.tabbed-products .tabbed-products-title img {
  max-width: 60px;
  max-height: 60px;
  display: inline-block;
  margin-bottom: 8px;
}
.tabbed-products .tabbed-products-wrap {
  margin-top: var(--element-space-XL);
}
.tabbed-products .featured-product-modle.ratio .img-wrapper {
  padding-left: 100%;
  padding-bottom: 100%;
  width: auto;
  overflow: hidden;
  background: #f1f2f3;
}
.tabbed-products .featured-product-modle.ratio .img-wrapper a {
  display: block;
  height: 100%;
}
.tabbed-products .featured-product-modle.ratio .img-wrapper a > div {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  padding: 0;
  position: absolute;
}
.tabbed-products .featured-product-modle.ratio .img-wrapper img {
  height: 100%;
  object-fit: cover;
}
.tabbed-products .featured-product-modle.left {
  text-align: left;
}
.tabbed-products .featured-product-modle.center {
  text-align: center;
}
.tabbed-products .featured-product-modle.right {
  text-align: right;
}
.tabbed-products .featured-product-modle .swiper-container {
  width: 100%;
}
.tabbed-products .featured-product-modle .swiper-slide {
  position: relative;
}
.tabbed-products .featured-product-modle .swiper-navigation {
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: 24px;
}
.tabbed-products .featured-product-modle .swiper-button-next,
.tabbed-products .featured-product-modle .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: none;
  -webkit-font-smoothing: antialiased;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.tabbed-products .featured-product-modle .swiper-button-prev {
  left: 0;
}
.tabbed-products .featured-product-modle .swiper-button-next {
  right: 0;
}
.tabbed-products .featured-product-modle .star > span {
  display: none;
}
.tabbed-products .img-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabbed-products .img-wrapper .add-to-cart {
  width: 100%;
}
.tabbed-products .img-wrapper .featured-img {
  opacity: 1;
  z-index: 1;
}
.tabbed-products .img-wrapper .second-img {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.tabbed-products .img-wrapper img {
  width: 100%;
}
.tabbed-products .good-info {
  padding: 0 8px;
}
.tabbed-products .good-info .product-name {
  display: -webkit-box;
  word-break: break-all;
  margin-bottom: 8px;
}
.tabbed-products .good-info .product-name a {
  color: var(--heading-color);
}
.tabbed-products .add-to-cart {
  width: calc((100% - 16px));
  text-transform: capitalize;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 13px 0;
  display: none;
}
.tabbed-products .add-to-cart.np-ui-btn-disabled {
  color: #fcfcfc;
  background-color: #969696;
  border-color: #969696;
  cursor: default;
}
.tabbed-products .star .score span.iconfont {
  font-size: 14px;
}
.tabbed-products .placeholder-svg {
  border: 0;
}
@media screen and (min-width: 768px) {
  .tabbed-products {
    /*===网格布局==*/
  }
  .tabbed-products .featured-product-modle .swiper-slide:hover .img-wrapper .add-to-cart {
    display: inline-flex;
  }
  .tabbed-products .slideshow-pc-2 .swiper-slide {
    width: calc((100% - 16px)/2);
  }
  .tabbed-products .slideshow-pc-3 .swiper-slide {
    width: calc((100% - 32px)/3);
  }
  .tabbed-products .slideshow-pc-4 .swiper-slide {
    width: calc((100% - 48px)/4);
  }
  .tabbed-products .slideshow-pc-5 .swiper-slide {
    width: calc((100% - 64px)/5);
  }
  .tabbed-products .slideshow-pc-6 .swiper-slide {
    width: calc((100% - 80px)/6);
  }
  .tabbed-products .grid-pc-2,
  .tabbed-products .grid-pc-3,
  .tabbed-products .grid-pc-4,
  .tabbed-products .grid-pc-5,
  .tabbed-products .grid-pc-6 {
    display: grid;
    grid-gap: 24px 16px;
  }
  .tabbed-products .grid-pc-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tabbed-products .grid-pc-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tabbed-products .grid-pc-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tabbed-products .grid-pc-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tabbed-products .grid-pc-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .tabbed-products {
    /*===网格布局==*/
  }
  .tabbed-products .tabbed-products-title .swiper-slide {
    min-width: 100px;
  }
  .tabbed-products .tabbed-products-title .swiper-slide.swiper-slide-thumb-active {
    border-bottom: 2px solid var(--heading-color);
  }
  .tabbed-products .tabbed-products-title img {
    max-width: 44px;
    max-height: 44px;
    margin-bottom: 8px;
  }
  .tabbed-products .featured-product-modle .swiper-button-next,
  .tabbed-products .featured-product-modle .swiper-button-prev {
    display: none;
  }
  .tabbed-products .good-info .star {
    display: block;
    height: auto;
  }
  .tabbed-products .good-info .star .score {
    display: block;
  }
  .tabbed-products .add-to-cart {
    display: block;
    position: relative;
    margin: 8px auto 0;
  }
  .tabbed-products .img-wrapper .add-to-cart {
    display: none;
  }
  .tabbed-products .slideshow .swiper-slide {
    width: calc((100% - 16px)/2.2);
  }
  .tabbed-products .grid-1,
  .tabbed-products .grid-2 {
    display: grid;
    grid-gap: 16px 8px;
  }
  .tabbed-products .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video.fullscreen {
  height: 100vh;
  position: relative;
}
.video.fullscreen .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
}
.video.fullscreen .video-wrap iframe {
  width: 300%;
  left: -100%;
  max-width: none;
}
.video .video-wrap {
  width: 100%;
  position: relative;
  background: none;
}
.video .video-wrap .video-layout {
  position: relative;
}
.video .video-wrap.scale16-9 .video-layout {
  padding-bottom: 56.25%;
}
.video .video-wrap.scale21-9 .video-layout {
  padding-bottom: 42.85714286%;
}
.video .video-wrap.full-screen .video-layout {
  padding-bottom: 100%;
}
.video .video-wrap .cover-plan {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.video .video-wrap .cover-plan > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .video-wrap .play-button {
  font-size: 26px;
  width: 64px;
  height: 64px;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  padding: 2px 0 0 4px;
  transition: all 0.2s;
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video .video-wrap .play-button::before {
  content: "\e6b2";
}
.video .video-wrap .play-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.video .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #f2f2f2;
}
.video .video-wrap .video-text {
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video .video-wrap .video-text.left {
  justify-content: flex-start;
  text-align: left;
}
.video .video-wrap .video-text.center {
  justify-content: center;
  text-align: center;
}
.video .video-wrap .video-text.right {
  justify-content: flex-end;
  text-align: right;
}
.video .video-wrap .video-text .title {
  font-size: 28px;
  margin-bottom: 8px;
}
.video .video-wrap .video-text .describe {
  font-size: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .video.fullscreen iframe {
    width: 350%;
    left: -120%;
  }
  .video .video-wrap.scale16-9 .video-text,
  .video .video-wrap.scale21-9 .video-text {
    position: relative;
    background: none !important;
  }
  .video .video-wrap .video-text {
    padding: 12px;
  }
  .video .video-wrap .video-text .title {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--heading-color);
  }
  .video .video-wrap .video-text .describe {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--heading-color);
  }
}

/*===底部===*/
footer {
  width: 100%;
  font-size: 14px;
  color: #1A1A1B;
  line-height: 1.25;
  background: #F5F5F5;
  padding: 52px 0px;
  box-sizing: border-box;
}
footer a {
  font-size: 14px;
  color: #1A1A1B;
  line-height: 2.5;
}
footer .footer-main {
  display: flex;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
footer .footer-main.full-screen {
  padding-left: 24px;
  padding-right: 24px;
}
footer .footer-modules {
  box-sizing: border-box;
  margin-bottom: 40px;
  width: 100%;
  margin-left: 50px;
}
footer .footer-modules:first-of-type {
  margin-left: 0;
}
footer .footer-modules.text-left {
  text-align: left;
}
footer .footer-modules.text-center {
  text-align: center;
}
footer .footer-modules.text-right {
  text-align: right;
}
footer .footer-modules h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}
footer .footer-modules .newsletter {
  display: flex;
  align-items: center;
  margin-top: 16px;
  position: relative;
}
footer .footer-modules .newsletter > input {
  width: 100%;
  height: 40px;
  padding: 8px 0px 8px 12px;
  box-sizing: border-box;
  border: 1px solid #182E49;
  font-size: 12px;
  background: none;
}
footer .footer-modules .newsletter > input::-webkit-input-placeholder,
footer .footer-modules .newsletter > input::-moz-input-placeholder,
footer .footer-modules .newsletter > input::-ms-input-placeholder {
  opacity: 0.5;
}
footer .footer-modules .newsletter .iconfont {
  font-size: 20px;
  position: absolute;
  right: 10px;
}
footer .footer-copyright.sections {
  padding: 0;
}
footer .footer-copyright.sections.full-screen {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
footer .footer-copyright > div {
  margin: 0 auto;
  box-sizing: border-box;
}
footer .footer-copyright .follow-us h4 {
  display: none;
}
footer .footer-copyright .share-box {
  float: right;
}
footer .footer-copyright .share-box .iconfont {
  font-size: 16px;
}
footer .footer-copyright .share-box em {
  display: none;
}
footer .footer-copyright .share-box a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 16px;
  border: 1px solid;
}
footer .footer-copyright .payment-method > img {
  margin: 0 6px 6px 0;
}
footer .footer-subscribe .subscribe-tips {
  color: var(--success-text-color);
  margin-top: 12px;
  display: none;
}
footer .footer-subscribe .subscribe-tips::before {
  content: '\e69d';
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0;
    font-size: 12px;
  }
  footer .footer-main {
    flex-wrap: wrap;
    padding-top: 0;
  }
  footer .footer-main.full-screen {
    padding-left: 12px;
    padding-right: 12px;
  }
  footer .footer-modules {
    padding: 24px 0 0;
    margin-bottom: 0;
    margin-left: 0;
  }
  footer .footer-modules.footer-menu.footer-menu--show h4::after {
    content: "\e6ee";
  }
  footer .footer-modules.footer-menu h4 {
    position: relative;
  }
  footer .footer-modules.footer-menu h4::after {
    content: "\e6f4";
    font-family: iconfont !important;
    font-size: 14px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .footer-modules.footer-menu > div {
    display: none;
  }
  footer .footer-modules h4 {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  footer a {
    font-size: 12px;
  }
  footer .footer-copyright {
    padding-bottom: 32px;
  }
  footer .footer-copyright.sections.full-screen {
    padding-left: 12px;
    padding-right: 12px;
  }
  footer .footer-copyright > div {
    padding: 0;
  }
  footer .footer-copyright .share-box {
    float: none;
    padding: 12px 0 0;
  }
  footer .footer-copyright .share-box a {
    margin-left: 0;
    margin-right: 16px;
  }
  footer .footer-copyright .copyright {
    margin-top: 24px;
  }
  footer .footer-copyright .follow-us h4 {
    display: block;
  }
}

/*===头部===*/
.header {
  z-index: 10;
}
.header.fixed-top,
.header.menu-block {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 12px;
  margin: 0 auto;
  max-width: 1280px;
  min-height: 60px;
}
.header .logo,
.header .operat {
  display: flex;
  align-items: center;
  flex: none;
}
.header .logo span {
  min-height: 20px;
  font-size: 20px;
  white-space: nowrap;
}
.header .logo img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.header .operat .head-buycart,
.header .operat .head-customer,
.header .operat .head-search {
  margin: 0 5px;
  position: relative;
}
.header .operat .head-buycart.iconfont,
.header .operat .head-customer.iconfont,
.header .operat .head-search.iconfont {
  font-size: 26px;
}
.header .operat .head-buycart i,
.header .operat .head-customer i,
.header .operat .head-search i {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 8px;
  height: 14px;
  padding: 2px 5px;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  border-radius: 18px;
  text-align: center;
  background: var(--heading-color);
  color: var(--white);
  display: none;
}
.header .operat .head-search,
.header .operat .mobile-customer {
  display: none;
}
/*===公告栏===*/
.head-notice.menu-block {
  position: relative;
  z-index: 999;
}
.head-notice a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1.5;
}
.head-notice a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.head-notice span {
  position: absolute;
  padding: 12px;
  box-sizing: border-box;
  display: block;
}
.head-notice picture {
  width: 100%;
  display: flex;
}
/*===头部菜单===*/
.header-menu {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}
.header-menu.z-index {
  position: relative;
  z-index: 99999;
}
.header-menu > div {
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1280px;
}
.header-menu .menu-category {
  flex: none;
  color: var(--heading-color);
  margin-right: 20px;
}
.header-menu .menu-category:hover .nav-category {
  opacity: 1;
  visibility: visible;
}
.header-menu .menu-category > div {
  white-space: normal;
  height: 52px;
  line-height: 52px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
  width: 230px;
  font-weight: 700;
  padding: 0 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.header-menu .menu-category > div::before {
  content: "\e6eb";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translateY(-50%);
  margin-right: 5px;
}
.header-menu .menu-category .nav-category {
  position: absolute;
  left: 0;
  height: 448px;
  width: 230px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
}
.header-menu .menu-category .nav-category .nav-item {
  line-height: 24px;
  padding: 4px 10px;
}
.header-menu .menu-category .nav-category .nav-item.nav-member {
  display: none;
}
.header-menu .menu-category .nav-category .nav-item:hover {
  background: var(--white);
}
.header-menu .menu-category .nav-category .nav-item:hover .nav-item-down-menu {
  opacity: 1;
  visibility: visible;
}
.header-menu .menu-category .nav-category .nav-item-down-menu {
  position: absolute;
  left: 230px;
  padding: 20px;
  background: var(--white);
  top: 0;
  transition: all 0.5s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 448px;
  opacity: 0;
  visibility: hidden;
  flex-wrap: wrap;
}
.header-menu .menu-category .nav-category .nav-item-down-menu > ul {
  margin-bottom: 32px;
  min-width: 230px;
  padding-right: 60px;
  height: auto;
  display: block;
  height: fit-content;
}
.header-menu .menu-category .menu-name {
  font-weight: 700;
  color: var(--heading-color);
}
.header-menu .menu-category .three-menu-wrap > a {
  font-size: 14px;
  display: block;
}
.header-menu .menu-category .three-menu-wrap > a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}
.deals-menu {
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 52px;
  line-height: 52px;
}
.deals-menu .country-select,
.deals-menu .currency-select {
  display: none;
}
.deals-menu .to-left,
.deals-menu .to-right {
  font-size: 16px;
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
  z-index: 2;
  padding-left: 88px;
}
.deals-menu .to-left {
  right: 0;
}
.deals-menu .to-right {
  left: 0;
  transform: scale(-1);
}
.deals-menu .nav-ul {
  white-space: nowrap;
  position: absolute;
  font-size: 0;
}
.deals-menu .nav-ul a {
  font-size: 14px;
  display: block;
  height: 100%;
  color: var(--heading-color);
}
.deals-menu .nav-item {
  height: 52px;
  line-height: 52px;
  display: inline-block;
  position: relative;
  transition: all 0.2s;
  margin-right: 20px;
}
.deals-menu .nav-item.nav-member {
  display: none;
}
.deals-menu .nav-item.nav-single:hover {
  box-shadow: none;
}
.deals-menu .nav-item-down-menu {
  width: auto;
  padding: 10px 20px;
  position: fixed;
  margin-left: 0;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.5s;
}
.deals-menu .nav-item-down-menu a {
  color: var(--heading-color);
  display: block;
  text-align: left;
  line-height: 0.4rem;
  padding: 0.1rem 0.1rem;
  text-decoration: none;
  word-wrap: break-word;
  width: 100%;
  position: relative;
  border-bottom: none;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.deals-menu .nav-item-down-menu a .menu-name {
  width: 86%;
  display: inline-block;
  vertical-align: middle;
}
.deals-menu .nav-item-down-menu a .iconfont {
  vertical-align: middle;
}
.deals-menu .three-menu-wrap {
  background: var(--white);
  padding: 10px;
  position: absolute;
  top: 0;
  left: 100%;
  transition: all 0.5s;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
}
/*===货币切换===*/
.country-select {
  position: relative;
  cursor: pointer;
}
.country-select > select {
  width: auto;
  height: 100%;
  padding-right: 30px;
  padding-left: 5px;
  font-size: 16px;
  border: 0;
  cursor: pointer;
}
.country-select::after {
  content: "\e6f0";
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  transform: translateY(-55%);
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translateY(-55%);
}
.country-select-pc :focus {
  outline: 0;
}
/*===货币转换===*/
.currency-more {
  position: relative;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  flex: none;
  min-width: 106px;
  box-sizing: border-box;
  justify-content: space-between;
  /*===货币转换--下拉列表===*/
}
.currency-more::after {
  content: "\e6f0";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  width: 20px;
  text-align: right;
  font-weight: 700;
}
.currency-more img {
  margin-right: 4px;
  width: 14px;
  height: 12px;
  object-fit: cover;
}
.currency-more .currency-list {
  width: 100%;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  top: 25px;
  overflow-y: scroll;
  margin-top: 10px;
  color: #1a1a1a;
  padding: 10px 16px;
  box-sizing: border-box;
  max-height: 400px;
  display: none;
  z-index: 3;
}
.currency-more .currency-list::-webkit-scrollbar {
  width: 5px;
}
.currency-more .currency-list li {
  cursor: pointer;
  text-align: left;
  line-height: 30px;
  position: relative;
}
.currency-more .currency-list li.active::after {
  content: "\e645";
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}
/*===移动端侧边菜单栏===*/
.nav-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 30px;
  cursor: pointer;
  flex: none;
}
.nav-icon .nav-icon-show {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  transition: all ease 0.35s;
}
.nav-icon .nav-icon-show.top {
  top: 8px;
}
.nav-icon .nav-icon-show.center {
  top: 14px;
}
.nav-icon .nav-icon-show.bottom {
  top: 20px;
}
/*===头部==>PC端不显示的图标===*/
.nav-icon,
.back,
.nav-drawer {
  display: none;
}
/*===商品加购弹窗===*/
.add-cart-popup {
  position: absolute;
  right: 0;
  width: 100%;
  max-width: 375px;
  display: block;
  background: var(--white);
  height: auto;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 10;
  box-sizing: border-box;
  color: var(--heading-color);
}
.add-cart-popup.add-cart-popup--show {
  opacity: 1;
  visibility: visible;
}
.add-cart-popup .product-info {
  display: flex;
  align-items: center;
  font-size: 16px;
  flex-wrap: wrap;
}
.add-cart-popup .product-info .add-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.add-cart-popup .product-info .add-list > div:nth-of-type(2) {
  width: 100%;
}
.add-cart-popup .product-info .add-list > div:nth-of-type(2) > div:first-of-type {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.add-cart-popup .product-info .current-img {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f5f5f5;
  width: 80px;
  height: 80px;
  flex: none;
  margin-right: 12px;
}
.add-cart-popup .product-info .current-img > img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.add-cart-popup .product-info .attribute {
  color: #999;
  font-size: 12px;
  margin-top: 8px;
}
.add-cart-popup .product-info .add-list-price .cart-quantity,
.add-cart-popup .product-info .add-list-price .cart-price {
  display: inline-block;
}
.add-cart-popup .product-info .cart-price {
  font-size: 18px;
  margin-top: 18px;
}
.add-cart-popup .add-info {
  width: 100%;
  font-size: 16px;
}
.add-cart-popup .add-info .cart-info {
  margin-top: 16px;
}
.add-cart-popup .add-info .cart-info a {
  margin-top: 12px;
  color: var(--secondary-button-text-color);
}
.add-cart-popup .add-info .cart-total,
.add-cart-popup .add-info .cart-tips {
  margin-bottom: 16px;
}
.add-cart-popup .add-info .cart-total {
  display: flex;
  justify-content: space-between;
}
.add-cart-popup .add-info .cart-total > span {
  font-size: 18px;
}
.add-cart-popup .add-info .cart-tips > span {
  font-weight: 700;
}
.add-cart-popup .add-info .np-ui-btn {
  width: 100%;
  font-size: 14px;
}
/*===PC端===*/
@media screen and (min-width: 768px) {
  .header-menu .deals-menu .nav-item:hover > a {
    text-decoration: underline;
  }
  .header-menu .deals-menu .nav-item:hover .nav-item-down-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-menu .deals-menu .nav-item-down-menu:hover {
    padding-left: 20px;
  }
  .header-menu .deals-menu .nav-item-down-menu li:hover .three-menu-wrap {
    opacity: 1;
    visibility: visible;
  }
  .head-notice.pc-no-img span {
    position: static;
  }
  .head-notice.pc-no-img picture {
    display: none;
  }
}
/*===移动端===*/
@media screen and (max-width: 768px) {
  .header .header-main {
    align-items: center;
    padding: 4px 12px;
  }
  .header .logo,
  .header .operat {
    height: auto;
  }
  .header .logo {
    width: auto;
    max-width: calc((100vw - 0px)*.4);
    overflow: hidden;
    margin: 0 auto;
    justify-content: center;
  }
  .header .logo img {
    max-width: 100%;
  }
  .header .operat {
    position: absolute;
    right: 12px;
  }
  .header .operat .currency-more,
  .header .operat .country-select,
  .header .operat .pc-customer {
    display: none;
  }
  .header .operat .head-search,
  .header .operat .mobile-customer {
    display: block;
  }
  .header .nav-icon {
    display: block;
    position: absolute;
  }
  .header .nav-icon.close .nav-icon-show.top {
    top: 16px;
    transform: rotate(45deg);
  }
  .header .nav-icon.close .nav-icon-show.center {
    width: 0;
  }
  .header .nav-icon.close .nav-icon-show.bottom {
    top: 16px;
    transform: rotate(-45deg);
  }
  /*===公告栏===*/
  .head-notice.mobile-no-img span {
    position: static;
  }
  .head-notice.mobile-no-img picture {
    display: none;
  }
  .header-menu {
    display: none;
  }
  /*===移动端菜单===*/
  .nav-drawer {
    display: none;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    top: 0;
    bottom: 0;
    z-index: 102;
    color: #1A1A1B;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
    /*===货币转换===*/
    /*===多站点店铺切换===*/
  }
  .nav-drawer.drawer--left {
    width: 100vw;
    display: flex;
    flex-direction: column;
  }
  .nav-drawer .nav-ul .nav-item {
    margin-bottom: 0;
  }
  .nav-drawer .nav-ul .nav-item > a .icon-donwn-copy {
    position: absolute;
    right: 12px;
    transform: rotate(-90deg);
    font-weight: 700;
  }
  .nav-drawer .nav-ul .nav-item > a img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    margin-right: 12px;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu {
    font-size: 14px;
    position: fixed;
    background: #fff;
    width: 100%;
    left: 100%;
    top: 0;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
    z-index: 2;
    overflow-y: auto;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu::-webkit-scrollbar {
    display: none;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu.nav-item-down-menu--show {
    left: 0;
    transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu li > a {
    position: relative;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu li > a img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    margin-right: 12px;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu li > a .iconfont {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
  }
  .nav-drawer .nav-ul .nav-item .nav-item-down-menu li > a .iconfont.active::before {
    content: "\e621";
  }
  .nav-drawer .nav-ul .nav-item .three-menu-wrap {
    padding: 0 8px;
  }
  .nav-drawer .nav-ul .nav-item .three-menu-wrap > a {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-color);
  }
  .nav-drawer .nav-ul .nav-item .three-menu-wrap > a img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 12px;
  }
  .nav-drawer .nav-ul .nav-item > a,
  .nav-drawer .nav-ul .nav-item-down-menu li > a,
  .nav-drawer .nav-ul .three-menu-wrap > a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    margin: 0 16px;
    font-size: 16px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: var(--heading-color);
    padding-right: 15px;
  }
  .nav-drawer .nav-header {
    padding: 24px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .nav-drawer .nav-header .iconfont {
    cursor: pointer;
  }
  .nav-drawer .back {
    font-size: 16px;
    cursor: pointer;
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--heading-color);
    display: block;
    text-align: center;
    position: relative;
  }
  .nav-drawer .back::before {
    content: "\e623";
    font-family: iconfont !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .nav-drawer .mobile-menu {
    height: 100%;
    overflow: auto;
    position: relative;
    padding-top: 12px;
    z-index: 2;
  }
  .nav-drawer .mobile-menu::-webkit-scrollbar {
    display: none;
  }
  .nav-drawer .nav-footer {
    display: flex;
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .nav-drawer .search-box {
    display: block;
  }
  .nav-drawer .logo {
    display: block;
    width: auto;
    max-width: calc((100vw - 0px)*.4);
    overflow: hidden;
  }
  .nav-drawer .logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: cover;
  }
  .nav-drawer .currency-more,
  .nav-drawer .country-select {
    width: 100%;
    height: 48px;
    outline: 0;
    border: 1px solid #1a1a1a;
    padding: 0px 16px;
    flex: auto;
    box-sizing: border-box;
  }
  .nav-drawer .currency-more::after {
    position: absolute;
    right: 16px;
  }
  .nav-drawer .currency-more .currency-list {
    top: auto;
    bottom: 60px;
    margin: 0;
    max-height: 200px;
    box-sizing: border-box;
  }
  .nav-drawer .currency-more .currency-list::-webkit-scrollbar {
    display: none;
  }
  .nav-drawer .currency-more .currency-list li {
    line-height: 40px;
  }
  .nav-drawer .currency-more .currency-list li.active::after {
    right: 0;
  }
  .nav-drawer .country-select {
    margin-left: 12px;
  }
  .nav-drawer .country-select > select {
    padding: 0;
  }
  /*===商品加购弹窗===*/
  .add-cart-popup {
    max-width: 100%;
  }
}

.order-header {
  width: 100%;
  padding: 24px 0 20px;
}
.order-header .logo,
.order-header a {
  height: 48px;
  display: inline-block;
}
.order-header .logo img,
.order-header a img {
  max-height: 48px;
}
.order-header .logo a,
.order-header a a,
.order-header .logo span,
.order-header a span {
  color: #333;
  font-size: 24px;
}
.order-header .logo span,
.order-header a span {
  margin-top: 12px;
}
.order-wrap {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .order-header {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .order-header {
    width: 100%;
    display: block;
  }
}
