
.more-button {
  margin-top: calc(40px - var(--h-space));
  text-align: center;
}
.list-more-button {
  margin: calc(var(--list-more-top ,var(--h-space)) - var(--h-space)) 0 var(--h-space);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list-more-button {
    --list-more-top: 15px;
  }
}


/* 轮播图 Start */
.home-image-slide .swiper-pagination {
  --swiper-pagination-bottom:  var(--slide-pagination-bottom);
}
.home-image-slide.image-slide{
  --large-title-size: 58px;
  --large-subtitle-size: 30px;
  --large-btn-size: 30px;
  --medium-title-size: 36px;
  --medium-subtitle-size: 14px;
  --medium-btn-size: 16px;
  --small-title-size: 35px;
  --small-subtitle-size: 15px;
  --small-btn-size: 15px;
  --prev-btn-left: 40px;
  --next-btn-right: 40px;
  margin-bottom:var(--home-image-slide-bottom,var(--section-space) );
  padding-bottom: 0;
}
.home-image-slide .swiper-slide>a{
  position: relative;
  display: block;
  width: 100%;
}

.home-image-slide img{
  position: absolute;
  width: 100%;
  height: auto;
}
.home-slide-content{
  white-space: nowrap;
}
.home-slide-title{
  margin:var(--home-slide-title-margin, 0 0 20px) ;
  font-weight: 700;
}
.home-slide-subtitle{
  font-weight: 400;
}
.home-slide-btn{
  display: inline-block;
  margin-top:var(--home-slide-btn-top, 16px) ;
  height: var(--btn-height);
  line-height: calc(var(--btn-height) - 2px);
  padding: var(--home-slide-btn-side-padding, 0 25px);
}

@media screen and (max-width: 1200px){
  .home-image-slide.image-slide {
    --large-title-size: 33px;
    --large-subtitle-size: 20px;
    --large-btn-size: 18px;
    --medium-title-size: 22px;
    --medium-subtitle-size: 14px;
    --medium-btn-size: 16px;
    --small-title-size: 25px;
    --small-subtitle-size: 14px;
    --small-btn-size: 14px;
    --prev-btn-left: 10px;
    --next-btn-right: 10px;
    --home-slide-btn-top:14px;
    --home-slide-title-margin:0 0 10px;
  }
  
  
  .home-slide-content{
    white-space: normal;
    max-width: 85%;
    min-width: 60%;
  }
 
}
@media screen and (max-width: 767px){
.home-image-slide .prev-btn,
  .home-image-slide .next-btn {
    display:var(--home-image-slide-btb-display, none);
  }
}
/* 轮播图 End */


/* 商品专辑列表 Start*/
.product-catelist-labels {
  display: flex;
  justify-content: var(--product-catelist-labels-justify-content, center);
  margin: -10px 0 25px;
}

.product-catelist-label {
  margin: var(--product-catelist-label-margin, 0 20px);
  font-size: 20px;
  font-weight:var(--product-catelist-label-weight, 700);
  opacity: var(--product-catelist-label-inactive-opacity, 1);
  cursor: pointer;
}

.product-catelist-label.active {
  opacity: var(--product-catelist-label-active-opacity, 1);
  border-bottom:var(--product-catelist-label-border-bottom, 2px solid var(--highlight-font-color));
}

.product-catelist-tab {
  display: none;
  position: relative;
}

.product-catelist-tab.active {
  display: block;
}

@media screen and (max-width: 767px) {
  .product-catelist-labels {
    margin: -2px 0 14px;
    overflow-x: scroll;
  }

  .product-catelist-labels::-webkit-scrollbar {
    display: none;
  }

  .product-catelist-label {
    white-space: nowrap;
    font-size: 16px;
    margin: 0 10px;
  }

}

/* 商品专辑列表 End */

/* 商品轮播 Start */
.product-slide .swiper-slide {
  width: calc(25% - var(--v-space) * 3 / 4);
  height: auto;
  margin-right: var(--v-space);
}
.product-slide  .product-item {
  width: 100%;
  height: 100%;
  margin: 0;
}
.product-slide .swiper-pagination {
  display: none;
}

