/* 头部 */
/* logo */
.logo {
  font-size: 0;
  text-align: left;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* announcement Start */
.j-announcement-newswiper {
  max-width: var(--max-width);
  width: 55%;
  padding: 0 var(--side-padding);
  margin: auto;
}
.swiper-wrapper .announcement-wrapper {
  display: block;
  margin: auto;
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding: 20px  var(--side-padding);
}
.announcement .announcement-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
}
.announcement-btn.icon-left{
  left: var(--side-padding);
}
.announcement-btn.icon-right {
  right:var(--side-padding);
}
.announcement-btn.swiper-button-disabled{
  cursor: not-allowed;
  opacity: .5;
}
@media screen and (max-width: 1100px){
  .j-announcement-newswiper{
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .j-announcement-newswiper {
    width: 100%;
  }
  .announcement {
    line-height: 30px;
  }
  .swiper-wrapper .announcement-wrapper{
    padding: 16px 9px;;
  }
}

/* 公告栏 End */
/* 页头 Start */
header{
  --header-opacity:1;
  margin-bottom: 80px;
}
.header-top-fixed {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--side-padding);
  z-index: 256;
}
.header-top-fixed::before{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: var(--nav-bg-color);
  border-radius: var(--theme-border-radius);
  transition: width ease 1s;
  z-index: -1;
  transform: translate(-50%);
 
}
.header-top-fixed.hide {
  transform: translateY(-100%);
}
.animation{
  transition: transform .3s ease-out;
}
.header-top-fixed.fixed{
  position: fixed;
}
.header-top-fixed.fixed::before{
  width:100%;
  transition: width ease 1s;
  border-radius: 0;
}
.header-main {
  display: grid;
  align-items: center;
  grid-template-columns:auto 1fr auto;
  column-gap:48px;
  --wrapper-padding: 20px var(--side-padding);
  max-width: calc(var(--max-width) - var(--side-padding) * 2 );
  background-color: var(--nav-bg-color);
  border-radius: var(--theme-border-radius);
}
/* search pc */
.show-search-box{
  position: relative;
  margin-right: var(--header-icon-gap-half);
  font-size: 20px;
  color: var(--nav-font-color);
  cursor: pointer;
}
/* search box */
.search-bar {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 20px;
  left: var(--side-padding);
  right: var(--side-padding);
  z-index: 20;
  align-items: center;
  max-width: var(--max-width);
  background-color: var(--nav-bg-color);
  border-radius: var(--theme-border-radius);
  transition: all .3s ease;
  padding-left: 40px;
  padding-right: 40px;
}
.search-bar.open {
  opacity: 1;
  visibility: visible;
  padding: 40px 40px 80px;
}
.search-bar .search-form {
  flex: 1;
  position: relative;
  height: 100%;
}
.search-bar .search {
  width: 100%;
  padding: 10px 16px;
  color: #fff;
  background: var(--page-bg-color);
  border: 1px solid rgba(255,255,255,.12);
}
.search-bar .icon-search{
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 10;
  font-size: 20px;
  cursor: pointer;
  color: var(--nav-font-color);
}
.j-close-search{
  padding: 10px;
  margin-left: 20px;
  cursor: pointer;
  color: var(--nav-font-color);
}
/* minicart 和 header-right-account */
header .header-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0;
}
.header-right-minicart .icon-cart, .header-right-account .icon-account{
  padding: 0 var(--header-icon-gap-half);
  font-size: 20px;
  color: var(--nav-font-color);
}

.header-right-minicart{
  font-size: 0;
}

.header-cart {
  position: relative;
}

