/* header */
/* logo */
.logo {
  font-size: 0;
  text-align: left;
}

.logo img {
  object-fit: contain;
}
/* announcement Start */
.j-announcement-newswiper {
  max-width: var(--max-width);
  width: 55%;
  margin: auto;
}

.announcement-wrapper {
  display: block;
  margin: auto;
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding: 9px 0;
}
.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;
  }
  .announcement-wrapper {
    padding: 9px;
  }
}
/* announcement end */
header {
  --header-opacity:1;
  background-color: var(--nav-bg-color) ;
}
.header-top-fixed {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 256;
  background-color: var(--nav-bg-color);
  border-bottom: 1px solid var(--theme-border-color);
}
.header-wrapper{
  height: 96px;
  padding: 0 60px;
}
.header-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* pc */
.header-search-box{
  position: relative;
  margin-right: var(--header-icon-gap-half);
}
.header-search-box .header-search-input{
  height: 32px;
  width: 230px;
  padding: 0 28px 0 18px;
  background: transparent;
  font-size: 14px;
  border: 1px solid #c5c5c5;
  border-radius: var(--theme-border-radius);
  color: #4E4E4E;
  background-color: #eee;
}

.header-search-box .j-search{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-font-color);
  cursor: pointer;
}
.header-search-input::-webkit-input-placeholder{
  color:#4E4E4E;
}

/* 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: -5px;
  right: 11px;
  width: 15px;
  height: 15px;
  line-height: 15px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background-color: 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;
  border: 1px solid #eee;
  color: var(--theme-font-color);
  background-color: #fff;
}
.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);
}

#paypal-button-container-cart-popup {
  display: flex;
  align-items: center;
  margin-top: 8px;
  border-radius: 20px;
  overflow: hidden;
}

.minicart-list {
  max-height: 400px;
  margin-top: 24px;
  background-color: #fff;
  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: var(--theme-font-color);
}

.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;
}
.minicart-header .minicart-subtotal i{
  font-weight: 700;
}
.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;
  font-weight: 700;
}

.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: var(--theme-font-color);
}

.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);
}
/* nav */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 100%;
  margin: 0 20px;
  overflow: hidden;
}

.header-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 var(--nav-column-gap-half);
  line-height: 1;
  font-weight: normal;
}

.nav-item .nav-link {
  --animation-underline-height: 2px;
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  white-space: nowrap;
  font-weight: 400;
  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;
}

@media screen and (min-width: 768px) {

  .nav-item .animation-underline,
  .header-menu-item .animation-underline {
    --animation-color: var(--nav-font-color);
  }
}

/* header-dropdown */
.header-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(51, 51, 51, 0.08);
  min-height: 20%;
  max-height: 60%;
}

.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;
  flex-wrap: wrap;
  gap: 20px 75px;
  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-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;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: var(--theme-font-color);
}

.second-link a {
  color: var(--theme-font-color);
}

.dropdown-wrapper .third-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 10px;
}

.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 {
display: inline-block;
  white-space: normal;
  line-height: 24px;
  color: var(--theme-font-color);
}

@media screen and (min-width: 768px) {
  .third-links .animation-underline {
    --animation-color: var(--theme-font-color);
  }
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .header-nav {
    overflow: auto;
  }
}
@media screen and (max-width: 1200px){
  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;
  }

}
/* mobile-nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 102px;
  bottom: 0;
  left: -100vw;
  z-index: 512;
  padding: 0 var(--side-padding);
  width: 100vw;
  font-size: 16px;
  color: var(--nav-font-color);
  background-color: var(--nav-bg-color);
  transition: var(--theme-transition);
  -webkit-transition: var(--theme-transition);
  -moz-transition: var(--theme-transition);
  -o-transition: var(--theme-transition);
}

.mobile-nav a {
  color: var(--nav-font-color);
}

/* mobile bottom */
.mobile-nav-bottom {
  margin-top: 10px;
}

.mobile-nav .remind {
  text-align: left;
}

.mobile-account-item {
  margin-bottom: 15px;
}

