/* 主题样式表 */
:root{
  --img-background: var(--bg-img-url) no-repeat center;
  --img-background-size:80%;
  --page-bg-color: #fff;
  --m-section-space:30px;
  /* wrapper上下间距 */
  --wrapper-side-padding: 30px;
    /*wrapper左右间距 */
  --side-padding: 40px;
  /* highlight  */
  --highlight-bg-color: var(--main-color);
  --highlight-font-color: var(--main-color);
  --nav-bg-color:var(--main-color-second);
  --btn-height: 40px;
  /* swiper navigation */
  --arrow-btn-height: 40px;
  --arrow-btn-width: 40px;
  --arrow-btn-color: #fff;
  --arrow-btn-bg: var(--main-color);
  /*swiper pagination */
  --swiper-bullet-inactive-color: var(--main-color);
  --swiper-bullet-inactive-opacity: .5;
  --swiper-bullet-active-color: var(--main-color);
  --swiper-bullet-active-opacity:1;
  --font-size-first: 36px;
  --font-size-second: 20px;
  --font-size-body: 16px;
  --font-size-sub: 14px;
  --theme-transition: all .3s ease;
  --theme-img-transform: scale(1.05);
	/* 行高 */
	--size-typeBaseLineHeight: 1.4;
}
 html,
 body,
 input,
 select,
 textarea,
 button {
   --section-title-size: var(--font-size-first);
   --section-title-height: calc(var(--font-size-first) + 8px);
   --section-title-bottom: 15px;
   /* 组件标题 */
   --section-title-text-align: left;
   --section-subtitle-size: var(--font-size-second);
   --section-subtitle-height: calc(var(--font-size-second) + 8px);
   --section-subtitle-bottom: 20px;
   font-family: var(--main-font-family), sans-serif;
 }
 header {
   --header-icon-gap-half: 20px;
   --nav-column-gap-half: 20px;
   --theme-nav-font-size: 16px;
   --theme-nav-line-height: calc(var(--theme-nav-font-size) + 8px);
 }
@media screen and (max-width: 1200px) {
  :root {
    --wrapper-side-padding: 15px;
    --side-padding: 40px;
    --btn-height: 35px;
    --font-size-first: 36px;
    --font-size-second: 16px;
    --font-size-body: 14px;
    --font-size-sub: 12px;
		--h-space: 17px;
		--v-space: 17px;
  }
  html,
  body,
  input,
  select,
  textarea,
  button {
    --section-title-bottom: 15px;
    --section-subtitle-bottom: 15px;
  }
  header {
    --header-icon-gap-half: 10px;
    --theme-nav-font-size: 16px;
    --theme-nav-line-height: calc(var(--theme-nav-font-size) + 8px);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --side-padding: 17px;
		--font-size-first: 30.56px;
  }
}
/* 商品列表组件样式 Start */
.product-stars {
  --product-star-right: 4px;
  --product-star-size: 14px;
}
/* 商品卡片组件 Start */
.product-card,.products-box,.flash-sale-card{
  /* subtitle */
  --product-subtitle-bottom: 14px;
  --product-subtitle-font-size: 14px;
  --product-subtitle-text-align: left;
  --product-stars-bottom: 14px;
	--product-name-text-align: center;
	--product-del-price-size: 15.3px;
	--product-price-font-size: 15.3px;
	--product-price-weight: 400;
	--product-item-border: 0;
}
.product-info .price-row,
.products-box .price-row, 
.flashsale-price-row{
	justify-content: center;
	flex-direction: row-reverse;
}
.product-list .product-info, .products-box .product-info, .flash-sale-info{
	--product-info-align-items: center;
}
.product-info-bottom{
	text-align: center;
}
.product-info-top,
.product-list .product-name,
.product-info-bottom{
	width: 100%;
}
.product-item .original-price,
.flashsale-original-price{
	padding: 0 10px 0 0;
}
.product-info .animation-underline{
	letter-spacing: 3.2px;
}
.product-item .product-price,
.product-item .original-price{
	line-height: 1.4;
	color: #1C1D1D;
	border: 0;
}

@media screen and (max-width: 1200px) {
  .product-stars{
    --product-star-size: 12px;
  }
  .product-card ,
  .products-box,.flash-sale-card{
    --product-info-padding: 10px;
    /* title */
    --product-name-bottom: 10px;
    --product-name-font-size: 16px;
    /* subtitle */
    --product-subtitle-bottom: 10px;
    --product-subtitle-font-size: 14px;
    --product-stars-bottom: 10px;
    --product-star-right: 3px;
    --product-price-right: 5px;
    --product-price-font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
	.product-card,.products-box,.flash-sale-card{
		--product-del-price-size: 12px;
		--product-price-font-size: 12px;
		--product-name-font-size: 15px;
	}

}
/* 商品卡片组件 End */

/* 按钮样式 Start */
.button--default {
  --btn-side-padding: 60px;
  --btn-border-color:rgba(0,0,0,.1);
  --btn-font-color:#000;
  --btn-bg-color: var(--page-bg-color);
}

.button--primary {
  --btn-side-padding: 60px;
  --btn-border-color: var(--highlight-bg-color);
  --btn-bg-color: var(--highlight-bg-color);
  --btn-font-color: #fff;
}
@media screen and (min-width: 768px){
  .button--primary:hover {
    --btn-bg-color: transparent !important;
    --btn-font-color: var(--highlight-font-color)!important;
  }
  .button--default:hover {
    color: #FFF !important;
    background-color: var(--main-color) !important;
    border-color: var(--main-color-second) !important;
  }
}
@media screen and (max-width: 1200px){
  .button--default,.button--primary{
    --btn-side-padding: 40px;
  }
}
/* 按钮样式 End */

/* swiper Start */
.swiper {
  --prev-btn-left: 10px;
  --next-btn-right: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-width: 6px;
  --swiper-pagination-bullet-inactive-color: var(--swiper-bullet-inactive-color);
  --swiper-pagination-bullet-inactive-opacity: var(--swiper-bullet-inactive-opacity);
  --slide-pagination-bottom: 20px;
  --swiper-pagination-color: var(--main-color);
  --pagination-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .swiper {
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: var(--swiper-bullet-inactive-color);
    --swiper-pagination-bullet-inactive-opacity: var(--swiper-bullet-inactive-opacity);
    --slide-pagination-bottom: 15px;
  }
}
/* swiper End */
/* 币别 */
.currencies {
  padding-left: var(--header-icon-gap-half);
}
@media screen and (max-width: 767px){
.currencies {
    padding-left: 0;
  }
}

/* 字体大小 */
@media screen and (max-width: 1200px) {
	.wrapper{
		--wrapper-list-title: 23.4px;
		--wrapper-list-text: 18px;
	}
}
@media screen and (max-width: 767px) {
	.wrapper{
		--wrapper-list-title: 22.32px;
		--wrapper-list-text: 16.56px;
		--section-space-bottom: 15px;
	}
}