.cart-badge {
  display: none;
  position: absolute;
  top: -6px;
  right: 10%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  color: var(--theme-font-color-dark);
  background: var(--highlight-bg-color);
  border-radius: 50%;
}
.header-account-info,
.header-minicart-info {
  display: none;
  position: absolute;
  right: 35px;
  z-index: 128;
  padding: 16px;
  box-sizing: border-box;
  color: #fff;
  background-color: var(--page-bg-color);
  box-shadow:var(--popup-shadow);
  border-radius: var(--theme-border-radius);
}
.header-account-info{
  min-width: 200px;
}
/* minicart Start */
.header-minicart-info {
  min-width: 368px;
  max-width: 450px;
  padding: 24px;
}

.header-minicart-subtotal {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--theme-border-color);
}
.minicart-subtotal-price{
  font-weight: 700;
}

#paypal-button-container-cart-popup {
  margin-top: 8px;
  overflow: hidden;
  font-size: 0;
  border-radius: 10px;
}
.minicart-list {
  max-height: 400px;
  margin-top: 24px;
  background-color: var(--page-bg-color);
  overflow-y: auto;
}

.minicart-list::-webkit-scrollbar {
  display: none;
}

.minicart-item {
  margin-bottom: 24px;
  width: 100%;
  height: 100%;
}

.minicart-item:last-child {
  margin-bottom: 0;
}

.minicart-item-content {
  display: flex;
  color: #fff;
}

.minicart-item-img {
  flex-shrink: 0;
  width: 80px;
  padding-bottom: 80px;
  margin-right: 16px;
  border: 1px solid #e6e6e6;
}

.minicart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
}

.minicart-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.minicart-item-sku {
  color: #8B8B8B;
}

.minicart-item-price {
  font-weight: 700;
}

.show-now-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
}
.header-minicart-subtotal .button--primary {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
.minicart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.minicart-header .minicart-subtotal {
  font-size: 16px;
}

.header-minicart-subtotal .minicart-header a {
  font-size: 16px;
}

.cartEmpty-link-wrapper {
  max-width: 368px;
  font-size: 14px;
}

/* header-right-account */
.header-account-info a {
  display: inline-block;
}
.header-info-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--theme-border-color);
}

.header-login-btn {
  width: 175px;
  --btn-side-padding: 10px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 16px;
}

.header-register-btn {
  margin-bottom: 8px;
  font-size: 14px;
}

.header-register-btn a {
  text-decoration: underline;
  font-weight: 700;
}

.header-info-list {
  display: inline-flex;
  flex-direction: column;
}

