
/* ???? */
.search-bar-wrapper .search-hot{
    max-width: var(--max-width);
    margin: auto;
    padding: 15px;
    text-align: left;
    background-color: #fff;
}
.search-hot .search-hot-title{
    margin-bottom:5px ;
    font-size: 16px;
    font-weight: 700;
}
.search-hot-content{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 80px;
    max-width: 510px;
}
.search-hot .search-hot-subtitle{
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-color-font);
}
@media screen and (max-width: 768px){
    .search-hot .search-hot-title,.search-hot .search-hot-subtitle{
        font-size: 14px;
    }
}
/* ??logo?????? */
.logo {
  font-size: 0;
  text-align: left;
}

.logo img {
  height: 50px;
  object-fit: contain;
}

/* body {
  padding-top: 180px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 100px;
  }
} */

/* ?? Start */
header {
  /* position: fixed; */
  top: 0;
  z-index: 256;
  width: 100%;
  background-color: #fff;
  /* border-bottom: 1px solid var(--theme-border-color); */
}

header .wrapper {
  padding: 0 25px;
}

.header-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 0 13px;
}

header .header-left {
  width: 100%;
  max-width: 766px;
}

.search-bar-wrapper {
  display: none;
  position: fixed;
  top: auto;
  width: 100%;
  /* height: 80px; */
  z-index: 20;
  background-color: #fff;
}

.search-bar-wrapper .search-bar {
  display: flex;
  align-items: center;
  padding: 25px 16px 10px;
  width: 100%;
  height: 65px;
  background-color: #fff;
  border-bottom: 1px solid #787878;
}

.search-bar-mask {
  display: none;
  position: fixed;
  top: 182px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .6;
}

.search-bar .search {
  flex: 1;
  padding: 0;
  color: var(--theme-color-font-secondary);
  font-size: 14px;
  height: 100%;
  line-height: 40px;
  background: transparent;
  border: none;
}

header .header-left .search-bar i {
  color: var(--theme-color-font-secondary);
}

header .header-right {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 32px;
}

.header-right a.iconfont,
.header-right>.j-icon-search {
  display: block;
  padding: 0 14px;
}

.header-right .header-cart.icon-cart {
  padding-right: 10px;
}

.header-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: 2px;
  width: 19px;
  height: 19px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  background-color: #000;
  border-radius: 50%;
  border: 2px solid #fff;
}

.header-nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.header-nav .nav-item:first-child {
  padding-left: 0;
}

.header-nav .nav-item:nth-child(8) {
  padding-right: 0;
}
.header-nav > .nav-item.has-children {
  position: relative;
}
.header-nav .nav-item {
  padding: 16px 48px;
  line-height: 1;
}


.header-nav .nav-item.has-children::after {
  display: none;
  position: absolute;
  bottom: 0;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  content: "";
  color: #000;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
}

.header-nav .nav-item.has-children:hover::after {
  display: block;
}

.header-nav .nav-item i {
  padding-left: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
}

.header-nav .nav-item .nav-link {
  color: var(--theme-nav-color);
  font-size: var(--theme-nav-font-size);
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
}

@media screen and (min-width: 769px) {

  .nav-item .animation-underline,
  .menu-item .animation-underline {
    --animation-color: var(--theme-nav-color);
  }
}

.nav-link.animation-underline::before {
  background-color: #fff;
}

.header-nav .nav-item:hover .header-dropdown {
  display: flex;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
}

.header-dropdown {
  display: none;
  position: absolute;
  top: 136px;
  z-index: 200;
  /* max-height: 50vh; */
  /* overflow-y: auto; */
  background-color: #fff;
}

.header-dropdown .animation-underline::before {
  background-color: var(--main-bg-color);
}

.header-dropdown::before {
  content: "";
}

.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);
}

.triangle {
	position: absolute;
	top: -7px;
	width: 0px;
	height: 0px;
  z-index: 2;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid var(--main-bg-color-dark);
	display: none;
}
.header-nav .nav-item:hover .triangle {
  display: block;
}

.header-dropdown.vertical {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 5px 20px 5px;
  position: absolute;
  justify-content: center;
  align-items: center;
  max-height: 52vh;
  background-color: #fff;
  border-bottom: 1px solid var(--theme-border-color);
  /* border-top: 1px solid var(--theme-border-color); */
}

.header-dropdown.vertical .dropdown-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-height: 50vh;
  background-color: #fff;
}

