[id] {
  scroll-margin-top: 140px;
}
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: #19222d;
  touch-action: manipulation;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(/static/img/bg.gif) repeat;
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: -1;
}
button,
a,
i {
  touch-action: manipulation;
}
.main-header {
  width: 100%;
  position: fixed;
  z-index: 102;
  background-color: #19222d;
  display: flex;
  top: 0;
  gap: 0 10px;
  padding: 0 10px;
  transition: height 0.6s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .main-header {
    max-width: 1024px;
    height: 80px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .main-header {
    padding: 10px 10px 0;
    flex-wrap: wrap;
    max-height: 100vh;
    height: 98px;
    align-content: flex-start;
    overflow: hidden;
    gap: 10px;
  }
}
.main-header .site-logo {
  width: 160px;
  aspect-ratio: 207 / 43;
  z-index: 1000;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main-header .site-logo {
    width: 120px;
    height: auto;
    position: absolute;
    top: 18px;
  }
}
.main-header .nav-sec {
  position: relative;
  width: 100%;
  transition: all 0.3s ease-in-out;
  animation: navFadeIn 0.5s ease both;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec {
    order: 1;
    height: 50vh;
    overflow: hidden;
  }
}
.main-header .nav-sec .nav-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
@media screen and (min-width: 1024px) {
  .main-header .nav-sec .nav-box {
    justify-content: center;
    gap: 0 30px;
  }
}
.main-header .nav-sec .nav-box .nav-item {
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .nav-box .nav-item {
    height: auto;
  }
  .main-header .nav-sec .nav-box .nav-item.active .nav-cn:after {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .main-header .nav-sec .nav-box .nav-item {
    cursor: pointer;
  }
  .main-header .nav-sec .nav-box .nav-item:last-child {
    display: flex;
  }
  .main-header .nav-sec .nav-box .nav-item:hover {
    transform: translateY(-6px);
  }
  .main-header .nav-sec .nav-box .nav-item:hover .nav-cn {
    color: #a5cd39;
  }
  .main-header .nav-sec .nav-box .nav-item:hover .nav-cn:after {
    width: 100%;
  }
  .main-header .nav-sec .nav-box .nav-item:hover .nav-series-list {
    max-height: 700px;
    opacity: 1;
    pointer-events: auto;
  }
}
.main-header .nav-sec .nav-box .nav-item .nav-cn {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.main-header .nav-sec .nav-box .nav-item .nav-cn:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background-color: #a5cd39;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .nav-box .nav-item .nav-cn {
    pointer-events: none;
    color: #a5cd39;
  }
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .nav-box .nav-item .nav-cn {
    font-size: 13px;
  }
}
.main-header .nav-sec .nav-box .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.main-header .nav-sec .nav-box .nav-item .nav-link .nav-series-count {
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  color: #19222d;
  background-color: #a5cd39;
  padding: 1px 3px;
  border-radius: 4px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .nav-box .nav-item .nav-link .nav-series-count {
    font-size: 11px;
  }
}
.main-header .nav-sec .nav-box .nav-item .nav-link:hover {
  background-color: rgba(185, 136, 119, 0.15);
  color: #a5cd39;
}
.main-header .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;
  overflow: hidden;
  pointer-events: none;
  transition: all 0.3s 0.1s ease-in-out;
  padding: 0 10px 10px;
}
@media screen and (min-width: 1025px) {
  .main-header .nav-sec .nav-box .nav-item .nav-series-list {
    max-height: 0;
    background-color: #19222d;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .nav-box .nav-item .nav-series-list {
    top: 48px;
    width: 100%;
    pointer-events: none;
  }
}
.main-header .nav-sec .nav-box .nav-item .nav-series-list.chosen-show {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 1025px) {
  .main-header .nav-sec .nav-box .nav-item.hide-nav-item .nav-link {
    padding: 0;
  }
  .main-header .nav-sec .nav-box .nav-item.hide-nav-item:hover {
    transform: none;
  }
  .main-header .nav-sec .nav-box .nav-item.hide-nav-item:hover .nav-link {
    background: none;
    color: #a5cd39;
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .nav-box .nav-item.hide-nav-item {
    display: none;
  }
}
.main-header .nav-sec .right-arrow {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.9);
  margin-left: auto;
}
@media screen and (min-width: 1025px) {
  .main-header .nav-sec .right-arrow {
    display: none;
  }
}
.main-header .cart {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .main-header .cart {
    margin-right: 58px;
  }
}
.main-header .cart .cart-icon {
  position: relative;
  transition: all 0.3s;
}
.main-header .cart .cart-icon i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .main-header .cart .cart-icon i {
    font-size: 23px;
  }
}
.main-header .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 .cart.cart-hide {
  opacity: 0;
  pointer-events: none;
}
.main-header .menu-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  position: fixed;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 1025px) {
  .main-header .menu-btn {
    display: none;
  }
}
.main-header .menu-btn .toggle {
  position: relative;
  width: 24px;
  display: block;
  height: calc(2.5px * 3 + 5px * 2);
}
.main-header .menu-btn .toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: calc(4px / 2);
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5) 0s;
}
.main-header .menu-btn .toggle .bar.bar--top {
  bottom: calc(50% + 5px + 2.5px/2);
  transition-property: bottom,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
.main-header .menu-btn .toggle .bar.bar--middle {
  top: calc(50% - 2.5px/2);
  transition-property: opacity;
  transition-delay: calc(0s + 0.35s);
}
.main-header .menu-btn .toggle .bar.bar--bottom {
  top: calc(50% + 5px + 2.5px/2);
  transition-property: top,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
.main-header:after {
  content: "";
  display: block;
  width: 100vw;
  background-color: #19222d;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  height: 100%;
  z-index: -1;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 1024px) {
  .main-header:after {
    display: none;
  }
}
.main-header.menu-show {
  height: 100vh;
}
.main-header.menu-show .nav-sec {
  padding: 0 20px;
  animation: navFadeOut 0.5s ease both;
  overflow-y: auto;
  height: 100vh;
}
.main-header.menu-show .nav-sec .nav-box {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 0 200px;
}
.main-header.menu-show .nav-sec .nav-box .nav-item {
  width: 100%;
  gap: 6px;
  align-items: flex-start;
}
.main-header.menu-show .nav-sec .nav-box .nav-item .nav-series-list {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
  width: 100%;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 0;
  pointer-events: auto;
}
.main-header.menu-show .nav-sec .nav-box .nav-item .nav-series-list .nav-cn {
  color: #aaa;
}
.main-header.menu-show .nav-sec .nav-box .nav-item .nav-series-list .nav-link {
  background: none;
}
.main-header.menu-show .nav-sec .nav-box .nav-item .nav-link {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
}
.main-header.menu-show .menu-btn .toggle .bar--top {
  bottom: calc(50% - 2.5px/2);
  transform: rotate(135deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
.main-header.menu-show .menu-btn .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}
.main-header.menu-show .menu-btn .toggle .bar--bottom {
  top: calc(50% - 2.5px/2);
  transform: rotate(225deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
@keyframes navFadeIn {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes navFadeOut {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-news {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #19222d, #2f344b, #19222d);
  color: white;
  overflow: hidden;
  position: fixed;
  z-index: 1;
  top: 80px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  perspective: 1000px;
}
@media screen and (max-width: 1024px) {
  .top-news {
    top: 98px;
    height: 32px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 4px;
  }
}
.top-news .tg {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  background-color: #0d91cb;
  border-radius: 99px;
  padding: 6px 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  transform-style: preserve-3d;
  outline-offset: 4px;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  animation: tg-sweep 4s linear infinite;
  will-change: transform;
  overflow: hidden;
}
.top-news .tg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, transparent 33%, rgba(255, 255, 255, 0.3), transparent 67%);
  pointer-events: none;
  will-change: transform;
  animation: tgShine 4s linear infinite;
}
.top-news .tg .i-tg {
  width: 16px;
  height: 16px;
  color: #FFF;
  flex-shrink: 0;
  animation: tgicon-sweep 4s linear infinite;
}
@media screen and (max-width: 1024px) {
  .top-news .tg {
    font-size: 12px;
    padding: 4px 6px;
  }
  .top-news .tg .i-tg {
    width: 14px;
    height: 14px;
  }
}
@keyframes tgShine {
  0% {
    transform: translateX(-100%);
  }
  30% {
    transform: translateX(-100%);
  }
  70% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes tgicon-sweep {
  0% {
    filter: drop-shadow(3px 2px 0px rgba(0, 0, 0, 0.3));
  }
  50% {
    filter: drop-shadow(-3px 2px 0px rgba(0, 0, 0, 0.3));
  }
  100% {
    filter: drop-shadow(3px 2px 0px rgba(0, 0, 0, 0.3));
  }
}
@keyframes tg-sweep {
  0% {
    transform: rotateY(-20deg);
    text-shadow: 3px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 1px 0px #006592;
  }
  50% {
    transform: rotateY(20deg);
    text-shadow: -3px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: -2px 1px 0px #006592;
  }
  100% {
    transform: rotateY(-20deg);
    text-shadow: 3px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 1px 0px #006592;
  }
}
/* .top-marquee {
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #19222d, #2f344b, #19222d);
    color: white;
    overflow: hidden;
    position: fixed;
    z-index: 1;
    top: 80px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    user-select: none;
    z-index: 101;
    @media screen and (max-width: 1024px) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .top-marquee-track {
        display: flex;
        height: 100%;
        transform: translateX(0);
        transition: transform 0.5s ease;
        will-change: transform;
    }

    .top-marquee-content {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        white-space: nowrap;
        line-height: 1.2;
        flex-shrink: 0;
        @media screen and (max-width: 1024px) {
            gap: 4px;
        }
        .tg{
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #FFF;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            background-color: #0d91cb;
            border-radius: 99px;
            padding: 6px 12px;
            transition: all 0.3s ease;
            white-space: nowrap;
            
            .i-tg{
                width: 16px;
                height: 16px;
                fill: #FFF;
                flex-shrink: 0;
            }
            
            &:hover {
                background-color: #0a7bb3;
            }
            
            @media screen and (max-width: 1024px) {
                font-size: 12px;
                padding: 4px 6px;
                .i-tg {
                    width: 14px;
                    height: 14px;
                }
            }
        
        }
    }
    
    @media screen and (max-width: 1024px) {
        top: 98px;
        height: 32px;
        font-size: 11px;
    }

} */
@keyframes marquee-fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.shade {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.5s;
  z-index: 102;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .shade {
    z-index: 98;
  }
}
.shade.shade-on {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  pointer-events: auto;
}
.wrap {
  /* max-width: 1400px; */
  width: 100%;
  /* padding: 0 10px; */
  margin: 0 auto;
}
.cart-section {
  max-width: 400px;
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 103;
  transform: translateX(0);
  transition: all 0.4s ease;
  background-color: #19222d;
  border-left: 2px solid #a5cd39;
}
@media screen and (max-width: 768px) {
  .cart-section {
    width: 100%;
    border-left: none;
  }
}
.cart-section.close {
  transform: translateX(100%);
}
.cart-section.show-right-cart {
  transform: translateX(0);
  transition: all 0.4s 0.3s ease;
}
.cart-section .cart-head {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cart-section .cart-head {
    padding: 0 10px;
    height: 54px;
  }
}
.cart-section .cart-head .cart-title {
  font-weight: 700;
}
.cart-section .cart-head .cart-title .title {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #a5cd39;
}
@media screen and (max-width: 768px) {
  .cart-section .cart-head .cart-title .title {
    font-size: 16px;
  }
}
.cart-section .cart-head .cart-title .sub {
  font-size: 11px;
  color: #b3b3b3;
}
.cart-section .cart-head .close-cart {
  font-size: 14px;
  font-weight: 500;
}
.cart-section .cart-head .close-cart .close {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.cart-section .cart-head .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(100vh - 178px);
  position: relative;
  border-top: 1.5px solid #aaa;
}
@media screen and (max-width: 768px) {
  .cart-section .main .product-mask .products {
    max-height: calc(100vh - 141.5px);
  }
}
.cart-section .main .product-mask .products .cart-goods {
  padding-bottom: 20px;
}
.cart-section .main .product-mask .products .cart-goods .cate-name {
  font-size: 16px;
  font-weight: 500;
  color: #a5cd39;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .cart-section .main .product-mask .products .cart-goods .cate-name {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.cart-section .main .product-mask .products .cart-goods .goods {
  position: relative;
  margin-bottom: 16px;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cart-section .main .product-mask .products .cart-goods .goods .goods-heading {
    gap: 10px;
  }
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .name {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .name {
    font-size: 13px;
  }
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .single {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .discount {
  font-size: 12px;
  font-weight: 500;
  color: #009e12;
  display: flex;
  flex-direction: column;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku {
  margin-top: 10px;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku .sku-item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #f6eaea;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku .sku-item:last-child {
  border-bottom: none;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku .sku-item .sku-name-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku .sku-item .sku-name-box .sku-name {
  font-size: 13px;
  font-weight: 500;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .goods-sku .sku-item .sku-name-box .remove-cart-goods {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  cursor: pointer;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 10px;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity {
  width: 88px;
  height: 22px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity:active input {
  transform: scale(1.05);
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity i {
  font-size: 12px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  display: inline-block;
  height: 22px;
  width: 26px;
  line-height: 22px;
  transition: all 0.3s;
  z-index: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity i.cart-reduce {
  left: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity i.cart-add {
  right: 0;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity i.disable {
  color: rgba(255, 255, 255, 0.2) !important;
  pointer-events: none;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity i:active {
  transition: all 0.1s;
  font-size: 14px;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .cart-quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.1s;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .price {
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 700;
  color: red;
  width: 56px;
  text-align: end;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .goods-list .price-box .price .price-num {
  font-size: 14px;
  margin-left: 2px;
}
.cart-section .main .product-mask .products .cart-goods .goods .goods-heading .del {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .cart-section .main .product-mask .products .cart-goods .goods .goods-heading .del:hover {
    opacity: 1;
  }
}
.cart-section .main .product-mask .products .checkout {
  position: sticky;
  bottom: 0;
}
.cart-section .main .product-mask .products .checkout .checkout-btn {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #87ad21;
  border-radius: 99px;
}
.cart-section .main .product-mask .products .checkout .checkout-btn .goshop-btn-text {
  color: #FFF;
  font-size: 16px;
  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;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .cart-section .main .bill {
    padding: 0 10px;
  }
}
.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:first-child {
  border-top: none;
}
.cart-section .main .bill .statistics li .label {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cart-section .main .bill .statistics li .label {
    font-size: 12px;
  }
}
.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: 14px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .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: 12px;
  }
}
.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;
}
.left-menu {
  max-width: 400px;
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 103;
  transform: translateX(100%);
  transition: all 0.4s ease;
  background-color: #19222d;
}
@media screen and (min-width: 1024px) {
  .left-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .left-menu {
    width: 80%;
  }
}
.left-menu.show-left-menu {
  transform: translateX(0);
  transition: all 0.4s 0.3s ease;
}
.left-menu.show-left-menu .menu-list .menu-item {
  animation: itemShow 1.8s 0.3s forwards;
}
.left-menu.show-left-menu .menu-list .menu-item:nth-child(2) {
  animation: itemShow 1.8s 0.4s forwards;
}
.left-menu.show-left-menu .menu-list .menu-item:nth-child(3) {
  animation: itemShow 1.8s 0.5s forwards;
}
.left-menu .menu-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 54px;
  background: #19222d;
  position: fixed;
  z-index: 1;
}
.left-menu .menu-head a .close {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #191919;
}
.left-menu .menu-head a .close .right-arrow {
  width: 10px;
  height: 10px;
  fill: #191919;
}
.left-menu .menu-head .site-logo {
  height: 44px;
  width: auto;
}
.left-menu .menu-list {
  overflow-y: auto;
  max-height: 100%;
  padding: 80px 0;
  width: 100%;
}
.left-menu .menu-list .menu-item {
  opacity: 1;
  padding: 0 16px;
  margin-top: 20px;
}
@keyframes itemShow {
  0% {
    transform: translateY(50vh);
    opacity: 0;
  }
  60% {
    transform: translateY(-2vh);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.left-menu .menu-list .menu-item:first-child {
  margin-top: 0;
}
.left-menu .menu-list .menu-item .menu-nav-name {
  font-size: 12px;
  color: #a5cd39;
  font-weight: 700;
  margin-bottom: 6px;
}
.left-menu .menu-list .menu-item .menu-dropdown {
  padding: 4px 0;
  border-radius: 10px;
  background-color: rgba(125, 32, 32, 0.06);
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item {
  padding: 10px 20px;
  margin: 4px 0;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #191919;
  /* span{
                                flex: 1;
                            } */
  /* &.gap-6{
                                gap: 6px;
                            } */
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left strong {
  font-weight: 500;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left img {
  width: 24px;
  height: 24px;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left i {
  font-size: 16px;
  width: 18px;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left .fz-1-2 {
  font-size: 12px;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .item-left .nav-series-count {
  font-size: 10px;
  font-weight: 700;
  color: #19222d;
  background-color: #a5cd39;
  padding: 0 4px;
  border-radius: 4px;
  letter-spacing: 0;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .more {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.left-menu .menu-list .menu-item .menu-dropdown .dropdown-item a .right-arrow {
  width: 10px;
  height: 10px;
  fill: #191919;
  flex-shrink: 0;
  margin-left: 4px;
}
.left-menu .menu-list .other-sec .other-item {
  text-align: center;
  margin-top: 4rem;
}
.left-menu .menu-list .other-sec .other-item .other-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #b3b3b3;
}
.left-menu .menu-list .other-sec .other-item .icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  transform: scale(0.8);
  transform-origin: top center;
}
.left-menu .menu-list .other-sec .other-item .icon .dmca {
  width: 52px;
  height: 26px;
  margin: 2px 10px 0 0;
}
.left-menu .menu-list .other-sec .other-item .icon .ssl {
  width: 90px;
  height: 24px;
}
.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.page-desc,
.box-desc {
  padding: 0 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .page-desc,
  .box-desc {
    font-size: 12px;
  }
}
.box-title {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .box-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.close-left-menu {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: -101;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition: opacity 0.4s ease, background-color 0.4s ease, z-index 0.4s 0s ease;
}
.close-left-menu.blur-show {
  display: block;
  z-index: 100;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
  animation: blurIn 0.4s forwards;
}
@keyframes blurIn {
  0% {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
  100% {
    -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem);
  }
}
.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  text-align: center;
  padding: 10px 30px;
  border-radius: 99px;
  margin: 30px auto;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .more-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin: 20px auto;
  }
}
.more-btn .i-right-arrow {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .more-btn .i-right-arrow {
    width: 10px;
    height: 10px;
  }
}
.more-btn:hover {
  background-color: #a5cd39;
  color: rgba(255, 255, 255, 0.9);
}
footer {
  width: 100%;
  position: relative;
  background: #19222d;
  padding: 30px 20px;
  color: rgba(255, 255, 255, 0.9);
  /* .site-name{
        display: block;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        padding: 10px 0;
        border-radius: 12px;
        transition: all 0.3s;
        font-size: 22px;
        font-style: italic;
        font-weight: 700;
        cursor: pointer;
        &:hover{
            background-color: rgba(255,255,255,0.1);
        }

    } */
}
@media screen and (min-width: 1024px) {
  footer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 30px 10px;
  }
  footer:after {
    position: absolute;
    width: 98.5vw;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    content: "";
    display: block;
    height: 100%;
    background: #19222d;
    z-index: -1;
  }
}
footer .site-logo {
  width: 200px;
  margin: 0 auto 20px;
}
footer .about {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  footer .about {
    padding: 0;
  }
}
footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  footer .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  footer .footer-nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
  }
}
footer .footer-nav .footer-nav-list {
  width: 100%;
}
footer .footer-nav .footer-nav-list .nav-name {
  font-size: 12px;
  color: #a5cd39;
  font-weight: 700;
}
footer .footer-nav .footer-nav-list .nav-dropdown .drop {
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  footer .footer-nav .footer-nav-list .nav-dropdown .drop {
    font-size: 12px;
  }
}
footer .footer-nav .footer-nav-list .nav-dropdown .drop a .item-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer-nav .footer-nav-list .nav-dropdown .drop a .item-left strong {
  font-weight: 500;
}
footer .footer-nav .footer-nav-list .nav-dropdown .drop a .item-left .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-nav .footer-nav-list .nav-dropdown .drop a .item-left i {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  footer .footer-nav .footer-nav-list:last-child {
    position: absolute;
    bottom: 0;
  }
  footer .footer-nav .footer-nav-list:last-child .nav-name {
    text-align: center;
  }
  footer .footer-nav .footer-nav-list:last-child .nav-dropdown {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
}
footer .other-sec {
  margin: 60px auto 20px;
  background-color: rgba(255, 255, 255, 0.1);
  width: fit-content;
  padding: 20px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  footer .other-sec {
    width: 100%;
  }
}
footer .other-sec .other-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
footer .other-sec .other-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  footer .other-sec .other-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  footer .other-sec .other-item .dmca-list {
    display: flex;
    transform: scale(0.8);
  }
}
footer .other-sec .other-item .other-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  footer .other-sec .other-item .other-title {
    margin-right: 0;
  }
}
footer .other-sec .other-item .yamato {
  width: 28px;
  height: 28px;
  margin: 0 20px 0 6px;
}
footer .other-sec .other-item .lalamove {
  width: 140px;
  height: 24px;
}
footer .other-sec .other-item .dmca {
  width: 52px;
  height: 26px;
  margin: 2px 10px 0 0;
}
footer .other-sec .other-item .ssl {
  width: 90px;
  height: 24px;
}
footer .other-sec .other-item .social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
}
footer .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: #a5cd39;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  cursor: pointer;
}
footer .other-sec .other-item .social .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  transform: scale(1.1);
}
footer .copyright {
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  padding: 14px 0;
}
.breadcrumb {
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  font-size: 12px;
  font-style: italic;
  width: 100%;
  max-width: 1024px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px 0;
  }
}
.breadcrumb li a {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb li:after {
  content: ">";
  padding: 0 4px;
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb li.active {
  color: rgba(255, 255, 255, 0.9);
  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: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 20px;
}
.faq-section .faq-item {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 10px;
  border-radius: 12px;
  border: 1.5px solid #aaa;
  overflow: hidden;
  height: var(--collapsed-height, 52px);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item {
    height: var(--collapsed-height, 48px);
  }
}
.faq-section .faq-item.open {
  height: var(--expanded-height, auto);
}
.faq-section .faq-item.open .faq-question {
  color: rgba(255, 255, 255, 0.9);
}
.faq-section .faq-item.open .faq-question .faq-icon {
  transform: rotate(270deg);
}
.faq-section .faq-item[open] {
  height: var(--expanded-height, auto);
}
.faq-section .faq-item[open] .faq-question {
  color: rgba(255, 255, 255, 0.9);
}
.faq-section .faq-item[open] .faq-question .faq-icon {
  transform: rotate(270deg);
}
.faq-section .faq-item .faq-question {
  height: 52px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question {
    padding: 0 14px;
    height: 48px;
  }
}
.faq-section .faq-item .faq-question::-webkit-details-marker {
  display: none;
}
.faq-section .faq-item .faq-question .question-text {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question .question-text {
    font-size: 13px;
  }
}
.faq-section .faq-item .faq-question .faq-icon {
  transition: transform 0.3s ease;
  fill: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transform: rotate(90deg);
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-question .faq-icon {
    width: 10px;
    height: 10px;
  }
}
.faq-section .faq-item .faq-answer {
  padding: 15px 60px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: justify;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-item .faq-answer {
    padding: 14px 20px;
    font-size: 12px;
  }
}
.right-btns {
  position: fixed;
  bottom: 10%;
  right: 20px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .right-btns {
    right: 10px;
    bottom: 5%;
  }
}
.right-btns .gift-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #a5cd39;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .right-btns .gift-btn {
    width: 44px;
    height: 44px;
  }
}
.right-btns .gift-btn img {
  cursor: pointer;
  animation: giftDome 2s ease-in-out infinite;
}
.right-btns .go-top {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .right-btns .go-top {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
}
.right-btns .go-top:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
  display: block;
}
.right-btns .go-top:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.right-btns .tg-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0d91cb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .right-btns .tg-btn {
    width: 44px;
    height: 44px;
  }
}
.right-btns .tg-btn:hover .tgicon {
  transform: scale(1.1);
}
.right-btns .tg-btn .tgicon {
  width: 40px;
  height: auto;
  padding-right: 4px;
  fill: #FFF;
  cursor: pointer;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .right-btns .tg-btn .tgicon {
    width: 28px;
  }
}
@keyframes giftDome {
  20% {
    transform: translateY(-20%) scale(1.05) rotate(-30deg);
  }
  40% {
    transform: translateY(-20%) scale(1.1) rotate(30deg);
  }
  60% {
    transform: translateY(-20%) scale(1.05) rotate(-30deg);
  }
  80% {
    transform: translateY(-20%) scale(1.1) rotate(30deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.follow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 4000;
  max-width: 520px;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .follow {
    max-width: 80%;
  }
}
.follow.follow-on {
  opacity: 1;
  pointer-events: auto;
}
.follow .follow-close {
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.follow .follow-close:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}
.follow .follow-close:active {
  transform: scale(0.95);
}
.follow .follow-close .follow-close-icon {
  line-height: 1;
  cursor: pointer;
}
.follow .follow-body {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 400px; */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #5a2d17;
  margin-bottom: 80px;
}
.follow .follow-body .follow-title {
  width: 400px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .follow .follow-body .follow-title {
    width: 100%;
  }
}
.follow .follow-body .follow-heading {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .follow .follow-body .follow-heading {
    font-size: 20px;
  }
}
.follow .follow-body .follow-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(90, 45, 23, 0.85);
}
@media screen and (max-width: 1024px) {
  .follow .follow-body .follow-text {
    font-size: 12px;
  }
}
.follow .follow-body .tg {
  align-self: center;
  padding: 12px 36px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9345 0%, #f06435 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.follow .follow-body .tg .tgicon {
  width: 32px;
  height: 32px;
  fill: #FFF;
  flex-shrink: 0;
}
.follow .follow-body .tg:hover {
  transform: translateY(-4px);
}
.follow .follow-body .tg:active {
  transform: translateY(0);
}
.follow .follow-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.follow .follow-layers .follow-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 520px;
  width: 100%;
  will-change: transform;
}
.follow .follow-layers .follow-layer.follow-layer-back {
  --s-min: 1;
  --s-max: 1.1;
  animation: breathe 1s linear infinite alternate;
}
.follow .follow-layers .follow-layer.follow-layer-mid {
  --s-min: 1.2;
  --s-max: 1;
  animation: breathe 1s linear infinite alternate;
}
@keyframes breathe {
  from {
    transform: translate(-50%, -50%) scale(var(--s-min));
  }
  to {
    transform: translate(-50%, -50%) scale(var(--s-max));
  }
}
.follow .follow-gift {
  position: absolute;
  width: 250px;
  right: 0;
  top: -88px;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .follow .follow-gift {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .follow {
    padding: 16px;
  }
  .follow .follow-content {
    padding: 56px 26px 60px;
  }
  .follow .follow-button {
    width: 100%;
  }
  .follow .follow-gift {
    right: 16px;
    top: -60px;
  }
}