@media screen and (max-width: 767px) {
 
  .product-slide .swiper-slide{
    width: calc(50% - var(--v-space) / 2);
  }
  .product-slide .swiper-pagination {
    display: flex;
  }
  .product-slide .prev-btn,
  .product-slide .next-btn {
    display:var(--product-slide-btn-display, none) ;
  }
}

 
/* 商品轮播 End */
/* 精选商品 Start */
  .product-choice-content{
    display: flex;
  }
  .product-choice-cover{
    position: relative;
    margin-right:var(--product-choice-cover-right, var(--v-space)) ;
    border-radius: var(--theme-border-radius);
    background: var(--img-background);
    background-size: var(--img-background-size);
    overflow: hidden;
  }
  .product-choice-cover img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .product-choice-coverbody{
    position: var(--product-choice-coverbody-position, absolute);
    top: var(--product-choice-coverbody-top,50%);
    transform: var(--product-choice-coverbody-transform,translateY(-50%));
    width: 100%;
    padding:var(--product-choice-coverbody-padding, 0 16px);
  }
  .product-choice-covertext{
    white-space: pre-wrap;
    margin-bottom: var(--product-choice-covertext-bottom,8px);
  }
  .product-choice-covertitle{
    font-weight:var(--product-choice-covertitle-weight,700);
    margin-bottom: 8px;
  }
  @media screen and (max-width: 767px){
    .product-choice-content{
      flex-wrap: wrap;
    }
    .product-choice-cover{
      width: 100%;
      margin: 0 0 var(--h-space) 0;
    }
    .product-choice-btn{
      font-size: 15px;
      padding: 0 20px;
      font-weight: 400;
    }
    .product-choice-content .product-list-card{
      width: calc(50% - 6px);
    }
  }
/* 精选商品 End */
/* 单个商品 Start */
.product-single {
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
}

.product-single-content {
  display: flex;
}

.product-single-info {
  width:var(--product-single-info-width, 40%);
  padding: var(--product-single-info-padding,0 0 0 50px);
}

.product-single-images {
  width: var(--product-single-images-width, 60%);
  height: fit-content;
  font-size: 0;
}

.product-single-img {
  width: 100%
}

.product-single-title {
  margin-bottom: 24px;
  font-size:var(--product-single-title-size, 24px);
  color: var(--theme-font-color);
}

.product-single-subtitle {
  margin-bottom: 16px;
  font-size: var(--product-single-subtitle-size, 18px);
  color: var(--theme-font-color-sub);
}

.prodsingle-product-rate {
  color: var(--theme-color-star);
}
.prodsingle-review-count{
  margin-left: 5px;
  font-size: 14px;
}


.product-single-price .price {
  font-size:var(--product-single-price-size,  36px);
  font-weight:var(--product-single-price-weight, 700);
  color: var(--product-single-price-color, var(--highlight-font-color));
}

.product-single-price .original-price {
  margin-left: 16px;
  color: var(--theme-font-color-sub);
  font-size: var(--product-single-original-price-size, 16px)
}
/*  size_specs */
.prodsingle-size_specs {
  height: 44px;
  width: 100%;
  padding: 0 13px;
  background-color: transparent;
  color: var(--theme-font-color);
  border: 1px solid #333;
}
.prodsingle-variants-select,
.prodsingle-variants-button,
.prodsingle-product-rate,
.product-single-price,
.product-single-title,
.prodsingle-buy-now {
  margin-bottom:var(--prodsingle-info-section-bottom, 24px);
}

.prodsingle-variant-name {
  margin-bottom: var(--prodsingle-variant-name-bottom,10px);
}

.prodsingle-variants-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: calc(-1 * var(--prodsingle-variant-item-bottom, 10px));
}

.prodsingle-variant-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom:var(--prodsingle-variant-item-bottom, 10px);
  margin-right:var(--prodsingle-variant-item-right, 10px);
  padding: 8px 15px;
  min-width: var(--prodsingle-variant-item-min-width, 44px);
  color: var(--product-variant-btn-color,#eee);
  background-color: var(--product-variant-btn-bg-color, transparent);
  border: 1px solid var(--product-variant-btn-border-color,var(--theme-border-color));
  border-radius:var(--product-variant-radius ,0) ;
  transition: background-color .1s ease-out;
  word-break: break-word;
  cursor: not-allowed;
  user-select: none;
}

.prodsingle-variant-item.prodsingle-handle-variant-click {
  color: var(--product-variant-btn-color, var(--theme-font-color));
  background-color: var(--product-variant-btn-bg-color, transparent);
  border: 1px solid var(--product-variant-btn-border-color, var(--theme-border-color));
  cursor: pointer;
}

.prodsingle-variant-item.prodsingle-handle-variant-click.selected {
  background-color: var(--product-variant-btn-selected-bg-color,transparent);
  color: var(--product-variant-btn-selected-color,
    var(--highlight-font-color));
  border-color: var(--product-variant-btn-selected-border-color,var(--highlight-font-color));
}

/* add buy now */
.product-single-add {
  display: flex;
  margin-bottom: var(--prodsingle-add-bottom,16px);
}