.header-dropdown-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* width: 100%; */
  max-width: var(--max-width);
  margin: auto;
  /* padding: 0 var(--side-padding); */
  padding: 0 8px;
  position: relative;
}

.header-dropdown.vertical section:hover>a {
  color: var(--main-bg-color);
}

.header-dropdown:not(.vertical) {
  left: 0;
  right: 0;
  border-top: 1px solid var(--theme-border-color);
  border-bottom: 1px solid var(--theme-border-color);
  padding: 20px 0;
}

.header-dropdown:not(.vertical) .dropdown-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.header-dropdown:not(.vertical) .second-link {
  display: inline-block;
  width: 100%;
  color: var(--theme-color-font);
  font-size: 14px;
  font-weight: 700;
}

.header-dropdown:not(.vertical) h2 {
  font-size: 14px;
}

.header-dropdown:not(.vertical) section {
  padding: 0 24px 0 0;
  width: 25%;
}

.header-dropdown.vertical section {
  /* padding: 20px 40px; */
  padding: 10px 0;
  line-height: 1;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  -moz-writing-mode: horizontal-tb;
  -o-writing-mode: horizontal-tb;
}

.header-dropdown.vertical section h2 {
  display: flex;
}

.header-dropdown.vertical section .second-link {
  font-size: 14px;
}

.header-dropdown section .second-link {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.dropdown-wrapper .third-links {
  display: flex;
  flex-direction: column;
}

.dropdown-wrapper .third-links .third-link {
  width: fit-content;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  white-space: normal;
  /* line-height: 42px; */
  line-height: 31px;
}

.dropdown-wrapper .third-links .third-link:hover {
  color: var(--theme-nav-color);
}

@media screen and (min-width: 769px) {

  .third-links .animation-underline,
  .second-link.animation-underline {
    --animation-color: var(--theme-nav-color);
    ;
  }

}

.third-link.animation-underline::before {
  height: 1px;
  bottom: 4px;
}

header .iconfont {
  color: var(--theme-nav-color);
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100vw;
  z-index: 512;
  padding: 0 0 200px;
  width: 80%;
  max-width: 300px;
  height: 100%;
  overflow: hidden auto;
  background-color: #fff;
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}

.mobile-nav .remind {
  text-align: left;
  padding: 10.5px 15px;
}

.mobile-nav-top .secondary-menu {
  background-color: #f8f8f8;
}

.mobile-nav-item {
  padding: 10.5px 15px;
  margin-bottom: 8px;
}

.mobile-nav-item a {

  color: var(--theme-color-font);
}

.mobile-nav .remind a {
  color: var(--theme-nav-color);
  font-size: 16px;
}

.first-menu>.j-menu-item>.menu-item {
  display: inline-block;
  padding: 20.5px 13px;
}

.secondary-menu .j-menu-item h2 {
  padding: 10.5px 19px;
  font-size: 13px;
}

.j-menu-item {
  position: relative;
}

.menu-item+.icon-down,
.menu-item+.icon-up {
  position: absolute;
  right: 12px;
  top: 20px;
  line-height: 18px;
  font-size: 14px;
  font-weight: 400;
}
.menu-item-second+.icon-down, .menu-item-second+.icon-up{
  top: 10px;
}
.side-menu .menu-item {
  color: var(--theme-nav-color);
  font-size: 14px;
  font-weight: 400;
}

.side-menu .menu-item-second {
  font-size: 13px;
}

.menu-item.no-next {
  display: block;
  width: 100%;
}

.menu-item i {
  font-size: 14px;
}

.menu-item .icon-account {
  float: none;
  margin-right: 10px;
  font-size: 20px;
}

.mobile-nav .side-menu .mobile-nav-top {
  /* padding: 2px 0; */
  border-bottom: 6px solid #f8f8f8;
}

.side-menu .menu-header {
  padding: 16px 0;
  text-align: center;
  color: var(--theme-nav-color);
  font-size: 20px;
  border-bottom: 1px solid #fff;
}

.side-menu .menu-header i {
  float: left;
  font-size: 24px;
  line-height: 33px;
}

.secondary-menu,
.third-menu {
  display: none;
  width: 100%;
  transition: all .1s ease;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -o-transition: all .1s ease;
}

.secondary-menu .side-menu li {
  border-bottom: 0;
  background-color: #f8f8f8;
}

.third-menu h3 {
  font-size: 13px;
}

.third-menu .menu-item {
  padding: 8px 19px;
  font-size: 13px;
}

/* ??? Start */
.announcement-wrapper {
  display: block;
  margin: auto;
  padding: 8px 15px;
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
  line-height: 24px;
}

/* ??? End */


.nav-left .first-link.current {
  color: var(--main-bg-color);
  font-weight: bold;
  background-color: #fafafa;
  border-right: 2px solid var(--main-bg-color);
}

.nav-left .first-link.current i {
  color: inherit;
}


.shelter {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  opacity: .6;
}

.sticky-header .cart-badge {
  top: -4px;
}

/* ???? End */

/* minicart Start */
.header-right-minicart {
  font-size: 0;
}

.header-minicart-subtotal {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--theme-sub-color);
}

