@charset "UTF-8";
@font-face {
  font-family: 'GoogleSans-Regular';
  src: url("../fonts/GoogleSans-Regular.ttf");
}
@font-face {
  font-family: 'GoogleSans-Medium';
  src: url("../fonts/GoogleSans-Medium.ttf");
}
@font-face {
  font-family: 'GoogleSans-Bold';
  src: url("../fonts/GoogleSans-Bold.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ani-1 {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    transition: all .3s ease;
  }
  .dom-loaded .header .link-box a {
    transition: all .3s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0.4rem;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .header.down {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .header.down .link-box a {
    line-height: max(60px, 0.8rem);
  }
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .inner-block {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: max(90px, 1rem);
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header .link-box {
  display: flex;
  gap: 0.36rem;
}
.header .link-box a {
  font-size: max(13px, 0.15rem);
  color: #1a1a1a;
  line-height: 1.2rem;
}
@media (any-hover: hover) {
  .header .link-box a:hover {
    color: #6c7781;
  }
}
.header .global {
  position: relative;
}
.header .global .show {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .global .show span {
  font-size: max(13px, 0.15rem);
  color: #1a1a1a;
  padding: 0 0.1rem;
}
.header .global .show:before {
  content: '';
  width: max(16px, 0.2rem);
  height: max(16px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/global-1.svg");
  will-change: transform;
}
.header .global .show:after {
  content: '';
  width: 7px;
  height: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/drop-1.svg");
}
.header .global .hide {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.header .global .hide:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 20px;
  top: 11px;
}
.header .global .box {
  min-width: 1rem;
  padding: 0.1rem 0.2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.header .global .box a {
  font-size: max(13px, 0.15rem);
  line-height: 2;
  color: #181818;
  white-space: nowrap;
  position: relative;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .header .global .box a:hover {
    color: #6c7781;
  }
}
.header .global:hover .hide {
  opacity: 1;
  visibility: visible;
}
.header .mNavBtn {
  display: none;
}

.footer {
  background-color: #f7f8fa;
  padding: 0 0.4rem 0.4rem;
}
.footer .main {
  padding: 0.6rem;
  border-radius: 0.2rem;
  background-color: #fff;
}
.footer .wrap-s {
  display: flex;
}
.footer .left-block {
  width: calc(50% - 0.6rem);
}
.footer .left-block .logo-box {
  width: 1rem;
}
.footer .left-block .logo-box img {
  display: block;
  width: 100%;
}
.footer .left-block .ewm-box {
  width: max(78px, 0.8rem);
  margin-top: 1rem;
}
.footer .left-block .ewm-box .img-box img {
  display: block;
  width: 100%;
}
.footer .left-block .ewm-box p {
  font-size: max(12px, 0.14rem);
  color: #9aa8b7;
  text-align: center;
  margin-top: 5px;
}
.footer .right-block {
  width: calc(50% + 0.6rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .link-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.footer .link-box a {
  min-width: 1.1rem;
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .footer .link-box a:hover {
    color: #6c7781;
  }
}
.footer .bot-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .bot-box .share {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer .bot-box .share .box a {
  display: block;
}
.footer .bot-box .share .box a img {
  display: block;
  height: max(15px, 0.15rem);
}
.footer .bot-box .share .box span {
  font-size: max(12px, 0.14rem);
  color: #9aa8b7;
}
.footer .bot-box .share i {
  width: 1px;
  height: 8px;
  background-color: #e2e5e8;
}
.footer .bot-box .copyright {
  font-size: max(12px, 0.14rem);
  color: #9aa8b7;
}

.fixed-right {
  position: fixed;
  right: 24px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  z-index: 9;
}
.fixed-right .box {
  border-radius: 90px;
  width: 54px;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.fixed-right .box:nth-of-type(1) span, .fixed-right .box:nth-of-type(2) span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.fixed-right .box:nth-of-type(2) {
  background-color: #fff;
  box-shadow: 0 0.08rem 0.4rem #e2e5f0;
}
.fixed-right .box:nth-of-type(2) span {
  color: #1a1a1a;
}
.fixed-right .box:nth-of-type(1) {
  background-color: #25d366;
}
.fixed-right .box:nth-of-type(1) span {
  color: #fff;
}
.fixed-right .box:nth-of-type(3) {
  background-color: #273ff0;
}
.fixed-right .box:nth-of-type(3) span {
  color: #fff;
}
.fixed-right .box i {
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.fixed-right .box span {
  font-size: max(10px, 0.12rem);
  white-space: nowrap;
  display: none;
}

.cc-165wh .cc-lk42u span.cc-13wro {
  right: 0.1rem !important;
  bottom: 0.2rem !important;
}

@media screen and (min-width: 1025px) {
  .ani-box.animating {
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  }

  .trans-1 {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  .trans-1.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-1.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-1.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-1.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-2 {
    opacity: 0;
    transform: translateX(-0.5rem);
  }
  .trans-2.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-2.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-2.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-2.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-3 {
    opacity: 0;
    transform: translateX(0.5rem);
  }
  .trans-3.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-3.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-3.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-3.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-4 {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  .trans-4.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-4.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-4.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-4.animating.delay-3 {
    transition-delay: .3s;
  }

  .scale-1 {
    transform: scale(1.3);
  }
  .scale-1.animating {
    transform: scale(1);
  }
}
.wrap-s {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.index-s1 {
  padding: 2rem 0 0;
}
.index-s1 .top-block {
  padding: 0 0.4rem;
}
.index-s1 .top-block .label {
  font-size: 0.9rem;
  line-height: 1;
  color: #1a1a1a;
  text-align: center;
}
.index-s1 .top-block .para {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #6c7781;
  font-family: 'GoogleSans-Medium';
  text-align: center;
}
.index-s1 .top-block .para span {
  display: block;
  color: #1a1a1a;
}
.index-s1 .bot-block {
  margin-top: 0.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
  transform: scale(0.96);
}
.index-s1 .bot-block .item {
  height: 100vh;
  position: relative;
}
.index-s1 .bot-block .item .video-box {
  height: 100%;
}
.index-s1 .bot-block .item .video-box video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s1 .bot-block .item .img-box {
  height: 100%;
}
.index-s1 .bot-block .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s1 .bot-block .item .txt-box {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  z-index: 2;
}
.index-s1 .bot-block .item .para {
  font-size: 0.36rem;
  color: #fff;
  opacity: 0;
}
.index-s1 .bot-block .item.swiper-slide-active .para {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s1 .pagination {
  width: calc(100% - 1rem);
  position: absolute;
  bottom: 0.8rem;
  left: 0.5rem;
  display: flex;
  gap: 0.1rem;
  z-index: 2;
}
.index-s1 .pagination span {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0.2;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s1 .pagination span.active {
  width: 0.4rem;
  opacity: 1;
}

.index-s2 {
  padding: 1.6rem 0.4rem 1.2rem;
}
.index-s2 .top-block {
  display: flex;
  align-items: flex-start;
}
.index-s2 .top-block .left-box {
  width: 50%;
}
.index-s2 .top-block .right-box {
  width: 50%;
}
.index-s2 .top-block .label {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s2 .top-block .para {
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  font-family: 'GoogleSans-Medium';
}
.index-s2 .top-block .img-box {
  width: 100%;
  max-width: 7.1rem;
  border-radius: 0.2rem;
  aspect-ratio: 710 / 360;
  overflow: hidden;
  margin-top: 0.6rem;
}
.index-s2 .top-block .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s2 .bot-block {
  height: 150vh;
}
.index-s2 .bot-block .sticky {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
}
.index-s2 .bot-block .items {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.index-s2 .bot-block .item .num {
  font-size: 1.2rem;
  line-height: 1;
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s2 .bot-block .item .txt {
  margin-top: 0.3rem;
}
.index-s2 .bot-block .item .tit {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s2 .bot-block .item p {
  font-size: max(13px, 0.16rem);
  color: #8a9198;
  margin-top: 5px;
}
.index-s2 .bot-block .item:nth-of-type(2) {
  transform: translateY(1.6rem);
}
.index-s2 .bot-block .item:nth-of-type(3) {
  transform: translateY(3.2rem);
}

.index-s3 {
  padding: 0 0.4rem;
}
.index-s3 .main {
  padding: 1.2rem 0.4rem 0.6rem;
  border-radius: 0.6rem;
  background-color: #f3f6f9;
}
.index-s3 .top-block {
  position: relative;
  z-index: 2;
}
.index-s3 .top-block .label {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
  text-align: center;
}
.index-s3 .top-block .para {
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  font-family: 'GoogleSans-Medium';
  text-align: center;
  margin-top: 0.2rem;
}
.index-s3 .bot-block {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.index-s3 .center-box {
  width: 5.9rem;
  height: 5.9rem;
  padding: 0.2rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.index-s3 .center-box:before {
  content: '';
  width: 11.35rem;
  aspect-ratio: 1135 / 933;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-2.png");
  position: absolute;
  left: calc(50% - 5.675rem);
  top: -2.4rem;
  z-index: 1;
  pointer-events: none;
}
.index-s3 .center-box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-image: linear-gradient(33deg, #273ff0, #27baf0);
  opacity: 0.2;
  z-index: 2;
}
.index-s3 .center-box .inner {
  height: 100%;
  border-radius: 50%;
  background-color: #273ff0;
  box-shadow: 0 0 0.3rem rgba(255, 255, 255, 0.8) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.index-s3 .center-box .tit {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  text-align: center;
  font-family: 'GoogleSans-Bold';
}
.index-s3 .center-box .tips-box {
  margin-top: 0.3rem;
}
.index-s3 .center-box .box {
  margin-top: 0.2rem;
  text-align: center;
}
.index-s3 .center-box .box:nth-of-type(1) {
  margin-top: 0;
}
.index-s3 .center-box .box span {
  display: inline-block;
  position: relative;
  padding: 0 0.2rem;
  font-size: max(12px, 0.16rem);
  color: #ccd1f7;
}
.index-s3 .center-box .box span:before {
  content: '•';
  font-size: max(12px, 0.16rem);
  color: #ccd1f7;
  position: absolute;
  top: 0;
  left: 0;
}
.index-s3 .center-box .box p {
  font-size: max(12px, 0.16rem);
  color: #ccd1f7;
}
.index-s3 .side-box {
  width: 7.1rem;
  height: 7.1rem;
  position: relative;
}
.index-s3 .side-box:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
.index-s3 .side-box:after {
  content: '';
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  border-radius: 50%;
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  box-sizing: border-box;
}
.index-s3 .side-box .inner {
  height: 100%;
  position: relative;
  z-index: 3;
}
.index-s3 .side-box .tit {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Bold';
}
.index-s3 .side-box .tips-box {
  margin-top: 0.3rem;
}
.index-s3 .side-box .box {
  margin-top: 0.2rem;
}
.index-s3 .side-box .box:nth-of-type(1) {
  margin-top: 0;
}
.index-s3 .side-box .box span {
  display: block;
  position: relative;
  padding-left: 0.2rem;
  font-size: max(12px, 0.16rem);
  color: #8a9198;
}
.index-s3 .side-box .box span:before {
  content: '•';
  font-size: max(12px, 0.16rem);
  color: #8a9198;
  position: absolute;
  top: 0;
  left: 0;
}
.index-s3 .side-box .box p {
  font-size: max(12px, 0.16rem);
  color: #8a9198;
  padding-left: 0.2rem;
}
.index-s3 .left-box:before {
  border: 2px dashed #d2dde7;
  mask: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0) 40%);
}
.index-s3 .left-box:after {
  background-color: #e9ebf8;
  mask: linear-gradient(90deg, #fff 30%, rgba(255, 255, 255, 0) 70%);
}
.index-s3 .left-box .inner {
  padding: 2.1rem 0 0 1.6rem;
}
.index-s3 .right-box:before {
  border: 2px dashed #8ed8e8;
  mask: linear-gradient(-90deg, #fff 10%, rgba(255, 255, 255, 0) 40%);
}
.index-s3 .right-box:after {
  background-color: #def8fd;
  mask: linear-gradient(-90deg, #fff 30%, rgba(255, 255, 255, 0) 70%);
}
.index-s3 .right-box .inner {
  padding: 2.1rem 0 0 3rem;
}

.index-s4 {
  padding: 1.6rem 0.4rem 0;
  overflow: hidden;
}
.index-s4 .top-block {
  display: flex;
  align-items: flex-start;
}
.index-s4 .top-block .left-box {
  width: 50%;
}
.index-s4 .top-block .right-box {
  width: 50%;
}
.index-s4 .top-block .label {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s4 .top-block .para {
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  font-family: 'GoogleSans-Medium';
}
.index-s4 .bot-block {
  margin: 1rem calc(-50vw + 920px) 0;
}
.index-s4 .swiper {
  padding: 0 calc(50vw - 920px) 1.5rem;
}
.index-s4 .item {
  position: relative;
  width: 5.1rem;
  height: auto;
  margin-right: 0.4rem;
  padding-bottom: 1rem;
}
.index-s4 .item:last-of-type {
  margin-right: 0;
}
.index-s4 .item .img-box {
  aspect-ratio: 510 / 360;
  border-radius: 0.2rem;
  overflow: hidden;
}
.index-s4 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.index-s4 .item .txt-box {
  width: 80%;
  height: 2rem;
  position: absolute;
  right: -0.5px;
  bottom: 0;
  background-color: rgba(247, 249, 252, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.2rem 0 0.2rem 0.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  will-change: transform;
}
.index-s4 .item .tit {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s4 .item p {
  font-size: max(12px, 0.14rem);
  color: #8a9198;
  margin-top: 0.1rem;
}
.index-s4 .item:nth-of-type(even) {
  transform: translateY(0.6rem);
}
@media (any-hover: hover) {
  .index-s4 .item:hover img {
    transform: scale(1.05);
  }
}
.index-s4 .swiper-control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.index-s4 .swiper-scrollbar {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: 3.8rem;
  height: 4px;
  background-color: #edf4fb;
}
.index-s4 .swiper-scrollbar-drag {
  background-color: #273ff0;
  cursor: pointer;
}
.index-s4 .button {
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  opacity: 0.3;
  transition: all .3s ease;
  will-change: transform;
}
.index-s4 .prev {
  background-image: url("../images/index/prev.svg");
}
@media (any-hover: hover) {
  .index-s4 .prev:hover {
    opacity: 1;
    transform: translateX(-2px);
  }
}
.index-s4 .next {
  background-image: url("../images/index/next.svg");
}
@media (any-hover: hover) {
  .index-s4 .next:hover {
    opacity: 1;
    transform: translateX(2px);
  }
}

.index-s5 .sticky {
  position: sticky;
  top: 0;
  padding: 2rem 0.4rem 27vw;
  background: url("../images/index/img-4.png") center bottom no-repeat;
  background-size: 100% auto;
}
.index-s5 .top-block .label {
  font-size: 0.6rem;
  color: #1a1a1a;
  line-height: 1;
  text-align: center;
  font-family: 'GoogleSans-Medium';
}
.index-s5 .top-block .para {
  margin-top: 0.3rem;
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  text-align: center;
  font-family: 'GoogleSans-Medium';
}
.index-s5 .bot-block {
  margin-top: 1.2rem;
  position: relative;
}
.index-s5 .tab-tit {
  width: 3.6rem;
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.index-s5 .tab-tit .sw {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}
.index-s5 .tab-tit .item {
  cursor: pointer;
}
.index-s5 .tab-tit .item span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #8a9198;
  transition: color .3s ease;
}
.index-s5 .tab-tit .item.active span {
  color: #000000;
}
@media (any-hover: hover) {
  .index-s5 .tab-tit .item:not(.active):hover span {
    color: #000;
  }
}
.index-s5 .tab-tit .tips {
  font-size: max(12px, 0.14rem);
  color: #168aa1;
  margin-top: 0.3rem;
}
.index-s5 .tab-cont {
  width: max(600px, 8rem);
  margin: 0 auto;
  position: relative;
}
.index-s5 .tab-cont .sw {
  position: relative;
}
.index-s5 .tab-cont .item {
  background-color: #fff;
  border-radius: 0.2rem;
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transform-origin: center top;
}
.index-s5 .tab-cont .item:nth-of-type(1) {
  position: relative;
  top: auto !important;
  transform: scale(1);
  opacity: 1;
}
.index-s5 .tab-cont .item .box {
  padding: 0.3rem;
  display: flex;
  align-items: center;
}
.index-s5 .tab-cont .item .img-box {
  width: 2.7rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.2rem;
  overflow: hidden;
}
.index-s5 .tab-cont .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s5 .tab-cont .item .txt-box {
  width: calc(100% - 2.7rem);
  padding: 0 0.3rem 0.5rem 0.6rem;
}
.index-s5 .tab-cont .item .tit {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s5 .tab-cont .item .para {
  font-size: max(12px, 0.14rem);
  color: #8a9198;
  margin-top: 0.1rem;
}
.index-s5 .tab-cont .dots {
  position: absolute;
  right: -0.3rem;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  z-index: 2;
}
.index-s5 .tab-cont .dots i {
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s5 .tab-cont .dots i.active {
  background-color: #273ff0;
}
.index-s5 .null {
  height: 300vh;
}

.index-s6 {
  padding: 1.6rem 0.1rem 0;
}
.index-s6 .top-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-s6 .top-block span {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
  position: relative;
  z-index: 2;
}
.index-s6 .top-block .num {
  position: relative;
  z-index: 1;
}
.index-s6 .top-block .num:before {
  content: '';
  width: 3.19rem;
  aspect-ratio: 319 / 511;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-5.png");
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.index-s6 .top-block .num i {
  display: block;
  font-style: normal;
  font-size: 4.6rem;
  line-height: 1;
  color: #273ff0;
  font-family: 'GoogleSans-Medium';
  position: relative;
  z-index: 2;
}
.index-s6 .top-block p {
  font-size: 0.6rem;
  color: #273ff0;
  font-family: 'GoogleSans-Medium';
}
.index-s6 .bot-block {
  border-bottom: 1px solid #e8e8e8;
}
.index-s6 .bot-block .sw {
  display: flex;
}
.index-s6 .bot-block .item {
  width: 20%;
  padding: 0.4rem 0.3rem;
  border-left: 1px solid #e8e8e8;
}
.index-s6 .bot-block .item:nth-of-type(1) {
  border: none;
}
.index-s6 .bot-block .item:nth-of-type(1) .step:before {
  display: none;
}
.index-s6 .bot-block .item .step {
  position: relative;
}
.index-s6 .bot-block .item .step:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 0.06rem solid transparent;
  border-bottom: 0.06rem solid transparent;
  border-left: 0.05rem solid #273ff0;
  position: absolute;
  left: -0.3rem;
  top: calc(50% - 0.05rem);
}
.index-s6 .bot-block .item .step span {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s6 .bot-block .item .num {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s6 .bot-block .item .tit {
  margin-top: 0.7rem;
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s6 .bot-block .item .s-para {
  margin-top: 0.4rem;
  font-size: max(12px, 0.14rem);
  color: #8a9198;
}
.index-s6 .bot-block .item .s-para h3 {
  font-weight: normal;
  font-size: inherit !important;
  color: #1a1a1a;
}

.index-s7 {
  padding: 1.6rem 0.4rem;
}
.index-s7 .wrap-s {
  max-width: 13.6rem;
}
.index-s7 .top-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-s7 .top-block .left-box .label {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s7 .top-block .left-box p {
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  font-family: 'GoogleSans-Medium';
  margin-top: 0.1rem;
}
.index-s7 .top-block .right-box span {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
}
.index-s7 .top-block .right-box p {
  font-size: 0.4rem;
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s7 .bot-block {
  margin-top: 0.6rem;
}
.index-s7 .bot-block .item {
  margin-top: 0.1rem;
  padding: 0.6rem 0.4rem;
  border-radius: 0.2rem;
}
.index-s7 .bot-block .item .tit {
  font-size: max(13px, 0.16rem);
  font-family: 'GoogleSans-Medium';
}
.index-s7 .bot-block .item .para {
  margin-top: 0.1rem;
  font-size: max(12px, 0.14rem);
  color: #8a9198;
}
.index-s7 .bot-block .item .tips {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.index-s7 .bot-block .item .tip {
  width: calc((100% - 0.6rem) / 4);
  position: relative;
  padding-left: 0.2rem;
}
.index-s7 .bot-block .item .tip:before {
  content: '';
  width: 0.12rem;
  height: max(14px, 0.168rem);
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index-s7 .bot-block .item .tip span {
  font-size: max(12px, 0.14rem);
  color: #1a1a1a;
}
.index-s7 .bot-block .item:nth-of-type(1) {
  margin-top: 0;
  background-color: #ecf3fa;
}
.index-s7 .bot-block .item:nth-of-type(1) .tit {
  color: #273ff0;
}
.index-s7 .bot-block .item:nth-of-type(1) .tip:before {
  background-image: url("../images/index/icon-2-1.svg");
}
.index-s7 .bot-block .item:nth-of-type(2) {
  background-color: #ecf9fa;
}
.index-s7 .bot-block .item:nth-of-type(2) .tit {
  color: #1cb1bc;
}
.index-s7 .bot-block .item:nth-of-type(2) .tip:before {
  background-image: url("../images/index/icon-2-2.svg");
}
.index-s7 .bot-block .item:nth-of-type(3) {
  background-color: #fafaec;
}
.index-s7 .bot-block .item:nth-of-type(3) .tit {
  color: #83781d;
}
.index-s7 .bot-block .item:nth-of-type(3) .tip:before {
  background-image: url("../images/index/icon-2-3.svg");
}
.index-s7 .bot-block .btns {
  margin-top: 0.4rem;
}
.index-s7 .bot-block .btns a {
  display: flex;
  border-radius: 9000px;
  height: max(40px, 0.5rem);
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.index-s7 .bot-block .btns a span {
  font-size: max(14px, 0.18rem);
  color: #fff;
  font-family: 'GoogleSans-Medium';
}
@media (any-hover: hover) {
  .index-s7 .bot-block .btns a:hover {
    background-color: #6c7781;
  }
}
.index-s7 .bot-block .s-tips {
  margin-top: 0.2rem;
  font-size: max(12px, 0.14rem);
  color: #8186a9;
  text-align: center;
}

.index-s8 {
  background-color: #101749;
}
.index-s8 .twinkle-box {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
.index-s8 .twinkle-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-s8 .twinkle-box .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-s8 .twinkle-box .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-s8 .twinkle-box .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.index-s8 .twinkle-box .box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index-s8 .twinkle-box .box.active {
  opacity: 1;
}
.index-s8 .txt-block {
  padding: 0 0.4rem 1.8rem;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}
.index-s8 .txt-block .slabel {
  font-size: max(18px, 0.26rem);
  color: #fff;
  font-family: 'GoogleSans-Medium';
}
.index-s8 .txt-block .label {
  font-size: 0.6rem;
  color: #fff;
  line-height: 1;
  font-family: 'GoogleSans-Medium';
  margin-top: 0.2rem;
}
.index-s8 .txt-block .para-box {
  margin-top: 0.8rem;
  padding-top: 1.2rem;
  border-top: 0.02rem solid #fff;
}
.index-s8 .txt-block .para-box .para {
  width: 40%;
  font-size: max(16px, 0.22rem);
  color: #ffffff;
  font-family: 'GoogleSans-Medium';
}
.index-s8 .txt-block .value-box {
  margin-top: 1.2rem;
  display: flex;
  justify-content: flex-end;
}
.index-s8 .txt-block .value-box .box {
  width: 28%;
}
.index-s8 .txt-block .value-box .box .tit {
  font-size: max(16px, 0.22rem);
  color: #fff;
  font-family: 'GoogleSans-Medium';
}
.index-s8 .txt-block .value-box .box .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  margin-top: 0.2rem;
}
.index-s8 .tab-wrap {
  margin-top: 1.2rem;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 0.2rem;
  padding: 0.4rem 2.4rem 0;
  position: relative;
}
.index-s8 .tab-wrap .title {
  font-size: max(16px, 0.22rem);
  color: #fff;
  font-family: 'GoogleSans-Medium';
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
}
.index-s8 .tab-tit .sw {
  display: flex;
}
.index-s8 .tab-tit .item {
  flex: 1;
  position: relative;
  padding: 0.3rem 0.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.index-s8 .tab-tit .item:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left top;
}
.index-s8 .tab-tit .item span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #8287ad;
  text-align: center;
  transition: color .3s ease;
}
.index-s8 .tab-tit .item.active:before {
  animation: ani-1 5s linear forwards;
}
.index-s8 .tab-tit .item.active span {
  color: #fff;
}
@media (any-hover: hover) {
  .index-s8 .tab-tit .item:not(.active):hover span {
    color: rgba(255, 255, 255, 0.7);
  }
}
.index-s8 .tab-cont .child {
  display: none;
}
.index-s8 .tab-cont .child.active {
  display: block;
}
.index-s8 .tab-cont .child.active .para {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s8 .tab-cont .box {
  height: 2rem;
  display: flex;
  align-items: center;
}
.index-s8 .tab-cont .para {
  font-size: max(16px, 0.22rem);
  color: #fff;
  font-family: 'GoogleSans-Medium';
  opacity: 0;
}

.index-s9 {
  padding: 1.6rem 0.4rem 0;
}
.index-s9 .top-block {
  display: flex;
  align-items: flex-start;
}
.index-s9 .top-block .left-box {
  width: 50%;
}
.index-s9 .top-block .right-box {
  width: 50%;
}
.index-s9 .top-block .label {
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s9 .top-block .para {
  font-size: max(16px, 0.22rem);
  color: #8a9198;
  font-family: 'GoogleSans-Medium';
}
.index-s9 .bot-block {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.index-s9 .tab-tit {
  width: 3.6rem;
}
.index-s9 .tab-tit .item {
  margin-top: 0.1rem;
  height: 0.6rem;
  border-radius: 0.2rem;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s9 .tab-tit .item:nth-of-type(1) {
  margin-top: 0;
}
.index-s9 .tab-tit .item span {
  font-size: max(13px, 0.16rem);
  color: #292929;
  text-align: center;
  transform: scale(0.875);
  transition: color .3s ease;
}
.index-s9 .tab-tit .item.active {
  background-color: #1a1a1a;
}
.index-s9 .tab-tit .item.active span {
  color: #fff;
}
@media (any-hover: hover) {
  .index-s9 .tab-tit .item:not(.active):hover {
    background-color: #6c7781;
  }
  .index-s9 .tab-tit .item:not(.active):hover span {
    color: #fff;
  }
}
.index-s9 .tab-cont {
  width: calc(100% - 4rem);
}
.index-s9 .tab-cont .child {
  display: none;
}
.index-s9 .tab-cont .child.active {
  display: block;
}
.index-s9 .tab-cont .child.active .left-box .data, .index-s9 .tab-cont .child.active .left-box .tips {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s9 .tab-cont .child.active .left-box .tips {
  animation-delay: .1s;
}
.index-s9 .tab-cont .child.active .right-box .para, .index-s9 .tab-cont .child.active .right-box .txt {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s9 .tab-cont .child.active .right-box .para {
  animation-delay: .1s;
}
.index-s9 .tab-cont .child.active .right-box .txt {
  animation-delay: .2s;
}
.index-s9 .tab-cont .box {
  border-radius: 0.2rem;
  background-color: #f5f5f5;
  display: flex;
}
.index-s9 .tab-cont .left-box .data, .index-s9 .tab-cont .left-box .tips {
  opacity: 0;
}
.index-s9 .tab-cont .left-box .tips {
  opacity: 0;
}
.index-s9 .tab-cont .right-box .para, .index-s9 .tab-cont .right-box .txt {
  opacity: 0;
}
.index-s9 .tab-cont .left-box {
  position: relative;
  width: 4rem;
  height: 5.5rem;
  background-color: #4cc2da;
  border-radius: 0.2rem;
  padding: 0 0.4rem 1.2rem;
  display: flex;
  align-items: center;
}
.index-s9 .tab-cont .left-box .data .num span {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
.index-s9 .tab-cont .left-box .data p {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
}
.index-s9 .tab-cont .left-box .tips {
  position: absolute;
  top: calc(100% - 1.2rem);
  left: 0.4rem;
  right: 0.4rem;
  font-size: max(10px, 0.12rem);
  color: rgba(255, 255, 255, 0.6);
}
.index-s9 .tab-cont .right-box {
  position: relative;
  width: calc(100% - 4rem);
  padding: 0 0.8rem 1.2rem;
  display: flex;
  align-items: center;
}
.index-s9 .tab-cont .right-box .para {
  font-size: max(16px, 0.22rem);
  color: #1a1a1a;
}
.index-s9 .tab-cont .right-box .txt {
  position: absolute;
  top: calc(100% - 1.2rem);
  left: 0.8rem;
  right: 0.8rem;
}
.index-s9 .tab-cont .right-box .txt .tit {
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
}
.index-s9 .tab-cont .right-box .txt p {
  font-size: max(13px, 0.16rem);
  color: #8a9198;
}

.index-s10 {
  padding: 1.6rem 0.4rem 1rem;
}
.index-s10 .main {
  display: flex;
  align-items: flex-start;
}
.index-s10 .label {
  width: 50%;
  font-size: max(18px, 0.26rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s10 .items {
  width: 50%;
}
.index-s10 .item {
  padding: 0.2rem 0 0.3rem;
  border-top: 1px solid #e8e8e8;
}
.index-s10 .item .show {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 0.5rem;
  cursor: pointer;
}
.index-s10 .item .show span {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s10 .item .show:after {
  content: '';
  width: 0.12rem;
  height: 0.06rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1.svg");
  position: absolute;
  right: 0;
  top: calc(50% - 0.03rem);
}
.index-s10 .item .hide {
  margin-top: 0.1rem;
  font-size: max(13px, 0.16rem);
  color: #8a9198;
  display: none;
  opacity: 0;
}
.index-s10 .item.active .hide {
  display: block;
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.index-s11 {
  padding: 0.8rem 1rem;
  background-color: #f7f8fa;
}
.index-s11 .label {
  font-size: max(12px, 0.14rem);
  color: #1a1a1a;
  font-family: 'GoogleSans-Medium';
}
.index-s11 .para {
  margin-top: 0.15rem;
  font-size: max(12px, 0.14rem);
  color: #9aa8b7;
}

@media only screen and (max-width: 1920px) {
  html {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1700px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1685px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1670px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1655px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1625px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1610px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1595px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1565px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1550px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1535px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1505px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1490px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1475px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1445px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1430px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1415px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1385px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1355px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1325px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1310px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1295px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1265px) {
  html {
    font-size: 69px;
  }
}
@media only screen and (max-width: 1250px) {
  html {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1235px) {
  html {
    font-size: 67px;
  }
}
@media only screen and (max-width: 1220px) {
  html {
    font-size: 66px;
  }
}
@media only screen and (max-width: 1205px) {
  html {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1190px) {
  html {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1175px) {
  html {
    font-size: 63px;
  }
}
@media only screen and (max-width: 1160px) {
  html {
    font-size: 62px;
  }
}
@media only screen and (max-width: 1145px) {
  html {
    font-size: 61px;
  }
}
@media only screen and (max-width: 1130px) {
  html {
    font-size: 60px;
  }
}
@media screen and (max-width: 1840px) {
  .index-s4 .bot-block {
    margin: 1rem -0.4rem 0;
  }

  .index-s4 .swiper {
    padding: 0 0.4rem 1.5rem;
  }
}
@media screen and (max-width: 1441px) {
  .index-s5 .sticky {
    padding: 1.6rem 0.4rem 27vw;
  }

  .index-s5 .bot-block {
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 1025px) {
  .header {
    height: 60px;
    padding: 0 7vw;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  }
  .header .inner-block {
    height: 100%;
  }
  .header .main {
    margin-right: 40px;
  }
  .header .link-box {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    padding: 70px 30px;
    text-align: left;
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header .link-box.active {
    left: 0;
  }
  .header .link-box a {
    display: block;
    line-height: 40px;
  }
  .header .mNavBtn {
    display: block;
    width: 20px;
    height: 16px;
    right: 7%;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .header .mNavBtn span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #1a1a1a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .mNavBtn span.line1 {
    top: 0;
  }
  .header .mNavBtn span.line2 {
    top: 7px;
  }
  .header .mNavBtn span.line3 {
    bottom: 0;
  }
  .header .mNavBtn.active .line2 {
    display: none;
  }
  .header .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .header .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
  }

  .footer .wrap-s {
    display: block;
  }

  .footer .left-block {
    width: 100%;
  }

  .footer .right-block {
    width: 100%;
  }

  .footer .left-block .logo-box {
    margin: 0 auto;
  }

  .footer .left-block .ewm-box {
    margin: 20px auto 0;
  }

  .footer .bot-box {
    display: block;
    margin-top: 20px;
  }

  .footer .bot-box .share {
    justify-content: center;
  }

  .footer .bot-box .copyright {
    text-align: center;
    margin-top: 10px;
  }

  .footer .link-box {
    display: none;
  }

  .index-s1 .bot-block .item {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .index-s2 .top-block {
    display: block;
  }

  .index-s2 .top-block .left-box {
    width: 100%;
  }

  .index-s2 .top-block .right-box {
    width: 100%;
    margin-top: 15px;
  }

  .index-s2 .top-block .img-box {
    width: 100%;
    max-width: 100%;
  }

  .index-s2 .bot-block {
    height: auto;
    margin-top: 1rem;
  }

  .index-s2 .bot-block .sticky {
    height: auto;
  }

  .index-s2 .bot-block .items {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .index-s2 .bot-block .item {
    transform: none !important;
  }

  .index-s3 .bot-block {
    flex-direction: column;
    height: 18rem;
  }

  .index-s3 .center-box {
    width: 7.1rem;
    height: 7.1rem;
    top: calc(50% - 3.55rem);
  }

  .index-s3 .center-box:before {
    display: none;
  }

  .index-s3 .left-box:before {
    mask: linear-gradient(180deg, #fff 10%, rgba(255, 255, 255, 0) 40%);
  }

  .index-s3 .left-box:after {
    mask: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0) 70%);
  }

  .index-s3 .right-box:before {
    mask: linear-gradient(0deg, #fff 10%, rgba(255, 255, 255, 0) 40%);
  }

  .index-s3 .right-box:after {
    mask: linear-gradient(0deg, #fff 30%, rgba(255, 255, 255, 0) 70%);
  }

  .index-s3 .left-box .inner {
    padding: 1rem 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .index-s3 .right-box .inner {
    padding: 0 0 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .index-s4 .top-block {
    display: block;
  }

  .index-s4 .top-block .left-box {
    width: 100%;
  }

  .index-s4 .top-block .right-box {
    width: 100%;
    margin-top: 15px;
  }

  .index-s5 .null {
    display: none;
  }

  .index-s5 .tab-tit {
    position: static;
    width: 100%;
  }

  .index-s5 .tab-tit .sw {
    gap: 0;
    flex-direction: row;
  }

  .index-s5 .tab-tit .item {
    width: auto;
    margin-right: 25px;
  }
  .index-s5 .tab-tit .item:last-of-type {
    margin-right: 0;
  }

  .index-s5 .tab-cont .txt-box {
    padding-bottom: 20px;
  }

  .index-s5 .tab-cont {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
  }

  .index-s5 .tab-cont .item {
    position: static;
    opacity: 1;
    transform: none;
    height: auto;
  }

  .index-s5 .tab-cont .dots {
    right: 0;
    left: 0;
    flex-direction: row;
    top: calc(100% - 20px);
  }

  .index-s5 .tab-cont .dots i {
    background-color: #e2eaf3;
  }

  .index-s6 .bot-block .items {
    overflow-x: auto;
  }

  .index-s6 .bot-block .sw {
    min-width: 1800px;
  }

  .index-s7 {
    padding: 1.6rem 0.4rem;
  }

  .index-s7 .top-block {
    display: block;
  }

  .index-s7 .top-block .right-box {
    margin-top: 15px;
  }

  .index-s7 .bot-block .item .tip {
    width: calc((100% - 0.4rem) / 3);
  }

  .index-s8 .twinkle-box {
    position: relative;
    height: 80vw;
  }

  .index-s8 .txt-block {
    margin-top: 0;
  }

  .index-s8 .txt-block .para-box .para {
    width: 100%;
  }

  .index-s8 .txt-block .value-box {
    gap: 20px;
    flex-wrap: wrap;
  }

  .index-s8 .txt-block .value-box .box {
    width: calc((100% - 20px) / 2);
  }

  .index-s8 .tab-wrap {
    padding: 0.4rem 0.4rem 0;
  }

  .index-s8 .tab-wrap .title {
    position: static;
    margin-bottom: 20px;
  }

  .index-s9 .top-block {
    display: block;
  }

  .index-s9 .top-block .left-box {
    width: 100%;
  }

  .index-s9 .top-block .right-box {
    width: 100%;
    margin-top: 15px;
  }

  .index-s9 .bot-block {
    display: block;
  }

  .index-s9 .tab-tit {
    width: 100%;
  }

  .index-s9 .tab-tit .sw {
    display: flex;
  }

  .index-s9 .tab-tit .item {
    width: auto;
    margin: 0 10px 0 0;
    padding: 0 15px;
    transition: none;
    white-space: nowrap;
  }
  .index-s9 .tab-tit .item:last-of-type {
    margin: 0;
  }

  .index-s9 .tab-cont {
    width: 100%;
    margin-top: 15px;
  }

  .index-s10 .main {
    display: block;
  }

  .index-s10 .label {
    width: 100%;
  }

  .index-s10 .items {
    width: 100%;
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 769px) {
  .index-s9 .tab-cont .box {
    display: block;
  }

  .index-s9 .tab-cont .left-box {
    width: 100%;
    height: auto;
    padding: 0.4rem;
    display: block;
  }

  .index-s9 .tab-cont .left-box .tips {
    position: static;
    margin-top: 15px;
  }

  .index-s9 .tab-cont .right-box {
    width: 100%;
    padding: 0.4rem;
    display: block;
  }

  .index-s9 .tab-cont .right-box .txt {
    position: static;
    margin-top: 15px;
  }
}
@media screen and (max-width: 640px) {
  .index-s1 {
    padding: 120px 0 0;
  }

  .index-s1 .top-block .label {
    font-size: 40px;
  }

  .index-s1 .bot-block {
    transform: scale(0.9);
  }

  .index-s1 .bot-block .item .txt-box {
    bottom: 40px;
    padding: 0 20px;
  }

  .index-s1 .bot-block .item .para {
    font-size: 16px;
  }

  .index-s1 .pagination {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .index-s2 {
    padding: 60px 7vw;
  }

  .index-s2 .top-block .img-box {
    margin-top: 30px;
  }

  .index-s2 .top-block .para {
    font-size: 13px;
  }

  .index-s2 .bot-block {
    margin-top: 30px;
  }

  .index-s2 .bot-block .items {
    gap: 30px;
  }

  .index-s2 .bot-block .item {
    width: 100%;
  }

  .index-s2 .bot-block .item .num {
    font-size: 40px;
  }

  .index-s2 .bot-block .item .txt {
    margin-top: 0;
  }

  .index-s3 {
    padding: 0 10px;
  }

  .index-s3 .main {
    padding: 60px 10px;
  }

  .index-s3 .top-block .para {
    font-size: 13px;
  }

  .index-s3 .bot-block {
    height: 240vw;
  }

  .index-s3 .side-box {
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
  }

  .index-s3 .center-box {
    width: calc(100vw - 40px);
    height: calc(100vw - 40px);
    top: calc(50% - 50vw + 20px);
  }

  .index-s4 {
    padding: 60px 7vw 0;
  }

  .index-s4 .top-block .para {
    font-size: 13px;
  }

  .index-s4 .bot-block {
    margin: 30px -7vw 0;
  }

  .index-s4 .swiper {
    padding: 0 7vw 70px;
  }

  .index-s5 .sticky {
    padding: 60px 7vw 27vw;
  }

  .index-s5 .top-block .label {
    font-size: 18px;
  }

  .index-s5 .top-block .para {
    font-size: 13px;
  }

  .index-s5 .bot-block {
    margin-top: 30px;
  }

  .index-s5 .tab-tit .item span {
    font-size: 14px;
  }

  .index-s5 .tab-tit .tips {
    text-align: center;
  }

  .index-s5 .tab-cont .item .box {
    display: block;
  }

  .index-s5 .tab-cont .item .img-box {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }

  .index-s5 .tab-cont .item .txt-box {
    width: 100%;
    margin-top: 15px;
    padding: 0 0 20px;
  }

  .index-s5 .tab-cont .item .tit {
    text-align: center;
  }

  .index-s5 .tab-cont .dots {
    left: 0;
    right: 0;
    justify-content: center;
  }

  .index-s6 {
    padding: 60px 0 0;
  }

  .index-s6 .top-block span {
    font-size: 13px;
  }

  .index-s6 .top-block p {
    font-size: 18px;
  }

  .index-s6 .top-block .num i {
    font-size: 100px;
  }

  .index-s6 .top-block .num:before {
    width: 100px;
  }

  .index-s6 .bot-block .sw {
    min-width: 400vw;
  }

  .index-s7 {
    padding: 60px 7vw;
  }

  .index-s7 .top-block .left-box p {
    font-size: 13px;
  }

  .index-s7 .bot-block {
    margin-top: 30px;
  }

  .index-s7 .bot-block .item {
    padding: 30px 20px;
  }

  .index-s7 .bot-block .item .tip {
    width: 100%;
  }

  .index-s8 .txt-block .slabel {
    font-size: 18px;
  }

  .index-s8 .txt-block .label {
    font-size: 24px;
  }

  .index-s8 .txt-block .para-box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .index-s8 .txt-block .para-box .para {
    font-size: 13px;
  }

  .index-s8 .txt-block .value-box {
    margin-top: 30px;
  }

  .index-s8 .tab-wrap {
    margin-top: 30px;
  }

  .index-s8 .tab-tit .item {
    flex: auto;
    white-space: nowrap;
  }

  .index-s8 .tab-tit .item {
    padding: 0.3rem 10px 0;
  }

  .index-s9 {
    padding: 60px 7vw 0;
  }

  .index-s9 .top-block .para {
    font-size: 13px;
  }

  .index-s9 .tab-cont .left-box .data .num span {
    font-size: 40px;
  }

  .index-s9 .tab-cont .right-box .para {
    font-size: 13px;
  }

  .index-s10 {
    padding: 60px 7vw;
  }

  .index-s11 {
    padding: 30px 7vw;
  }
}
@media screen and (max-width: 480px) {
  .fixed-right {
    right: 14px;
    bottom: 80px;
    transform-origin: right bottom;
    transform: scale(0.8);
  }

  .cc-165wh .cc-lk42u .cc-13wro .cc-1gfkz {
    transform-origin: top right;
    transform: scale(0.8);
  }
}

/*# sourceMappingURL=bundle.css.map */