#paypal-button-container {
  margin-bottom: 14px;
}

.prodsingle-quantity-wrapper {
  display: flex;
  align-items: center;
  width: fit-content;
  height: var(--prodsingle-quantity-wrapper-height, 48px);
  width: 100%;
  max-width:var(--prodsingle-quantity-max-width, 140px);
  background-color: transparent;
  border: 1px solid var(--theme-border-color);
  border-radius: var(--theme-border-radius);
  background-color: transparent;
}

.prodsingle-quantity {
  width: inherit;
  height: unset;
  color: var(--theme-font-color);
  font-size: 16px;
  text-align: center;
  border: none;
  background-color: transparent;
}

.prodsingle-quantity:focus {
  border: 0;
}

.prodsingle-quantity-wrapper .iconfont {
  padding: 10px;
  font-size: 13px;
  color: var(--theme-font-color);
  cursor: pointer;
}

.prodsingle-addtocart {
  width: var(--prodsingle-addtocart-width,100%);
  height: var(--prodsingle-add-height, 48px);
  margin-left:var(--prodsingle-addtocart-left, 15px);
  border:var(--prodsingle-addtocart-border, 1px solid #333);
  background-color: var(--prodsingle-addtocart-bg-color, transparent);
  color: var(--prodsingle-addtocart-color, #333);
  font-size: var(--prodsingle-add-size, 16px);
}

.prodsingle-buy-now {
  width: var(--prodsingle-buynow-width, 100%);
  height: var(--prodsingle-add-height, 48px);
  font-size: 16px;
  background-color:var(--prodsingle-buynow-bg-color, #333);
  color: var(--prodsingle-buynow-color,#fff);
  border: var(--prodsingle-buynow-border, 1px solid #333);
}

.prodsingle-share {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.prodsingle-share>a {
  margin-left: var(--prodsingle-share-item-left, 10px);
  font-size: 26px;
  color: var(--theme-font-color);
}

.product-single-images .swiper-slide {
  overflow: hidden;
}
.product-single .swiper-pagination{
    --swiper-pagination-bottom: 14px;
}
@media screen and (max-width:1150px){
  .product-single {
  --product-single-info-padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .product-single{
    --product-single-images-width:100%;
    --product-single-info-width:100%;
    --product-single-info-padding:0 15px;
    --prodsingle-info-section-bottom: 14px;
    --product-single-subtitle-size:15px;
    --product-single-title-size:18px;
    --product-single-price-size:20px;
    --product-single-original-price-size:12px;
    --prodsingle-variant-name-bottom:5px;
    --prodsingle-add-bottom:10px;
    --prodsingle-add-size:15px;
    --prodsingle-quantity-max-width:100px;
  }
  .product-single-content {
    flex-direction: column;
  }

  .product-single-images {
    display: block;
    margin-bottom:var(--product-single-images-bottom, 10px);
   
    --swiper-pagination-bottom: 14px;
  }
  .product-single-images.j-newswiper{
    padding-bottom: 0;
  }
  .prodsingle-quantity-wrapper .iconfont {
    font-size: 12px;
  }
  .prodsingle-quantity-wrapper .prodsingle-quantity {
    padding: 0;
  }
 
}

/* 单个商品 End */

/* 6图 Start */
  .image-six-content{
    display: flex;
  }
  .image-six-left, .image-six-center, .image-six-right{
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .image-six-left,
  .image-six-center{
    margin-right: var(--v-space);
  }
  .image-six-item {
    position: relative;
  }
  .image-six-item img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .image-six-item1, .image-six-item3, .image-six-item5{
    margin-bottom: var(--h-space);
  }
  .image-six-title{
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-font-color);
  }
  @media screen and (max-width: 767px) {
    .image-six-center{
      margin: 0;
    }
    .image-six-left,
    .image-six-center,
    .image-six-right{
      flex: unset;
      width: 100%;
    }
    .image-six-title{
      bottom: 15px;
      font-size: 16px;
    }
    .image-six-item1,
    .image-six-item3,
    .image-six-item5{
      margin: 0;
    }
    .image-six-item{
      margin-bottom: var(--h-space);
    }
    .image-six-item6{
      margin-bottom: 0;
    }
  }
/* 6图 Start */

/* 4图 Start */
.image-four-content{
  display: flex;
  flex-direction: column;
}
.image-four-top{
  margin-bottom: var(--h-space);
}
.image-four-top,.image-four-bottom{
  display: flex;
}
.image-four-item{
  padding-bottom: 34.5%;
}
.image-four-item img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-four-item1, .image-four-item4{
  width: 65%;
}
.image-four-item2, .image-four-item3 {
  width: 35%;
}
.image-four-item1, .image-four-item3{
  margin-right: var(--v-space);
}
@media screen and (max-width: 767px){
  .image-four-item1,
  .image-four-item3{
    margin-right: 0;
  }
  .image-four-top{
    flex-direction: column;
    margin: 0;
  }
  .image-four-center{
    display: flex;
  }
  .image-four-item2{
    margin-right: var(--v-space);
  }
  .image-four-bottom{
    flex-direction: column-reverse;
  }
  .image-four-item{
    width: 100%;
    margin-bottom: var(--h-space);
  }
  .image-four-item3{
    margin-bottom: 0;
  }
}
/* 4图 End */

/* 3图 Start */
 .image-three-content{
  display: flex;
 }
 
 .image-three-content>*{
  flex: 1;
 }
 .image-three-left{
  margin-right: var(--v-space);
 }
 .image-three-item1{
  margin-bottom: var(--v-space);
 }
 
 .image-three-item img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
 }
 @media screen and (max-width: 767px){
  .image-three-content>*{
    flex: unset;
  }
  .image-three-content{
    flex-wrap: wrap;
  }
  .image-three-item{
    width: 100%;
  }
  .image-three-item1, .image-three-item2{
    margin-bottom:var(--h-space);
  }
  .image-three-left{
    width: 100%;
    margin-right:0;
  }

 }
/* 3图 End */
/* 图片列表 Start */
.image-list {
  display: flex;
  flex-wrap:var(--image-list-wrap, wrap);
}

.image-list .image-item {
  margin-bottom: var(--h-space);
}

@media screen and (max-width: 767px) {
  .image-list .image-item {
    width: 100%;
  }

  .image-list .image-item {
    margin: 0 var(--v-space) var(--h-space) 0;
  }
}

@media screen and (min-width: 768px) {
  .image-list .image-item {
    margin-right: var(--v-space);
  }
}

/* 图片列表 End */
/* 图片轮播列表 Start */
.image-slide-list{
  position: relative;
  --next-btn-right:0;
  --prev-btn-left:0;
  --prev-next-btn-top: calc(50% - var(--section-space) / 2) 
}
@media screen and (min-width: 768px){
 .image-slide-list .swiper-pagination{
  display: none;
 }
}
/* 图片轮播列表 End */
/* function-email Start */
  .function-email{
    --function-email-title-bottom: 20px;
    --function-email-subtitle-bottom: 20px;--function-email-inputdiv-bottom: 0;
    --function-email-m-title-size: 14px;
    --function-email-m-subtitle-size: 14px;
    --function-email-input-size: 16px;
    --function-email-btn-size: 16px;
    --function-email-btn-padding: 0 25px;
    --function-email-input-padding: 0 25px;
    position: relative;
    margin:var(--function-email-margin, 0 0 var(--section-space));
  }
  .function-email-img{
    position: relative;
    width: 100%;
  }
  .function-email-img img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .function-email-body{
    display: flex;
    flex-direction:var(--function-email-body-direction, column) ;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width:var(--function-email-body-max-width, 60%);
  }
  .function-email-title{
    margin-bottom: var(--function-email-title-bottom);
    font-size: var(--function-email-m-title-size);
    font-weight: 700;
  }
  .function-email-subtitle{
    margin-bottom: var(--function-email-subtitle-bottom);
    font-size: var(--function-email-m-subtitle-size);
    white-space: pre-wrap;
  }
  .function-email-subs{
    display: flex;
    height: var(--btn-height);
  }
  .function-email-subs button{
    height: 100%;
    padding: var(--function-email-btn-padding);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: var(--function-email-btn-weight , 400);
  }
  .function-email-subs input{
    height: 100%;
    min-width:var(--function-email-input-min-width, 350px);
    padding: var(--function-email-input-padding);
    font-size: var(--function-email-input-size);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .func-email-success{
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .func-email-success .iconfont{
    margin-bottom: 16px;
    font-size: 42px;
  }
  .email-success-title{
    margin-bottom: 24px;
    font-weight: 700;
  }
  .email-success-subtitle{
    white-space:  pre-wrap;
  }
  @media screen and (max-width: 1200px){
    .function-email-body {
      max-width: 85%;
      width: 85%;
    }
  }
  @media screen and (max-width: 767px){
    .function-email {
      --function-email-title-bottom: 14px;
      --function-email-subtitle-bottom: 14px;
      --function-email-input-size: 14px;
      --function-email-btn-size: 14px;
      --function-email-btn-padding: 0 15px;
      --function-email-input-padding: 0 15px;
      --function-email-input-min-width:"initial";
    }
    .function-email-body{
      width: 100%;
      max-width: 100%;
      padding: 0 var(--side-padding);
    }
   
    .function-email-subs{
      width: 100%;
    }
    
    .function-email-subs input{
      flex: 1;
      border: 0;
    }
    .func-email-success{
      max-width: 100%;
      width: 100%;
      padding: 10px;
      white-space: nowrap;
    }
    .email-success-title{
      margin-bottom: 14px;
    }
  }
/* function-email End */

/* imgtxt-list Start */
  .imgtxt-list-body{
    display: flex;
    flex-wrap:var(--imgtxt-list-body-wrap, wrap);
  }
  .imgtxt-list-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: var(--h-space);
    margin-right: var(--v-space);
  }
  .imgtxt-list-top{
    width: 100%;
  }

  .imgtxt-list-image{
    margin-bottom: var(--imgtxt-list-image-margin-bottom,8px);
  }
  .imgtxt-list-title{
    display: block;
    font-weight:var(--imgtxt-list-title-weight, 600) ;
  }
  .imgtxt-list-title{
    margin-bottom:var(--imgtxt-list-title-margin-bottom, 8px);
  }
  .imgtxt-list-text{
    margin-bottom: var(--imgtxt-list-text-margin-bottom, 8px);
    line-height: 1.3;
    white-space: pre-wrap;
  }
  .imgtxt-list-btn{
    width: fit-content;
  }

  @media screen and (max-width: 1200px) {
    .imgtxt-list{
      --imgtxt-list-text-margin-bottom:5px;
    }
  }
/* 图文列表 End */

/* 图标文本  Start */
.imgtxt-icon-wrapper{
  display: flex;
}
.imgtxt-icon-item{
  flex:var(--imgtxt-icon-item-flex-num, 1);
  display: flex;
  align-items: center;
  flex-direction: var(---imgtxt-icon-item-flex-direction, column);
  max-width: var(--imgtxt-icon-item-max-width, 50%);
  margin-right:var(--imgtxt-icon-item-right, 20px) ;
  margin-bottom:var(--imgtxt-icon-item-bottom, 0) ;
}
.imgtxt-icon-item:last-child{
  margin-right: 0;
}
 .imgtxt-icon-title{
  margin-top: 10px;
  line-height: 1;
  white-space: normal;
  font-size: var(--imgtxt-icon-title-size, 18px);
  font-weight: var(--imgtxt-icon-title-weight,700);
  text-align:var(--imgtxt-icon-title-text-align, center);
 }
 .imgtxt-icon-image>img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 .imgtxt-icon-image{
    height: var(--imgtxt-icon-image-height,80px);
    width: var(--imgtxt-icon-image-width, 80px);
    margin:var(--imgtxt-icon-image-margin,0 0 10px 0);
    flex-shrink: 0;
 }
 .imgtxt-icon-text {
   width: 100%;
   padding: var(--imgtxt-icon-text-padding, 0 20px );
   line-height: 1.2;
   color: var(--theme-font-color);
 }
 .imgtxt-icon-desc{
  margin-top: var(--imgtxt-icon-desc-top, 10px);
  width: 100%;
  white-space: pre-wrap;
  text-align: var(--imgtxt-icon-title-text-align, center);
 }
@media screen and (max-width: 767px) {
  .imgtxt-icon{
    --imgtxt-icon-item-bottom: var(--h-space);
    --imgtxt-icon-item-right: var(--v-space);
    --imgtxt-icon-item-flex-num: none;
    --imgtxt-icon-text-padding:0;
    --imgtxt-icon-item-max-width:100%;
    ---imgtxt-icon-item-flex-direction: row;
    --imgtxt-icon-title-size:14px;
    --imgtxt-icon-title-text-align: left;
    --imgtxt-icon-image-width:50px;
    --imgtxt-icon-image-height:50px;
    --imgtxt-icon-image-margin:0 10px 0 0;
  }
  
  .imgtxt-icon-title{
    margin: 0;
  }
  .imgtxt-icon-text{
    margin: 0;
  }
  
  .imgtxt-icon-wrapper{
    flex-wrap: wrap;
  }
  .imgtxt-icon-item {
    width:var(--imgtxt-icon-item-width, calc(50% - var(--v-space)));
  }
 }
/* 图标文本  End */
/* 左文右图/右文左图 Start */
.imgtxt-single {
  display: flex;
  justify-content: space-between;
  align-items: var(--imgtxt-single-align-items, center);
  --imgtxt-single-title-bottom:40px;
  --imgtxt-single-text-bottom:50px;
  --imgtxt-single-text-align:left;
  --imgtxt-single-body-align: flex-start;
  --imgtxt-single-body-slide-padding: 80px;
}

.imgtxt-single-image {
  padding-bottom: var(--imgtxt-single-image-padding-bottom, 48%);
  width:var(--imgtxt-single-image-width, 50%);
}

.imgtxt-single-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: var(--imgtxt-single-body-align);
  width:var(--imgtxt-single-text-width, 50%);
  padding : var(--imgtxt-single-body-slide-padding);
  line-height: 1.5;
}

.imgtxt-single-text .content-title {
  margin-bottom: var(--imgtxt-single-title-bottom);
  text-align: var(--imgtxt-single-text-align);
  font-size: var(--section-title-size);
  font-weight: var(--imgtxt-single-text-weight, 700);
}

.imgtxt-single-text .rich-text {
  width: 100%;
  margin-bottom: var(--imgtxt-single-text-bottom);
  text-align: var(--imgtxt-single-text-align);
  font-size: 14px;
  white-space: pre-wrap;
}
@media screen and (max-width: 1200px){
  .imgtxt-single {
    --imgtxt-single-title-bottom: 10px;
    --imgtxt-single-text-bottom: 10px;
    --imgtxt-single-body-slide-padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .imgtxt-single {
    flex-direction: column;
    --imgtxt-single-text-width:100%;
    --imgtxt-single-image-width:100%;
    --imgtxt-single-image-padding-bottom:100%;
    --imgtxt-single-title-bottom: 15px;
    --imgtxt-single-text-bottom: 15px;
    --imgtxt-single-body-slide-padding: 10px;
    --imgtxt-single-body-align: center;
    --imgtxt-single-text-align: center;
  }

  .imgtxt-single:not(:last-child) {
    margin-bottom: 32px;
  }
 
  .imgtxt-single-text .content-title {
    width: 100%;
  }

  .imgtxt-single-text .rich-text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
/* 左文右图/右文左图 End */
/* 图文轮播列表 Start */
.imagetxt-list {
  position: relative;
}

.imagetxt-slide-item {
  height: auto;
  width: 20%;
  margin-right: var(--v-space);
}

.imagetxt-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
  font-size: 16px;
}

.imagetxt-slide-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
}

.imagetxt-slide-text {
  margin-top: 10px;
  white-space: pre-wrap;
}

.imagetxt-slide-btn {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .imagetxt-slide-item {
    margin-right: 12px
  }

  .imagetxt-slide-content {
    font-size: 14px;
  }

  .imagetxt-slide-title {
    font-size: 16px;
  }

  .imagetxt-slide-text {
    margin-top: 8px;
  }

  .imagetxt-slide-btn {
    padding: 0 15px;
    width: 100%;
    text-align: center;
  }
}

/* 图文轮播列表 End */
/* 网站评价 Start */
  .content-classicreview{
    --prev-btn-left: 5px;
    --next-btn-right: 5px;
  }
  .content-classicreview-item{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content-classicreview-avator{
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
  }
  .content-classicreview-avator>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content-classicreview-username{
    margin-bottom: 4px;
    font-weight: 700;
  }
  .content-classicreview-userdesc{
    white-space: pre-wrap;
  }
  .content-classicreview-content{
    margin-top:var(--content-classicreview-content-top, 12px);
    white-space: pre-wrap;
    padding:var(--content-classicreview-content-padding, 0 10px);
    text-align:var(--content-classicreview-content-text-align, center);
  }

  @media screen and (min-width: 768px){
    
    .content-classicreview .swiper-pagination{
      display:var(--content-classicreview-pagination-display, none);
    }
  }
  @media screen and (max-width: 767px){
    .content-classicreview-avator{
      height: 56px;
      width: 56px;
    }
    .content-classicreview .prev-btn,.content-classicreview .next-btn {
      display: none;
    }
  }
/* 网站评价 End */

/* 商品评价列表 Start */
.choicereview{
  --choicereview-body-side-padding: 14px;
  --choicereview-body-top-padding: 14px;
  --choicereview-body-bottom-padding: 14px;--choicereview-info-bottom-padding: 14px;
  --choicereview-product-img-height: 48px;
  --choicereview-product-img-width: 48px;
  --choicereview-product-height: 60px;
  --choicereview-product-padding: 6px;
  --choicereview-name-size: 16px;
  --choicereview-star-size: 14px;
  --choicereview-time-size: 14px;
  --choicereview-content-size: 14px;
  --choicereview-product-size: 16px;
}
.choicereview-list {
  display: flex;
  flex-wrap: wrap;
}

.choicereview-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: var(--h-space);
}


.choicereview-info{
  margin:var(--choicereview-body-top-padding) var(--choicereview-body-side-padding) var(--choicereview-info-bottom-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.choicereview-info-right{
  display: flex;
  align-items: center;
}
.choicereview-origin {
  font-weight: var(--choicereview-name-weight, 700);
  font-size: var(--choicereview-name-size);
}

.choicereview-stars {
  display: flex;
  justify-content: start;
  margin-right: 6px;
}
.choicereview-stars li{
  margin-right: var(--choicereview-star-right, 4px);
  font-size: var(--choicereview-star-size);
}
.choicereview-time{
  padding-top: 3px;
  font-size: var(--choicereview-time-size);
  line-height: 22px;
  color: var(--theme-font-color-sub);
}
 .choicereview-content {
  padding: 0 var(--choicereview-body-side-padding) ;
  margin-bottom: var(--choicereview-body-bottom-padding);
  width: 100%;
  font-size: var(--choicereview-content-size);
}

.choicereview-bottom {
  display: flex;
  align-items: center;
  padding: var(--choicereview-product-padding);
  height: var(--choicereview-product-height);
  color: var(--theme-font-color);
  border: 1px solid var(--theme-border-color);
  border-radius: var(--theme-border-radius);
  transition: .3s border-color ease;
}

.choicereview-item:hover .choicereview-bottom {
  border-color: var(--main-color);
}

.choicereview-product-image {
  margin-right: 16px;
  height:var(--choicereview-product-img-height);
  width: var(--choicereview-product-img-width);
}

.choicereview-product-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  font-size: 0;
}

.choicereview-product-name {
  flex: 1;
  font-size: var(--choicereview-product-size);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1100px) and (min-width: 768px){
  .choicereview-info{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px){
  .choicereview {
    --choicereview-body-side-padding: 10px;
    --choicereview-body-top-padding: 10px;
    --choicereview-body-bottom-padding: 10px;
    --choicereview-info-bottom-padding: 10px;
    --choicereview-product-img-height: 40px;
    --choicereview-product-img-width: 40px;
    --choicereview-product-height: 50px;
    --choicereview-product-padding: 5px;
    --choicereview-name-size: 14px;
    --choicereview-star-size: 12px;
    --choicereview-product-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
  .choicereview {
    --choicereview-body-bottom-padding: 8px;
    --choicereview-time-size: 12px;
    --choicereview-product-size: 12px;
  }
  .choicereview-stars li{
    margin-right: 2px;
  }
}
@media screen and (max-width: 767px) {
  .choicereview .prev-btn,.choicereview .next-btn{
    display:var(--choicereview-m-navigation-display, none) ;
  }
  .choicereview-list{
    flex-wrap:var(--m-choicereview-list-wrap,nowrap );
  }
  .choicereview-item {
    width: 100%;
  }
  .choicereview-content {
    line-height: 21px;
  }
  .choicereview-more{
    margin-top:var(--choicereview-more-top, var(--h-space));
  }
}

@media screen and (min-width: 768px) {
  .choicereview-item {
    margin-right: var(--v-space);
  }

}
/* 评价列表 End */

/* 博客 Start */
.content-blog{
--content-blog-body-padding:14px 14px 0;
--content-blog-title-bottom:14px;
--content-blog-info-bottom:14px;
--content-blog-content-bottom:6px;
--content-blog-title-size:16px;
--content-blog-time-size: 14px;
--content-blog-content-size: 14px;
}
.content-blog-list{
  display: flex;
  flex-wrap: wrap;
}
.content-blog-item{
  margin: var(--content-blog-item-margin, 0 var(--v-space) var(--h-space) 0);
}
.content-blog-cover{
  padding-bottom: 66.67%;
}

.content-blog-body{
  padding: var(--content-blog-body-padding) ;
}
.content-blog-title{
  margin-bottom: var(--content-blog-title-bottom);
  font-size: var(--content-blog-title-size);
  line-height: calc(var(--content-blog-title-size) + 8px);
  font-weight: var(--content-blog-title-weight,700);
  color:var(--theme-font-color);
}
.content-blog-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--content-blog-info-bottom);
}
.content-blog-time{
  color: var(--theme-font-color-sub);
  font-size: var(--content-blog-time-size);
}
.content-blog-content{
  font-size:var(--content-blog-content-size);
}
.content-blog-read{
  display: block;
  margin-top: var(--content-blog-content-bottom);
  color: var(--content-blog-redmore-color,var(--highlight-font-color));
  text-decoration: underline;
  font-size: var(--content-blog-redmore-size, 14px);
}
.content-blog .prev-btn,.content-blog .next-btn{
  display: none;
}
.content-blog .list-more-button{
  text-align: var(--content-blog-text-align);
}
@media screen and (max-width: 767px){
  .content-blog{
    --content-blog-item-margin: 0;
  }
  .content-blog-list{
    flex-wrap: var(--content-blog-list-wrap,nowrap);
  }

  .content-blog-item{
    width: 100%;
  }
  .content-blog-title{
    width: auto;
  }

  .content-blog .list-more-button{
    margin-top: var(--list-more-top);
    margin-bottom: 0;
  }
}
/* 博客 End */


/* 单视频 Start */

.video-single-content{
  position:relative;
  width:100%
}
.video-single-content iframe{
  width: 100%;
  aspect-ratio:var(--video-single-iframe-aspect, 3);
}
.video-single-item{
  width:100%
}
.video-single-poster{
  width:100%;
  height:100%;
  object-fit: cover;
}
.video-single-play{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-single-play .video-single-txt{
  position: absolute;
  left:var(--video-single-txt-left,40px);
  bottom:var(--video-single-txt-bottom, 30px);
  font-size:var(--video-single-txt-size, 28px);
  color: #fff;
}
.video-single-txt::before{
  display: inline-block;
  height:var(--video-single-txt-play-height, 60px);
  width: var(--video-single-txt-play-width,60px);
  border-radius: 50%;
  text-align: center;
  line-height:var(--video-single-txt-play-height, 60px);
  font-size: var(--video-single-txt-play-size ,30px);
  opacity: .4;
  background-color: #fff;
  color: #666;
}
@media screen and (max-width: 767px){
  .video-single-content{
    --video-single-txt-play-height:40px;
    --video-single-txt-play-width:40px;
    --video-single-txt-play-size:22px;
    --video-single-txt-size:20px;
    --video-single-txt-left:20px;
    --video-single-txt-bottom:10px;
    --video-single-iframe-aspect:1;
  }
  .video-single-content iframe {
    width: 100%;
    max-height: 500px;
  }

}
/* 单视频 End */

/* 视频文本 Start */

.video-text-content {
  display: flex;
  flex-direction: var(--video-text-content-flex-direction, row);
  border-radius: var(--theme-border-radius);
}
.video-text-body {
  width:var(--video-text-body-width, 50%);
}
.video-text-item {
  position: relative;
  width:var(--video-text-item-width, 50%);
  overflow: hidden;
}

.video-text-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-text-item iframe{
  width: 100%;
  aspect-ratio:var(--video-text-item-iframe, 1);
}
.video-text-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-text-play{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.video-text-play .video-text-txt {
  position: absolute;
  left:var(--video-text-txt-left, 40px);
  bottom: var(--video-text-txt-bottom,30px);
  font-size:var(--video-text-txt-size, 28px);
  color:var(--video-text-txt-color, #fff);
}
.video-text-txt::before {
  display: inline-block;
  height:var(--video-text-txt-icon-height, 60px);
  width: var(--video-text-txt-icon-width, 60px);
  border-radius: 50%;
  text-align: center;
  line-height:var(--video-text-txt-icon-height, 60px);
  opacity: .4;
  background-color: #fff;
  color: #666;
}
.video-text-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:var(--video-text-body-padding,30px 50px);
}
.video-text-title{
  font-weight: 700;
  margin-bottom: 10px;
}
.video-text-subtext{
  
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.video-text-body .button{
  width: fit-content;
  color: #333;
  background-color: #fff;
}
.video-text-body .button:hover{
  color: #fff;
}
@media screen and (max-width: 767px) {
  .video-text{
    --video-text-body-padding:padding: 10px 15px;;
    --video-text-txt-left:20px;
    --video-text-txt-bottom:10px;
    --video-text-txt-size:22px;
    --video-text-txt-icon-width:40px;
    --video-text-txt-icon-height:40px;
    --video-text-content-flex-direction:column;
  }
  .video-text-item{
    width: 100%;
  }
  .video-text-body{
    width: 100%;
  }
  .video-text-title{
    margin-bottom: 0;
    font-size: 18px;
  }
  .video-text-subtext{
    margin-bottom: var(--video-text-subtext-bottom, 10px);
    -webkit-line-clamp: 2;
  }

}

/* 视频文本 End */

/* 折叠内容 Start */

.text-fold-item {
  border-bottom: 1px solid #ccc;
}
.text-fold-top{
  display: flex;
  justify-content:space-between ;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
}
.text-fold-title{
  font-weight: 700;
}
.text-fold-text{
  display: none;
  margin-bottom:24px;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px){
  .text-fold-top .iconfont{
    font-size: 12px;
  }
  .text-fold-text{
    margin-bottom:16px;
  }
}

/* 折叠内容 End */