#paypal-button-container-cart-popup {
  margin-top: 8px;
}

.minicart-list {
  max-height: 400px;
  margin-top: 24px;
  background-color: #fff;
  overflow-y: scroll;
}

.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;
}

.minicart-item-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
  border: 1px solid #e6e6e6;
}

.minicart-item-img img {
  width: 80px;
}

.minicart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: calc(100% - 5rem);
  font-size: 14px;
}

.minicart-item-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--theme-color-font);
}

.minicart-item-sku {
  color: var(--theme-color-font-secondary);
}

.minicart-item-price {
  font-weight: 600;
}

.show-now-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}

.header-account-info,
.header-minicart-info {
  display: none;
  position: absolute;
  right: 0;
  z-index: 128;
  min-width: 175px;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
}

.header-main .header-account-info a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
}

.header-main .header-right .header-account-info .header-login-btn {
  line-height: 1;
}

.header-minicart-info {
  min-width: 368px;
  max-width: 450px;
  padding: 24px;
}

.header-minicart-subtotal .button--primary {
  width: 100%;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.header-info-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--theme-sub-color);
}

.header-login-btn {
  width: 175px;
  height: 48px;
  margin-bottom: 16px;
  padding: 14px 0;
  border: 1px solid var(--main-bg-color);
  line-height: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--main-bg-color);
}

.header-register-btn {
  margin-bottom: 8px;
  font-size: 14px;
}

.header-register-btn a {
  text-decoration: underline;
  font-weight: 600;
}

.header-info-list {
  display: inline-flex;
  flex-direction: column;
}

.header-info-list a {
  margin-bottom: 16px;
  color: #333;
  font-size: 14px;
}

.header-info-list a:hover {
  color: var(--main-bg-color);
}

.header-info-list a:hover::before {
  background-color: var(--main-bg-color);
}

.header-sign-out {
  padding-top: 16px;
  font-size: 14px;
  border-top: 1px solid var(--theme-sub-color);

}

.sign-out-btn {
  color: var(--main-bg-color);
}

.sign-out-btn.animation-underline::before {
  background-color: var(--theme-color-font-link);
}

.header-right-account .header-account {
  padding-right: 0;
}

.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;
}

.show-now-link {
  margin-top: 16px;
  font-size: 14px;
}


/* minicart End */

