.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 8rem;
  overflow: hidden;
  background: #0a1628;
}
.banner .banner-swiper,
.banner .swiper-wrapper,
.banner .swiper-slide {
  width: 100%;
  height: 100%;
}
.banner .slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.banner .slide-media img,
.banner .slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: none;
}
.banner .slide-media .video-fallback {
  position: absolute;
  inset: 0;
  display: none;
}
.banner .slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 11, 20, 0.72) 0%, rgba(0, 11, 20, 0.35) 55%, rgba(0, 11, 20, 0.2) 100%);
  z-index: 1;
}
.banner .swiper-slide-active .slide-media img,
.banner .swiper-slide-active .slide-media video,
.banner .swiper-slide.is-active .slide-media img,
.banner .swiper-slide.is-active .slide-media video {
  transform: scale(1);
  transition: transform 6.5s ease-out;
}
.banner .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.4rem;
}
.banner .slide-text {
  max-width: 8rem;
  overflow: hidden;
}
.banner .slide-text h2 {
  color: #fff;
  font-size: 0.53rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.24rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.banner .slide-text p {
  color: #fff;
  font-size: 0.24rem;
  margin-bottom: 0.44rem;
  max-width: 9rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, opacity 0.6s ease 0.12s;
}
.banner .slide-text .btn-primary {
  transform: translateY(80%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s, opacity 0.6s ease 0.22s, background 0.3s ease;
}
.banner .swiper-slide-active .slide-text h2,
.banner .swiper-slide.is-active .slide-text h2,
.banner .swiper-slide-active .slide-text p,
.banner .swiper-slide.is-active .slide-text p,
.banner .swiper-slide-active .slide-text .btn-primary,
.banner .swiper-slide.is-active .slide-text .btn-primary {
  transform: translateY(0);
  opacity: 1;
}
.banner .banner-scroll {
  position: absolute;
  left: 0.6rem;
  bottom: 1.2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.14rem;
  letter-spacing: 0.08em;
}
.banner .banner-scroll span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 0.8rem;
}
.banner .banner-scroll img {
  width: 0.2rem;
  opacity: 0.8;
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(0.08rem);
    opacity: 1;
  }
}
.banner .banner-progress {
  position: absolute;
  left: 2rem;
  bottom: 0.95rem;
  z-index: 10;
  display: flex;
  gap: 0.1rem;
}
.banner .banner-progress span {
  width: 0.3rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s, width 0.3s;
}
.banner .banner-progress span.is-active {
  background: #fff;
  width: 0.4rem;
}
.sec-about {
  padding: 1.24rem 0 0;
  background: #fff;
}
.sec-about .about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.sec-about .about-title {
  flex: 0 0 45.6%;
  margin-top: -0.11rem;
}
.sec-about .about-title h2 {
  font-size: 0.47rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.34rem;
}
.sec-about .about-title .about-lead {
  font-size: 0.22rem;
  font-weight: bold;
}
.sec-about .about-desc {
  flex: 1;
  padding-left: 0.35rem;
  border-left: 1px solid #D2D2D2;
  color: #414141;
  font-size: 0.16rem;
  padding-top: 0.32rem;
}
.sec-about .about-desc p + p {
  margin-top: 0.18rem;
}
.sec-about .about-desc .btn-more {
  margin-top: 0.36rem;
}
.sec-about .about-stats {
  position: relative;
  height: 4.1rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.15rem;
}
.sec-about .about-stats .stats-bg {
  position: absolute;
  inset: 0;
  background: url(../img/about.png) center / cover no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-about .about-stats:hover .stats-bg {
  transform: scale(1.04);
}
.sec-about .about-stats .stats-list {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem;
}
.sec-about .about-stats .stat-item {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 0 0.2rem;
}
.sec-about .about-stats .stat-item .num {
  font-size: 0.45rem;
  font-weight: 600;
  line-height: 1.2;
}
.sec-about .about-stats .stat-item .num .counter {
  font-size: 0.66rem;
  font-family: Impact, Impact;
  font-weight: 400;
}
.sec-about .about-stats .stat-item .num .unit-year {
  font-size: 0.12rem;
  color: #002FA7;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: 0.5rem;
  margin-left: 0.1rem;
}
.sec-about .about-stats .stat-item .num .unit-ton {
  font-size: 0.21rem;
  color: #fff;
  margin-left: 0.05rem;
}
.sec-about .about-stats .stat-item .label {
  font-size: 0.18rem;
}
.sec-about .about-stats .stat-item:nth-child(3),
.sec-about .about-stats .stat-item:nth-child(4) {
  position: relative;
  top: 0.04rem;
}
.sec-about .about-stats .stat-item:nth-child(3) .label,
.sec-about .about-stats .stat-item:nth-child(4) .label {
  margin-top: 0.14rem;
}
.sec-product {
  padding: 0.86rem 0;
  background: #fff;
}
.sec-product .sec-head p {
  margin-bottom: 0.34rem;
}
.sec-product .product-tabs {
  display: flex;
  margin-bottom: 0.64rem;
  overflow-x: auto;
}
.sec-product .product-tabs::-webkit-scrollbar {
  display: none;
}
.sec-product .product-tab {
  flex: 0 0 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.14rem;
  padding: 0.2rem 0.12rem;
  cursor: pointer;
  position: relative;
  color: #434343;
  font-size: 0.22rem;
  font-weight: bold;
  transition: color 0.3s;
}
.sec-product .product-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 0.37rem);
  height: 1px;
  background: #e8e8e8;
  transition: background 0.3s;
}
.sec-product .product-tab .tab-num {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #B5C5EE;
  font-size: 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}