.header-info-list .header-login-i {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.header-info-list .header-login-i:hover {
  color: var(--highlight-font-color);
}

.header-sign-out {
  padding-top: 16px;
  font-size: 14px;
  border-top: 1px solid var(--theme-border-color);

}

.sign-out-btn {
  color: var(--highlight-font-color);
}
.currencies-dropdown-menu{
  border-radius: var(--theme-border-radius);
  background-color:var(--page-bg-color);
  border: 0;
  box-shadow: var(--popup-shadow);
  padding: 10px 32px;
}
.currencies-dropdown-menu .currencies-item-icon{
  color: #fff;
}
/* nav */
.header-nav {
  display: flex;
  flex-wrap: wrap;
}

.header-nav .nav-item {
  position: relative;
  padding: 10px var(--nav-column-gap-half);
}
.has-children .nav-link::after{
  content: "\e7e8";
  font-family: "iconfont";
  padding-left: 10px;
  padding-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  background: #fff;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.has-children.hover .nav-link::after{
  content: "\e7f0";
}
.has-children .nav-link{
  display: flex;
  align-items: center;
}
.nav-item .nav-link {
  font-weight: 600;
  font-size: var(--theme-nav-font-size);
  line-height: var(--theme-nav-line-height);
  color: var(--nav-font-color);
  cursor: pointer;
}

.nav-item .nav-link>*{
  font-size: inherit;
  font-weight: inherit;
}
.nav-item.hover .nav-link:not([data-has-icon]){
  background: var(--highlight-bg-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* .nav-item .nav-link:not([data-has-icon]):hover{
  background: var(--highlight-bg-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
} */
.nav-item.hover .nav-link[data-has-icon]{
  color: var(--highlight-font-color);
}
/* .nav-link[data-has-icon]:hover{
  color: var(--highlight-font-color);
} */
/* header-dropdown */
.header-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--nav-bg-color);
  box-shadow: var(--popup-shadow);
  min-height: 20%;
  max-height: 60%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.header-dropdown-text.is-vertical{
  min-width: 379px;
  min-height: 0;
  border-radius: 20px;
}
.header-dropdown-text.is-vertical .dropdown-wrapper-text{
  align-content: flex-start;
  flex-wrap: nowrap;
  gap: 16px 40px;
  padding: 16px 24px;
}
.header-dropdown-text.is-vertical .second-link{
  border-bottom: 0;
  padding-bottom:0;
  font-size:18px;
}
.header-dropdown-imgtext{
  height: 100%;
}
.header-dropdown::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 3px;
}

.header-dropdown::-webkit-scrollbar-thumb { 
	border-radius: 6px; 
	border: 2px solid rgba(255,255,255,.4); 
	background-color: rgba(0, 0, 0, .5);
}

/*  nav not(vertical) */
.header-dropdown .dropdown-wrapper {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding: 30px var(--side-padding);
  margin:0 auto;
  width: 100%;
  max-width: var(--max-width);
  overflow: auto;
}
.header-dropdown .dropdown-wrapper-imgtext{
  justify-content: center;
  align-content: flex-start;
}
.header-dropdown .dropdown-wrapper-onlyimg{
  display: grid;
  align-content: flex-start;
  grid-gap:20px;
}
.dropdown-wrapper-text{
  flex-direction: column;
}
.dropdown-imgtext-left{
  display: flex;
  flex-wrap: wrap;
  writing-mode: vertical-lr;
  gap: 20px;
  flex-shrink: 0;
  height: 100%;
}
.dropdown-imgtext-right {
  display: grid;
  grid-gap: 20px;
}
.dropdown-imgtext-left .header-dropdown-item{
  writing-mode: horizontal-tb;
}
.dropdown-wrapper .header-dropdown-item {
  position: relative;
}
.header-dropdown-imgitem{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dropdown-wrapper-imgtext .header-dropdown-imgitem{
  width: 100%;
  min-width: 250px;
  max-width: 350px;
}
.dropdown-wrapper-onlyimg img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-dropdown-imgitem .second-link{
  padding-bottom: 5px;
  border-bottom: 0;
}
.second-link{
  display: block;
  width: fit-content;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--theme-font-color);
  border-bottom: 1px solid var(--theme-border-color);
}
.second-link a{
  color: var(--theme-font-color);
}
.dropdown-wrapper .third-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dropdown-wrapper h3{
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
}
.dropdown-wrapper h3:not(:last-child){
margin-bottom: 10px;
}
.dropdown-wrapper .third-link {
  white-space: normal;
  color: var(--theme-font-color);
}

@media screen and (min-width: 768px) {
  .header-dropdown .second-link:hover,.header-dropdown .second-link:hover a,.third-link:hover{
    color: var(--highlight-font-color);
  }
}

@media screen and (max-width: 1200px){
  .header-main{
    justify-content: flex-start;
  }
  header .header-left{
    padding:0 80px;
  }
  .header-dropdown .second-link{
    font-size: 14px;
  }
  .header-dropdown .second-link{
    padding-bottom:5px;
  }
  .dropdown-wrapper .third-links{
    margin-top: 12px;
  }
}

.shelter {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .7;
}

/* mobile-nav */
.mobile-nav-wrapper{
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 512;
  padding:  var(--side-padding);
  width: 100vw;
  font-size: 16px;
  color: var(--nav-font-color);
  background-color: rgba(23, 22, 26, .5);
  transition: all .2s ease .4s;
}
.mobile-nav-wrapper.open{
  opacity: 1;
  visibility: visible;
  transition: all .2s ease;
}
.mobile-nav {
  display: block !important;
  position: relative;
  width: 0;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  padding: 20px;
  border-radius: var(--theme-border-radius);
  background-color: var(--nav-bg-color);
  transition: var(--theme-transition) .25s;
}
.open .mobile-nav{
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.open .mobile-nav-bottom,.open .mobile-nav-top{
  opacity: 1;
  transition: opacity .25s ease .4s;
}
.mobile-nav a {
  color: var(--nav-font-color);
}
.header-menu-text{
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.header-menu-divider::before{
  content:"\e7d2" ;
  font-family: "iconfont";

}
.header-menu-divider{
  float: right;
  padding-left: 10px;
  font-size: 13px;
}
/* mobile bottom */
.mobile-nav-bottom {
  margin-top: 16px;
  opacity: 0;
}

.mobile-nav .remind {
  text-align: left;
}

.mobile-account-item {
  margin-bottom: 15px;
}
/* mobile top */
.mobile-nav-top{
  opacity: 0;
  max-height: 63%;
  overflow-y: auto;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.mobile-nav-top>.mobile-side-menu {
  margin-bottom: 20px;
  max-height: 100%;
  overflow-y: auto;
}
.j-menu-item,.mobile-side-menu h3,
.mobile-side-menu h2{
  display:flex;
  justify-content: space-between;
  align-items: center;

}
.j-menu-item,
.mobile-side-menu h3{
  height: 39px;
}
.header-menu-item {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.menu-img-item{
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  text-align: center;
}
.header-menu-item.no-next {
  width: 100%;
}
.j-menu-item i{
  font-weight: 400;
  font-size:12px;
}

.msec-imgtext-imgs{
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.m-secondary-onlyimg{
  display: grid;
  grid-gap: 10px;
  margin: 10px 0;
}

.menu-header {
  padding: 24px 0 32px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.6);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.menu-header i {
  float: left;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

.secondary-menu,
.third-menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 70px;
  bottom: var(--side-padding);
  left: var(--side-padding);
  right: var(--side-padding);
  padding: 0 var(--side-padding);
  overflow: hidden auto;
  border-radius: var(--theme-border-radius);
  background-color: var(--nav-bg-color);
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}
.secondary-menu .mobile-side-menu,
.third-menu .mobile-side-menu{
  opacity: 0;
  visibility: hidden;
}
.secondary-menu.open ,
.third-menu.open{
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease .2s;
}
.secondary-menu.open .mobile-side-menu,
.third-menu.open .mobile-side-menu{
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease .5s;
}
.secondary-menu {
  z-index: 15;
}

.third-menu {
  z-index: 20;
}
@media screen and (max-width: 1100px) and (min-width: 768px){
  .header-main {
    justify-items: center;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  header{
    margin-bottom: 16px;
  }
  header .wrapper {
    width: 100%;
  }
  .header-main {
    justify-content: space-between;
    column-gap:16px;
    border-radius: 0;
  }
  .header-top-fixed{
    padding:0;
  }
  .header-top-fixed::before{
    --theme-border-radius:0;
  }
  .header-main .header-left {
    padding: 0;
    font-size: 0;
  }
  .j-menu-icon{
    display: inline-block;
    width: 44px;
  }
  .header-main .iconfont {
    font-size: 20px;
    color: var(--nav-font-color);
  }
  .header-right-account .header-account{
    padding-right: 0;
  }
  .cart-badge {
    top: -4px;
    right: 7px;
    width: 15px;
    height: 15px;
    font-size: 12px;
    line-height: 15px;
  }
  .search-bar {
   top: 0;
   left: 0;
   right: 0;
   border-radius: 0;
  }
  .search-bar .search {
    font-size: 16px;
  }
 
}
/* 页头 End */
/* 页尾 Start */
footer .wrapper{
  padding-top: 0;
  padding-bottom: calc(var(--section-space) / 2);
}
.footer-main{
  padding: 80px;
  border-radius: var(--theme-border-radius);
  background-color: var(--nav-bg-color);
}

/* back top */
.back-top{
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  width: fit-content;
  cursor: pointer;
  transition: all .25s ease;
}
.back-totop{
  padding-right: 8px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 14px;
  font-weight: 600;
}
.back-top-arrowleft{
  transform: rotate(90deg);
}
.back-top:hover{
  color:var(--main-color);
}
/* left */
.footer-main .main-left {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.footer-left-item{
  width: 25%;
}
.footer-title{
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 8px;
}
.footer-main .logo {
  height: 25px;
  margin: 24px 0;
  object-fit: contain;
  text-align: left;
}
.footer-info{
  margin-inline-end: 36px;
}
.footer-mailto{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
  color: var(--nav-font-color);
}
.footer-mailto:hover{
  color: var(--main-color);
}
/* social */
.social {
  display: flex;
  flex-wrap: wrap;
  padding-right: 40px;
  margin-top: 16px;
}

.social a {
  margin-right: 16px;
  margin-bottom: 10px;
  font-size: 40px;
  background-image: var(--highlight-bg-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social a:last-child {
  margin-right: 0;
}

.social a:hover {
  opacity: .8;
}
/* footer email */
.email-subs{
  padding: 32px 24px 40px;
  background:var(--highlight-bg-color);
  border-radius: 10px;
  color: var(--theme-font-color-dark);
}
.email-subs-inputdiv{
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.email-subs-title{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.email-subs-des{
  font-size: 16px;
  margin-bottom: 16px;
}
.email-subs-input{
  height: var(--btn-height);
}
.email-subs-btn{
  padding: 0 24px;
  height: var(--btn-height);
  color: #fff;
  background-color: var(--theme-font-color-dark);
  --theme-border-radius:10px;
}
/* right menu */
.footer-main .main-right {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-menu{
  min-width: 20%;
}
.footer-menu .menu-title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 22px;
}
.footer-menu-inner {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
  color: var(--nav-font-color);
}
.footer-menu-inner:hover {
  color: var(--main-color);
}
/*  bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 80px 0 0;
  max-width: calc(var(--max-width) - var(--side-padding) * 2);  
  font-size: 14px;
  color: var(--nav-font-color);
}
.footer-bottom a{
  color: var(--nav-font-color);
}
.footer-bottom img {
  max-height: 30px;
  object-fit: contain;
}
.footer-special-desc{
  display: flex;
  gap: 20px;
}
.footer-special-desc img:not(:last-child){
  margin-right: 5px;
}
.footer-special-desc .footer-special-imgs{
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1150px){
  .footer-main {
    padding: 32px var(--side-padding) 80px;
  }
  .footer-main .main-left{
    flex-wrap: wrap;
  }
  .footer-left-item{
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  footer .wrapper{
    padding: 0;
  }
  .footer-main{
    border-radius: 0;
  }
  /* logo */
  .footer-main .main-left {
    width: 100%;
    flex-direction: column;
    margin-bottom: 0;
  }
  .footer-left-item{
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-main .logo{
    width: 100%;
  }
  .footer-title{
    font-size: 18px;
  }
  /* email */
  .email-subs-inputdiv .email-subs-input{
    width: 100%;
  }

  /* social */
  .social {
    padding-right: 0;
  }
  .footer-info {
    margin: 0 0 15px 0;
  }
  /* menu */
  .footer-main .main-right {
    flex-direction: column;
    margin-bottom: 64px;
  }
  .footer-menu {
    margin-top: 0;
  }
  .footer-menu .menu-title {
    font-size: 18px;
  }

  /* bottom */
  .footer-bottom {
    flex-direction: column;
    padding: 0 ;
  }
  .footer-special-desc {
    display: block;
  }
  .footer-infomation{
    margin-top: 24px;
  }
  .footer-bottom img{
    max-height: 25px;
  }
}
/* 页尾 End */