@media screen and (max-width: 768px) {

  .announcement-wrapper {
    font-size: 12px;
  }

  header>.wrapper {
    padding: 0 20px;
    width: 100%;
    background-color: #fff;
  }

  /* .search-bar-wrapper,.search-bar-mask{
    top: 100px;
  } */
  .search-bar-mask {
    top: 100px;
  }

  .search-bar-wrapper .search-bar {
    padding-top: 35px;
    height: 80px;
  }

  .search-bar-wrapper {
    height: 100px;
  }

  .header-main {
    padding: 15px 0;
    justify-content: space-between;
  }

  .header-main .search-bar {
    display: none;
  }

  .header-main .iconfont {
    font-size: 24px;
  }

  .header-right a.header-account {
    padding-right: 0;
  }

  .header-main .header-left i {
    padding: 0 11px;
    font-size: 24px;
  }

  .header-main .header-left .icon-menu {
    padding-left: 0;
  }

  header .header-left {
    width: initial;
  }

  .header-main .logo {
    flex: 1;
    text-align: center;
  }

  .header-main .logo img {
    height: 30px;
  }

  .header-main .header-right {
    position: static;
  }

  .cart-badge {
    top: -6px;
    right: 0;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
  }

  .header-nav {
    display: none;
  }

  .search-bar {
    align-items: center;
    padding: 0 12px;
    margin: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-radius: var(--theme-border-radius);
    border: none;
  }

  .search-bar .search {
    order: 0;
    padding: 0;
    margin-right: 12px;
    height: 40px;
    color: var(--main-bg-color);
    font-size: 16px;
  }

  .search-bar i.iconfont {
    order: 1;
    font-size: 24px;
  }

  .footer-info.rich-text {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}

/* ?? End */

/* ?? Start */
footer {
  background-color: #eee;
}

.footer-main.wrapper {
  padding: 40px 25px 40px;
}

.footer-main .main-left,
.footer-bottom .footer-contact {
  display: flex;
  flex-direction: column;
  margin-right: 80px;
  width: 300px;
}

.footer-main .logo {
  height: 48px;
  object-fit: contain;
  object-position: left;
}

.social {
  margin-top: 16px;
  white-space: normal;
}

.social a {
  margin-right: 24px;
  font-size: 24px;
  color: var(--theme-color-font);
}

.social a:last-child {
  margin-right: 0;
}

.footer-main .main-right {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 32px;
}

.footer-menu .menu-title,
.email-subs-title {
  margin-bottom: 8px;
  color: var(--theme-nav-color);
  font-weight: bold;
}

.footer-menu .menu-title i {
  float: right;
  line-height: 20px;
  color: var(--theme-nav-color);
  transform: scale(0.5);
}

.footer-menu .menu-item a {
  color: var(--theme-nav-color);
  font-size: 16px;
}

.footer-menu .menu-item .animation-underline::before {
  background-color: #fff;
}

.footer-bottom {
  margin: auto;
  padding: 0 25px 24px;
  max-width: var(--max-width);
  color: var(--theme-nav-color);
  font-size: 14px;
}


.footer-bottom img {
  max-height: 38px;
  object-fit: contain;
}

.footer-info {
  margin-top: 16px;
}

.footer-infomation {
  padding: 18px 0 10px;
  border-top: 1px solid #999;
}

.footer-special-desc {
  display: flex;

}

.footer-special-desc>div:first-child {
  padding-right: 363px;
}

.footer-special-desc p {
  margin-bottom: 10px;
}



.email-subs .email-subs-title {
  margin-bottom: 20px;
}

.email-subs-inputdiv {
  display: flex;
}

.email-subs-des {
  margin: -10px 0 10px 0;
}

.email-subs-inputdiv .email-subs-input {
  width: 245px;
  height: 48px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #979797;
}

.email-subs-btn {
  font-weight: 700;
  line-height: 22px;
  padding: 13px 22px;
  color: #fff;
  background-color: var(--main-bg-color);
}

@media screen and (max-width: 1450px) {
  .footer-special-desc>div:first-child {
    padding-right: 20%;
  }
}

@media screen and (max-width: 768px) {
  .footer-special-desc>div:first-child {
    padding-right: 0;
  }

  .social a {
    margin-right: 16px;
  }

  .email-subs .email-subs-title {
    margin: 17px 0 20px;
    font-size: 16px;
  }

  .email-subs-inputdiv .email-subs-input {
    width: 198px;
    height: 36px;
    margin-right: 5px;
  }

  .email-subs-btn {
    padding: 7px 22px;
  }

  .footer-special-desc {
    flex-direction: column;
  }

  .footer-infomation p {
    font-size: 12px;
  }

  .footer-main.wrapper {
    flex-direction: column;
    padding: 20px 20px;
  }

  .footer-main .main-left {
    margin-right: unset;
    width: 100%;
    border: none;
  }

  .footer-main .main-right {
    flex-direction: column;
    row-gap: unset;
    border-top: 1px solid var(--theme-nav-color);
  }

  .social {
    margin: 16px 0;
  }

  .footer-menu {
    margin-top: 0;
    border-bottom: 1px solid var(--theme-nav-color);
  }

  .footer-menu .menu-title {
    margin-bottom: 0;
    padding: 17px 0;
    font-size: 16px;
  }

  .footer-menu .menu-list {
    display: none;
  }

  .footer-menu .menu-item {
    margin-bottom: 16px;
  }

  .footer-menu .menu-item a {
    font-size: 16px;
  }

  .footer-bottom {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .footer-bottom p {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .footer-menu .menu-title i {
    display: none;
  }

  .footer-menu .menu-item a {
    display: inline-block;
    margin: 4px 0;
    line-height: 1.5;
  }

}

/* ?? End */