.sec-product .product-tab .tab-name {
  font-size: 0.22rem;
  font-weight: 500;
  color: #434343;
}
.sec-product .product-tab:hover,
.sec-product .product-tab.is-active {
  color: #fff;
}
.sec-product .product-tab:hover .tab-num,
.sec-product .product-tab.is-active .tab-num {
  background: #002FA7;
  color: #fff;
}
.sec-product .product-tab:hover::before,
.sec-product .product-tab.is-active::before {
  background: #002FA7;
}
.sec-product .product-panels {
  position: relative;
  height: 8.6rem;
}
@keyframes product-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.sec-product .product-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.12rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transform: scale(0.8);
  transform-origin: center center;
}
.sec-product .product-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
  animation: product-zoom-in 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.sec-product .product-panel .panel-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/product.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-product .product-panel .panel-bg.bg-2 {
  background-image: url(../img/store.png);
}
.sec-product .product-panel .panel-bg.bg-3 {
  background-image: url(../img/yanfa.png);
}
.sec-product .product-panel .panel-bg.bg-4 {
  background-image: url(../img/news.png);
}
.sec-product .product-panel:hover.is-active .panel-bg {
  transform: scale(1);
}
.sec-product .product-panel .panel-card {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6.77rem;
  padding: 0.85rem 0.87rem 0.65rem;
  background: rgba(0, 47, 167, 0.84);
  border-radius: 0.16rem;
  color: #fff;
  z-index: 2;
}
.sec-product .product-panel .panel-card h3 {
  font-size: 0.39rem;
  font-weight: 600;
  margin-bottom: 0.27rem;
}
.sec-product .product-panel .panel-card p {
  font-size: 0.2rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0.4rem;
}
.sec-rd {
  position: relative;
  padding: 0.28rem 0 0.4rem;
  background: #fff;
  overflow: hidden;
}
.sec-rd .sec-head {
  margin-bottom: 0.34rem;
}
.sec-rd .rd-earth {
  position: absolute;
  right: 0.5rem;
  top: 0;
  width: 7.4rem;
  height: 7.4rem;
  pointer-events: none;
  z-index: 0;
}
.sec-rd .rd-earth img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: earth-spin 60s linear infinite;
}
@keyframes earth-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.sec-rd .rd-inner {
  position: relative;
  z-index: 1;
}
.sec-rd .rd-list {
  display: flex;
  height: 7.92rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
.sec-rd .rd-item {
  flex: 1 1 0;
  width: 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 47, 167, 0.84);
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.43);
}
.sec-rd .rd-item:last-child {
  border-right: none;
}
.sec-rd .rd-item .rd-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
  border-radius: 0.14rem;
}
/* 深色蒙层：叠在背景图上，保证白色文字可读 */
.sec-rd .rd-item .rd-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 47, 167, 0.72), rgba(0, 47, 167, 0.35));
  transition: opacity 0.45s ease;
}
.sec-rd .rd-item:nth-child(1) .rd-bg {
  background-image: url(../img/yanfa.png);
}
.sec-rd .rd-item:nth-child(2) .rd-bg {
  background-image: url(../img/product.png);
}
.sec-rd .rd-item:nth-child(3) .rd-bg {
  background-image: url(../img/store.png);
}
.sec-rd .rd-item .rd-body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0.73rem 0.5rem 0.8rem 0.54rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.sec-rd .rd-item .rd-num {
  font-size: 0.22rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.sec-rd .rd-item h3 {
  font-size: 0.36rem;
  font-weight: 600;
  margin-bottom: 0.34rem;
}
.sec-rd .rd-item p {
  font-size: 0.16rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 0.28rem;
}
.sec-rd .rd-item .btn-more {
  align-self: flex-start;
}
.sec-rd .rd-item:hover .rd-bg,
.sec-rd .rd-item.is-active .rd-bg {
  opacity: 1;
}
.sec-news {
  padding: 0.43rem 0;
  background: #fff;
}
.sec-news .news-layout {
  display: flex;
  gap: 0.28rem;
  align-items: stretch;
}
.sec-news .news-swiper-wrap {
  flex: 0 0 64.67%;
  position: relative;
  height: 5.64rem;
  overflow: hidden;
  border-radius: 0.14rem;
}
.sec-news .news-swiper,
.sec-news .news-swiper .swiper-wrapper,
.sec-news .news-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.sec-news .news-slide {
  position: relative;
  height: 100%;
  display: block;
}
.sec-news .news-slide .news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sec-news .news-slide .news-img:hover {
  transform: scale(1.05);
}
.sec-news .news-slide .news-card {
  position: absolute;
  left: 0.33rem;
  bottom: 0.62rem;
  width: 4.87rem;
}
.sec-news .news-slide .news-card::before {
  content: "";
  display: block;
  background-image: url(../img/card-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 0.28rem;
}
.sec-news .news-slide .news-card .news-card-content {
  background: #fff;
  padding: 0.05rem 0.34rem 0.34rem;
  border-radius: 0 0.23rem 0.23rem 0.23rem;
}
.sec-news .news-slide .news-card .tag {
  display: inline-block;
  padding: 0.04rem 0.14rem;
  background: rgba(0, 47, 167, 0.1);
  color: #002FA7;
  font-size: 0.14rem;
  border-radius: 0.16rem;
  margin-bottom: 0.15rem;
}
.sec-news .news-slide .news-card .tag::before {
  content: "";
  display: inline-block;
  margin-right: 0.05rem;
  width: 0.05rem;
  height: 0.05rem;
  background: #002FA7;
  border-radius: 50%;
  margin-bottom: 0.02rem;
}
.sec-news .news-slide .news-card h3 {
  font-size: 0.16rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-news .news-slide .news-card .date {
  font-size: 0.14rem;
  color: rgba(0, 0, 0, 0.48);
}
.sec-news .news-pagination {
  position: absolute;
  right: 0.28rem;
  bottom: 0.28rem;
  z-index: 5;
  display: flex;
}
.sec-news .news-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 50%;
  margin: 0 0.03rem !important;
  transition: background 0.3s, transform 0.3s;
}
.sec-news .news-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.15);
}
.sec-news .news-list {
  flex: 1;
  background: #f3f5f8;
  border-radius: 0.16rem;
  padding: 0.2rem 0.39rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sec-news .news-list .news-list-more {
  color: #002FA7;
  transition: text-decoration 0.25s ease;
}
.sec-news .news-list .news-list-more:hover {
  text-decoration: underline;
}
.sec-news .news-list-item {
  display: block;
  padding: 0.14rem 0;
  transition: transform 0.25s ease;
}
.sec-news .news-list-item:hover {
  transform: translateX(0.06rem);
}
.sec-news .news-list-item:hover h4 {
  color: #002FA7;
}
.sec-news .news-list-item .tag {
  display: inline-block;
  padding: 0.04rem 0.14rem;
  background: rgba(0, 47, 167, 0.1);
  color: #002FA7;
  font-size: 0.14rem;
  border-radius: 0.16rem;
  margin-bottom: 0.15rem;
}
.sec-news .news-list-item .tag::before {
  content: "";
  display: inline-block;
  margin-right: 0.05rem;
  width: 0.05rem;
  height: 0.05rem;
  background: #002FA7;
  border-radius: 50%;
  margin-bottom: 0.02rem;
}
.sec-news .news-list-item h4 {
  font-size: 0.16rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  transition: color 0.25s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-news .news-list-item .date {
  font-size: 0.13rem;
  color: #999;
}
.sec-store {
  padding: 0.77rem 0 0;
  position: relative;
}
.sec-store::after {
  content: "";
  width: 100%;
  height: 1.88rem;
  background: #ECEFF9;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.sec-store .store-banner {
  position: relative;
  height: 5.15rem;
  overflow: hidden;
  border-radius: 0.2rem;
  cursor: pointer;
}
.sec-store .store-bg {
  position: absolute;
  inset: 0;
  background: url(../img/store.png) center / cover no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-store .store-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 25, 55, 0.72) 0%, rgba(5, 25, 55, 0.25) 70%);
}
.sec-store .store-banner:hover .store-bg {
  transform: scale(1.08);
}
.sec-store .store-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0.7rem;
}
.sec-store .store-content h2 {
  color: #fff;
  font-size: 0.47rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.34rem;
}
.sec-store .store-content p {
  color: #fff;
  font-size: 0.22rem;
  font-weight: bold;
  margin-bottom: 0.65rem;
}
@media screen and (max-width: 1366px) {
  .banner .banner-scroll {
    left: 0.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner {
    height: 10rem;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sec-head p {
    font-size: 0.34rem;
    font-weight: bold;
  }
  .banner {
    padding-top: 1.16rem;
    height: 100vh;
  }
  .banner .slide-text {
    max-width: 100%;
  }
  .banner .slide-text h2 {
    font-size: 0.47rem;
    line-height: 0.7rem;
  }
  .banner .slide-text p {
    font-size: 0.31rem;
    max-width: 5.3rem;
  }
  .banner .banner-pagination {
    left: 0.24rem;
    bottom: 0.56rem;
  }
  .banner .banner-scroll,
  .banner .banner-progress {
    display: none;
  }
  .banner .slide-content {
    padding-top: 1.72rem;
    justify-content: flex-start;
  }
  .banner .banner-pagination {
    bottom: 0.56rem;
    left: 0;
    width: 100%;
  }
  .banner .banner-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 50%;
    margin: 0 0.16rem;
    position: relative;
    background: #fff;
  }
  .banner .banner-pagination .swiper-pagination-bullet::after {
    display: none;
  }
  .banner .banner-pagination .swiper-pagination-bullet .jdt {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  @keyframes jtd2 {
    0% {
      stroke-dasharray: 0 90;
      stroke-dashoffset: 0;
    }
    100% {
      stroke-dasharray: 90 0;
      stroke-dashoffset: 0;
    }
  }
  .banner .banner-pagination .swiper-pagination-bullet .jdt2 {
    animation: jtd2 infinite 6s linear;
  }
  @keyframes circleProgressLoad_right {
    0% {
      transform: rotate(45deg);
    }
    50%,
    100% {
      transform: rotate(225deg);
    }
  }
  @keyframes circleProgressLoad_left {
    0%,
    50% {
      transform: rotate(45deg);
    }
    100% {
      transform: rotate(225deg);
    }
  }
  .banner .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 0.52rem;
    height: 0.52rem;
    line-height: 0.52rem;
    text-align: center;
    top: 0;
    background-color: transparent;
    color: #ffffff;
  }
  .banner .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .jdt {
    opacity: 1;
    transform: rotate(-90deg);
  }
  .banner .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .rightcircle {
    border-bottom: 2px solid #0069D9;
    border-left: 2px solid #0069D9;
    right: 0;
    animation: circleProgressLoad_right 6s linear infinite;
  }
  .banner .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .leftcircle {
    border-top: 2px solid #0069D9;
    border-right: 2px solid #0069D9;
    left: 0;
    animation: circleProgressLoad_left 6s linear infinite;
  }
  .banner .banner-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .wrapper_con {
    display: block;
  }
  .sec-about {
    padding: 0.8rem 0 0;
  }
  .sec-about .about-top {
    flex-direction: column;
    gap: 0.36rem;
  }
  .sec-about .about-title {
    flex: none;
  }
  .sec-about .about-title h2 {
    font-size: 0.68rem;
  }
  .sec-about .about-title .about-lead {
    font-size: 0.34rem;
  }
  .sec-about .about-desc {
    padding-left: 0;
    border-left: none;
    padding-top: 0;
    font-size: 0.28rem;
    color: #000;
  }
  .sec-about .about-stats {
    height: auto;
    padding: 0.4rem 0;
    border-radius: 0.2rem;
  }
  .sec-about .about-stats .stats-bg {
    background: url(../img/about_m.png) center / cover no-repeat;
  }
  .sec-about .about-stats .stats-list {
    flex-wrap: wrap;
    height: auto;
    padding: 0 0.2rem;
  }
  .sec-about .about-stats .stat-item {
    flex: 0 0 50%;
    padding: 0.2rem 0;
  }
  .sec-about .about-stats .stat-item .num {
    font-size: 0.66rem;
  }
  .sec-about .about-stats .stat-item .label {
    font-size: 0.28rem;
  }
  .sec-about .about-stats .stat-item:nth-child(3) .num,
  .sec-about .about-stats .stat-item:nth-child(4) .num {
    font-size: 0.45rem;
  }
  .sec-about .about-stats .stat-item:nth-child(3) span,
  .sec-about .about-stats .stat-item:nth-child(4) span {
    display: block;
  }
  .sec-product {
    padding: 0.58rem 0 0;
  }
  .sec-product .sec-head p {
    margin-bottom: 0.7rem;
    font-weight: bold;
  }
  .sec-product .product-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0.43rem;
  }
  .sec-product .product-tabs::-webkit-scrollbar {
    display: none;
  }
  .sec-product .product-tab {
    flex: 0 0 3rem;
    padding: 0.2rem 0;
  }
  .sec-product .product-tab .tab-num {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.2rem;
  }
  .sec-product .product-tab .tab-name {
    font-size: 0.3rem;
  }
  .sec-product .product-tab.is-active .tab-num {
    font-size: 0.22rem;
    font-weight: bold;
  }
  .sec-product .product-tab.is-active .tab-name {
    color: #000;
  }
  .sec-product .product-panels {
    height: max-content;
  }
  .sec-product .product-panel {
    position: relative;
    display: none;
    border-radius: 0;
  }
  .sec-product .product-panel.is-active {
    display: block;
  }
  .sec-product .product-panel .panel-bg {
    position: relative;
    height: 3.45rem;
  }
  .sec-product .product-panel .panel-card {
    position: relative;
    right: 0;
    left: 0;
    width: auto;
    top: auto;
    bottom: 00;
    transform: none;
    padding: 0.36rem;
    border-radius: 0;
  }
  .sec-product .product-panel .panel-card h3 {
    font-size: 0.36rem;
  }
  .sec-product .product-panel .panel-card p {
    font-size: 0.26rem;
    min-height: auto;
  }
  .sec-rd {
    padding: 0.8rem 0 0.4rem;
  }
  .sec-rd .rd-earth {
    width: 7.4rem;
    height: 7.4rem;
    right: 0.05rem;
    top: 2rem;
    opacity: 1;
  }
  .sec-rd .rd-list {
    flex-direction: column;
    height: auto;
  }
  .sec-rd .rd-item {
    width: 100%;
    flex: none;
    min-height: 7.73rem;
    border-right: none;
    margin-bottom: 0.24rem;
    border-radius: 0.14rem;
  }
  .sec-rd .rd-item h3 {
    font-size: 0.36rem;
  }
  .sec-rd .rd-item p {
    font-size: 0.28rem;
  }
  .sec-rd .rd-item .rd-num {
    font-size: 0.38rem;
    margin-bottom: 1rem;
  }
  .sec-rd .rd-item .rd-body {
    padding: 0.35rem 0.4rem 0.5rem;
  }
  .sec-rd .rd-item .btn-more .dots {
    width: 0.54rem;
    height: 0.54rem;
  }
  .sec-rd .rd-item .btn-more .dots i {
    width: 0.04rem;
    height: 0.04rem;
  }
  .sec-rd .rd-item .btn-more .dots i:nth-child(1) {
    top: 0.18rem;
    left: 0.2rem;
  }
  .sec-rd .rd-item .btn-more .dots i:nth-child(2) {
    top: 0.26rem;
    right: 0.18rem;
  }
  .sec-rd .rd-item .btn-more .dots i:nth-child(3) {
    left: 0.2rem;
    bottom: 0.17rem;
  }
  .sec-rd .rd-item .btn-more .txt {
    font-size: 0.28rem;
    margin-left: 0.12rem;
  }
  .sec-news {
    padding: 0 0 0.4rem;
  }
  .sec-news .news-layout {
    flex-direction: column;
    gap: 0.3rem;
  }
  .sec-news .news-swiper-wrap {
    flex: none;
    width: 100%;
    height: 3.96rem;
  }
  .sec-news .news-pagination {
    display: none;
  }
  .sec-news .news-slide .news-card {
    left: 0.33rem;
    right: 0.33rem;
    width: auto;
    bottom: 0.43rem;
  }
  .sec-news .news-slide .news-card::before {
    height: 0.36rem;
  }
  .sec-news .news-slide .news-card h3 {
    font-size: 0.28rem;
    margin-bottom: 0.09rem;
  }
  .sec-news .news-slide .news-card .tag,
  .sec-news .news-slide .news-card .date {
    font-size: 0.23rem;
  }
  .sec-news .news-slide .news-card .tag {
    padding: 0.09rem 0.24rem 0.05rem 0.2rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
  }
  .sec-news .news-slide .news-card .tag::before {
    width: 0.08rem;
    height: 0.08rem;
    margin-right: 0.08rem;
  }
  .sec-news .news-list {
    padding: 0.3rem;
  }
  .sec-news .news-list .news-list-more {
    font-size: 0.28rem;
  }
  .sec-news .news-list-item {
    padding: 0.28rem 0;
  }
  .sec-news .news-list-item .tag,
  .sec-news .news-list-item .date {
    font-size: 0.23rem;
  }
  .sec-news .news-list-item h4 {
    font-size: 0.28rem;
  }
  .sec-news .news-list-item .tag {
    padding: 0.09rem 0.24rem 0.05rem 0.2rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
  }
  .sec-news .news-list-item .tag::before {
    width: 0.08rem;
    height: 0.08rem;
    margin-right: 0.08rem;
  }
  .sec-store {
    padding: 0 ;
  }
  .sec-store::after {
    height: 1.6rem;
  }
  .sec-store .store-banner {
    height: 4.56rem;
  }
  .sec-store .store-content {
    padding: 0.69rem 0.38rem;
  }
  .sec-store .store-content h2 {
    font-size: 0.68rem;
  }
  .sec-store .store-content p {
    font-size: 0.28rem;
    margin-bottom: 0.44rem;
  }
  .sec-store .store-bg {
    background: url(../img/store_m.png) center / cover no-repeat;
  }
  .sec-store .btn-more--store .dots {
    width: 0.54rem;
    height: 0.54rem;
    background: none;
    border: 1px solid #fff;
  }
  .sec-store .btn-more--store i {
    width: 0.04rem;
    height: 0.04rem;
    background: #fff;
  }
  .sec-store .btn-more--store i:nth-child(1) {
    top: 0.18rem;
    left: 0.2rem;
  }
  .sec-store .btn-more--store i:nth-child(2) {
    top: 0.26rem;
    right: 0.18rem;
  }
  .sec-store .btn-more--store i:nth-child(3) {
    left: 0.2rem;
    bottom: 0.17rem;
  }
  .sec-store .btn-more--store .txt {
    font-size: 0.28rem;
    margin-left: 0.12rem;
  }
}