/* mobile top */
.mobile-nav-top {
  max-height: 63%;
  overflow-y: auto;
}

.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: 43px;
  border-bottom: 1px solid var(--theme-font-color-sub);
}

.header-menu-item {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.menu-img-item {
  width: 100%;
  margin-top: 5px;
  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-top: 10px;
}

.menu-header {
  padding: 16px 0;
  font-size: 20px;
  text-align: center;
  color: var(--nav-font-color);
  border-bottom: 1px solid #fff;
}

.menu-header i {
  float: left;
  line-height: 23px;
}

.secondary-menu,
.third-menu {
  display: none;
  position: fixed;
  left: -100vw;
  top: 84px;
  padding: 0 var(--side-padding) 160px;
  height: 100%;
  width: 100vw;
  overflow: hidden auto;
  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 {
  z-index: 15;
}

.third-menu {
  z-index: 20;
}
.shelter {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .3;
}

@media screen and (max-width: 767px) {
  header {
    --nav-bg-color:#fff;
  }
  .header-wrapper{
    height: 55px;
    padding: 0 var(--side-padding);
  }
  .header-main {
    position: relative;
    justify-content: space-between;
  }
  .logo{
    flex: 1;
    margin: 0 10px;
    text-align: center;
  }
  
  .header-main .header-left {
    flex: none;
    padding: 0;
    font-size: 0;
  }
  .header-main .iconfont {
    font-size: 20px;
    color: var(--nav-font-color);
  }
  .show-search-box{
    display: block;
    padding-right: var(--header-icon-gap-half);
  }
  .header-main .header-cart{
    padding-right: 0;
  }
  .cart-badge {
    top: -6px;
    right: -7px;
  }
  .search-bar {
    position: fixed;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    height: 107px;
    padding: 0 16px;
    margin: 0;
    width: 100%;
    background-color: #fff;
  }
  
 .search-bar-close{
  position: absolute;
  right: 13px;
  top: 10px;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
 }
 .search-bar-inputbox{
  position: relative;
  width: 100%;
 }
 .search-bar-inputbox .icon-search{
  position: absolute;
  left: 0;
  bottom: 9px;
  color: #555;
 }
 .search-bar-inputbox .search{
  width: 100%;
  padding: 0 16px 0 24px;
  background-color: #fff;
  border-radius: 0;
  border-bottom: 1px solid #979797;
 }
 .search::-webkit-input-placeholder{
  color: var(--theme-font-color-sub);
  font-size: 16px;
 }
 .search:focus{
  border: 0;
  border-bottom: 1px solid #979797;
 }
}

/* 页头 End */

/* 页尾 Start */
#mrshop-section-footer{
    margin-top: calc(50px - var(--section-space));
}
footer {
  border-top: 1px solid var(--theme-border-color);
  background-color: var(--nav-bg-color);
}

.footer-main.wrapper {
  display: flex;
  justify-content: space-between;
  padding: 45px var(--side-padding) 24px;
  color: var(--nav-font-color);
}

.footer-main .main-left{
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.footer-main .main-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
/* left */
.footer-main .logo {
  flex-shrink: 0;
  width: 160px;
  height: 100%;
  margin-right: 80px;
  object-fit: contain;
  text-align: left;
}

/* footer email */
.email-subs{
  margin-bottom: 20px;
}
.email-subs-inputdiv{
  display: flex;
  width: 100%;
}
.email-subs-title{
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}
.email-subs-des{
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}
input.email-subs-input{
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.email-subs-btn{
  padding: 0 18px;
  height: var(--btn-height);
  color: #fff;
  background-color: var(--highlight-bg-color);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* social */
.social{
  display: flex;
  flex-wrap: wrap;
}
.social a {
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  color: var(--nav-font-color);
  
}
.social a:last-child {
  margin-right: 0;
}
.social a:hover{
  color: #666;
}
.footer-info {
  margin-top: 10px;
}
.footer-info.rich-text * {
  font-size: 14px;
}
.footer-infomation{
  max-width: 210px;
  font-size: 14px;
  line-height: 22px;
  text-align: right;

}
/* menu */
.footer-menu{
  margin-right: 80px;
}
.footer-menu .menu-title {
  margin-bottom: 10px;
}
.footer-menu-inner {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: var(--nav-font-color);
}
.footer-menu-item:not(:last-child) .footer-menu-inner{
  margin-bottom: 10px;
}
/*  bottom */
.footer-bottom {
  padding: 30px 0 64px;
  font-size: 14px;
  color: var(--nav-font-color);
  border-top: 1px solid var(--theme-border-color);
}
.footer-bottom a{
  color: var(--nav-font-color);
}
.footer-bottom img {
  max-height: 32px;
  object-fit: contain;
}
.footer-special-desc{
  display: flex;
  justify-content: center;
  max-width: var(--max-width);
  padding: 0 var(--side-padding);
  margin: auto;
}
.footer-special-desc div img:not(:last-child){
  margin-right: 14px;
}
.footer-special-desc .footer-special-imgs{
  display: flex;
  align-items: center;
}
.back-to-top{
  position: fixed;
  bottom: 60px;
  right: 18px;
  z-index: 299;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding-bottom: 1px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  font-size: 14px;
  background-color: var(--page-bg-color);
  cursor: pointer;
}
@media screen and (max-width: 1400px){
  .logo img{
    max-width:200px ; 
  }
  .footer-bottom{
    padding: 40px var(--side-padding);
  }
  .header-wrapper{
    padding: 0 var(--side-padding);
  }
}
@media screen and (max-width: 1200px){
  .footer-main .logo,.footer-menu{
    margin-right: 50px;
  }
 
  .header-search-box .header-search-input{
    width: 200px;
  }
}
@media screen and (max-width: 1100px){
  .header-search-box .header-search-input {
    width: 150px;
  }
  .footer-main.wrapper{
    flex-wrap: wrap;
    flex-direction: column;
  }
  .footer-main .main-left{
    margin-bottom: 30px;
  }
  .footer-main .main-right{
    align-items: flex-start;
  }
  .footer-infomation{
    text-align: left;
  }
  .footer-special-desc{
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .footer-special-desc{
    padding: 0;
    justify-content: flex-start;
  }
  .footer-special-desc>div:not(:last-child){
    margin-bottom: 16px;
  }
  .footer-main.wrapper {
    padding: 29px var(--side-padding) 24px;
  }
  /* logo */
  .footer-main .main-left {
    flex-direction: column;
    margin: 0 0 23px;
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .footer-main .logo{
    width: 160px;
    margin: 0 auto 30px ;
    text-align: center;
  }
  /* email */
  .email-subs-inputdiv .email-subs-input{
    margin-right: 10px;
    width: 100%;
    border-radius: var(--theme-border-radius);
  }
  .email-subs{
    margin-bottom: 15px;
  }
  .email-subs-btn{
    border-radius: var(--theme-border-radius);
  }
  /* social */
  .social a{
    font-size: 32px;
    margin-right: 16px;
  }
  .social{
    margin-bottom: 14px;
  }
  .footer-info {
    margin: 0 0 15px 0;
  }
  /* menu */
  .footer-main .main-right {
    flex-direction: column;
    row-gap: unset;
  }
  
  .footer-menu {
    width: 100%;
    margin: 0;
    border-top: 1px solid #000;
  }
  .footer-menu .menu-title {
    margin-bottom: 0;
    padding: 11px 0;
    font-size: 16px;
    line-height: 24px;
  }
  .footer-menu .menu-title i {
    float: right;
    font-size: 12px;
  }
  .footer-menu .menu-list {
    display: none;
  }
  
  .footer-menu-item .animation-underline {
    margin: 0 0 6px;
  }
  /* bottom */
  .footer-bottom {
    padding: 0 var(--side-padding) 60px;
    font-size: 14px;
    border: 0;
  }
  .footer-infomation{
    max-width: 100%;
    font-size: 12px;
    line-height: 16px;
  }
  .footer-bottom img{
    max-height: 32px;
  }
}
/* 页尾 End */