.banner-section {
  position: relative;
  width: 100%;
  margin: 120px auto 60px;
}
@media screen and (max-width: 1024px) {
  .banner-section {
    margin: 130px auto 30px;
  }
}
@media screen and (max-width: 1024px) {
  .banner-section img {
    transform: scale(1.2);
    transform-origin: top;
    z-index: 0;
  }
}
.banner-section .banner-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-section .banner-btn {
  position: absolute;
  display: block;
  bottom: 20%;
  left: 16.3%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .banner-section .banner-btn {
    bottom: 8%;
    left: 9.3%;
  }
}
.banner-section .banner-btn .banner-btn-text {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .banner-section .banner-btn .banner-btn-text {
    font-size: 12px;
  }
}
.banner-section .banner-btn .banner-btn-text .right-arrow {
  width: 16px;
  height: 16px;
  fill: #FFF;
  margin-left: 4px;
  animation: goShop 1s infinite;
}
@media screen and (max-width: 1024px) {
  .banner-section .banner-btn .banner-btn-text .right-arrow {
    width: 10px;
    height: 10px;
  }
}
@keyframes goShop {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(3px);
  }
}
.section-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.section-title:before {
  content: "";
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  left: 0;
}
.section-title:after {
  content: "";
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  right: 0;
}
.wrap {
  padding: 0;
}
.hot-sale {
  margin-bottom: 80px;
  height: fit-content;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .hot-sale {
    margin-bottom: 40px;
  }
}
.hot-sale .goods {
  overflow: hidden;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  padding: 10px;
  max-width: 345px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods {
    display: flex;
    gap: 6px;
    max-width: 50%;
  }
}
.hot-sale .goods .goods-wrap {
  width: 100%;
  display: block;
}
.hot-sale .goods .info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.hot-sale .goods .info::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #32442a, transparent);
  border-bottom: 3px solid #a8df14;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 50%, #000 calc(100% - 50%), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 50%, #000 calc(100% - 50%), transparent 100%);
}
@media screen and (max-width: 1024px) {
  .hot-sale .goods .info {
    padding: 10px 0 4px;
  }
}
.hot-sale .goods .info .good-name2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hot-sale .goods .info .good-name {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #a5cd39;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .good-name {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.hot-sale .goods .info .flavor {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .flavor {
    font-size: 14px;
  }
}
.hot-sale .goods .info .price {
  font-weight: 700;
  font-size: 12px;
  color: red;
  letter-spacing: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .price {
    font-size: 11px;
  }
}
.hot-sale .goods .info .price .price-num {
  font-size: 18px;
  font-weight: 700;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .price .price-num {
    font-size: 16px;
    margin: 0 2px;
  }
}
.hot-sale .goods .info .feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .hot-sale .goods .info .feature {
    padding: 0 6px;
  }
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .feature {
    padding: 0;
  }
}
.hot-sale .goods .info .feature .feature-item {
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 500;
  color: #8dd905;
  border-radius: 5px;
  background-color: #3f580c;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .feature .feature-item {
    font-size: 11px;
    border-radius: 4px;
    padding: 1px 4px;
  }
}
.hot-sale .goods .info .info-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 10px;
  margin-bottom: 10px;
  /* .go-shop-btn{
                    position: relative;
                    width: 80%;
                    height: 36px;
                    background-color: @logogreen;
                    color: @whitecolor;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 99px;
                    font-size: 14px;
                    font-weight: 500;
                    cursor: pointer;
                    transition: all 0.4s cubic-bezier(0.53, -0.52, 0.27, 1.53);
                    &:hover{
                        width: 100%;
                    }
                    &:active{
                        .btn-text{
                            transition: all 0.1s;
                            transform: scale(0.95);
                        }
                    }
                    @media screen and (max-width:768px){
                        font-size: 13px;
                        height: 32px;
                    }
                } */
}
.hot-sale .goods .info .info-wrap .good-name {
  font-size: 14px;
  font-weight: 700;
  color: #a5cd39;
  text-wrap: balance;
  text-align: center;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .info-wrap .good-name {
    font-size: 12px;
  }
}
.hot-sale .goods .info .info-wrap .flavor-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .hot-sale .goods .info .info-wrap .flavor-box {
    padding: 2px 6px;
  }
}
.hot-sale .goods .info .info-wrap .taste-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .hot-sale .goods .info .info-wrap .taste-box {
    font-size: 12px;
    padding: 0 6px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .info-wrap .taste-box {
    font-size: 11px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.hot-sale .goods .info .info-wrap .price-box {
  text-align: center;
  margin: 10px 0;
}
.hot-sale .goods .info .info-wrap .price-box .price {
  font-weight: 700;
  font-size: 12px;
  color: red;
  letter-spacing: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .info-wrap .price-box .price {
    font-size: 11px;
  }
}
.hot-sale .goods .info .info-wrap .price-box .price .price-num {
  font-size: 18px;
  font-weight: 700;
  margin: 0 4px;
}
@media screen and (max-width: 768px) {
  .hot-sale .goods .info .info-wrap .price-box .price .price-num {
    font-size: 16px;
    margin: 0 2px;
  }
}
.hot-sale .goods .info .info-wrap .price-box .discount {
  font-size: 12px;
  font-weight: 500;
  color: #009e12;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .hot-sale .goods:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  }
  .hot-sale .goods:hover .img-wrap .bg {
    animation: bgChange 18s infinite;
  }
  @keyframes bgChange {
    0% {
      background-image: var(--image);
    }
    47% {
      background-image: var(--image);
    }
    50% {
      background-image: var(--image2);
    }
    97% {
      background-image: var(--image2);
    }
    100% {
      background-image: var(--image);
    }
  }
  .hot-sale .goods:hover .img-wrap .radar-box {
    animation: radarShow 18s infinite;
  }
  @keyframes radarShow {
    0% {
      opacity: 1;
    }
    47% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    97% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
.hot-sale .main {
  position: relative;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .hot-sale .main {
    padding: 0;
  }
}
.hot-sale .main .swiper-button-prev,
.hot-sale .main .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  z-index: 1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.hot-sale .main .swiper-button-prev:hover,
.hot-sale .main .swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .hot-sale .main .swiper-button-prev,
  .hot-sale .main .swiper-button-next {
    display: none;
  }
}
.hot-sale .main .swiper-button-prev {
  left: -32px;
}
.hot-sale .main .swiper-button-prev::after {
  display: none !important;
}
.hot-sale .main .swiper-button-prev::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -2px) rotate(-45deg);
  width: 8px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
}
.hot-sale .main .swiper-button-prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 2px) rotate(45deg);
  width: 8px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  display: block !important;
}
.hot-sale .main .swiper-button-next {
  right: -32px;
}
.hot-sale .main .swiper-button-next::after {
  display: none !important;
}
.hot-sale .main .swiper-button-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -2px) rotate(45deg);
  width: 8px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
}
.hot-sale .main .swiper-button-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 2px) rotate(-45deg);
  width: 8px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  display: block !important;
}
.category-sec {
  max-width: 1280px;
  margin: 0 auto 160px;
  padding: 0 10px;
  /* .category-name{
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        color: @whitecolor;
        text-align: center;
        margin-bottom: 30px;
        @media screen and (max-width: 1024px){
            font-size: 18px;
            margin-bottom: 20px;
        }
    } */
}
@media screen and (max-width: 1024px) {
  .category-sec {
    padding: 0;
    margin-bottom: 40px;
  }
}
.category-sec:nth-of-type(1) .product-sec,
.category-sec:nth-of-type(3) .product-sec {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  .category-sec:nth-of-type(1) .product-sec,
  .category-sec:nth-of-type(3) .product-sec {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 30px;
  }
}
.category-sec .product-sec {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .category-sec .product-sec {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    gap: 20px 10px;
    padding: 0 10px;
  }
}
.category-sec .product-sec .product a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.category-sec .product-sec .product a img {
  object-fit: cover;
}
.category-sec .product-sec .product a .productname {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .category-sec .product-sec .product a .productname {
    font-size: 12px;
  }
}
.category-sec .video-wrap {
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
}
.category-sec .video-wrap.scale-on-scroll {
  --scale: 0.6;
  transform: scale(var(--scale));
  transform-origin: top center;
  will-change: transform;
  transition: transform 0.12s linear;
}
.category-sec .video-wrap .video-box {
  flex: 1;
  overflow: hidden;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .category-sec .video-wrap .video-box {
    border-radius: 0;
  }
}
.category-sec .video-wrap .video-box .product-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}
.taste-fliter-section {
  position: relative;
  margin-top: 40px;
  width: 100%;
}
.taste-fliter-section .taste-fliter-wrap {
  width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-title:before {
  content: "";
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  left: 0;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-title:after {
  content: "";
  display: block;
  width: 40%;
  height: 1.5px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  right: 0;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  align-items: center;
  width: 800px;
  margin: 40px auto 0;
  perspective: 1000px;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(6) {
  transition: transform 0.8s 0.75s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0.75s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0.75s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(6) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0.75s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(5) {
  transition: transform 0.8s 0.6s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0.6s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0.6s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(5) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0.6s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(4) {
  transition: transform 0.8s 0.45s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0.45s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0.45s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(4) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0.45s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(3) {
  transition: transform 0.8s 0.3s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0.3s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0.3s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(3) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0.3s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(2) {
  transition: transform 0.8s 0.15s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0.15s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0.15s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(2) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0.15s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(1) {
  transition: transform 0.8s 0s cubic-bezier(0.42, 0, 0.83, 1.44), filter 0.8s 0s cubic-bezier(1, 0, 0, 1), -webkit-filter 0.8s 0s cubic-bezier(1, 0, 0, 1);
  transform: rotateY(0deg);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box.show .taste-fliter-item:nth-child(1) .taste-fliter-name {
  opacity: 1;
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  transition: all 1.2s 0s cubic-bezier(0.5, 0, 0.5, 1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box .taste-fliter-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  transform: rotateY(-360deg);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transform-style: preserve-3d;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box .taste-fliter-item img {
  width: 100%;
  transition: all 1.2s ease-in-out;
  cursor: pointer;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box .taste-fliter-item .taste-fliter-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #FFF;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0px 0px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 0px;
  transition: all 0.3s ease-in-out;
  letter-spacing: -10px;
  opacity: 0;
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box .taste-fliter-item:hover img {
  transform: scale(1.1);
}
.taste-fliter-section .taste-fliter-wrap .taste-fliter-box .taste-fliter-item:hover .taste-fliter-name {
  transform: translate(-50%, -50%) scale(0.9);
}
.adv-section {
  width: 100%;
  height: 800px;
  position: relative;
  margin-top: 200px;
}
.adv-section .video-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.adv-section .video-container .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background-image: url("/static/img/pixel.webp");
  background-repeat: revert;
  top: 0;
  left: 0;
}
.adv-section .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.adv-section .content {
  position: absolute;
  top: 50%;
  z-index: 22;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  width: 1080px;
  align-items: baseline;
  justify-content: space-between;
  gap: 60px;
}
.adv-section .content .content-left {
  flex: 1;
}
.adv-section .content .content-left .ab-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.adv-section .content .content-left .text {
  font-size: 14px;
  line-height: 1.5;
}
.adv-section .content .sales-sec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  margin-top: 20px;
  flex: 1;
}
.adv-section .content .sales-sec .sales-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adv-section .content .sales-sec .sales-item .sales-ico {
  width: 64px;
  height: 64px;
  border: 1.5px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-section .content .sales-sec .sales-item .sales-ico i {
  font-size: 36px;
}
.adv-section .content .sales-sec .sales-item .sales-title {
  font-size: 15px;
  margin: 4px 0;
}
.adv-section .content .sales-sec .sales-item .sales-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 4px;
}
.about-sec {
  margin-bottom: 160px;
}
.about-sec .point {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 0;
}
.about-sec .point .point-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, 0.9);
}
.about-sec .point .point-item:nth-child(3n) {
  border-right: none;
}
.about-sec .point .point-item .point-icon {
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .about-sec .point .point-item .point-icon {
    max-width: 64px;
  }
}
.about-sec .point .point-item .point-icon .i-point {
  width: 56px;
  height: 56px;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .about-sec .point .point-item .point-icon .i-point {
    width: 28px;
    height: 28px;
  }
}
.about-sec .point .point-item .point-icon:before {
  content: '';
  position: absolute;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  opacity: 1;
  border-radius: 50%;
  animation: rotatex 2s linear infinite;
  transform-origin: 10% 50%;
  z-index: -1;
}
.about-sec .point .point-item .point-icon:after {
  content: '';
  background-color: #19222d;
  opacity: 0.8;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .about-sec .point .point-item .point-icon:after {
    inset: 1.5px;
  }
}
@keyframes rotatex {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-sec .point .point-item .point-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1024px) {
  .about-sec .point .point-item .point-title {
    font-size: 14px;
  }
}
.about-sec .point .point-item .point-desc {
  font-size: 14px;
  color: #aaa;
}
@media screen and (max-width: 1024px) {
  .about-sec .point .point-item .point-desc {
    font-size: 11px;
    padding: 0 10px;
  }
}
.about-sec .point .point-item:nth-child(1) .point-icon .i-point {
  color: #0081ff;
}
.about-sec .point .point-item:nth-child(1) .point-icon:before {
  background: radial-gradient(circle, #0081ff 15%, transparent, transparent);
}
.about-sec .point .point-item:nth-child(2) .point-icon .i-point {
  color: #f89c06;
}
.about-sec .point .point-item:nth-child(2) .point-icon:before {
  background: radial-gradient(circle, #f89c06 15%, transparent, transparent);
}
.about-sec .point .point-item:nth-child(3) .point-icon .i-point {
  color: #ffd306;
}
.about-sec .point .point-item:nth-child(3) .point-icon:before {
  background: radial-gradient(circle, #ffd306 15%, transparent, transparent);
}
.about-sec .point .point-item:nth-child(4) .point-icon .i-point {
  color: #6ced00;
}
.about-sec .point .point-item:nth-child(4) .point-icon:before {
  background: radial-gradient(circle, #6ced00 15%, transparent, transparent);
}
.about-sec .point .point-item:nth-child(5) .point-icon .i-point {
  color: #00f1ff;
}
.about-sec .point .point-item:nth-child(5) .point-icon:before {
  background: radial-gradient(circle, #00f1ff 15%, transparent, transparent);
}
.about-sec .point .point-item:nth-child(6) .point-icon .i-point {
  color: #fa06f3;
}
.about-sec .point .point-item:nth-child(6) .point-icon:before {
  background: radial-gradient(circle, #fa06f3 15%, transparent, transparent);
}
.faq-section {
  margin-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .faq-section .faq-container {
    padding: 0 20px;
  }
}
.marquee-section {
  margin-bottom: 160px;
  overflow: hidden;
}
.marquee-section .sec-title {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-align: center;
  font-weight: 700;
}
.marquee-section .marquee-sub {
  font-size: 14px;
  color: #999;
  text-align: center;
  width: 40%;
  margin: 30px auto 0;
}
.marquee-section .reviews-line {
  width: 1300px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
}
.marquee-section .reviews-line:before {
  content: "";
  display: block;
  height: 100%;
  width: 400px;
  background: linear-gradient(90deg, #19222d, rgba(255, 255, 255, 0));
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .marquee-section .reviews-line:before {
    display: none;
  }
}
.marquee-section .reviews-line:after {
  content: "";
  display: block;
  height: 100%;
  width: 400px;
  background: linear-gradient(-90deg, #19222d, rgba(255, 255, 255, 0));
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .marquee-section .reviews-line:after {
    display: none;
  }
}
.marquee-section .reviews-line .line-loop {
  display: flex;
  white-space: nowrap;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .marquee-section .reviews-line .line-loop {
    margin-top: 30px;
  }
}
@keyframes loop {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(-150%);
  }
}
@keyframes reloop {
  from {
    transform: translateX(-150%);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-section .reviews-line .line-loop:nth-child(1) {
  animation: loop 20s linear infinite;
  margin-top: 0;
}
.marquee-section .reviews-line .line-loop:nth-child(2) {
  animation: reloop 30s linear infinite;
}
.marquee-section .reviews-line .line-loop:nth-child(3) {
  animation: loop 30s linear infinite;
}
.marquee-section .reviews-line .line-loop:nth-child(4) {
  animation: reloop 20s linear infinite;
}
.marquee-section .reviews-line .line-loop .line-box {
  display: flex;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic {
  width: 240px;
  margin-right: 20px;
  position: relative;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .pic-box {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .pic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .pic-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .reviews {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 240px;
  padding: 20px;
  width: 100%;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .reviews .stars {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  gap: 2px;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .reviews .stars .i-star {
  width: 14px;
  height: 14px;
  color: #ffb400;
}
.marquee-section .reviews-line .line-loop .line-box .reviews-pic .reviews .reviews-text {
  white-space: normal;
}
.guarantee-section {
  background-color: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  margin-top: 60px;
  padding: 60px 0;
}
.guarantee-section .guarantee-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.guarantee-section .guarantee-item {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  margin-left: 30px;
  position: relative;
  -moz-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.guarantee-section .guarantee-item .guarantee-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.guarantee-section .guarantee-item .ico {
  width: 50px;
  height: 50px;
  display: flex;
  margin: 0 auto;
}
.guarantee-section .guarantee-item .ico i {
  color: #fff;
}
.guarantee-section .guarantee-item .just {
  margin-top: 5px;
  color: #fff;
  font-size: 18px;
}
.guarantee-section .guarantee-item .sub {
  color: #ddd;
  font-size: 14px;
}
.guarantee-section .guarantee-item:hover {
  background: rgba(0, 0, 0, 0.3);
}
.question-section {
  padding: 60px 0;
}
.question-section .question-main {
  width: 900px;
  margin: 0 auto;
}
.question-section .question-main .title {
  font-size: 32px;
  color: #000000;
  letter-spacing: 1px;
}
.question-section .question-main .question {
  margin-top: 30px;
}
.question-section .question-main .question .item {
  width: 900px;
  height: 48px;
  background: #e6e6e6;
  border-radius: 3px;
  font-size: 14px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  margin-bottom: 12px;
  transition-duration: 0.3s;
}
.question-section .question-main .question .item .q-title {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
}
.question-section .question-main .question .item .q-desc {
  font-size: 14px;
  padding-bottom: 10px;
  padding-left: 25px;
}
.question-section .question-main .question .item .q-show {
  color: #000;
  position: absolute;
  right: 16px;
  top: 14px;
  font-weight: bold;
}
.question-section .question-main .question .item .q-show i {
  font-size: 18px;
}
.news-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 160px;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .news-section {
    margin: 0 auto 100px;
    padding: 0 10px;
  }
}
.news-section h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .news-section h2 {
    font-size: 18px;
  }
}
.news-section .news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .news-section .news {
    grid-template-columns: repeat(2, 1fr);
    max-width: 768px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .news-section .news {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .news-section .news a {
    display: flex;
  }
}
.news-section .news .item {
  width: 100%;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .news-section .news .item:hover {
    transform: translateY(-20px);
  }
  .news-section .news .item:hover .more .right-arrow {
    animation: goRead 1s infinite;
  }
}
.news-section .news .item .time-label {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: -22px;
  left: 12px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}
.news-section .news .item .time-label .time-num {
  font-size: 46px;
  margin-right: 6px;
  line-height: 42px;
  color: #a5cd39;
}
.news-section .news .item .cover {
  flex: 1;
}
.news-section .news .item .cover-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .cover-img {
    flex: 1;
  }
}
.news-section .news .item .cover-img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(255, 255, 255, 0);
  height: 24px;
  width: 24px;
  border-top-left-radius: 15px;
  box-shadow: -5px -5px 0 2px #19222d;
}
.news-section .news .item .cover-img img {
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .cover-img img {
    border-radius: 0 0 0 16px;
  }
}
.news-section .news .item .cover-img .cover-border {
  border-bottom-right-radius: 10px;
  height: 30px;
  width: 50px;
  background: #19222d;
  position: absolute;
  top: 0;
  left: 0;
  transform: skew(-34deg);
  box-shadow: -10px -10px 0 0 #19222d;
}
.news-section .news .item .cover-img .cover-border:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  right: -15px;
  background: rgba(255, 255, 255, 0);
  border-top-left-radius: 10px;
  box-shadow: -5px -5px 0 2px #19222d;
}
.news-section .news .item .cover-img .label-title {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
  background-color: #0080ff;
  padding: 4px 8px;
  font-style: normal;
  border-radius: 6px;
  z-index: 1;
}
.news-section .news .item .info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 16px 16px;
  padding: 20px 14px;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .info {
    border-radius: 0 16px 16px 0;
    padding: 16px 12px;
    flex: 1.2;
  }
}
.news-section .news .item .info .n-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .info .n-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.news-section .news .item .info .n-desc {
  font-size: 13px;
  color: #aaa;
  text-align: justify;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .info .n-desc {
    font-size: 11px;
    margin-bottom: 6px;
  }
}
.news-section .news .item .info .more {
  font-size: 13px;
  text-align: end;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .news-section .news .item .info .more {
    font-size: 12px;
  }
}
.news-section .news .item .info .more .right-arrow {
  color: rgba(255, 255, 255, 0.9);
  width: 10px;
  height: 10px;
}
@keyframes goRead {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(3px);
  }
}
