body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background-color: #f7f7f7;
}
a {
  color: rgba(255, 255, 255, 0.9);
}
.overflow-hidden {
  overflow: hidden;
}
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #19222d;
  /* background-image: url('/static/img/headerbg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 8.8rem;
    background-position: top left; */
}
.main-header .hint {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  justify-content: center;
  height: 2.4rem;
  overflow: hidden;
  transition: all 0.5s;
}
.main-header .hint .hinticon {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.6rem;
}
.main-header .top-sec {
  background-color: #1a1a1a;
  height: 2.4rem;
  overflow: hidden;
  transition: all 0.5s;
}
.main-header .top-sec .top-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
}
.main-header .logo-sec {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  padding: 0 30px;
  transition: all 1s;
}
.main-header .logo-sec .site-logo {
  display: block;
  height: 26px;
  margin: 0 auto;
}
.main-header .logo-sec .nav-sec {
  position: relative;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.main-header .logo-sec .nav-sec.show-list {
  height: 6rem;
}
.main-header .logo-sec .nav-sec .nav-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 99;
  gap: 0 60px;
  cursor: pointer;
  /* .nav-list{
                    position: absolute;
                    
                    
                    
                   
                    background: rgba(0, 0, 0, 0.9);
                    border: 1.5px solid rgba(255, 255, 255, 0.6);
                    
                    
                    
                    pointer-events: none;

                    a{
                        display: block;
                        height: 40px;
                        transition: all 0.3s;
                        border-radius: 8px;
                        display: flex;
                        align-items: center;
                        
                        &:last-child{
                            margin-bottom: 0;
                        }
                        &:hover{
                            background-color: rgba(255,255,255,0.2);
                            .product-name{
                                transform: scale(0.95);
                            }
                        }
                        .product-name{
                            transition: all 0.3s;
                            
                            
                            span{
                                border: 1.5px solid rgba(255, 255, 255, 0.4);
                                border-radius: 4px;
                                padding: 1px 6px;
                                font-size: 11px;
                                font-weight: 700;
                                margin-left: 2px;
                            }
                            
                        }
                    }
                    
                    
                    
                } */
}
.main-header .logo-sec .nav-sec .nav-box .nav-item {
  text-align: center;
  cursor: pointer;
  position: relative;
  height: 80px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  width: 100px;
  flex-direction: column;
  justify-content: center;
  /* &.chosen{
                        border: 0.15rem solid @btnblue;
                    } */
}
.main-header .logo-sec .nav-sec .nav-box .nav-item:hover {
  transform: translateY(-6px);
}
.main-header .logo-sec .nav-sec .nav-box .nav-item:hover .nav-series-list {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-cn {
  font-size: 15px;
  font-weight: 700;
  color: #a5cd39;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-sub {
  font-size: 10px;
  font-weight: 500;
  color: #9e9e9e;
  line-height: 10px;
  margin-top: 2px;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list {
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: max-content;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.4s;
  background-color: #19222d;
  padding: 0 20px 10px;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series {
  cursor: pointer;
  pointer-events: auto;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 6px;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link:hover .nav-series-box .nav-series-name {
  color: #a5cd39;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link .nav-series-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link .nav-series-box .nav-series-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link .nav-series-box .nav-series-count {
  font-size: 12px;
  font-weight: 700;
  color: #19222d;
  background-color: #a5cd39;
  padding: 0 2px;
  border-radius: 4px;
  letter-spacing: 0;
}
.main-header .logo-sec .nav-sec .nav-box .nav-item .nav-series-list .nav-series .nav-series-link .nav-series-sub {
  font-size: 11px;
  font-weight: 500;
  color: #9e9e9e;
  line-height: 1;
}
.main-header .logo-sec .cart {
  position: relative;
  width: 5.4rem;
  height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
}
.main-header .logo-sec .cart.turnbig {
  animation: bigger 0.15s 0.85s;
}
@keyframes bigger {
  to {
    transform: scale(1.2);
  }
}
.main-header .logo-sec .cart .cart-icon {
  position: relative;
  transition: all 0.3s;
  color: #000000;
}
.main-header .logo-sec .cart .cart-icon i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.main-header .logo-sec .cart .cart-icon .dot {
  width: 18px;
  height: 18px;
  background: #ff4c4c;
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff;
  border-radius: 50%;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 0;
  letter-spacing: 0;
  transition: all 0.3s cubic-bezier(0.5, 3, 0.75, 1.25);
}
.main-header .tips {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  background-color: #f7f7f7;
}
.main-header .tips .tips-item {
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #aaa;
  line-height: 0;
  transform: translateY(2.8rem);
  cursor: pointer;
  /* padding-top: 0.2rem; */
  animation: tipsrun 30s 1s infinite;
}
@keyframes tipsrun {
  0% {
    transform: translateY(2.8rem);
  }
  1% {
    transform: translateY(0);
  }
  24% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2.8rem);
  }
  49% {
    transform: translateY(-2.8rem);
  }
  50% {
    transform: translateY(-5.6rem);
  }
  74% {
    transform: translateY(-5.6rem);
  }
  75% {
    transform: translateY(-8.4rem);
  }
  99% {
    transform: translateY(-8.4rem);
  }
  100% {
    transform: translateY(-11.2rem);
  }
}
.main-header .tips .tips-item .tips-ico {
  display: block;
  height: 0;
  font-size: 1.8rem;
  margin-right: 0.6rem;
  -webkit-text-stroke-width: 0;
}
.main-header .tips .tips-item.tips-item:nth-child(4) {
  background-color: #f0f4fc;
}
.main-header .tips .tips-item.tips-item:nth-child(4) .tips-strong {
  color: #3467dd;
}
.main-header .tips .tips-item.tips-item:nth-child(3) {
  background-color: #fef0ee;
}
.main-header .tips .tips-item.tips-item:nth-child(3) .tips-strong {
  color: #ee3d22;
}
.main-header .tips .tips-item.tips-item:nth-child(2) {
  background-color: #fef8ef;
}
.main-header .tips .tips-item.tips-item:nth-child(2) .tips-strong {
  color: #ef9d23;
}
.main-header .tips .tips-item.tips-item:nth-child(1) {
  background-color: #f2faf2;
}
.main-header .tips .tips-item.tips-item:nth-child(1) .tips-strong {
  color: #52bf54;
}
.main-header.header-scroll {
  /* .nav-sec{
            padding: 0.4rem;
        } */
}
.main-header.header-scroll .hint {
  height: 0;
}
.main-header.header-scroll .tips {
  height: 0;
}
.cart-shade {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  /* z-index: -99; */
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  z-index: 98;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  pointer-events: none;
}
.cart-shade.cart-shade-on {
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  pointer-events: auto;
}
.cart-section {
  width: 400px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 101;
  transform: translateX(0);
  transition: all 0.4s ease;
  background-color: #19222d;
}
.cart-section.close {
  transform: translateX(400px);
}
.cart-section.show-right-cart {
  z-index: 101;
  transform: translateX(0);
  transition: all 0.4s 0.3s ease;
}
.cart-section .header {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-section .header .cart-title {
  font-weight: 700;
  margin-top: 0.6rem;
}
.cart-section .header .cart-title .title {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.cart-section .header .cart-title .sub {
  font-size: 11px;
  color: #b3b3b3;
}
.cart-section .header .close-cart {
  font-size: 14px;
  font-weight: 500;
}
.cart-section .header .close-cart .close {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.cart-section .header .close-cart .close .right-arrow {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.9);
}
.cart-section .main {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  position: relative;
}
.cart-section .main ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0.4rem;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 0.1rem;
}
.cart-section .main ::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1rem;
  box-shadow: inset 0 0 0.5rem rgba(97, 184, 179, 0.1);
  background: #000;
}
.cart-section .main ::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 0.5rem rgba(87, 175, 187, 0.1);
  border-radius: 0.1rem;
  background: #ededed;
}
.cart-section .main .product-mask {
  position: relative;
}
.cart-section .main .product-mask .products {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(var(--cart-main-height, 100vh) - 15rem);
  position: relative;
  border-top: 0.1rem solid #aaa;
}
.cart-section .main .product-mask .products .cart-goods .goods {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.1rem solid #aaa;
}
.cart-section .main .product-mask .products .cart-goods .goods .column {
  display: flex;
  justify-content: space-between;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .img-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .img-wrap img {
  width: 100%;
  height: 100%;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info {
  margin-left: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .brand-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .brand-box .name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .brand-box .remove-cart-goods {
  width: 20px;
  height: 20px;
  opacity: 0.3;
  flex-shrink: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .sub .ml {
  font-size: 0.9rem;
  letter-spacing: 0;
  font-weight: 700;
  margin-right: 0.4rem;
  padding: 0.04rem 0.4rem;
  display: inline-block;
  border-radius: 0.4rem;
  color: #2794ff;
  border: 0.15rem solid #2794ff;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity {
  width: 128px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i {
  font-size: 16px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #000;
  font-weight: 500;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: inline-block;
  height: 32px;
  width: 44px;
  line-height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i.cart-reduce {
  left: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i.cart-add {
  right: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i.disable {
  color: #eee !important;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity i:active {
  transition: all 0.1s;
  font-size: 18px;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .cart-quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .price {
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 700;
  color: red;
}
.cart-section .main .product-mask .products .cart-goods .goods .column .info .pricebox .price .price-num {
  font-size: 18px;
  margin-left: 2px;
}
.cart-section .main .product-mask .products .checkout {
  position: sticky;
  bottom: 0;
  margin: 2rem 0 1rem;
}
.cart-section .main .product-mask .products .checkout .checkout-btn {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a5cd39;
  border-radius: 99px;
}
.cart-section .main .product-mask .products .checkout .checkout-btn .goshop-btn-text {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.cart-section .main .product-mask .products .checkout .checkout-btn .goshop-btn-text .right-arrow {
  width: 12px;
  height: 12px;
  fill: #FFF;
  margin-left: 4px;
  animation: goShop 1s infinite;
}
@keyframes goShop {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(3px);
  }
}
.cart-section .main .bill {
  width: 100%;
  padding: 0 20px;
  flex-shrink: 0;
}
.cart-section .main .bill .statistics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-top: 1px solid #aaa;
  color: rgba(255, 255, 255, 0.9);
}
.cart-section .main .bill .statistics li .label {
  font-size: 14px;
  font-weight: 500;
}
.cart-section .main .bill .statistics li .amount {
  font-size: 10px;
  color: red;
  font-weight: 700;
}
.cart-section .main .bill .statistics li .amount-price,
.cart-section .main .bill .statistics li .cart-discount-price,
.cart-section .main .bill .statistics li .amount-freight-price {
  font-size: 18px;
  letter-spacing: 0;
}
.cart-section .main .bill .statistics li.freight {
  font-size: 14px;
}
.cart-section .main .bill .statistics li .freight-part {
  display: flex;
  align-items: baseline;
}
.cart-section .main .bill .statistics li .freight-part .freight-tips {
  font-size: 12px;
  letter-spacing: 0;
  color: #999;
  margin-right: 4px;
}
.cart-section .main .bill .forward .checkout-btn {
  width: 328px;
  height: 40px;
  background: #0086ff;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  display: block;
  margin: 20px auto;
  border-radius: 6px;
}
.cart-section .main .bill .forward .close-btn {
  font-size: 16px;
}
.cart-section .main .empty {
  margin-top: 4rem!important;
}
.cart-section .main .empty .ico i {
  font-size: 14rem!important;
  color: #ccc;
}
.cart-section .main .empty .text {
  text-align: center;
  color: #ccc;
  font-size: 1.4rem;
}
footer {
  width: 100%;
  min-width: 1200px;
  background-color: #19222d;
}
footer .footer-wrap {
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1200px;
}
footer .footer-wrap .content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 40px;
}
footer .footer-wrap .content .footer-logo {
  width: 600px;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title {
  margin-left: 4px;
  font-style: italic;
  font-weight: 700;
  color: #FFF;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title .footer-logo-title-cn {
  font-size: 22px;
}
footer .footer-wrap .content .footer-logo .footer-logo-sec .footer-logo-title .footer-logo-title-en {
  font-size: 14px;
}
footer .footer-wrap .content .footer-logo .about {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 40px;
  line-height: 1.6;
}
footer .footer-wrap .content .footer-logo .other-sec {
  padding-left: 40px;
  margin-top: 60px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item {
  display: flex;
  align-items: center;
  height: 48px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .other-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 10px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .yamato {
  width: 28px;
  height: 28px;
  margin: 0 20px 0 6px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .lalamove {
  width: 140px;
  height: 24px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .dmca {
  width: 52px;
  height: 26px;
  margin: 2px 10px 0 0;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .ssl {
  width: 90px;
  height: 24px;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 10px;
  border-radius: 8px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  cursor: pointer;
}
footer .footer-wrap .content .footer-logo .other-sec .other-item .social .social-icon:hover {
  background-color: #aaa;
  padding: 10px;
  transform: scale(1.2);
}
footer .footer-wrap .content .footer-nav {
  color: #FFF;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-right: 30px;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-line {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 20px;
  pointer-events: none;
  border-bottom: 2px solid;
  padding-bottom: 6px;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox {
  display: flex;
  flex-direction: column;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox li {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s;
}
footer .footer-wrap .content .footer-nav .footer-nav-item .footer-nav-vox li:hover a {
  color: #ffffff;
}
footer .footer-wrap .content .menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
footer .footer-wrap .content .menu-list .menu-item .menu-nav-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
footer .footer-wrap .content .menu-list .menu-item .menu-dropdown li {
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0;
}
footer .footer-wrap .content .menu-list .menu-item .menu-dropdown li a p {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-wrap .content .menu-list .menu-item .menu-dropdown li a p .nav-series-count {
  font-size: 10px;
  font-weight: 700;
  color: #19222d;
  background-color: #a5cd39;
  padding: 0 4px;
  border-radius: 3px;
  letter-spacing: 0;
}
footer .footer-wrap .content .menu-list .menu-item .menu-dropdown li a p i {
  font-size: 14px;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  padding: 14px 0;
}
button {
  background: none;
  border: none;
  padding: unset;
}
.breadcrumb {
  margin: 0 auto;
  padding: 30px;
  display: flex;
  font-size: 12px;
  font-style: italic;
  width: 100%;
  max-width: 1200px;
  letter-spacing: 0;
}
.breadcrumb li a {
  color: #191919;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 4px;
  color: #191919;
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: #191919;
  font-weight: 700;
}
.loading-action-btn-disabled {
  opacity: 0.7;
}
.faq-section {
  margin-top: 60px;
  margin-bottom: 20px;
}
.faq-section .title {
  font-size: 24px;
  font-weight: 700;
  color: #191919;
  text-align: center;
  margin-bottom: 20px;
}
.faq-section .faq-container {
  max-width: 800px;
  padding: 0 30px;
  margin: 0 auto;
  /* .faq-measuring {
            position: absolute !important;
            visibility: hidden !important;
            pointer-events: none !important;
            height: auto !important;
            opacity: 0 !important;
            display: block !important;
            overflow: visible !important;
        } */
}
.faq-section .faq-container .faq-item {
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: var(--collapsed-height, 60px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section .faq-container .faq-item[open] {
  height: var(--expanded-height, auto);
}
.faq-section .faq-container .faq-item[open] .faq-question {
  background-color: rgba(0, 0, 0, 0.08);
}
.faq-section .faq-container .faq-item[open] .faq-icon {
  transform: rotate(90deg);
}
.faq-section .faq-container .faq-item .faq-question {
  height: 60px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.faq-section .faq-container .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
.faq-section .faq-container .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 700;
  color: #191919;
}
.faq-section .faq-container .faq-item .faq-question .faq-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  fill: #191919;
}
.faq-section .faq-container .faq-item .faq-answer {
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}
