@font-face {
  font-family: 'AlibabaPuHuiTi-3-45-Light';
  src: url("../fonts/AlibabaPuHuiTi-3-45-Light.ttf");
}
@font-face {
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
  src: url("../fonts/AlibabaPuHuiTi-3-55-Regular.ttf");
}
@font-face {
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  src: url("../fonts/AlibabaPuHuiTi-3-65-Medium.ttf");
}
@font-face {
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  src: url("../fonts/AlibabaPuHuiTi-3-85-Bold.ttf");
}
@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../fonts/Montserrat-Bold.ttf");
}
@font-face {
  font-family: 'Rajdhani-Regular';
  src: url("../fonts/Rajdhani-Regular-2.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-1 {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes clickAnimation {
  0% {
    stroke-width: 1px;
    stroke-opacity: 1;
  }
  100% {
    stroke-width: 100px;
    stroke-opacity: 0;
  }
}
@keyframes o-map-scale {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes scroll-1 {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0.1rem);
  }
}
@keyframes o-map {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 1025px) {
  .wow {
    visibility: hidden;
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    transition: all .5s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .top-block {
  height: 1rem;
  position: relative;
  background-color: #ffffff;
  z-index: 2;
}
.header .top-block.active {
  opacity: 0;
  pointer-events: none;
}
.header .top-block .wrap-s {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .top-block:before {
  content: '';
  width: 100%;
  height: 0.03rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #2184c7, #c9151d);
}
.header .top-block .logo {
  width: 1.8rem;
}
.header .top-block .logo img {
  display: block;
  width: 100%;
}
.header .top-block .right-box {
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
}
.header .top-block .link {
  display: flex;
  grid-gap: 0.5rem;
}
.header .top-block .link a {
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.header .top-block .link a .icon {
  width: max(12px, 0.15rem);
  height: max(12px, 0.15rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .top-block .link a .icon img {
  max-width: 100%;
  max-height: 100%;
}
.header .top-block .link a span {
  font-size: max(13px, 0.14rem);
  color: #333;
}
.header .top-block .lang {
  position: relative;
}
.header .top-block .lang .show {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .top-block .lang .show span {
  font-size: max(12px, 0.13rem);
  color: #000;
  padding: 0 20px 0 6px;
}
.header .top-block .lang .show:before {
  content: '';
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/head-5.svg");
}
.header .top-block .lang .show:after {
  content: '';
  width: 8px;
  height: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/head-6.svg");
}
.header .top-block .lang .hide {
  width: 100px;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.header .top-block .lang .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: 10px;
}
.header .top-block .lang .box {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.header .top-block .lang .box a {
  display: block;
  font-size: max(12px, 0.13rem);
  line-height: max(30px, 0.4rem);
  text-align: center;
  text-align: center;
}
.header .top-block .lang:hover .hide {
  opacity: 1;
  visibility: visible;
}
.header .top-block .search-btn {
  display: none;
}
.header .bot-block {
  position: relative;
  background-color: #2184c7;
  z-index: 1;
}
.header .bot-block .wrap-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .bot-block .search-btn {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search.svg");
  background-size: auto 0.16rem;
  cursor: pointer;
}
.header ul {
  display: flex;
  grid-gap: 0.6rem;
}
.header li {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.header li.drop:after {
  content: '';
  width: 8px;
  height: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/head-6-1.svg");
}
.header li.hide {
  display: none;
}
.header li a.single {
  font-size: max(14px, 0.16rem);
  color: #fff;
  line-height: 0.72rem;
  position: relative;
}
.header li a.single:after {
  content: '';
  width: 26px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -13px;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.header li .subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}
.header li .subnav .box {
  border-radius: 0.1rem;
  background-color: #fff;
  padding: 0.2rem 0;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
}
.header li .subnav a {
  padding: 0 0.2rem;
  display: block;
  font-size: max(14px, 0.16rem);
  line-height: 40px;
  color: #000;
  text-align: center;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .header li .subnav a:hover {
    color: #2184c7;
  }
}
@media (any-hover: hover) {
  .header li:hover a.single:after {
    opacity: 1;
  }
  .header li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header li:hover .subnav .box {
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.header .mNavBtn {
  display: none;
}

.head-null {
  height: 1.72rem;
  background-color: #fff;
  position: relative;
  z-index: 3;
}

.footer {
  background-color: #2184c7;
}
.footer .block-1 {
  padding: 0.8rem 0 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .block-1 .logo {
  width: 130px;
}
.footer .block-1 .logo img {
  display: block;
  width: 100%;
}
.footer .block-1 .share {
  display: flex;
  grid-gap: 0.1rem;
}
.footer .block-1 .share .box {
  position: relative;
}
.footer .block-1 .share .box .show {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.footer .block-1 .share .box .show img {
  height: 14px;
}
.footer .block-1 .share .box .hide {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  padding-top: 30px;
  display: none;
}
.footer .block-1 .share .box .hide:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  left: 9px;
  top: 25px;
}
.footer .block-1 .share .box .hide img {
  display: block;
  width: 100%;
}
.footer .block-1 .share .box:hover .hide {
  display: block;
}
.footer .block-2 {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .block-2 .tit {
  font-size: max(16px, 0.18rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.footer .block-2 .link {
  margin-top: 0.2rem;
  display: flex;
  grid-gap: 0.8rem;
}
.footer .block-2 .link a {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.footer .block-3 {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .block-3 .tit {
  font-size: max(16px, 0.18rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.footer .block-3 .info-box {
  margin-top: 0.2rem;
  display: flex;
  align-items: flex-start;
  grid-gap: 0.6rem;
}
.footer .block-3 .info {
  max-width: 4rem;
  position: relative;
  padding-left: 30px;
}
.footer .block-3 .icon {
  width: max(18px, 0.23rem);
  height: max(18px, 0.23rem);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}
.footer .block-3 .icon img {
  max-width: 100%;
  max-height: 100%;
}
.footer .block-3 .txt p {
  font-size: max(12px, 0.15rem);
  color: #fff;
  line-height: max(18px, 0.23rem);
}
.footer .block-3 .txt .tips {
  font-size: max(12px, 0.14rem);
  color: #fff;
  opacity: 0.4;
}
.footer .block-4 {
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .block-4 .copyright {
  font-size: max(12px, 0.14rem);
  color: #fff;
  opacity: 0.6;
}
.footer .block-4 .copyright a, .footer .block-4 .copyright img {
  display: inline-block;
  margin-left: 0.2rem;
}
.footer .block-4 .copyright a {
  color: #fff;
}
.footer .block-4 .link {
  display: flex;
  grid-gap: 0.3rem;
}
.footer .block-4 .link a {
  font-size: max(12px, 0.14rem);
  color: #fff;
  opacity: 0.6;
}

.fixed-form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.fixed-form .main {
  padding: 1.2rem 0;
  position: relative;
  background-color: #f6f6f6;
}
.fixed-form .close {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close-2.svg");
  position: absolute;
  top: 0.24rem;
  right: 0.6rem;
  cursor: pointer;
}
.fixed-form .form {
  width: 86%;
  max-width: 8rem;
  height: max(60px, 0.7rem);
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #333;
  padding-right: 30px;
}
.fixed-form input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: max(14px, 0.18rem);
  color: #333;
}
.fixed-form input::-webkit-input-placeholder {
  color: #333;
}
.fixed-form input:-moz-placeholder {
  color: #333;
}
.fixed-form input::-moz-placeholder {
  color: #333;
}
.fixed-form input:-ms-input-placeholder {
  color: #333;
}
.fixed-form button {
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url("../images/search-1.svg");
  background-size: auto max(16px, 0.2rem);
  cursor: pointer;
}

.wrap-s {
  width: 86vw;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.swiper-pagination-lock {
  display: none !important;
}

.ani-box.animating {
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}

.trans-1 {
  transform: translateY(100%);
}
.trans-1.animating {
  transform: translateY(0);
}

.trans-2 {
  opacity: 0;
  transform: translateY(0.6rem);
}
.trans-2.animating {
  opacity: 1;
  transform: translateY(0);
}

.trans-3 {
  opacity: 0;
  transform: translateX(20%);
}
.trans-3.animating {
  opacity: 1;
  transform: translateX(0);
}

.scale-1 {
  transform: scale(1.3);
}
.scale-1.animating {
  transform: scale(1);
}

.spotHover {
  animation-name: clickAnimation;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
}

.nullsection {
  margin-top: -2.34rem;
}

.video-pop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: none;
}
.video-pop .bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.video-pop .close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close.png");
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
  z-index: 2;
}
@media (any-hover: hover) {
  .video-pop .close:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.video-pop video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 86vh;
  max-width: 86%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-pages {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  height: max(30px, 0.4rem);
  border-radius: max(15px, 0.2rem);
  width: 90px;
  justify-content: center;
  background-color: #f9f9f9;
}
.c-pages a.prev, .c-pages a.next {
  width: 6px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-pages a.prev {
  background-image: url("../images/download/prev.png");
}
.c-pages a.next {
  background-image: url("../images/download/next.png");
}
.c-pages .num {
  font-size: max(13px, 0.16rem);
  color: #8e9aa9;
}

.c-crumbs {
  background-color: #fafafa;
  position: relative;
  z-index: 5;
}
.c-crumbs .flex {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.c-crumbs .left-box {
  display: flex;
  grid-gap: 0.2rem;
  align-items: center;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.c-crumbs .left-box a.home {
  font-size: max(12px, 0.14rem);
  color: rgba(52, 56, 64, 0.4);
  line-height: max(40px, 0.54rem);
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.c-crumbs .left-box a.home:before {
  content: '';
  width: max(12px, 0.14rem);
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.svg");
  opacity: 0.3;
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0.1rem 0 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .c-crumbs .left-box a.home:hover {
    color: #343840;
  }
  .c-crumbs .left-box a.home:hover:before {
    opacity: 1;
  }
}
.c-crumbs .left-box a.link {
  font-size: max(12px, 0.14rem);
  color: rgba(52, 56, 64, 0.4);
  line-height: max(40px, 0.54rem);
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.c-crumbs .left-box a.link:before {
  content: '';
  width: 5px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs.svg");
  opacity: 0.3;
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0.1rem 0 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .c-crumbs .left-box a.link:hover {
    color: #343840;
  }
  .c-crumbs .left-box a.link:hover:before {
    opacity: 1;
  }
}
.c-crumbs .left-box span {
  font-size: max(12px, 0.14rem);
  color: #192232;
}
.c-crumbs .left-box span:before {
  content: '';
  width: 5px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0.1rem 0 0;
}
.c-crumbs .left-box.ani {
  opacity: 0;
  pointer-events: none;
}
.c-crumbs .right-box {
  display: flex;
  grid-gap: 0.6rem;
}
.c-crumbs .right-box a {
  position: relative;
  height: max(40px, 0.54rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-crumbs .right-box a span {
  font-size: max(12px, 0.14rem);
  color: #192232;
  text-align: center;
}
.c-crumbs .right-box a:after {
  content: '';
  width: 100%;
  height: 0.03rem;
  background-color: #2184c7;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}
.c-crumbs .right-box a.active:after {
  transform: scaleX(1);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.c-crumbs.style-1 .flex {
  display: block;
}
.c-crumbs.style-1 .left-box {
  position: absolute;
  top: 100%;
  right: 0;
}
.c-crumbs.style-1 .left-box a.home {
  color: rgba(255, 255, 255, 0.5);
}
.c-crumbs.style-1 .left-box a.home:before {
  background-image: url("../images/home-1.svg");
}
@media (any-hover: hover) {
  .c-crumbs.style-1 .left-box a.home:hover {
    color: #ffffff;
  }
}
.c-crumbs.style-1 .left-box a.link {
  color: rgba(255, 255, 255, 0.5);
}
.c-crumbs.style-1 .left-box a.link:before {
  background-image: url("../images/crumbs-1.svg");
}
@media (any-hover: hover) {
  .c-crumbs.style-1 .left-box a.link:hover {
    color: #ffffff;
  }
}
.c-crumbs.style-1 .left-box span {
  color: #ffffff;
}
.c-crumbs.style-1 .left-box span:before {
  background-image: url("../images/crumbs-1.svg");
}
.c-crumbs.style-1 .right-box {
  grid-gap: 0.3rem;
  justify-content: space-between;
}
.c-crumbs.style-2 .flex {
  display: block;
}
.c-crumbs.style-2 .left-box {
  display: none;
}
.c-crumbs.style-2 .right-box {
  grid-gap: 0.8rem;
  justify-content: center;
}
.c-crumbs.sticky {
  position: sticky;
  top: 0;
}

.c-banner {
  background-color: #000;
  overflow: hidden;
}
.c-banner .block {
  position: relative;
  height: 30.2083vw;
}
.c-banner .block:before, .c-banner .block:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
  animation: fadeInLeft 1.5s cubic-bezier(0.5, 0, 0, 1) forwards;
}
.c-banner .block:after {
  animation-delay: .2s;
}
.c-banner .block:before {
  background-image: url("../images/banner-1.png");
}
.c-banner .block:after {
  background-image: url("../images/banner-2.png");
}
.c-banner .img-box {
  height: 100%;
  overflow: hidden;
  animation: scale 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}
.c-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-banner .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.c-banner .label {
  overflow: hidden;
}
.c-banner .label span {
  display: block;
  font-size: 0.8rem;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  color: #2184c7;
}

.index-page .mobile-main {
  display: none;
}

.index-s1 {
  position: relative;
  overflow: hidden;
}
.index-s1 .swiper .item {
  height: 37.5vw;
  overflow: hidden;
}
.index-s1 .swiper .item .img-box {
  height: 100%;
  background-color: #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.index-s1 .swiper .item img, .index-s1 .swiper .item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s1 .swiper .item video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.index-s1 .swiper .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
}
.index-s1 .swiper .item .tit-box {
  position: relative;
  padding: 0.4rem 0;
}
.index-s1 .swiper .item .tit-box .tit {
  font-size: 0.64rem;
  color: #fff;
  font-family: 'Montserrat-Bold';
  text-transform: uppercase;
  opacity: 0;
}
.index-s1 .swiper .item .tit-box span {
  position: absolute;
  font-size: max(15px, 0.24rem);
  line-height: max(20px, 0.28rem);
  color: #fff;
  padding: 0 0.2rem;
  opacity: 0;
}
.index-s1 .swiper .item .tit-box span:nth-child(1) {
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-s1 .swiper .item .tit-box span:nth-child(3) {
  right: 0;
  bottom: 0;
  background-color: #c9151d;
}
.index-s1 .swiper .item.swiper-slide-active .tit-box .tit, .index-s1 .swiper .item.swiper-slide-active .tit-box span {
  animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
}
.index-s1 .swiper .item.swiper-slide-active .tit-box .tit {
  animation-delay: .15s;
}
.index-s1 .swiper .item.swiper-slide-active .tit-box span:nth-child(3) {
  animation-delay: .3s;
}
.index-s1 .txt-block {
  position: absolute;
  bottom: 0.6rem;
  left: calc(50vw - 720px);
  width: 7.2rem;
  background-color: rgba(33, 132, 199, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 3;
  overflow: hidden;
}
.index-s1 .txt-block:before {
  content: '';
  width: 0.06rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: right bottom;
  transform: rotate(-30deg);
}
.index-s1 .num {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 50px;
  height: 30px;
}
.index-s1 .num:before {
  content: '';
  width: 13px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1.png");
  position: absolute;
  top: 5px;
  left: 18px;
}
.index-s1 .num span {
  position: absolute;
  font-size: max(12px, 0.16rem);
  color: #fff;
}
.index-s1 .num span.total {
  right: 0;
  top: 0;
  opacity: 0.4;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
}
.index-s1 .num span.curr {
  left: 0;
  bottom: 0;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.index-s1 .childs {
  height: 100%;
}
.index-s1 .child {
  height: 100%;
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  display: none;
}
.index-s1 .child.active {
  display: block;
}
.index-s1 .child.active .tit-box .tit, .index-s1 .child.active .tit-box span {
  animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
}
.index-s1 .child.active .tit-box .tit {
  animation-delay: .15s;
}
.index-s1 .child.active .tit-box span:nth-child(3) {
  animation-delay: .3s;
}
.index-s1 .child.active .btns {
  animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
  animation-delay: .45s;
}
.index-s1 .child .tit-box {
  position: relative;
  padding: 0.4rem 0;
}
.index-s1 .child .tit-box .tit {
  font-size: 0.4rem;
  color: #fff;
  font-family: 'Montserrat-Bold';
  text-transform: uppercase;
  opacity: 0;
}
.index-s1 .child .tit-box span {
  position: absolute;
  font-size: max(15px, 0.24rem);
  line-height: max(20px, 0.28rem);
  color: #fff;
  padding: 0 0.2rem;
  opacity: 0;
}
.index-s1 .child .tit-box span:nth-child(1) {
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-s1 .child .tit-box span:nth-child(3) {
  right: 0;
  bottom: 0;
  background-color: #c9151d;
}
.index-s1 .child .btns {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
  opacity: 0;
}
.index-s1 .child .btns span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s1 .child .btns:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/activity/icon-1.svg");
}
.index-s1 .pagination {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
.index-s1 .pagination .wrap-s {
  width: 86vw;
  display: flex;
  grid-gap: 0.12rem;
  justify-content: flex-end;
}
.index-s1 .pagination .wrap-s span {
  width: 0.48rem;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
  cursor: pointer;
}
.index-s1 .pagination .wrap-s span.active {
  background-color: #2184c7;
}

.index-s2 {
  position: relative;
  padding: 1.2rem 0;
  overflow: hidden;
}
.index-s2 .ani-block {
  position: absolute;
  right: 0.2rem;
  top: 0;
  display: flex;
  mask: linear-gradient(80deg, #fff 20%, rgba(255, 255, 255, 0) 100%);
}
.index-s2 .ani-block .line {
  margin-left: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
}
.index-s2 .ani-block .line .box:before {
  content: '';
  display: block;
  width: 1px;
  height: 7rem;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  transform-origin: center top;
  transform: rotate(-33deg);
}
.index-s2 .ani-block.animating .line {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all .3s ease;
}
.index-s2 .ani-block.animating .line:nth-of-type(1) {
  transition-delay: 1.5s;
}
.index-s2 .ani-block.animating .line:nth-of-type(2) {
  transition-delay: 1.4s;
}
.index-s2 .ani-block.animating .line:nth-of-type(3) {
  transition-delay: 1.3s;
}
.index-s2 .ani-block.animating .line:nth-of-type(4) {
  transition-delay: 1.2s;
}
.index-s2 .ani-block.animating .line:nth-of-type(5) {
  transition-delay: 1.1s;
}
.index-s2 .ani-block.animating .line:nth-of-type(6) {
  transition-delay: 1s;
}
.index-s2 .ani-block.animating .line:nth-of-type(7) {
  transition-delay: .9s;
}
.index-s2 .ani-block.animating .line:nth-of-type(8) {
  transition-delay: .8s;
}
.index-s2 .ani-block.animating .line:nth-of-type(9) {
  transition-delay: .7s;
}
.index-s2 .ani-block.animating .line:nth-of-type(10) {
  transition-delay: .6s;
}
.index-s2 .ani-block.animating .line:nth-of-type(11) {
  transition-delay: .5s;
}
.index-s2 .ani-block.animating .line:nth-of-type(12) {
  transition-delay: .4s;
}
.index-s2 .ani-block.animating .line:nth-of-type(13) {
  transition-delay: .3s;
}
.index-s2 .ani-block.animating .line:nth-of-type(14) {
  transition-delay: .2s;
}
.index-s2 .ani-block.animating .line:nth-of-type(15) {
  transition-delay: .1s;
}
.index-s2 .label {
  overflow: hidden;
}
.index-s2 .label span {
  display: block;
  font-size: 0.4rem;
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  text-align: center;
}
.index-s2 .para {
  margin-top: 0.3rem;
  padding: 0 2rem;
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  line-height: 1.5;
  text-align: center;
}
.index-s2 .bot-block {
  margin-top: 0.6rem;
  position: relative;
}
.index-s2 .img-box {
  position: relative;
  width: 7.8rem;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 39 / 19;
  overflow: hidden;
}
.index-s2 .img-box .box {
  height: 100%;
}
.index-s2 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s2 .img-box .video-btn {
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2.png");
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  cursor: pointer;
}
.index-s2 .img-box:after {
  content: '';
  width: 100%;
  height: 0.06rem;
  background-color: #c9151d;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (any-hover: hover) {
  .index-s2 .img-box:hover img {
    transform: scale(1.1);
  }
}
.index-s2 .data-item {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.index-s2 .data-item:nth-of-type(1) {
  left: 0;
}
.index-s2 .data-item:nth-of-type(2) {
  right: 0;
}
.index-s2 .data {
  position: relative;
  width: 100%;
  margin-top: 0.2rem;
  border-top: 1px solid #c5d1d9;
}
.index-s2 .data:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.index-s2 .data .show {
  padding-top: 0.2rem;
  display: flex;
  align-items: baseline;
  opacity: 0;
}
.index-s2 .data .hide {
  padding-top: 0.2rem;
  display: flex;
  align-items: baseline;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index-s2 .data span {
  font-size: 0.72rem;
  line-height: 1;
  color: #142c3d;
  font-family: 'Rajdhani-Regular';
  font-weight: bold;
}
.index-s2 .data em {
  font-style: normal;
  font-size: max(18px, 0.24rem);
  color: #142c3d;
}
.index-s2 .data i {
  font-style: normal;
  font-size: max(13px, 0.16rem);
  color: #142c3d;
}

.index-s3 {
  position: relative;
  padding: 1.2rem 0 0;
  overflow: hidden;
}
.index-s3 .bg-block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index-s3 .bg-block .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.index-s3 .label {
  overflow: hidden;
}
.index-s3 .label span {
  display: block;
  font-size: 0.4rem;
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  text-align: center;
}
.index-s3 .tab-tit {
  margin-top: 0.2rem;
  border-bottom: 1px solid #d8d8d8;
}
.index-s3 .tab-tit .sw {
  display: flex;
}
.index-s3 .tab-tit .item {
  flex: 1 1;
  padding: 0 0.14rem;
  height: max(50px, 0.6rem);
  display: flex;
  align-items: center;
  grid-gap: 0.12rem;
  position: relative;
  cursor: pointer;
}
.index-s3 .tab-tit .item:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #2184c7;
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .tab-tit .item .icon {
  width: max(20px, 0.3rem);
  height: max(20px, 0.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .tab-tit .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.index-s3 .tab-tit .item span {
  font-size: max(13px, 0.16rem);
  color: #142c3d;
}
.index-s3 .tab-tit .item.active:after {
  transform: scaleX(1);
}
.index-s3 .tab-tit .item.active .icon {
  opacity: 1;
}
.index-s3 .tab-tit .item.active span {
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
@media (any-hover: hover) {
  .index-s3 .tab-tit .item:hover:after {
    transform: scaleX(1);
  }
}
.index-s3 .child {
  padding: 1.2rem 0;
  position: relative;
  display: none;
}
.index-s3 .child.active {
  display: block;
}
.index-s3 .child.active .s-tit, .index-s3 .child.active p, .index-s3 .child.active .link, .index-s3 .child.active a.more {
  animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
}
.index-s3 .child.active p {
  animation-delay: .1s;
}
.index-s3 .child.active .img-box img {
  animation: fadeInRight 0.8s cubic-bezier(0.5, 0, 0, 1) both;
  animation-delay: .1s;
}
.index-s3 .child.active .link {
  animation-delay: .2s;
}
.index-s3 .child.active a.more {
  animation-delay: .3s;
}
.index-s3 .child .txt-box {
  width: 50%;
  position: relative;
}
.index-s3 .child .s-tit, .index-s3 .child p, .index-s3 .child .link, .index-s3 .child a.more, .index-s3 .child .img-box img {
  opacity: 0;
}
.index-s3 .child .s-tit {
  font-size: max(18px, 0.28rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.index-s3 .child p {
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  line-height: 1.5;
  margin-top: 0.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s3 .child .link {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 0.2rem;
}
.index-s3 .child .link a {
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  width: max(240px, 3rem);
  position: relative;
  padding-right: 15px;
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .child .link a:after {
  content: '';
  width: 8px;
  height: 11px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-5-1.png");
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .index-s3 .child .link a:hover {
    color: #2184c7;
  }
  .index-s3 .child .link a:hover:after {
    background-image: url("../images/index/icon-5-2.png");
  }
}
.index-s3 .child a.more {
  position: absolute;
  right: 0.6rem;
  bottom: 0;
  width: 2.4rem;
  height: max(40px, 0.5rem);
  border: 0.02rem solid #2184c7;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .child a.more span {
  font-size: max(13px, 0.16rem);
  color: #2184c7;
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .child a.more:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-3-1.svg");
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .index-s3 .child a.more:hover {
    background-color: #2184c7;
  }
  .index-s3 .child a.more:hover span {
    color: #fff;
  }
  .index-s3 .child a.more:hover:after {
    background-image: url("../images/index/icon-3-2.svg");
  }
}
.index-s3 .child .img-box {
  position: absolute;
  left: calc(50% + 0.2rem);
  right: calc(-50vw + 720px);
  top: -2.7rem;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.index-s3 .child .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.index-s4 {
  padding: 1.2rem 0;
}
.index-s4 .label {
  overflow: hidden;
}
.index-s4 .label span {
  display: block;
  font-size: 0.4rem;
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  text-align: center;
}
.index-s4 .items {
  margin-top: 0.6rem;
  position: relative;
}
.index-s4 .item {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
  position: relative;
  overflow: hidden;
}
.index-s4 .item:last-of-type {
  margin-right: 0;
}
.index-s4 .item .ani-block {
  position: absolute;
  right: 0.2rem;
  top: 0;
  display: flex;
  mask: linear-gradient(80deg, #fff 20%, rgba(255, 255, 255, 0) 100%);
}
.index-s4 .item .ani-block .line {
  margin-left: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
}
.index-s4 .item .ani-block .line .box:before {
  content: '';
  display: block;
  width: 1px;
  height: 4rem;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0));
  transform-origin: center top;
  transform: rotate(-33deg);
}
.index-s4 .item a {
  position: relative;
  display: block;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item a:after {
  content: '';
  width: 100%;
  height: 0.04rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #c9151d;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item a .box {
  padding: 0.5rem 0.4rem;
  background-color: #f7f8fa;
  position: relative;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item a .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
  z-index: -1;
}
.index-s4 .item .tips {
  display: flex;
  grid-gap: 2px;
}
.index-s4 .item .tips span {
  background-color: #eceff2;
  padding: 0 0.2rem;
  line-height: max(24px, 0.32rem);
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item .tit {
  overflow: hidden;
}
.index-s4 .item .tit span {
  display: block;
  font-size: max(18px, 0.28rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item p {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #142c3d;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item .info-box {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid #e5e7ed;
  display: flex;
  flex-direction: column;
  grid-gap: 0.1rem;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item .info span {
  font-size: max(13px, 0.16rem);
}
.index-s4 .item .info span:nth-of-type(1) {
  white-space: nowrap;
  color: #89959e;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.index-s4 .item .info span:nth-of-type(2) {
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.index-s4 .item .btns {
  position: absolute;
  bottom: 0.5rem;
  left: 0.4rem;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s4 .item .btn {
  display: flex;
  width: 2.4rem;
  height: max(40px, 0.5rem);
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
}
.index-s4 .item .btn span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s4 .item .btn:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/activity/icon-1.svg");
}
@media (any-hover: hover) {
  .index-s4 .item:hover .ani-block .line {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: all .3s ease;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(1) {
    transition-delay: 1.5s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(2) {
    transition-delay: 1.4s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(3) {
    transition-delay: 1.3s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(4) {
    transition-delay: 1.2s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(5) {
    transition-delay: 1.1s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(6) {
    transition-delay: 1s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(7) {
    transition-delay: .9s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(8) {
    transition-delay: .8s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(9) {
    transition-delay: .7s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(10) {
    transition-delay: .6s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(11) {
    transition-delay: .5s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(12) {
    transition-delay: .4s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(13) {
    transition-delay: .3s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(14) {
    transition-delay: .2s;
  }
  .index-s4 .item:hover .ani-block .line:nth-of-type(15) {
    transition-delay: .1s;
  }
  .index-s4 .item:hover a {
    box-shadow: 0 0.08rem 0 #eeeeee;
  }
  .index-s4 .item:hover a:after {
    opacity: 1;
  }
  .index-s4 .item:hover a .box {
    background-color: transparent;
  }
  .index-s4 .item:hover a .box:before {
    opacity: 1;
  }
  .index-s4 .item:hover .tips span {
    background-color: #c9151d;
    color: #fff;
  }
  .index-s4 .item:hover .tit span {
    color: #fff;
  }
  .index-s4 .item:hover p {
    color: #fff;
  }
  .index-s4 .item:hover .info-box {
    opacity: 0;
  }
  .index-s4 .item:hover .btns {
    opacity: 1;
  }
}
.index-s4 .swiper-horizontal > .swiper-scrollbar {
  position: relative;
  bottom: auto;
  left: auto;
  width: 2.7rem;
  height: 6px;
  background-color: #e3e6e7;
  margin: 0.6rem auto 0;
}
.index-s4 .swiper-scrollbar-drag {
  background-color: #142c3d;
  cursor: pointer;
  border-radius: 0;
}
.index-s4 .button {
  width: 9px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  cursor: pointer;
  z-index: 2;
}
.index-s4 .prev {
  right: calc(50% + 1.6rem);
  background-image: url("../images/index/prev.png");
}
.index-s4 .next {
  left: calc(50% + 1.6rem);
  background-image: url("../images/index/next.png");
}

.index-s5 {
  padding: 1.2rem 0;
  background-color: #f9f9f9;
}
.index-s5 .label {
  overflow: hidden;
}
.index-s5 .label .tit {
  font-size: 0.4rem;
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.index-s5 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.1rem;
  position: relative;
  background-color: #c9151d;
}
.index-s5 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.index-s5 .single-box {
  margin-top: 0.4rem;
}
.index-s5 .single-box a {
  display: flex;
  align-items: center;
}
.index-s5 .single-box .img-box {
  width: 50%;
  aspect-ratio: 120 / 67;
  overflow: hidden;
}
.index-s5 .single-box .box {
  height: 100%;
}
.index-s5 .single-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s5 .single-box .txt-box {
  width: 50%;
  padding-left: 0.8rem;
}
.index-s5 .single-box .info {
  display: flex;
  grid-gap: 0.1rem;
}
.index-s5 .single-box .info span {
  font-size: max(12px, 0.14rem);
  color: #89959e;
}
.index-s5 .single-box .tit {
  overflow: hidden;
}
.index-s5 .single-box .tit span {
  display: block;
  font-size: max(18px, 0.28rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  margin-top: 0.1rem;
}
.index-s5 .single-box p {
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  line-height: 1.5;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s5 .single-box .icon {
  width: 8px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-3.svg");
  margin-top: 0.5rem;
}
@media (any-hover: hover) {
  .index-s5 .single-box:hover img {
    transform: scale(1.1);
  }
}
.index-s5 .bot-block {
  margin-top: 0.2rem;
  display: flex;
  grid-gap: 0.2rem;
  align-items: flex-start;
}
.index-s5 .items {
  width: calc((100% - 1px) / 4 * 3);
}
.index-s5 .items .sw {
  display: flex;
  grid-gap: 0.2rem;
}
.index-s5 .item {
  width: calc((100% - 0.4rem) / 3);
}
.index-s5 .item a {
  display: block;
  height: 100%;
}
.index-s5 .item .img-box {
  aspect-ratio: 69 / 38;
  overflow: hidden;
}
.index-s5 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s5 .item .txt-box {
  padding: 0.2rem 0.2rem 0;
}
.index-s5 .item .info {
  display: flex;
  grid-gap: 0.1rem;
}
.index-s5 .item .info span {
  font-size: max(12px, 0.14rem);
  color: #89959e;
}
.index-s5 .item .tit {
  overflow: hidden;
}
.index-s5 .item .tit span {
  display: block;
  font-size: max(14px, 0.16rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  margin-top: 0.1rem;
}
@media (any-hover: hover) {
  .index-s5 .item:hover img {
    transform: scale(1.1);
  }
}
.index-s5 a.more {
  width: calc((100% - 0.6rem) / 4);
  aspect-ratio: 69 / 38;
  border: 0.03rem solid #2184c7;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s5 a.more span {
  font-size: max(13px, 0.16rem);
  color: #2184c7;
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.index-s5 a.more:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-3-1.svg");
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .index-s5 a.more:hover {
    background-color: #2184c7;
  }
  .index-s5 a.more:hover span {
    color: #fff;
  }
  .index-s5 a.more:hover:after {
    background-image: url("../images/index/icon-3-2.svg");
  }
}

.inner-s1 .flex {
  display: flex;
  align-items: flex-start;
}
.inner-s1 .left-block {
  width: 4.8rem;
  padding: 1.2rem 0 1.2rem 0.8rem;
  order: 2;
}
.inner-s1 .left-block .sticky {
  position: sticky;
  top: 1.8rem;
}
.inner-s1 .left-block .top-box {
  background-color: #f7f8fa;
  border-radius: 10px;
  padding: 0.12rem 0.12rem 0.12rem 0;
  display: flex;
  align-items: center;
  display: none;
}
.inner-s1 .left-block .txt-box {
  width: calc(100% - 1.24rem);
  padding: 0 0.12rem;
}
.inner-s1 .left-block .icon {
  width: max(28px, 0.32rem);
  height: max(28px, 0.32rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s1 .left-block .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s1 .left-block p {
  font-size: max(10px, 0.14rem);
  color: #192232;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.2rem;
}
.inner-s1 .left-block .img-box {
  width: 1.24rem;
  aspect-ratio: 1 / 1;
}
.inner-s1 .left-block .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s1 .left-block .form {
  position: relative;
  height: max(50px, 0.6rem);
  margin-top: 0.1rem;
  background-color: #f7f8fa;
  border-radius: 10px;
  overflow: hidden;
}
.inner-s1 .left-block .form input {
  width: 100%;
  height: 100%;
  font-size: max(12px, 0.14rem);
  color: #8e9aa9;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
  background-color: transparent;
  padding-right: max(50px, 0.6rem);
  padding-left: 0.2rem;
}
.inner-s1 .left-block .form button {
  width: max(50px, 0.6rem);
  height: max(50px, 0.6rem);
  position: absolute;
  top: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search-2.svg");
  background-size: auto 18px;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}
.inner-s1 .left-block .form.active:before {
  transform: scaleX(1);
}
.inner-s1 .right-block {
  width: calc(100% - 4.8rem);
  border-right: 1px solid #eceff2;
  padding: 0.5rem 0;
  order: 1;
}
.inner-s1 .item a {
  display: flex;
  align-items: flex-start;
  padding: 0.7rem 0.4rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s1 .item a:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #eceff2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.inner-s1 .item .img-box {
  width: 3.2rem;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}
.inner-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  will-change: transform;
}
.inner-s1 .item .txt-box {
  width: calc(100% - 3.2rem);
  padding-left: 0.4rem;
}
.inner-s1 .item .date {
  font-size: max(13px, 0.16rem);
  color: #8e9aa9;
}
.inner-s1 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #192232;
  line-height: 1.25;
  margin-top: 0.15rem;
}
.inner-s1 .item p {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .inner-s1 .item:hover a {
    background-color: #f7f8fa;
  }
  .inner-s1 .item:hover img {
    transform: scale(1.1);
  }
}

.inner-s2 {
  padding: 1.2rem 0;
}
.inner-s2 .block {
  padding: 0 1.2rem;
}
.inner-s2 .top-block {
  padding-bottom: 0.5rem;
  border-bottom: 0.04rem solid #353544;
}
.inner-s2 .top-block .date {
  font-size: max(15px, 0.2rem);
  color: #2184c7;
}
.inner-s2 .top-block .date:before {
  content: '';
  width: max(14px, 0.18rem);
  height: max(14px, 0.18rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0.1rem 0 0;
}
.inner-s2 .top-block .tit {
  margin-top: 0.24rem;
  overflow: hidden;
}
.inner-s2 .top-block .tit span {
  display: block;
  font-size: 0.5rem;
  color: #283a51;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s2 .mid-block {
  padding: 0.5rem 0;
}
.inner-s2 .mid-block .para {
  font-size: max(14px, 0.18rem);
  color: #283a51;
  line-height: 1.5;
}
.inner-s2 .mid-block .para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s2 .mid-block .para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s2 .share {
  position: relative;
  text-align: center;
  font-size: 0;
}
.inner-s2 .share:before {
  content: '';
  width: 100%;
  height: 0.04rem;
  position: absolute;
  left: 0;
  top: calc(50% - 0.02rem);
  background-color: #343840;
  z-index: 1;
}
.inner-s2 .share .box {
  padding: 0 0.4rem;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 2;
}
.inner-s2 .share a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 48px;
  border: 1px solid #eaeced;
  border-radius: 3px;
  margin-left: 10px;
  overflow: hidden;
}
.inner-s2 .share a:nth-of-type(1) {
  margin-left: 0;
}
.inner-s2 .share a:before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background-color: #2184c7;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s2 .share a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s2 .share a.wechat:after {
  background-image: url("../images/news/share-1.png");
}
@media (any-hover: hover) {
  .inner-s2 .share a.wechat:hover:after {
    background-image: url("../images/news/share-1-1.png");
  }
}
.inner-s2 .share a.fb:after {
  background-image: url("../images/news/share-2.png");
}
@media (any-hover: hover) {
  .inner-s2 .share a.fb:hover:after {
    background-image: url("../images/news/share-2-1.png");
  }
}
.inner-s2 .share a.in:after {
  background-image: url("../images/news/share-3.png");
}
@media (any-hover: hover) {
  .inner-s2 .share a.in:hover:after {
    background-image: url("../images/news/share-3-1.png");
  }
}
@media (any-hover: hover) {
  .inner-s2 .share a:hover:before {
    opacity: 1;
  }
}
.inner-s2 .page {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
}
.inner-s2 .page a {
  width: 1.8rem;
  line-height: max(36px, 0.48rem);
  text-align: center;
  font-size: max(14px, 0.18rem);
  color: #092a44;
  border-radius: 10px;
  background-color: #f8f8f8;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .inner-s2 .page a:hover {
    background-color: #2184c7;
    color: #fff;
  }
}

.inner-s3 .flex {
  display: flex;
}
.inner-s3 .left-box {
  width: 3.7rem;
  padding: 1.2rem 0.3rem 1.2rem 0;
}
.inner-s3 .sticky {
  position: sticky;
  top: 1.8rem;
}
.inner-s3 .position span {
  display: block;
  font-size: max(10px, 0.14rem);
  font-family: 'AlibabaPuHuiTi-3-45-Light';
  color: #8e9aa9;
  border-radius: 5px;
  padding: 0.16rem 0.6rem 0.16rem 0.2rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s3 .position span:after {
  content: '';
  width: 0.2rem;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/other/icon-1.svg");
  position: absolute;
  right: 0.2rem;
  top: calc(50% - 5px);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s3 .position span.active {
  background-color: #f7f8fa;
  color: #353844;
}
.inner-s3 .position span.active:after {
  opacity: 1;
}
.inner-s3 .right-box {
  width: calc(100% - 3.7rem);
  padding: 1.2rem 0;
  border-left: 1px solid #ebebeb;
  padding-left: 0.6rem;
}
.inner-s3 .right-box .block {
  margin-top: 0.7rem;
}
.inner-s3 .right-box .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s3 .right-box .tit {
  overflow: hidden;
}
.inner-s3 .right-box .tit span {
  display: block;
  font-size: max(16px, 0.24rem);
  line-height: 1;
  color: #353844;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  position: relative;
  padding-left: 0.2rem;
}
.inner-s3 .right-box .tit span:before {
  content: '';
  width: 0.04rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s3 .right-box .tit span:after {
  content: '';
  width: 0.04rem;
  height: 0.06rem;
  background-color: #c9151d;
  position: absolute;
  top: 0;
  left: 0;
}
.inner-s3 .right-box .para {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #ebebeb;
  font-size: max(13px, 0.16rem);
  color: #353844;
  line-height: 1.5;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
}

.inner-s4 {
  padding: 1.5rem 0 0;
}
.inner-s4 a {
  display: flex;
}
.inner-s4 a .img-box {
  width: 50%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.inner-s4 a .box {
  height: 100%;
}
.inner-s4 a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s4 a .txt-box {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.6rem;
}
.inner-s4 a .txt-box:before {
  content: '';
  width: 100%;
  position: absolute;
  top: -0.3rem;
  left: 0;
  bottom: -0.3rem;
  background-color: #f7f8fa;
  z-index: -1;
}
.inner-s4 a .tips {
  display: flex;
  grid-gap: 2px;
}
.inner-s4 a .tips span {
  background-color: #c9151d;
  padding: 0 0.2rem;
  line-height: max(24px, 0.32rem);
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s4 a .tit {
  margin-top: 0.4rem;
  overflow: hidden;
}
.inner-s4 a .tit span {
  display: block;
  font-size: max(18px, 0.28rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s4 a p {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #142c3d;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s4 a .info-box {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid #e5e7ed;
  display: flex;
  flex-direction: column;
  grid-gap: 0.1rem;
}
.inner-s4 a .info span {
  font-size: max(13px, 0.16rem);
}
.inner-s4 a .info span:nth-of-type(1) {
  white-space: nowrap;
  color: #89959e;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s4 a .info span:nth-of-type(2) {
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
@media (any-hover: hover) {
  .inner-s4 a:hover img {
    transform: scale(1.1);
  }
}

.inner-s5 {
  padding: 1.2rem 0;
}
.inner-s5 .item {
  margin-top: 0.5rem;
}
.inner-s5 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s5 .item a {
  display: block;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .tips {
  display: flex;
  grid-gap: 2px;
}
.inner-s5 .item .tips span {
  background-color: #eceff2;
  padding: 0 0.2rem;
  line-height: max(24px, 0.32rem);
  font-size: max(13px, 0.16rem);
  color: #142c3d;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .box {
  padding: 0.5rem 0.4rem;
  background-color: #f7f8fa;
  position: relative;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/activity/img-2.jpg");
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
  z-index: -1;
}
.inner-s5 .item .tit {
  overflow: hidden;
}
.inner-s5 .item .tit span {
  display: block;
  font-size: max(16px, 0.24rem);
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item p {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #142c3d;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .info-box {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid #e5e7ed;
  display: flex;
  flex-direction: column;
  grid-gap: 0.1rem;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .info span {
  font-size: max(13px, 0.16rem);
}
.inner-s5 .item .info span:nth-of-type(1) {
  white-space: nowrap;
  color: #89959e;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s5 .item .info span:nth-of-type(2) {
  color: #142c3d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s5 .item .btns {
  position: absolute;
  bottom: 0.5rem;
  left: 0.4rem;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s5 .item .btn {
  display: flex;
  width: 2.4rem;
  height: max(40px, 0.5rem);
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
}
.inner-s5 .item .btn span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s5 .item .btn:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/activity/icon-1.svg");
}
@media (any-hover: hover) {
  .inner-s5 .item:hover a {
    box-shadow: 0 0.08rem 0 #eeeeee;
  }
  .inner-s5 .item:hover .tips span {
    background-color: #c9151d;
    color: #fff;
  }
  .inner-s5 .item:hover .box {
    background-color: transparent;
  }
  .inner-s5 .item:hover .box:before {
    opacity: 1;
  }
  .inner-s5 .item:hover .tit span {
    color: #fff;
  }
  .inner-s5 .item:hover p {
    color: #fff;
  }
  .inner-s5 .item:hover .info-box {
    opacity: 0;
  }
  .inner-s5 .item:hover .btns {
    opacity: 1;
  }
}

.inner-s6 {
  padding: 1.2rem 0;
}
.inner-s6 .c-pages {
  position: absolute;
  right: 0;
  top: 0;
}
.inner-s6 .links {
  display: flex;
  grid-gap: 0.1rem;
}
.inner-s6 .links a {
  background-color: #f9f9f9;
  width: max(60px, 0.8rem);
  line-height: max(30px, 0.4rem);
  border-radius: max(15px, 0.2rem);
  font-size: max(13px, 0.16rem);
  color: #8e9aa9;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s6 .links a.active {
  background-color: #c9151d;
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s6 .links a:hover {
    background-color: #c9151d;
    color: #fff;
  }
}
.inner-s6 .items {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.2rem;
  grid-row-gap: 0.4rem;
}
.inner-s6 .item {
  width: calc((100% - 0.4rem) / 3);
  background-color: #f9f9f9;
  border-radius: 10px;
  position: relative;
  padding: 0.4rem 0.7rem 0;
}
.inner-s6 .item:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/download/img-1.jpg");
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s6 .item .box {
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px 10px 0 0;
  padding: 0.3rem 0.3rem 1rem;
  position: relative;
  background-color: #fff;
  filter: grayscale(1);
  opacity: .6;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s6 .item .box:before {
  content: '';
  width: 0.96rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/download/icon-1.svg");
  display: block;
}
.inner-s6 .item .box:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #f9f9f9, #f9f9f9);
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s6 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #343840;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  margin-top: 0.5rem;
}
.inner-s6 .item .btns {
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
  z-index: 3;
}
.inner-s6 .item .btns a {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  padding: 0 0.16rem;
  height: max(30px, 0.4rem);
  background-color: #2184c7;
  border-radius: max(15px, 0.2rem);
}
.inner-s6 .item .btns a:before {
  content: '';
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/download/icon-2.svg");
}
.inner-s6 .item .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s6 .item:hover:before {
    opacity: 1;
  }
  .inner-s6 .item:hover .box {
    filter: grayscale(0);
    opacity: 1;
  }
  .inner-s6 .item:hover .box:after {
    opacity: 0;
  }
  .inner-s6 .item:hover .btns {
    opacity: 1;
  }
}

.inner-s7 {
  position: relative;
  z-index: 2;
}
.inner-s7 .items {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: flex;
  grid-gap: 10px;
}
.inner-s7 .item {
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.24rem 0.3rem;
  display: flex;
  align-items: flex-start;
}
.inner-s7 .item .tit {
  white-space: nowrap;
  font-size: max(14px, 0.18rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s7 .item .info-box {
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(25, 34, 50, 0.1);
}
.inner-s7 .item .info {
  display: flex;
  grid-gap: 10px;
  margin-top: 0.1rem;
}
.inner-s7 .item .info:nth-of-type(1) {
  margin-top: 0;
}
.inner-s7 .item .icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s7 .item .icon img {
  align-items: center;
  justify-content: center;
}
.inner-s7 .item p {
  font-size: max(12px, 0.15rem);
  color: #192232;
}

.inner-s8 {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  height: max(540px, 8.2rem);
}
.inner-s8 .map-box {
  width: 5794px;
  height: 2862px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .map-box img.bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.inner-s8 .dot {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
}
.inner-s8 .dot:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-3-1.png");
  animation: o-map 2s linear infinite;
}
.inner-s8 .dot span {
  font-size: max(16px, 0.22rem);
  color: #2184c7;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.inner-s8 .dot.right span {
  left: 0.36rem;
}
.inner-s8 .dot.left span {
  right: calc(100% + 0.36rem);
}
.inner-s8 .dot.active:before {
  background-image: url("../images/contact/icon-3-2.png");
  animation: none;
}
.inner-s8 .dot.active span {
  display: block;
}
.inner-s8 .items {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  z-index: 3;
}
.inner-s8 .item {
  width: 5rem;
  height: auto;
  padding-top: max(30px, 0.4rem);
  margin-right: 10px;
  cursor: pointer;
  transition: padding 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .item:last-of-type {
  margin-right: 0;
}
.inner-s8 .item .box {
  position: relative;
  height: 100%;
  padding: 0.5rem 0.4rem;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.inner-s8 .item .tit {
  font-size: max(14px, 0.18rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s8 .item p {
  font-size: max(13px, 0.16rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
  margin-top: 0.15rem;
}
.inner-s8 .item .link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  height: max(30px, 0.4rem);
  background-color: #2184c7;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .item .link span {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
.inner-s8 .item .link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-4.svg");
}
.inner-s8 .item.active {
  padding-top: 0;
}
.inner-s8 .item.active .link {
  opacity: 1;
  pointer-events: auto;
}
.inner-s8 .buttons {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
}
.inner-s8 .buttons .wrap-s {
  display: flex;
  justify-content: flex-end;
  grid-gap: 10px;
}
.inner-s8 .button {
  width: max(40px, 0.6rem);
  height: max(20px, 0.3rem);
  border-radius: 0.1rem;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 9px;
  cursor: pointer;
  transition: all .3s ease;
}
.inner-s8 .prev {
  background-image: url("../images/contact/prev-1.png");
}
@media (any-hover: hover) {
  .inner-s8 .prev:hover {
    background-color: #192232;
    background-image: url("../images/contact/prev-2.png");
  }
}
.inner-s8 .next {
  background-image: url("../images/contact/next-1.png");
}
@media (any-hover: hover) {
  .inner-s8 .next:hover {
    background-color: #192232;
    background-image: url("../images/contact/next-2.png");
  }
}

.inner-s9 {
  padding: 1.2rem 0;
}
.inner-s9 .label {
  overflow: hidden;
}
.inner-s9 .label .tit {
  text-align: center;
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s9 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s9 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s9 .form {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.inner-s9 .box {
  width: calc((100% - 10px) / 2);
  background-color: #f9f9f9;
  border-radius: 0.1rem;
}
.inner-s9 .box input {
  width: 100%;
  height: max(50px, 0.6rem);
  background-color: transparent;
  padding: 0 0.3rem;
  font-size: max(12px, 0.14rem);
  color: #192232;
}
.inner-s9 .box input::-webkit-input-placeholder {
  color: #192232;
}
.inner-s9 .box input:-moz-placeholder {
  color: #192232;
}
.inner-s9 .box input::-moz-placeholder {
  color: #192232;
}
.inner-s9 .box input:-ms-input-placeholder {
  color: #192232;
}
.inner-s9 .box textarea {
  display: block;
  width: 100%;
  height: 1.8rem;
  background-color: transparent;
  border: none;
  padding: 0.15rem 0.3rem;
  font-size: max(12px, 0.14rem);
  color: #192232;
  resize: none;
}
.inner-s9 .box textarea::-webkit-input-placeholder {
  color: #192232;
}
.inner-s9 .box textarea:-moz-placeholder {
  color: #192232;
}
.inner-s9 .box textarea::-moz-placeholder {
  color: #192232;
}
.inner-s9 .box textarea:-ms-input-placeholder {
  color: #192232;
}
.inner-s9 .box .agree {
  font-size: max(12px, 0.14rem);
  color: #192232;
  display: flex;
  align-items: center;
}
.inner-s9 .box button {
  width: 2.8rem;
  height: max(50px, 0.6rem);
  font-size: max(15px, 0.2rem);
  color: #fff;
  background-color: #2184c7;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .inner-s9 .box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(33, 132, 199, 0.3);
  }
}
.inner-s9 .box .layui-input:focus, .inner-s9 .box .layui-textarea:focus {
  box-shadow: none;
}
.inner-s9 .box .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #2184c7 !important;
}
.inner-s9 .box .layui-form-checked[lay-skin=primary] > i {
  border-color: #2184c7 !important;
  background-color: #2184c7 !important;
}
.inner-s9 .box .layui-form-checkbox > div {
  font-size: max(12px, 0.14rem);
  color: #192232;
}
.inner-s9 .box:nth-of-type(5), .inner-s9 .box:nth-of-type(6), .inner-s9 .box:nth-of-type(7) {
  width: 100%;
}
.inner-s9 .box:nth-of-type(5) {
  padding: 0.2rem 0.3rem;
  display: flex;
  align-items: baseline;
  grid-gap: 0.4rem;
}
.inner-s9 .box:nth-of-type(5) span {
  font-size: max(12px, 0.14rem);
  color: #192232;
  padding-right: 0.3rem;
  border-right: 1px solid #e6e6e6;
  white-space: nowrap;
}
.inner-s9 .box:nth-of-type(7) {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.4rem;
}

.inner-s10 {
  padding: 1.2rem 0;
  position: relative;
}
.inner-s10:before {
  content: '';
  width: 50%;
  height: 100%;
  background-color: #f5f7f8;
  position: absolute;
  top: 0;
  right: 0;
}
.inner-s10 .flex {
  display: flex;
}
.inner-s10 .left-block {
  width: 50%;
  padding-right: 0.94rem;
}
.inner-s10 .left-block .label {
  overflow: hidden;
}
.inner-s10 .left-block .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s10 .left-block .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s10 .left-block .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s10 .left-block .para-box {
  margin-top: 0.3rem;
}
.inner-s10 .left-block .para-box span {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s10 .left-block .para-box p {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
}
.inner-s10 .left-block .img-box {
  aspect-ratio: 313 / 208;
  margin-top: 0.5rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s10 .left-block .img-box .box {
  height: 100%;
}
.inner-s10 .left-block .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s10 .sticky {
  position: sticky;
  top: 1.8rem;
}
.inner-s10 .right-block {
  padding-left: 1.6rem;
}
.inner-s10 .right-block .box {
  margin-top: 0.8rem;
}
.inner-s10 .right-block .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s10 .right-block .tit {
  overflow: hidden;
}
.inner-s10 .right-block .tit span {
  display: block;
  font-size: max(16px, 0.22rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s10 .right-block .items {
  margin-top: 0.2rem;
}
.inner-s10 .right-block .item {
  margin-top: 0.2rem;
  padding: 0.4rem;
  background-color: #fff;
  border-radius: 0.16rem;
}
.inner-s10 .right-block .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s10 .right-block .item .icon {
  width: 0.6rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s10 .right-block .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s10 .right-block .item p {
  margin-top: 0.2rem;
  font-size: max(14px, 0.18rem);
  color: #192232;
}

.inner-s11 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/career/img-2.jpg");
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
}
.inner-s11:after {
  content: '';
  width: 100%;
  height: 2.5vw;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: url("../images/career/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
}
.inner-s11 .label {
  overflow: hidden;
}
.inner-s11 .label .tit {
  text-align: center;
  font-size: 0.4rem;
  color: #ffffff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s11 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s11 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s11 .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  text-align: center;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s11 .icon {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid #fff;
  margin: 2rem auto 0;
  border-radius: 50%;
  position: relative;
}
.inner-s11 .icon .range {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inner-s11 .icon .range em {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: scale-1 3s linear infinite;
}
.inner-s11 .icon .range em:nth-of-type(2) {
  animation-delay: 1s;
}
.inner-s11 .icon .range em:nth-of-type(3) {
  animation-delay: 2s;
}
.inner-s11 .icon .txt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.inner-s11 .icon .txt p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  text-align: center;
}
.inner-s11 .icon .txt span {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  font-family: 'Montserrat-Bold';
}

.inner-s12 {
  padding: 1.2rem 0;
}
.inner-s12 .label {
  overflow: hidden;
}
.inner-s12 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s12 .label p {
  font-size: 0.3rem;
  color: #192232;
  text-align: center;
}
.inner-s12 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s12 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s12 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s12 .items {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s12 .item {
  width: calc((100% - 0.2rem) / 2);
  background-color: #f9f9f9;
  border-radius: 0.16rem;
}
.inner-s12 .item a {
  height: max(160px, 2.2rem);
  padding: 0 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s12 .item .addr {
  padding: 0 0.16rem;
  height: max(30px, 0.36rem);
  border-radius: 10px;
  display: flex;
  align-items: center;
  grid-gap: 5px;
  background-color: #2184c7;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s12 .item .addr:before {
  content: '';
  width: max(12px, 0.16rem);
  height: max(12px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/career/icon-2.svg");
}
.inner-s12 .item .addr span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s12 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  margin-top: 0.2rem;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s12 .item .btns {
  margin-top: 0.3rem;
  grid-gap: 0.1rem;
  display: flex;
  align-items: center;
  opacity: 0;
  position: absolute;
  bottom: 0.4rem;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s12 .item .btns:before {
  content: '';
  width: max(24px, 0.3rem);
  height: max(24px, 0.3rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/career/icon-3.png");
}
.inner-s12 .item .btns span {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s12 .item:hover {
    background-color: #2184c7;
  }
  .inner-s12 .item:hover a {
    padding-bottom: 0.6rem;
  }
  .inner-s12 .item:hover .addr {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .inner-s12 .item:hover .tit {
    margin-top: 0.1rem;
    color: #fff;
  }
  .inner-s12 .item:hover .btns {
    opacity: 1;
  }
}

.inner-s13 {
  padding: 1.2rem 0;
}
.inner-s13 .label {
  overflow: hidden;
}
.inner-s13 .label span {
  display: block;
  font-size: 0.5rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s13 .info-box {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.2rem;
}
.inner-s13 .info-box span {
  font-size: max(13px, 0.16rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s13 .para-box {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.04rem solid #192232;
}
.inner-s13 .block {
  margin-top: 0.5rem;
}
.inner-s13 .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s13 .block .tit {
  font-size: max(16px, 0.24rem);
  color: #192232;
}
.inner-s13 .block .para {
  margin-top: 0.2rem;
  font-size: max(13px, 0.16rem);
  color: #646a73;
  line-height: 2;
}
.inner-s13 .btns {
  display: block;
  margin-top: 0.6rem;
  font-size: max(16px, 0.24rem);
  line-height: max(40px, 0.6rem);
  text-align: center;
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  background-color: #2184c7;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.3rem rgba(33, 132, 199, 0.3);
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .inner-s13 .btns:hover {
    transform: translateY(-3px);
  }
}

.inner-s14 {
  padding: 1.2rem 0;
}
.inner-s14.nopb {
  padding: 1.2rem 0 0;
}
.inner-s14 .label {
  overflow: hidden;
}
.inner-s14 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s14 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s14 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s14 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s14 .top-block {
  margin-top: 0.5rem;
  background-color: #2184c7;
  border-radius: 0.16rem;
  padding: 0.7rem 0.6rem;
}
.inner-s14 .top-block .s-tit {
  overflow: hidden;
}
.inner-s14 .top-block .s-tit span {
  display: block;
  font-size: 0.3rem;
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s14 .top-block .cont {
  margin-top: 0.2rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s14 .top-block .s-para {
  width: calc(100% - 1.8rem);
  font-size: max(14px, 0.18rem);
  color: #fff;
  line-height: 1.667;
}
.inner-s14 .top-block .icon {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  align-items: center;
  order: 2;
}
.inner-s14 .top-block .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s14 .bot-block {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s14 .item {
  width: calc((100% - 0.2rem) / 2);
  position: relative;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s14 .item .img-box {
  aspect-ratio: 71 / 54;
}
.inner-s14 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s14 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6));
  padding: 0.5rem 0.4rem 0.4rem;
}
.inner-s14 .item .tit {
  font-size: max(14px, 0.18rem);
  color: #fff;
  font-weight: bold;
}
@media (any-hover: hover) {
  .inner-s14 .item:hover img {
    transform: scale(1.05);
  }
}

.inner-s15 {
  padding: 1.2rem 0 0;
  overflow: hidden;
}
.inner-s15 .label {
  overflow: hidden;
}
.inner-s15 .label .tit {
  text-align: center;
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s15 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s15 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s15 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s15 .items {
  margin-top: 0.5rem;
}
.inner-s15 .items.animating .item {
  animation: fadeInRight 1s cubic-bezier(0.49, 0.54, 0.16, 1) both;
}
.inner-s15 .items.animating .item:nth-of-type(2) {
  animation-delay: .2s;
}
.inner-s15 .items.animating .item:nth-of-type(3) {
  animation-delay: .3s;
}
.inner-s15 .items.animating .item:nth-of-type(4) {
  animation-delay: .6s;
}
.inner-s15 .sw {
  display: inline-flex;
  grid-gap: 0.2rem;
}
.inner-s15 .item {
  width: 4rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.inner-s15 .item .img-box {
  aspect-ratio: 1 / 1;
}
.inner-s15 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s15 .item .txt-box {
  padding: 0 0.4rem 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.inner-s15 .item p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.25;
}
@media (any-hover: hover) {
  .inner-s15 .item:hover img {
    transform: scale(1.1);
  }
}
.inner-s15 .bot-block {
  margin-top: 0.6rem;
  border-radius: 0.16rem;
  background-color: #f9f9f9;
  padding: 0.5rem 0.6rem 0.6rem;
}
.inner-s15 .bot-block .tit {
  overflow: hidden;
}
.inner-s15 .bot-block .tit span {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  text-align: center;
}
.inner-s15 .dots {
  margin-top: 0.3rem;
  padding: 0.5rem 0.5rem 0;
  border-top: 1px solid #dee5ed;
  display: flex;
  justify-content: space-between;
  grid-gap: 0.2rem;
}
.inner-s15 .dot span {
  display: block;
  font-size: 0.34rem;
  text-align: center;
  font-family: 'Montserrat-Bold';
  color: #192232;
  opacity: 0.1;
}
.inner-s15 .dot p {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
}

.inner-s16 {
  padding: 1.2rem 0;
  overflow: hidden;
}
.inner-s16 .label {
  overflow: hidden;
}
.inner-s16 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s16 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s16 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s16 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s16 .cont {
  margin-top: 0.8rem;
  aspect-ratio: 16 / 7;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.inner-s16 .cont .hide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  z-index: 1;
}
.inner-s16 .cont .hide img {
  height: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-s16 .cont .show {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  z-index: 2;
}
.inner-s16 .cont .show img {
  height: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-s16 .cont .bar {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
}
.inner-s16 .cont .bar:before {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/service/icon-4.png");
}
.inner-s16 .cont .bar i {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/service/icon-1.png");
  cursor: pointer;
  z-index: 2;
}

.inner-s17 {
  padding: 1.2rem 0;
  background-color: #f7f7f7;
}
.inner-s17 .label {
  overflow: hidden;
}
.inner-s17 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s17 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s17 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s17 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s17 .icon {
  margin: 0.5rem auto 0;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s17 .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s17 .info-box {
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px solid #dee5ed;
  display: flex;
  align-items: center;
}
.inner-s17 .left-box {
  width: 50%;
  padding: 0.4rem;
  border-radius: 0.16rem;
  position: relative;
  overflow: hidden;
  background-color: #2184c7;
}
.inner-s17 .left-box .tit {
  font-size: max(16px, 0.24rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s17 .left-box p {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s17 .left-box p.mb {
  margin-bottom: 0.1rem;
}
.inner-s17 .ani-block {
  position: absolute;
  right: 0.2rem;
  top: 0;
  display: flex;
  mask: linear-gradient(80deg, #fff 20%, rgba(255, 255, 255, 0) 100%);
}
.inner-s17 .ani-block .line {
  margin-left: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
}
.inner-s17 .ani-block .line .box:before {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0));
  transform-origin: center top;
  transform: rotate(-33deg);
}
.inner-s17 .ani-block.animating .line {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all .3s ease;
}
.inner-s17 .ani-block.animating .line:nth-of-type(1) {
  transition-delay: 1.5s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(2) {
  transition-delay: 1.4s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(3) {
  transition-delay: 1.3s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(4) {
  transition-delay: 1.2s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(5) {
  transition-delay: 1.1s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(6) {
  transition-delay: 1s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(7) {
  transition-delay: .9s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(8) {
  transition-delay: .8s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(9) {
  transition-delay: .7s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(10) {
  transition-delay: .6s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(11) {
  transition-delay: .5s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(12) {
  transition-delay: .4s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(13) {
  transition-delay: .3s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(14) {
  transition-delay: .2s;
}
.inner-s17 .ani-block.animating .line:nth-of-type(15) {
  transition-delay: .1s;
}
.inner-s17 .right-box {
  width: 50%;
  padding-left: 0.6rem;
}
.inner-s17 .right-box p {
  font-size: max(13px, 0.16rem);
  color: #192232;
}
.inner-s17 .right-box .tips {
  margin-top: 0.2rem;
}
.inner-s17 .right-box .tip {
  display: flex;
  align-items: baseline;
  grid-gap: 0.1rem;
}
.inner-s17 .right-box .tip:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #2184c7;
  border-radius: 50%;
  transform: translateY(-0.03rem);
}
.inner-s17 .right-box .tip span {
  max-width: calc(100% - 0.16rem);
  font-size: max(13px, 0.16rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}

.inner-s18 {
  padding: 1.2rem 0;
  overflow: hidden;
}
.inner-s18 .label {
  overflow: hidden;
}
.inner-s18 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s18 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s18 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s18 .para {
  max-width: calc(50% - 1rem);
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s18 .para.bg {
  margin-top: 0.8rem;
  background-color: #f7f7f7;
  padding: 0.6rem 0.4rem;
  border-radius: 10px;
}
.inner-s18 .map-box {
  width: 7.2rem;
  height: 7.2rem;
  position: absolute;
  right: 0;
  bottom: -0.9rem;
}
.inner-s18 .map-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/service/img-5.png");
  transform: translate(2rem, 1rem);
  z-index: 1;
}
.inner-s18 .map-box .main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.inner-s18 .map-box svg {
  border-radius: 50%;
  background: #eee;
}
.inner-s18 .map-box .releaseCountries {
  stroke-width: 1px;
  fill: #fff;
}
.inner-s18 .map-box .dotSvg {
  cursor: pointer;
}
.inner-s18 .map-box .dotSvg path, .inner-s18 .map-box .dotSvg text {
  will-change: transform;
}
.inner-s18 .map-box .layerBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.inner-s18 .map-box .layerBox.showInfoBox {
  pointer-events: auto;
  opacity: 1;
}
.inner-s18 .map-box .infoBox {
  position: absolute;
  right: -0.6rem;
  bottom: 3.7rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 0.2rem 0.4rem;
}
.inner-s18 .map-box .tit {
  font-size: max(14px, 0.18rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  margin-bottom: 0.1rem;
}
.inner-s18 .map-box .tit.mt {
  margin-top: 0.3rem;
}
.inner-s18 .map-box p {
  font-size: max(12px, 0.15rem);
  color: #192232;
  line-height: 1.5;
}

.inner-s19 {
  padding: 1.2rem 0 0;
}
.inner-s19 .label {
  overflow: hidden;
}
.inner-s19 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s19 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s19 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s19 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
  line-height: 1.375;
  margin-top: 0.2rem;
}
.inner-s19 .cont-block {
  background-color: #2184c7;
  margin-top: 0.5rem;
  border-radius: 0.16rem;
  padding: 0.7rem 0.6rem 0.4rem;
}
.inner-s19 .cont-block .tit {
  overflow: hidden;
}
.inner-s19 .cont-block .tit span {
  display: block;
  font-size: 0.3rem;
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s19 .cont-block .tips {
  margin-top: 0.4rem;
  overflow: hidden;
}
.inner-s19 .cont-block .tips span {
  display: block;
  font-size: max(16px, 0.22rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s19 .items {
  margin-top: 0.3rem;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.inner-s19 .sw {
  display: flex;
  grid-gap: 0.8rem;
}
.inner-s19 .item {
  width: calc((100% - 2.4rem) / 4);
}
.inner-s19 .item .icon {
  width: max(30px, 0.4rem);
  height: max(30px, 0.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s19 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s19 .item span {
  display: block;
  margin-top: 0.4rem;
  font-size: max(14px, 0.18rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s19 .item span.txt-l {
  font-family: 'AlibabaPuHuiTi-3-55-Regular';
}
.inner-s19 .item p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  margin-top: 0.15rem;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
}

.inner-s20 {
  padding: 1.2rem 0 0;
}
.inner-s20.pb {
  padding: 1.2rem 0;
}
.inner-s20 .label {
  overflow: hidden;
}
.inner-s20 .label .tit {
  font-size: 0.32rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s20 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s20 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s20 .items {
  margin-top: 0.4rem;
}
.inner-s20 .item {
  margin-top: 10px;
  background-color: #f9f9f9;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s20 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s20 .item .show {
  height: max(50px, 0.8rem);
  padding: 0 0.3rem;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 0.6rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s20 .item .show span {
  font-size: max(13px, 0.16rem);
  color: #192232;
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s20 .item .show:after {
  content: '';
  width: max(18px, 0.24rem);
  height: max(18px, 0.24rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/industry/icon-4-1.png");
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}
.inner-s20 .item .hide {
  display: none;
}
.inner-s20 .item .cont {
  padding: 0.8rem;
  display: flex;
  align-items: center;
}
.inner-s20 .item .img-box {
  width: calc(50% - 0.4rem);
  aspect-ratio: 8 / 5;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s20 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s20 .item .para {
  width: calc(50% + 0.4rem);
  padding-left: 0.7rem;
  font-size: max(12px, 0.15rem);
  color: #192232;
  line-height: 1.5;
}
.inner-s20 .item.active .show {
  background-color: #2184c7;
  box-shadow: 0 0.2rem 0.2rem rgba(33, 132, 199, 0.2);
}
.inner-s20 .item.active .show span {
  color: #fff;
}
.inner-s20 .item.active .show:after {
  background-image: url("../images/industry/icon-4-2.png");
}
.inner-s20 .item.active .hide {
  display: block;
}
.inner-s20 .item.active .img-box img {
  animation: scale 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}
.inner-s20 .item.active .para {
  animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.inner-s21 {
  padding: 0.3rem;
}
.inner-s21 .sw {
  display: flex;
  grid-gap: 10px;
}
.inner-s21 .item {
  position: relative;
  width: calc((100% - 37.1875vw - 30px) / 3);
  height: 39.583vw;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: width 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s21 .item .box {
  display: block;
  height: 100%;
  position: relative;
}
.inner-s21 .item .img-box {
  width: 37.1875vw;
  height: 39.583vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.inner-s21 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s21 .item .show {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.4rem;
  z-index: 3;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s21 .item .show .tit {
  text-align: center;
  font-size: 0.3rem;
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s21 .item .hide {
  width: 37.1875vw;
  height: 39.583vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s21 .item .txt {
  padding: 0.4rem 0.6rem;
}
.inner-s21 .item .txt .tit {
  font-size: 0.3rem;
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s21 .item .txt p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.375;
  margin-top: 0.15rem;
}
.inner-s21 .item .txt .btns {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
}
.inner-s21 .item .txt .btns span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s21 .item .txt .btns:after {
  content: '';
  width: 5px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/activity/icon-1.svg");
}
.inner-s21 .item.active {
  width: 37.1875vw;
}
.inner-s21 .item.active .show {
  opacity: 0;
}
.inner-s21 .item.active .hide {
  opacity: 1;
}

.inner-s22 {
  height: 150vh;
  position: relative;
}
.inner-s22 .sticky {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.inner-s22 .wrap-s {
  height: 100%;
  display: flex;
  align-items: center;
  transform: translateY(800px);
}
.inner-s22 .left-block {
  width: calc(50% + 1.4rem);
}
.inner-s22 .label {
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
  transform: scale(10, 10);
  transform-origin: 3% 97%;
  letter-spacing: 30px;
  opacity: 0;
}
.inner-s22 .label .icon {
  width: 0.94rem;
  height: 0.94rem;
  border: 2px solid #2184c7;
  border-radius: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s22 .label .icon img {
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.inner-s22 .label span {
  width: calc(100% - 1.14rem);
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  white-space: nowrap;
}
.inner-s22 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  margin-top: 0.3rem;
}
.inner-s22 .right-block {
  width: calc(50% - 1.4rem);
  padding-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  opacity: 0;
  transform: translateY(1rem);
}
.inner-s22 .item {
  width: calc(50% - 5px);
}
.inner-s22 .item:nth-of-type(3) {
  width: 100%;
}
.inner-s22 .item:nth-of-type(3) .img-box {
  aspect-ratio: 12 / 5;
}
.inner-s22 .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s22 .item .img-box {
  aspect-ratio: 47 / 30;
}
.inner-s22 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s22 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem;
  z-index: 3;
}
.inner-s22 .item .tit {
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
@media (any-hover: hover) {
  .inner-s22 .item:hover img {
    transform: scale(1.1);
  }
}

.inner-s23 .bg-block {
  height: 83.33vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  transform: scale(0.6);
  transform-origin: center top;
}

.inner-s24 {
  height: 150vh;
}
.inner-s24 .sticky {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.inner-s24 .wrap-s {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: translateY(800px);
}
.inner-s24 .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 0.4rem;
  transform: scale(10, 10);
  transform-origin: center center;
  letter-spacing: 30px;
  opacity: 0;
}
.inner-s24 .label .icon {
  width: 0.94rem;
  height: 0.94rem;
  border: 2px solid #2184c7;
  border-radius: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s24 .label .icon img {
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.inner-s24 .label span {
  width: calc(100% - 1.14rem);
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  white-space: nowrap;
}
.inner-s24 .bot-block {
  margin-top: 0.3rem;
  opacity: 0;
  transform: translateY(1rem);
}
.inner-s24 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  text-align: center;
  line-height: 1.375;
}
.inner-s24 .items {
  display: flex;
  justify-content: center;
  grid-gap: 0.1rem;
  margin-top: 0.6rem;
}
.inner-s24 .item {
  width: 2.7rem;
}
.inner-s24 .item .img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  transform: skewX(-15deg);
  transform-origin: right bottom;
}
.inner-s24 .item img {
  display: block;
  width: 113%;
  height: 100%;
  object-fit: cover;
  transform: skewX(15deg);
  transform-origin: center bottom;
}
.inner-s24 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.inner-s24 .btns a {
  height: max(40px, 0.5rem);
  border-radius: max(20px, 0.25rem);
  border: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  padding: 0 20px;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s24 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #192232;
}
.inner-s24 .btns a:after {
  content: '';
  width: 0.26rem;
  height: 0.26rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/solution/link.svg");
}
@media (any-hover: hover) {
  .inner-s24 .btns a:hover {
    border-color: #192232;
  }
}

.inner-s25 .sticky {
  padding: 2rem 0 1rem;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.inner-s25 .wrap-s {
  transform: translateY(800px);
}
.inner-s25 .label {
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
  transform: scale(10, 10);
  transform-origin: 3% 97%;
  letter-spacing: 30px;
  opacity: 0;
}
.inner-s25 .label .icon {
  width: 0.94rem;
  height: 0.94rem;
  border: 2px solid #2184c7;
  border-radius: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s25 .label .icon img {
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.inner-s25 .label span {
  width: calc(100% - 1.14rem);
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  white-space: nowrap;
}
.inner-s25 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
  margin-top: 0.3rem;
}
.inner-s25 .btns {
  margin-top: 0.3rem;
  display: flex;
}
.inner-s25 .btns a {
  height: max(40px, 0.5rem);
  border-radius: max(20px, 0.25rem);
  border: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  padding: 0 20px;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s25 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #192232;
}
.inner-s25 .btns a:after {
  content: '';
  width: 0.26rem;
  height: 0.26rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/solution/link.svg");
}
@media (any-hover: hover) {
  .inner-s25 .btns a:hover {
    border-color: #192232;
  }
}
.inner-s25 .link-box {
  margin-top: 0.6rem;
}
.inner-s25 .link-box .sw {
  display: flex;
  justify-content: space-between;
  grid-gap: 0.1rem;
}
.inner-s25 .link-box .item {
  flex: 1 1;
}
.inner-s25 .link-box .item a {
  display: block;
  height: 100%;
  position: relative;
}
.inner-s25 .link-box .item .img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  transform: skewX(-15deg);
  transform-origin: right bottom;
}
.inner-s25 .link-box .item img {
  display: block;
  width: 113%;
  height: 100%;
  object-fit: cover;
  transform: skewX(15deg);
  transform-origin: center bottom;
}
.inner-s25 .link-box .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 113%;
  height: 100%;
  transform: skewX(15deg);
  transform-origin: center bottom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 0.1rem;
  background-color: #2184c7;
  z-index: 2;
  opacity: 0;
}
.inner-s25 .link-box .item .hide span {
  max-width: 80%;
  font-size: max(10px, 0.14rem);
  color: #fff;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s25 .link-box .item .hide:after {
  content: '';
  width: 0.14rem;
  height: 0.14rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/solution/icon-5.svg");
}
.inner-s25 .link-box .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.15rem;
  z-index: 3;
  transform: translateX(5px);
}
.inner-s25 .link-box .item span {
  display: block;
  font-size: max(10px, 0.14rem);
  color: #fff;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
@media (any-hover: hover) {
  .inner-s25 .link-box .item:hover .hide {
    opacity: 1;
  }
  .inner-s25 .link-box .item:hover .txt-box {
    opacity: 0;
  }
}
.inner-s25 .bot-block {
  margin-top: 1rem;
}
.inner-s25 .bot-block .tit {
  overflow: hidden;
}
.inner-s25 .bot-block .tit span {
  display: block;
  font-size: 0.3rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s25 .bot-block .items {
  margin-top: 0.4rem;
  position: relative;
}
.inner-s25 .bot-block .swiper {
  margin: 0 calc(-50vw + 720px);
  padding: 0 calc(50vw - 720px);
}
.inner-s25 .bot-block .item {
  width: 50%;
  margin-right: 0.3rem;
}
.inner-s25 .bot-block .item:last-of-type {
  margin-right: 0;
}
.inner-s25 .bot-block .item .top-box {
  position: relative;
  aspect-ratio: 9 / 5;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s25 .bot-block .item .img-box {
  height: 100%;
}
.inner-s25 .bot-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s25 .bot-block .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem 0.5rem;
  z-index: 3;
}
.inner-s25 .bot-block .item .txt-box span {
  font-size: max(14px, 0.18rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
.inner-s25 .bot-block .item .bot-box {
  padding: 0.5rem 0.5rem 0;
}
.inner-s25 .bot-block .item .tip {
  margin-top: 0.15rem;
  display: flex;
  align-items: baseline;
  grid-gap: 0.1rem;
}
.inner-s25 .bot-block .item .tip:nth-of-type(1) {
  margin-top: 0;
}
.inner-s25 .bot-block .item .tip:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #2184c7;
  border-radius: 50%;
  transform: translateY(-0.03rem);
}
.inner-s25 .bot-block .item .tip p {
  max-width: calc(100% - 0.16rem);
  font-size: max(13px, 0.16rem);
  color: #192232;
}
@media (any-hover: hover) {
  .inner-s25 .bot-block .item:hover img {
    transform: scale(1.1);
  }
}
.inner-s25 .bot-block .m-items {
  display: none;
}
.inner-s25 .swiper-horizontal > .swiper-scrollbar {
  position: relative;
  bottom: auto;
  left: auto;
  width: 2.7rem;
  height: 6px;
  background-color: #e3e6e7;
  margin: 0.6rem auto 0;
}
.inner-s25 .swiper-scrollbar-drag {
  background-color: #142c3d;
  cursor: pointer;
  border-radius: 0;
}
.inner-s25 .button {
  width: 9px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  cursor: pointer;
  z-index: 2;
}
.inner-s25 .prev {
  right: calc(50% + 1.6rem);
  background-image: url("../images/index/prev.png");
}
.inner-s25 .next {
  left: calc(50% + 1.6rem);
  background-image: url("../images/index/next.png");
}

.inner-s26 .sticky {
  padding: 2rem 0 1rem;
  position: sticky;
  top: 0;
  overflow: hidden;
}
.inner-s26 .wrap-s {
  transform: translateY(800px);
}
.inner-s26 .label {
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
  transform: scale(10, 10);
  transform-origin: 3% 97%;
  letter-spacing: 30px;
  opacity: 0;
}
.inner-s26 .label .icon {
  width: 0.94rem;
  height: 0.94rem;
  border: 2px solid #2184c7;
  border-radius: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s26 .label .icon img {
  max-width: 0.5rem;
  max-height: 0.5rem;
}
.inner-s26 .label span {
  width: calc(100% - 1.14rem);
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  white-space: nowrap;
}
.inner-s26 .top-block {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
}
.inner-s26 .left-box {
  width: calc(50% - 1rem);
  background-color: #f9f9f9;
  border-radius: 0.16rem;
  padding: 0.6rem;
}
.inner-s26 .right-box {
  width: calc(50% + 1rem);
  padding-left: 0.6rem;
}
.inner-s26 .right-box .tit {
  overflow: hidden;
}
.inner-s26 .right-box .tit span {
  display: block;
  font-size: 0.3rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s26 .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.375;
}
.inner-s26 .btns {
  margin-top: 0.2rem;
  display: flex;
}
.inner-s26 .btns a {
  height: max(40px, 0.5rem);
  border-radius: max(20px, 0.25rem);
  border: 1px solid #e8e8ea;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  padding: 0 20px;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s26 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #192232;
}
.inner-s26 .btns a:after {
  content: '';
  width: 0.26rem;
  height: 0.26rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/solution/link.svg");
}
@media (any-hover: hover) {
  .inner-s26 .btns a:hover {
    border-color: #192232;
  }
}
.inner-s26 .tips {
  margin-top: 0.2rem;
}
.inner-s26 .tip {
  margin-top: 0.15rem;
  display: flex;
  align-items: baseline;
  grid-gap: 0.1rem;
}
.inner-s26 .tip:nth-of-type(1) {
  margin-top: 0;
}
.inner-s26 .tip:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #2184c7;
  border-radius: 50%;
  transform: translateY(-0.03rem);
}
.inner-s26 .tip p {
  max-width: calc(100% - 0.16rem);
  font-size: max(13px, 0.16rem);
  color: #192232;
}
.inner-s26 .bot-block {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
}
.inner-s26 .bot-block .tit {
  overflow: hidden;
}
.inner-s26 .bot-block .tit span {
  display: block;
  font-size: 0.3rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s26 .items {
  margin-top: 0.3rem;
}
.inner-s26 .items .sw {
  display: flex;
  grid-gap: 0.2rem;
}
.inner-s26 .item {
  width: calc((100% - 0.4rem) / 3);
}
.inner-s26 .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.16rem;
  overflow: hidden;
}
.inner-s26 .item .img-box {
  aspect-ratio: 413 / 229;
}
.inner-s26 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s26 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem;
  z-index: 3;
}
.inner-s26 .item span {
  display: block;
  font-size: max(14px, 0.18rem);
  color: #fff;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
}
@media (any-hover: hover) {
  .inner-s26 .item:hover img {
    transform: scale(1.1);
  }
}

.inner-s27 {
  height: 150vh;
  position: relative;
  z-index: 1;
}
.inner-s27 .bg-box {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-3.jpg");
}
.inner-s27 .icon {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  overflow: hidden;
  z-index: 2;
}
.inner-s27 .icon .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  z-index: 1;
}
.inner-s27 .icon .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.inner-s27 .icon .line.line-1:before, .inner-s27 .icon .line.line-1:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(50vh - 4.8rem);
  background-color: #fff;
}
.inner-s27 .icon .line.line-1:before {
  top: 0;
}
.inner-s27 .icon .line.line-1:after {
  bottom: 0;
}
.inner-s27 .icon .line.line-2:before, .inner-s27 .icon .line.line-2:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(50vw - 8rem);
  background-color: #fff;
}
.inner-s27 .icon .line.line-2:before {
  left: 0;
}
.inner-s27 .icon .line.line-2:after {
  right: 0;
}
.inner-s27 .icon .img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.2rem;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.inner-s27 .icon img {
  display: block;
  width: 100%;
}
.inner-s27 .txt-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding-top: 1rem;
  z-index: 3;
}
.inner-s27 .txt-box .pic-box {
  margin: 0 auto 0.3rem;
  width: 70%;
  max-width: 300px;
  display: none;
}
.inner-s27 .txt-box .pic-box img {
  display: block;
  width: 100%;
}
.inner-s27 .txt-box .tit {
  overflow: hidden;
}
.inner-s27 .txt-box .tit span {
  display: block;
  font-size: 0.32rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s27 .txt-box .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
}
.inner-s27 .dot-box {
  position: absolute;
  z-index: 2;
}
.inner-s27 .dot-box.pos-1 {
  left: 0;
  bottom: 0;
  width: 6.41rem;
  height: 5.45rem;
}
.inner-s27 .dot-box.pos-1:before {
  top: 0.8rem;
  left: 0.9rem;
  background-color: rgba(201, 21, 29, 0.04);
}
.inner-s27 .dot-box.pos-1 .dot .range i {
  background-color: rgba(201, 21, 29, 0.1);
}
.inner-s27 .dot-box.pos-1 .dot:after {
  background-color: #c9151d;
}
.inner-s27 .dot-box.pos-2 {
  right: 0;
  bottom: 0;
  width: 6.4rem;
  height: 7.68rem;
}
.inner-s27 .dot-box.pos-2:before {
  top: 0.2rem;
  right: 1rem;
  background-color: rgba(33, 132, 199, 0.04);
}
.inner-s27 .dot-box.pos-2 .dot .range i {
  background-color: rgba(33, 132, 199, 0.1);
}
.inner-s27 .dot-box.pos-2 .dot:after {
  background-color: #2184c7;
}
.inner-s27 .dot-box img {
  display: block;
  width: 100%;
}
.inner-s27 .dot-box:before {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  position: absolute;
}
.inner-s27 .dot-box .dot {
  position: absolute;
}
.inner-s27 .dot-box .dot .range {
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.inner-s27 .dot-box .dot .range i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  opacity: 0;
  animation: o-map-scale 2.1s linear infinite;
}
.inner-s27 .dot-box .dot .range i:nth-of-type(2) {
  animation-delay: .7s;
}
.inner-s27 .dot-box .dot .range i:nth-of-type(3) {
  animation-delay: 1.4s;
}
.inner-s27 .dot-box .dot:after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  margin: -2px 0 0 -2px;
  z-index: 2;
}

.inner-s28 {
  margin-top: -40vh;
  position: relative;
  z-index: 2;
}
.inner-s28.scroll {
  height: 175vh;
}
.inner-s28 .wrap-s {
  height: 100%;
  padding-top: 16.67vh;
}
.inner-s28 .cont-block {
  background-color: #2184c7;
  border-radius: 0.16rem;
  height: 66.66vh;
  min-height: 7rem;
  position: sticky;
  top: 16.67vh;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-s28 .block {
  display: flex;
  height: calc(100% - 3rem);
  margin-top: 0.3rem;
}
.inner-s28 .label {
  overflow: hidden;
}
.inner-s28 .label .tit {
  font-size: 0.4rem;
  color: #ffffff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s28 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s28 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
}
.inner-s28 .left-block {
  width: 50%;
  overflow: hidden;
}
.inner-s28 .left-block .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
}
.inner-s28 .right-block {
  width: calc(50% - 1rem);
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  grid-row-gap: 0.8rem;
}
.inner-s28 .right-block:before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
}
.inner-s28 .right-block .data {
  width: 50%;
  padding-left: 0.8rem;
}
.inner-s28 .right-block .data .icon {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
}
.inner-s28 .right-block .data .icon img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.4;
}
.inner-s28 .right-block .data .num {
  margin-top: 0.2rem;
  display: flex;
  align-items: baseline;
}
.inner-s28 .right-block .data .num span {
  font-size: 0.6rem;
  color: #fff;
  font-family: 'Rajdhani-Regular';
}
.inner-s28 .right-block .data .num i {
  font-style: normal;
  font-size: 0.22rem;
  color: #fff;
}
.inner-s28 .right-block .data p {
  font-size: max(13px, 0.16rem);
  color: #fff;
}

.inner-s29 {
  padding: 1.2rem	0 0;
}
.inner-s29 .label {
  overflow: hidden;
}
.inner-s29 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s29 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s29 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s29 .para {
  margin-top: 0.3rem;
  text-align: center;
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
}
.inner-s29 .map-box {
  width: 11.64rem;
  max-width: 100%;
  margin: 0.8rem auto 0;
}
.inner-s29 .map-box img {
  display: block;
  width: 100%;
}
.inner-s29 .dot {
  position: absolute;
}
.inner-s29 .dot .show {
  width: 0.28rem;
  height: 0.45rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.14rem;
  cursor: pointer;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
  animation: o-map 2s linear infinite;
}
.inner-s29 .dot .show:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-6-1.svg");
}
.inner-s29 .dot .show span {
  font-size: max(10px, 0.12rem);
  color: #2184c7;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-transform: uppercase;
  padding-top: 0.1rem;
}
.inner-s29 .dot .hide {
  width: 0.55rem;
  height: 0.9rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-6-2.svg");
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.275rem;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s29 .dot .hide img {
  width: 0.34rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.1rem;
  margin: 0 auto;
}
.inner-s29 .dot .txt-box {
  position: absolute;
  top: -0.1rem;
  left: 0;
  transform: translateX(-50%);
  width: max(130px, 1.6rem);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s29 .dot .txt-box .tit {
  display: block;
  text-align: center;
  font-size: max(13px, 0.16rem);
  color: #fff;
  background-color: #c9151d;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  line-height: 2;
  text-transform: uppercase;
}
.inner-s29 .dot .box {
  height: max(40px, 0.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 1px;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}
.inner-s29 .dot .box span {
  font-size: max(12px, 0.14rem);
  color: #192232;
}
.inner-s29 .dot .box:after {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-8.png");
}
.inner-s29 .dot:nth-of-type(1) .show span {
  transform: translate(50%, -10%);
  padding-top: 0;
}
.inner-s29 .dot:nth-of-type(5) .show span {
  transform: translateX(-80%);
}
@media (any-hover: hover) {
  .inner-s29 .dot:hover:hover .show {
    opacity: 0;
  }
  .inner-s29 .dot:hover:hover .hide {
    opacity: 1;
  }
  .inner-s29 .dot:hover:hover .txt-box {
    opacity: 1;
    pointer-events: auto;
  }
}

.inner-s29-popups {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.inner-s29-popups.active {
  opacity: 1;
  visibility: visible;
}
.inner-s29-popups.active .block {
  transform: translateX(0);
  transition-delay: .3s;
}
.inner-s29-popups .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.inner-s29-popups .main {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;
  max-width: 94vw;
}
.inner-s29-popups .block {
  position: relative;
  transform: translateX(101%);
  transition: transform .5s ease;
  display: flex;
  align-items: flex-start;
}
.inner-s29-popups .close {
  width: max(20px, 0.36rem);
  height: max(20px, 0.36rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-9.png");
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  cursor: pointer;
}
.inner-s29-popups .tab-tit {
  width: 1.8rem;
  padding-top: 1.4rem;
}
.inner-s29-popups .tab-tit span {
  display: block;
  margin-top: 0.06rem;
  font-size: max(12px, 0.16rem);
  line-height: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.2);
  padding-left: 0.3rem;
  border-radius: 0.16rem 0 0 0.16rem;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s29-popups .tab-tit span:nth-of-type(1) {
  margin-top: 0;
}
.inner-s29-popups .tab-tit span.active {
  background-color: #fff;
  color: #000;
}
@media (any-hover: hover) {
  .inner-s29-popups .tab-tit span:hover {
    background-color: #fff;
    color: #000;
  }
}
.inner-s29-popups .tab-cont {
  width: calc(100% - 1.8rem);
  background-color: #fff;
  padding: 0.8rem 0.5rem;
}
.inner-s29-popups .tab-cont .child {
  display: none;
}
.inner-s29-popups .tab-cont .child.active {
  display: block;
}
.inner-s29-popups .tab-cont .tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s29-popups .tab-cont .tit span {
  font-size: 0.32rem;
  color: #000;
  text-transform: uppercase;
}
.inner-s29-popups .tab-cont .tit a {
  font-size: max(12px, 0.16rem);
  color: #000;
  font-family: 'AlibabaPuHuiTi-3-45-Light';
}
.inner-s29-popups .tab-cont .tit a:after {
  content: '';
  width: max(14px, 0.2rem);
  height: max(14px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-10.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 8px;
}
.inner-s29-popups .tab-cont .info-box {
  margin-top: 0.3rem;
  padding-top: 1rem;
  border-top: 0.04rem solid #000;
  display: flex;
  align-items: flex-start;
}
.inner-s29-popups .tab-cont .para {
  width: 50%;
  padding-right: 0.4rem;
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
}
.inner-s29-popups .tab-cont .img-box {
  width: 50%;
  border-radius: 0.16rem;
  aspect-ratio: 220 / 141;
  overflow: hidden;
}
.inner-s29-popups .tab-cont img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-s30 {
  padding: 1.2rem 0;
}
.inner-s30 .cont-block {
  display: flex;
  align-items: flex-start;
  grid-gap: 0.4rem;
}
.inner-s30 .left-box {
  width: 4.8rem;
  background-color: #2184c7;
  padding: 0.8rem 0.4rem;
  border-radius: 0.16rem;
  position: sticky;
  top: 1.2rem;
  overflow: hidden;
}
.inner-s30 .left-box .s-line {
  width: 1px;
  height: 100%;
  position: absolute;
}
.inner-s30 .left-box .s-line:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: scaleY(0);
}
.inner-s30 .left-box .line-1 {
  top: 0;
  right: 36%;
  transform-origin: left top;
  transform: rotate(-32deg);
}
.inner-s30 .left-box .line-1:before {
  transform-origin: left top;
}
.inner-s30 .left-box .line-2 {
  top: 1.6rem;
  right: 0;
  transform-origin: left top;
  transform: rotate(32deg);
}
.inner-s30 .left-box .line-2:before {
  transform-origin: left top;
}
.inner-s30 .left-box .para {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
}
.inner-s30 .left-box.animating .s-line:before {
  transform: scaleY(1);
  transition: transform 2s linear;
}
.inner-s30 .label {
  overflow: hidden;
}
.inner-s30 .label .tit {
  font-size: 0.4rem;
  color: #ffffff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s30 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s30 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
.inner-s30 .right-box {
  width: calc(100% - 5.2rem);
}
.inner-s30 .item {
  margin-top: 0.2rem;
  background-color: #f9f9f9;
  padding: 0.8rem 0.6rem;
  border-radius: 0.16rem;
}
.inner-s30 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s30 .item span {
  display: inline-block;
  min-width: 0.8rem;
  font-size: max(12px, 0.14rem);
  color: #fff;
  padding: 0.12rem;
  text-align: center;
  border-radius: 0.1rem;
  font-family: 'AlibabaPuHuiTi-3-65-Medium';
  background-color: #c9151d;
}
.inner-s30 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  margin-top: 0.3rem;
}
.inner-s30 .item .para {
  margin-top: 0.1rem;
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
}

.inner-s31 {
  height: 150vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-8.jpg");
  background-attachment: fixed;
}
.inner-s31 .block {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  padding-top: 30vh;
  z-index: 2;
}
.inner-s31 .label {
  overflow: hidden;
}
.inner-s31 .label .tit {
  font-size: 0.4rem;
  color: #ffffff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s31 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s31 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s31 .para {
  max-width: 740px;
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
}
.inner-s31 .scroll {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
}
.inner-s31 .scroll i {
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}
.inner-s31 .scroll i:after {
  content: '';
  width: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-3.png");
  animation: scroll-1 1s linear infinite;
}
.inner-s31 .scroll span {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
.inner-s31 .icon {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 1;
  margin-top: -100vh;
}
.inner-s31 .icon .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  opacity: 0;
  transform: scale(3);
}
.inner-s31 .icon .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.inner-s31 .icon .line.line-1:before, .inner-s31 .icon .line.line-1:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(50vh - 4.8rem);
  background-color: #fff;
}
.inner-s31 .icon .line.line-1:before {
  top: 0;
}
.inner-s31 .icon .line.line-1:after {
  bottom: 0;
}
.inner-s31 .icon .line.line-2:before, .inner-s31 .icon .line.line-2:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(50vw - 8rem);
  background-color: #fff;
}
.inner-s31 .icon .line.line-2:before {
  left: 0;
}
.inner-s31 .icon .line.line-2:after {
  right: 0;
}
.inner-s31 .icon .img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.2rem;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.inner-s31 .icon img {
  display: block;
  width: 100%;
}

.inner-s32 {
  margin-top: -50vh;
  padding: 1.2rem 0;
}
.inner-s32 .sw {
  display: flex;
  grid-gap: 0.2rem;
}
.inner-s32 .item {
  flex: 1 1;
}
.inner-s32 .item .inner {
  height: 100%;
  padding: 0.6rem;
  border-radius: 0.16rem;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s32 .item .top-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s32 .item .icon {
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  order: 2;
}
.inner-s32 .item .s-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s32 .item .s-icon.hide {
  opacity: 0;
}
.inner-s32 .item .s-icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s32 .item .tit {
  order: 1;
  font-size: max(16px, 0.24rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s32 .item .tips {
  margin-top: 0.3rem;
}
.inner-s32 .item .tips p {
  margin-top: 0.15rem;
  padding-top: 0.15rem;
  border-top: 1px solid #e8ecf0;
  font-size: max(13px, 0.16rem);
  color: #192232;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s32 .item .tips p:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
@media (any-hover: hover) {
  .inner-s32 .item:hover .inner {
    background-color: #2184c7;
  }
  .inner-s32 .item:hover .s-icon.show {
    opacity: 0;
  }
  .inner-s32 .item:hover .s-icon.hide {
    opacity: 1;
  }
  .inner-s32 .item:hover .tit {
    color: #fff;
  }
  .inner-s32 .item:hover .tips p {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }
}

.inner-s33 {
  padding: 1.2rem 0;
  background-color: #f9f9f9;
  position: relative;
  z-index: 2;
}
.inner-s33 .label {
  overflow: hidden;
}
.inner-s33 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s33 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s33 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s33 .cont-block {
  margin-top: 0.4rem;
  display: flex;
  align-items: flex-start;
}
.inner-s33 .left-box {
  width: calc(100% - 9.1rem);
  padding-right: 0.8rem;
}
.inner-s33 .left-box .para {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #eeeeee;
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
}
.inner-s33 .left-box .para:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.inner-s33 .right-box {
  width: 9.1rem;
  position: sticky;
  top: 1.8rem;
}
.inner-s33 .right-box .img-box {
  overflow: hidden;
  border: 1px solid #dadee0;
  border-radius: 0.16rem;
}
.inner-s33 .right-box .box {
  padding: 0.4rem 0.24rem;
}
.inner-s33 .right-box img {
  display: block;
  width: 100%;
}

.inner-s34 {
  padding: 1.2rem 0 0;
  background-image: linear-gradient(180deg, #2184c7, #fff);
}
.inner-s34 .label {
  overflow: hidden;
}
.inner-s34 .label .tit {
  font-size: 0.4rem;
  color: #ffffff;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s34 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s34 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
}
.inner-s34 .para {
  margin-top: 0.3rem;
  text-align: center;
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
}
.inner-s34 .items {
  margin-top: 0.5rem;
}
.inner-s34 .sw {
  display: flex;
  grid-gap: 0.15rem;
}
.inner-s34 .item {
  position: relative;
  flex: 1 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0.6rem 1rem;
  border-radius: 0.16rem;
}
.inner-s34 .item .num {
  font-size: 1rem;
  font-style: italic;
  font-family: 'Montserrat-Bold';
  color: #2184c7;
  opacity: 0.06;
  line-height: 1;
}
.inner-s34 .item .icon {
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.5rem;
}
.inner-s34 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s34 .item .tit {
  margin-top: 1.2rem;
  font-size: max(16px, 0.24rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s34 .item p {
  margin-top: 0.2rem;
  border-top: 1px solid rgba(25, 34, 50, 0.3);
  padding-top: 0.15rem;
  font-size: max(13px, 0.16rem);
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s34 .item .data {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0.6rem;
  display: flex;
  align-items: baseline;
}
.inner-s34 .item .data span {
  font-size: 0.8rem;
  font-family: 'Montserrat-Bold';
  line-height: 1;
  color: #2184c7;
}
.inner-s34 .item .data i {
  font-style: normal;
  font-size: 0.24rem;
  color: #2184c7;
}

.inner-s35 {
  padding: 1.2rem 0 0;
}
.inner-s35 .label {
  overflow: hidden;
}
.inner-s35 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  text-align: center;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s35 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin: 0.2rem auto 0;
  position: relative;
  background-color: #c9151d;
}
.inner-s35 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s35 .items {
  margin-top: 0.3rem;
  aspect-ratio: 12 / 5;
}
.inner-s35 .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
  cursor: pointer;
}
.inner-s35 .item .img-box {
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  background-color: #2184c7;
  position: relative;
}
.inner-s35 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s35 .item .img-box:after {
  content: '';
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s35 .item .show {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s35 .item .show .tit {
  font-size: max(16px, 0.24rem);
  color: #fff;
  line-height: 1;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s35 .item .show:after {
  content: '';
  width: 0.56rem;
  height: 0.56rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-image: url("../images/index/icon-3-2.svg");
  position: absolute;
}
.inner-s35 .item .hide {
  position: absolute;
  width: 60%;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s35 .item .hide .line {
  position: absolute;
  top: 0;
  width: 0.07rem;
  height: 100%;
  background-color: #2184c7;
}
.inner-s35 .item .hide .line:before {
  content: '';
  width: 100%;
  height: 0.3rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d8211d;
}
.inner-s35 .item .hide .tit {
  font-size: max(16px, 0.24rem);
  color: #fff;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
  line-height: 1;
}
.inner-s35 .item .hide .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
  margin-top: 0.1rem;
}
@media screen and (min-width: 1025px) {
  .inner-s35 .item.active .img-box img {
    opacity: 1;
  }
  .inner-s35 .item.active .img-box:after {
    opacity: 1;
  }
  .inner-s35 .item.active .show {
    opacity: 0;
  }
  .inner-s35 .item.active .hide {
    opacity: 1;
  }
  .inner-s35 .item:nth-of-type(1) {
    clip-path: polygon(0 0, 0 0, 3.9rem 100%, 0 100%);
  }
  .inner-s35 .item:nth-of-type(1) .img-box:after {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
    bottom: 0;
  }
  .inner-s35 .item:nth-of-type(1) .show {
    bottom: 0.6rem;
    left: 0.6rem;
  }
  .inner-s35 .item:nth-of-type(1) .show:after {
    left: 0;
    bottom: calc(100% + 0.2rem);
  }
  .inner-s35 .item:nth-of-type(1) .hide {
    bottom: 1rem;
    left: 0.8rem;
    padding-left: 0.5rem;
  }
  .inner-s35 .item:nth-of-type(1) .hide .line {
    left: 0;
  }
  .inner-s35 .item:nth-of-type(1).active {
    clip-path: polygon(0 0, calc(100% - 4rem) 0, calc(100% - 0.1rem) 100%, 0 100%);
  }
  .inner-s35 .item:nth-of-type(2) {
    clip-path: polygon(calc(100% - 3.9rem) 0, 100% 0, 100% 100%, 100% 100%);
  }
  .inner-s35 .item:nth-of-type(2) .img-box:after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
    top: 0;
  }
  .inner-s35 .item:nth-of-type(2) .show {
    top: 0.6rem;
    right: 0.6rem;
  }
  .inner-s35 .item:nth-of-type(2) .show:after {
    right: 0;
    top: calc(100% + 0.2rem);
  }
  .inner-s35 .item:nth-of-type(2) .hide {
    top: 1rem;
    right: 0.8rem;
    text-align: right;
    padding-right: 0.5rem;
  }
  .inner-s35 .item:nth-of-type(2) .hide .line {
    right: 0;
  }
  .inner-s35 .item:nth-of-type(2).active {
    clip-path: polygon(0.1rem 0, 100% 0, 100% 100%, 4rem 100%);
  }
}

.inner-s36 {
  padding: 1.2rem 0 26.5625vw;
  background: #fff url("../images/about/img-1.png") center bottom no-repeat;
  background-size: 100% auto;
}
.inner-s36 .label {
  overflow: hidden;
}
.inner-s36 .label .tit {
  font-size: 0.4rem;
  color: #192232;
  font-family: 'AlibabaPuHuiTi-3-85-Bold';
}
.inner-s36 .label .line {
  width: 0.6rem;
  height: 0.04rem;
  margin-top: 0.2rem;
  position: relative;
  background-color: #c9151d;
}
.inner-s36 .label .line:before {
  content: '';
  width: 0.44rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2184c7;
}
.inner-s36 .items {
  margin-top: 0.3rem;
}
.inner-s36 .sw {
  display: flex;
  grid-gap: 1rem;
}
.inner-s36 .item {
  flex: 1 1;
}
.inner-s36 .item .para {
  font-size: max(13px, 0.16rem);
  color: #192232;
  line-height: 1.5;
}

.search-s1 {
  padding: 1.2rem 0;
  background-color: #f2f2f2;
}
.search-s1 .form {
  position: relative;
  width: 100%;
  max-width: 7.2rem;
  margin: 0 auto;
  background-color: #fff;
  height: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
}
.search-s1 .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #3e4247;
}
.search-s1 .form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-1.svg");
  background-size: auto 0.24rem;
  background-color: transparent;
  cursor: pointer;
}

.search-s2 {
  padding: 1.2rem 0;
  background-image: linear-gradient(180deg, #fff, #f8f8f8);
}
.search-s2 .tips {
  text-align: center;
  font-size: 0.4rem;
  font-weight: 600;
  color: #353844;
}
.search-s2 .tips span {
  color: #000;
}
.search-s2 .items {
  margin: 0.24rem 0 0.4rem;
}
.search-s2 .item {
  position: relative;
}
.search-s2 .item:before, .search-s2 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
.search-s2 .item:before {
  background-color: #f2f2f2;
}
.search-s2 .item:after {
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left top;
}
.search-s2 .item a {
  position: relative;
  display: block;
  padding: 0.4rem 0;
}
.search-s2 .item p {
  font-size: max(14px, 0.16rem);
  color: #666666;
  line-height: 1.5;
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-s2 .item .date {
  font-size: max(14px, 0.16rem);
  color: #2184c7;
  font-weight: 400;
}
.search-s2 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #000;
}
@media (any-hover: hover) {
  .search-s2 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
}

@media only screen and (max-width: 1900px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1880px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1860px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1840px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1820px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1800px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1780px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1760px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1740px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1720px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1700px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1681px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1660px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1620px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1560px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1540px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1500px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1480px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1420px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1380px) {
  html {
    font-size: 73px;
  }
}
@media only screen and (max-width: 1361px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1320px) {
  html {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1300px) {
  html {
    font-size: 69px;
  }
}
@media only screen and (max-width: 1281px) {
  html {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1260px) {
  html {
    font-size: 67px;
  }
}
@media only screen and (max-width: 1240px) {
  html {
    font-size: 66px;
  }
}
@media only screen and (max-width: 1220px) {
  html {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1180px) {
  html {
    font-size: 62px;
  }
}
@media only screen and (max-width: 1160px) {
  html {
    font-size: 61px;
  }
}
@media only screen and (max-width: 1140px) {
  html {
    font-size: 60px;
  }
}
@media screen and (max-width: 1860px) {
  .inner-s15 .item {
    width: 23vw;
  }
}
@media screen and (max-width: 1681px) {
  .inner-s25 .bot-block .swiper {
    margin: 0 -7vw;
    padding: 0 7vw;
  }

  .index-s1 .txt-block {
    left: 7vw;
  }

  .index-s3 .child .img-box {
    right: -7vw;
  }
}
@media screen and (max-width: 1025px) {
  .header {
    height: 60px;
  }

  .header .top-block {
    height: 100%;
  }

  .header .top-block .right-box {
    grid-gap: 20px;
    margin-right: 40px;
  }

  .header .top-block .link {
    display: none;
  }

  .header .top-block .lang .show {
    grid-gap: 5px;
  }

  .header .top-block .lang .show span {
    display: none;
  }

  .header .top-block .search-btn {
    display: block;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/search-1.svg");
  }

  .header ul {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    padding: 70px 30px;
    text-align: left;
    z-index: 3;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header ul.active {
    left: 0;
  }

  .header li {
    position: relative;
    display: block !important;
    margin: 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .header li i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/head-6.svg");
    background-size: auto 5px;
  }

  .header li a.single {
    line-height: 50px;
    font-size: 16px;
    color: #000;
    margin-right: 50px;
  }
  .header li a.single:before {
    display: none;
  }

  .header li a.single:after {
    display: none;
  }

  .header li .subnav {
    position: static;
    margin-left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    font-size: 0;
    padding: 0 20px;
  }

  .header li .subnav .box {
    padding: 0;
    box-shadow: none;
    transform: none;
  }

  .header li .subnav a {
    margin: 0;
    text-align: left;
    font-size: 14px;
    padding: 0;
  }

  .header .bot-block .search-btn {
    display: none;
  }

  .header .mNavBtn {
    display: block;
    width: 20px;
    height: 16px;
    right: 8%;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .header .mNavBtn span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    -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;
  }

  .head-null {
    height: 60px;
  }

  .footer .block-1 {
    padding: 30px 0 20px;
    flex-direction: column;
    justify-content: center;
    grid-gap: 20px;
  }

  .footer .block-2 {
    display: none;
  }

  .footer .block-3 {
    padding: 20px 0;
  }

  .footer .block-3 .tit {
    display: none;
  }

  .footer .block-3 .info-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
  }

  .footer .block-3 .info {
    width: 5rem;
    max-width: 100%;
  }

  .footer .block-4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    padding: 20px 0;
  }

  .footer .block-4 .copyright {
    text-align: center;
  }

  .c-crumbs {
    display: none;
  }

  .c-crumbs .left-box {
    display: none;
  }

  .c-banner .block {
    height: 40vw;
  }

  .c-banner img {
    object-position: left center;
  }

  .c-banner .block:before, .c-banner .block:after {
    background-position: left center;
  }

  .nullsection {
    margin-top: 0;
  }

  .inner-s1 .flex {
    display: block;
  }

  .inner-s1 .left-block {
    width: 100%;
    padding: 1.2rem 0 0;
  }

  .inner-s1 .left-block .top-box {
    display: none;
  }

  .inner-s1 .left-block .form {
    margin-top: 0;
  }

  .inner-s1 .right-block {
    width: 100%;
    padding: 20px 0 1.2rem;
    border: none;
  }

  .inner-s1 .item {
    margin-top: 20px;
    border-bottom: 2px solid #2184c7;
  }
  .inner-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .inner-s1 .item a {
    background-color: #f7f8fa;
  }
  .inner-s1 .item a:after {
    display: none;
  }

  .inner-s1 .item .date {
    background-color: #c9151d;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
  }

  .inner-s2 .block {
    padding: 0;
  }

  .inner-s3 .flex {
    display: block;
  }

  .inner-s3 .left-box {
    display: none;
  }

  .inner-s3 .right-box {
    width: 100%;
    padding-left: 0;
    border: none;
  }

  .inner-s5 .item {
    border-bottom: 2px solid #2184c7;
  }

  .inner-s5 .item .tips span {
    background-color: #c9151d;
    color: #fff;
  }

  .inner-s6 .links {
    justify-content: center;
  }

  .inner-s6 .item .box:after {
    display: none;
  }

  .inner-s6 .item .btns {
    opacity: 1;
  }

  .inner-s6 .item .box {
    opacity: 1;
    filter: grayscale(0);
  }

  .inner-s6 .c-pages {
    position: static;
    margin: 40px auto 0;
  }

  .inner-s7 {
    padding: 1.2rem 0;
  }

  .inner-s7 .items {
    position: static;
    flex-wrap: wrap;
  }

  .inner-s7 .item {
    width: calc((100% - 10px) / 2);
    padding: 0.4rem;
    background-color: #f9f9f9;
    position: relative;
    border-radius: 0;
  }
  .inner-s7 .item:before {
    content: '';
    width: 4px;
    height: 100%;
    background-color: #2184c7;
    position: absolute;
    top: 0;
    left: 0;
  }

  .inner-s12 .item .addr {
    background-color: #2184c7;
  }

  .inner-s12 .item .btns {
    opacity: 1;
    position: static;
  }

  .inner-s12 .item .btns span {
    color: #192232;
  }

  .inner-s12 .item .btns:before {
    background-image: url("../images/career/icon-3-1.png");
  }

  .inner-s15 .sw {
    grid-gap: 10px;
    flex-wrap: wrap;
  }

  .inner-s15 .item {
    width: calc(50% - 5px);
  }

  .inner-s15 .dots {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .inner-s15 .dot {
    width: calc((100% - 0.4rem) / 3);
  }

  .inner-s16 .cont .show {
    display: none;
  }

  .inner-s16 .cont .bar {
    display: none;
  }

  .inner-s18 .map-box {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 30px auto 0;
  }

  .inner-s18 .para {
    max-width: 100%;
  }

  .inner-s19 .sw {
    flex-wrap: wrap;
  }

  .inner-s19 .item {
    width: calc((100% - 0.8rem) / 2);
  }

  .inner-s19 .item span {
    margin-top: 15px;
  }

  .inner-s21 .sw {
    flex-wrap: wrap;
  }

  .inner-s21 .item {
    width: calc(50% - 5px);
    height: auto;
    aspect-ratio: 4 / 3;
    transition: none;
  }

  .inner-s21 .item .img-box {
    width: 100%;
    height: 100%;
  }

  .inner-s21 .item .show {
    padding: 10px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8));
  }

  .inner-s21 .item .show .tit {
    font-size: 13px;
  }

  .inner-s21 .item .hide {
    display: none;
  }

  .inner-s21 .item .txt {
    padding: 0 20px 20px;
  }

  .inner-s22 {
    padding: 1.2rem 0;
    height: auto;
  }

  .inner-s22 .sticky {
    height: auto;
    position: relative;
    overflow: inherit;
  }

  .inner-s22 .wrap-s {
    transform: none;
    display: block;
  }

  .inner-s22 .left-block {
    width: 100%;
  }

  .inner-s22 .label {
    transform: none;
    opacity: 1;
    letter-spacing: 0;
  }

  .inner-s22 .right-block {
    width: 100%;
    opacity: 1;
    transform: none;
    padding: 0.4rem 0 0;
  }

  .inner-s23 .bg-block {
    height: 60vw;
    transform: none;
    background-attachment: inherit;
  }

  .inner-s24 {
    padding: 1.2rem 0;
    height: auto;
  }

  .inner-s24 .sticky {
    height: auto;
    position: relative;
    overflow: inherit;
  }

  .inner-s24 .wrap-s {
    transform: none;
    display: block;
  }

  .inner-s24 .label {
    transform: none;
    opacity: 1;
    letter-spacing: 0;
  }

  .inner-s24 .bot-block {
    opacity: 1;
    transform: none;
  }

  .inner-s25 .sticky {
    position: relative;
    overflow: inherit;
  }

  .inner-s25 .wrap-s {
    transform: none;
  }

  .inner-s25 .label {
    transform: none;
    opacity: 1;
    letter-spacing: 0;
  }

  .inner-s25 .link-box {
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .inner-s25 .link-box .sw {
    flex-wrap: wrap;
    grid-gap: 10px;
  }

  .inner-s25 .link-box .item {
    width: calc(50% - 5px);
    flex: none;
    background-color: #f7f8fa;
    border-bottom: 1px solid #d9dee8;
  }
  .inner-s25 .link-box .item:nth-of-type(1) {
    width: 100%;
  }

  .inner-s25 .link-box .item .img-box {
    display: none;
  }

  .inner-s25 .link-box .item .txt-box {
    padding: 10px 15px;
    height: 100%;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: none;
  }
  .inner-s25 .link-box .item .txt-box:after {
    content: '';
    width: 10px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/solution/icon-6.svg");
  }

  .inner-s25 .link-box .item span {
    width: calc(100% - 20px);
    color: #192232;
    text-align: left;
  }

  .inner-s25 .bot-block .items {
    display: none;
  }

  .inner-s25 .bot-block .m-items {
    display: block;
    margin-top: 15px;
  }
  .inner-s25 .bot-block .m-items .m-item {
    margin-top: 10px;
    background-color: #f9f9f9;
    border-radius: 0.16rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
  }
  .inner-s25 .bot-block .m-items .m-item:nth-of-type(1) {
    margin-top: 0;
  }
  .inner-s25 .bot-block .m-items .m-item .show {
    height: max(50px, 0.8rem);
    padding: 0 0.3rem;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 0.6rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
  }
  .inner-s25 .bot-block .m-items .m-item .show span {
    font-size: max(13px, 0.16rem);
    color: #192232;
    transition: color 0.5s cubic-bezier(0.5, 0, 0, 1);
  }
  .inner-s25 .bot-block .m-items .m-item .show:after {
    content: '';
    width: max(18px, 0.24rem);
    height: max(18px, 0.24rem);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/industry/icon-4-1.png");
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .inner-s25 .bot-block .m-items .m-item .hide {
    display: none;
  }
  .inner-s25 .bot-block .m-items .m-item .cont {
    padding: 20px;
  }
  .inner-s25 .bot-block .m-items .m-item .img-box {
    width: 100%;
    aspect-ratio: 8 / 5;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .inner-s25 .bot-block .m-items .m-item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .inner-s25 .bot-block .m-items .m-item .tips {
    padding: 20px 0 0;
  }
  .inner-s25 .bot-block .m-items .m-item .tip {
    margin-top: 0.15rem;
    display: flex;
    align-items: baseline;
    grid-gap: 0.1rem;
  }
  .inner-s25 .bot-block .m-items .m-item .tip:nth-of-type(1) {
    margin-top: 0;
  }
  .inner-s25 .bot-block .m-items .m-item .tip:before {
    content: '';
    width: 0.06rem;
    height: 0.06rem;
    background-color: #2184c7;
    border-radius: 50%;
    transform: translateY(-0.03rem);
  }
  .inner-s25 .bot-block .m-items .m-item .tip p {
    max-width: calc(100% - 0.16rem);
    font-size: max(13px, 0.16rem);
    color: #192232;
  }
  .inner-s25 .bot-block .m-items .m-item.active .show {
    background-color: #2184c7;
    box-shadow: 0 0.2rem 0.2rem rgba(33, 132, 199, 0.2);
  }
  .inner-s25 .bot-block .m-items .m-item.active .show span {
    color: #fff;
  }
  .inner-s25 .bot-block .m-items .m-item.active .show:after {
    background-image: url("../images/industry/icon-4-2.png");
  }
  .inner-s25 .bot-block .m-items .m-item.active .hide {
    display: block;
  }
  .inner-s25 .bot-block .m-items .m-item.active .img-box img {
    animation: scale 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
  }
  .inner-s25 .bot-block .m-items .m-item.active .para {
    animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
  }

  .inner-s26 .sticky {
    position: relative;
    overflow: inherit;
  }

  .inner-s26 .wrap-s {
    transform: none;
  }

  .inner-s26 .label {
    transform: none;
    opacity: 1;
    letter-spacing: 0;
  }

  .inner-s26 .items .sw {
    flex-wrap: wrap;
    grid-gap: 10px;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
  }

  .inner-s26 .item {
    width: calc(50% - 5px);
  }
  .inner-s26 .item:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .inner-s26 .item:nth-of-type(1) .img-box {
    aspect-ratio: auto;
    height: 100%;
  }

  .inner-s27 {
    height: auto;
  }

  .inner-s27 .bg-box {
    position: absolute;
    height: 100%;
    background-attachment: inherit;
    display: none;
  }

  .inner-s27 .icon {
    margin-top: 0;
    height: auto;
  }

  .inner-s27 .icon .box {
    display: none;
  }

  .inner-s27 .dot-box {
    display: none;
  }

  .inner-s27 .txt-box {
    position: static;
    padding-top: 1.2rem;
  }

  .inner-s27 .txt-box .pic-box {
    display: block;
  }

  .inner-s28 {
    margin-top: 0;
  }

  .inner-s28 .wrap-s {
    padding-top: 1.2rem;
  }

  .inner-s28 .cont-block {
    height: auto;
    min-height: auto;
    position: static;
    padding: 1rem;
  }

  .inner-s28 .block {
    display: block;
    height: auto;
  }

  .inner-s28 .left-block {
    width: 100%;
  }

  .inner-s28 .right-block {
    width: 100%;
    margin-top: 0.3rem;
    margin-left: 0;
    border: none;
  }

  .inner-s28 .right-block:before {
    display: none;
  }

  .inner-s28 .right-block .data {
    padding-left: 0;
  }

  .inner-s29-popups {
    display: none;
  }

  .inner-s30 .cont-block {
    display: block;
  }

  .inner-s30 .left-box {
    width: 100%;
    position: static;
  }

  .inner-s30 .left-box .s-line {
    display: none;
  }

  .inner-s30 .right-box {
    width: 100%;
    margin-top: 0.3rem;
  }

  .inner-s31 {
    height: auto;
    background-attachment: inherit;
  }

  .inner-s31 .block {
    height: auto;
    padding: 1.2rem 0;
  }

  .inner-s31 .scroll {
    display: none;
  }

  .inner-s32 {
    margin-top: 0;
  }

  .inner-s32 .sw {
    grid-gap: 40px;
  }

  .inner-s32 .item .inner {
    padding: 0;
  }

  .inner-s33 .cont-block {
    display: block;
  }

  .inner-s33 .left-box {
    width: 100%;
    padding-right: 0;
  }

  .inner-s33 .right-box {
    width: 100%;
    position: static;
    margin-top: 0.3rem;
  }

  .inner-s35 .items {
    aspect-ratio: auto;
  }

  .inner-s35 .item {
    position: relative;
    margin-top: 40px;
  }
  .inner-s35 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .inner-s35 .item .img-box img {
    opacity: 1;
  }

  .inner-s35 .item .show {
    display: none;
  }

  .inner-s35 .item .hide {
    width: 100%;
    opacity: 1;
    position: relative;
    padding-left: 20px;
    margin: 20px 0 0;
  }

  .inner-s35 .item .hide .line {
    left: 0;
  }

  .inner-s35 .item .hide .tit {
    color: #192232;
  }

  .inner-s35 .item .hide .para {
    color: #192232;
  }

  .inner-s36 .sw {
    grid-gap: 30px;
  }

  .index-s1 .swiper .item {
    height: 100vw;
    max-height: 500px;
  }

  .index-s1 .txt-block {
    display: none;
  }

  .index-s1 .swiper .item .txt-box {
    display: flex;
    align-items: center;
    padding: 0 7vw;
  }

  .index-s1 .swiper .item img {
    opacity: 0.6;
  }

  .index-s1 .swiper .item .tit-box .tit {
    font-size: 24px;
  }

  .index-s1 .pagination .wrap-s {
    justify-content: center;
  }

  .index-s2 .para {
    padding: 0;
  }

  .index-s2 .data-box {
    margin-top: 20px;
  }

  .index-s2 .data-item {
    position: static;
    flex-direction: row;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .index-s2 .data-item:nth-of-type(2) {
    margin-top: 20px;
  }

  .index-s2 .data {
    width: 50%;
    border: none;
    padding-top: 0;
    margin-top: 0;
  }

  .index-s3 .child a.more {
    position: static;
    margin-top: 20px;
  }

  .index-s3 .tab-tit .item {
    flex: none;
    width: auto;
    padding: 0 10px;
  }

  .index-s3 .tab-tit .item .icon {
    opacity: 1;
  }

  .index-s3 .tab-tit .item:after {
    bottom: 0;
  }

  .index-s4 .item {
    width: 300px;
  }

  .index-s5 .bot-block {
    display: block;
  }

  .index-s5 .items {
    width: 100%;
    padding-bottom: 10px;
    overflow-x: auto;
  }

  .index-s5 .items .sw {
    display: inline-flex;
  }

  .index-s5 .item a {
    width: 300px;
  }

  .index-s5 .item .txt-box {
    padding: 20px;
  }

  .index-s5 a.more {
    width: 2.4rem;
    height: max(40px, 0.5rem);
    margin: 20px auto 0;
  }

  .index-page .pc-main {
    display: none;
  }

  .index-page .mobile-main {
    display: block;
  }

  .m-index-s1 {
    position: relative;
  }
  .m-index-s1 .swiper .item {
    height: 85.33vw;
    overflow: hidden;
  }
  .m-index-s1 .swiper .item .img-box {
    height: 100%;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .m-index-s1 .swiper .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .m-index-s1 .txt-block {
    position: absolute;
    bottom: -50px;
    left: 7vw;
    width: 86vw;
    max-width: 480px;
    background-color: rgba(33, 132, 199, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 3;
    overflow: hidden;
  }
  .m-index-s1 .txt-block:before {
    content: '';
    width: 3px;
    height: 5rem;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    bottom: 0;
    right: 0;
    transform-origin: right bottom;
    transform: rotate(-30deg);
  }
  .m-index-s1 .num {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 30px;
    transform-origin: right top;
    transform: scale(0.8);
  }
  .m-index-s1 .num:before {
    content: '';
    width: 13px;
    height: 19px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/index/icon-1.png");
    position: absolute;
    top: 5px;
    left: 18px;
  }
  .m-index-s1 .num span {
    position: absolute;
    font-size: max(13px, 0.16rem);
    color: #fff;
  }
  .m-index-s1 .num span.total {
    right: 0;
    top: 0;
    opacity: 0.4;
    font-family: 'AlibabaPuHuiTi-3-45-Light';
  }
  .m-index-s1 .num span.curr {
    left: 0;
    bottom: 0;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
  }
  .m-index-s1 .childs {
    height: 100%;
  }
  .m-index-s1 .child {
    height: 100%;
    padding: 30px;
    display: none;
  }
  .m-index-s1 .child.active {
    display: block;
  }
  .m-index-s1 .child.active .tit-box .tit, .m-index-s1 .child.active .tit-box span {
    animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
  }
  .m-index-s1 .child.active .tit-box .tit {
    animation-delay: .15s;
  }
  .m-index-s1 .child.active .tit-box span:nth-child(3) {
    animation-delay: .3s;
  }
  .m-index-s1 .child.active .btns {
    animation: fadeInUp 0.8s cubic-bezier(0.5, 0, 0, 1) both;
    animation-delay: .45s;
  }
  .m-index-s1 .child .tit-box {
    display: inline-block;
    position: relative;
    padding: 30px 0;
  }
  .m-index-s1 .child .tit-box .tit {
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat-Bold';
    text-transform: uppercase;
    opacity: 0;
  }
  .m-index-s1 .child .tit-box span {
    position: absolute;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    padding: 0 10px;
    opacity: 0;
  }
  .m-index-s1 .child .tit-box span:nth-child(1) {
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .m-index-s1 .child .tit-box span:nth-child(3) {
    right: 0;
    bottom: 0;
    background-color: #c9151d;
  }
  .m-index-s1 .child .btns {
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    grid-gap: 0.2rem;
    opacity: 0;
  }
  .m-index-s1 .child .btns span {
    font-size: max(13px, 0.16rem);
    color: #fff;
  }
  .m-index-s1 .child .btns:after {
    content: '';
    width: 5px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/activity/icon-1.svg");
  }

  .m-index-s2 {
    padding: 100px 0 0;
  }
  .m-index-s2 .label {
    overflow: hidden;
  }
  .m-index-s2 .label span {
    display: block;
    font-size: 24px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    text-align: center;
  }
  .m-index-s2 .para {
    margin-top: 20px;
    font-size: max(13px, 0.16rem);
    color: #142c3d;
    line-height: 1.5;
  }
  .m-index-s2 .img-box {
    margin-top: 30px;
    position: relative;
    max-width: 100%;
    aspect-ratio: 39 / 19;
    overflow: hidden;
  }
  .m-index-s2 .img-box .box {
    height: 100%;
  }
  .m-index-s2 .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  }
  .m-index-s2 .img-box .video-btn {
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/index/icon-2.png");
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -16px 0 0 -16px;
    cursor: pointer;
  }
  .m-index-s2 .img-box:after {
    content: '';
    width: 100%;
    height: 0.06rem;
    background-color: #c9151d;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .m-index-s2 .data-box {
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
  }
  .m-index-s2 .data-item {
    width: 50%;
  }
  .m-index-s2 .data-item:nth-of-type(1) {
    padding-right: 15px;
  }
  .m-index-s2 .data-item:nth-of-type(1) .data {
    margin-top: 30px;
  }
  .m-index-s2 .data-item:nth-of-type(1) .data .show, .m-index-s2 .data-item:nth-of-type(1) .data .hide {
    padding-top: 30px;
  }
  .m-index-s2 .data-item:nth-of-type(2) {
    padding-left: 15px;
    border-left: 1px solid #c5d1d9;
  }
  .m-index-s2 .data {
    position: relative;
    width: 100%;
    margin-top: 15px;
    border-top: 1px solid #c5d1d9;
  }
  .m-index-s2 .data:nth-of-type(1) {
    margin-top: 0 !important;
    border: none;
  }
  .m-index-s2 .data:nth-of-type(1) .show, .m-index-s2 .data:nth-of-type(1) .hide {
    padding-top: 0 !important;
  }
  .m-index-s2 .data .show {
    padding-top: 0.2rem;
    display: flex;
    align-items: baseline;
    opacity: 0;
  }
  .m-index-s2 .data .hide {
    padding-top: 0.2rem;
    display: flex;
    align-items: baseline;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .m-index-s2 .data span {
    font-size: 26px;
    line-height: 1;
    color: #142c3d;
    font-family: 'Rajdhani-Regular';
    font-weight: bold;
  }
  .m-index-s2 .data i {
    font-style: normal;
    font-size: 10px;
    color: #142c3d;
  }

  .m-index-s3 {
    padding: 50px 0 0;
  }
  .m-index-s3 .label {
    overflow: hidden;
  }
  .m-index-s3 .label span {
    display: block;
    font-size: 24px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    text-align: center;
  }
  .m-index-s3 .items {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
  }
  .m-index-s3 .item {
    width: calc(50% - 5px);
  }
  .m-index-s3 .item:nth-of-type(1) {
    width: 100%;
  }
  .m-index-s3 .item:nth-of-type(1) .img-box {
    aspect-ratio: 69 / 28;
  }
  .m-index-s3 .item a {
    display: block;
    position: relative;
  }
  .m-index-s3 .item .img-box {
    aspect-ratio: 167 / 140;
  }
  .m-index-s3 .item .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .m-index-s3 .item .txt-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px 20px 0;
  }
  .m-index-s3 .item .txt-box:after {
    content: '';
    width: 5px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/activity/icon-1.svg");
    display: block;
    margin-top: 10px;
  }
  .m-index-s3 .item .tit {
    font-size: 16px;
    color: #fff;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
  }
  .m-index-s3 .item p {
    width: 80%;
    font-size: 12px;
    color: #fff;
    opacity: 0.6;
    margin-top: 5px;
  }

  .m-index-s4 {
    padding: 50px 0;
  }
  .m-index-s4 .label {
    overflow: hidden;
  }
  .m-index-s4 .label span {
    display: block;
    font-size: 24px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    text-align: center;
  }
  .m-index-s4 .items {
    margin-top: 20px;
  }
  .m-index-s4 .item {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
  }
  .m-index-s4 .item:nth-of-type(1) {
    margin-top: 0;
  }
  .m-index-s4 .item a {
    position: relative;
    display: block;
    height: 100%;
  }
  .m-index-s4 .item a:after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #2184c7;
  }
  .m-index-s4 .item a .box {
    padding: 25px 20px;
    background-color: #f7f7f7;
    position: relative;
  }
  .m-index-s4 .item .tips {
    display: flex;
    grid-gap: 2px;
  }
  .m-index-s4 .item .tips span {
    background-color: #c9151d;
    padding: 0 10px;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
  }
  .m-index-s4 .item .tit {
    overflow: hidden;
  }
  .m-index-s4 .item .tit span {
    display: block;
    font-size: 16px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
  }
  .m-index-s4 .item p {
    font-size: 12px;
    line-height: 1.5;
    color: #142c3d;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .m-index-s4 .item .info-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7ed;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
  }
  .m-index-s4 .item .info span {
    font-size: 12px;
  }
  .m-index-s4 .item .info span:nth-of-type(1) {
    white-space: nowrap;
    color: #89959e;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
  }
  .m-index-s4 .item .info span:nth-of-type(2) {
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
  }
  .m-index-s4 .btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .m-index-s4 .btns a {
    width: 150px;
    height: 40px;
    border: 1px solid #142c3d;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
  }
  .m-index-s4 .btns a span {
    font-size: 12px;
    color: #142c3d;
  }
  .m-index-s4 .btns a:after {
    content: '';
    width: 5px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/index/icon-3.svg");
  }

  .m-index-s5 {
    padding: 50px 0;
    background-color: #f9f9f9;
  }
  .m-index-s5 .label {
    overflow: hidden;
  }
  .m-index-s5 .label span {
    display: block;
    font-size: 24px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-85-Bold';
    text-align: center;
  }
  .m-index-s5 .items {
    margin-top: 20px;
  }
  .m-index-s5 .item a {
    display: block;
    width: 100%;
    position: relative;
  }
  .m-index-s5 .item .img-box {
    aspect-ratio: 69 / 38;
    overflow: hidden;
  }
  .m-index-s5 .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .m-index-s5 .item .txt-box {
    margin: -40px 15px 0;
    background-color: #fff;
    padding: 20px;
    position: relative;
    z-index: 2;
  }
  .m-index-s5 .item .txt-box:after {
    content: '';
    width: 5px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/index/icon-3.svg");
    display: block;
    margin-top: 15px;
  }
  .m-index-s5 .item .info {
    display: flex;
    grid-gap: 10px;
  }
  .m-index-s5 .item .info span {
    font-size: 12px;
    color: #89959e;
  }
  .m-index-s5 .item .tit {
    overflow: hidden;
  }
  .m-index-s5 .item .tit span {
    display: block;
    font-size: 16px;
    color: #142c3d;
    font-family: 'AlibabaPuHuiTi-3-65-Medium';
    margin-top: 5px;
  }
  .m-index-s5 .item p {
    font-size: 12px;
    color: #142c3d;
    line-height: 1.5;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .m-index-s5 .pagination {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    grid-gap: 5px;
  }
  .m-index-s5 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #d9d9d9;
  }
  .m-index-s5 .pagination span.active {
    width: 16px;
    background-color: #2184c7;
  }
  .m-index-s5 .btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .m-index-s5 .btns a {
    width: 150px;
    height: 40px;
    border: 1px solid #142c3d;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
  }
  .m-index-s5 .btns a span {
    font-size: 12px;
    color: #142c3d;
  }
  .m-index-s5 .btns a:after {
    content: '';
    width: 5px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/index/icon-3.svg");
  }
}
@media screen and (max-width: 900px) {
  .inner-s4 a {
    display: block;
    border-bottom: 2px solid #2184c7;
  }

  .inner-s4 a .img-box {
    width: 100%;
  }

  .inner-s4 a .txt-box {
    width: 100%;
    padding: 0.4rem 0.6rem;
  }

  .inner-s4 a .txt-box:before {
    top: 0;
    bottom: 0;
  }

  .inner-s6 .item {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s17 .info-box {
    display: block;
  }

  .inner-s17 .left-box {
    width: 100%;
  }

  .inner-s17 .right-box {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .inner-s20 .item .cont {
    display: block;
  }

  .inner-s20 .item .img-box {
    width: 100%;
  }

  .inner-s20 .item .para {
    width: 100%;
    padding: 20px 0 0;
  }

  .inner-s26 .top-block {
    display: block;
  }

  .inner-s26 .left-box {
    width: 100%;
  }

  .inner-s26 .right-box {
    width: 100%;
    padding: 0.4rem 0 0;
  }

  .inner-s34 .sw {
    flex-wrap: wrap;
  }

  .inner-s34 .item {
    flex: none;
    width: 100%;
  }

  .inner-s34 .item .data {
    position: static;
    margin-top: 20px;
    padding: 0;
  }

  .inner-s36 .sw {
    flex-wrap: wrap;
  }

  .inner-s36 .item {
    flex: none;
    width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .inner-s7 .item {
    width: 100%;
  }

  .inner-s7 .item .tit {
    width: 70px;
  }

  .inner-s7 .item .info-box {
    width: calc(100% - 70px);
    margin-left: 0;
  }

  .inner-s10 {
    background-color: #f5f7f8;
  }

  .inner-s10:before {
    display: none;
  }

  .inner-s10 .flex {
    display: block;
  }

  .inner-s10 .left-block {
    width: 100%;
    padding-right: 0;
  }

  .inner-s10 .right-block {
    width: 100%;
    padding-left: 0;
    margin-top: 1.2rem;
  }

  .inner-s12 .item {
    width: 100%;
  }

  .index-s3 .child .txt-box {
    width: 100%;
  }

  .index-s3 .child .img-box {
    display: none;
  }

  .index-s5 .single-box a {
    display: block;
  }

  .index-s5 .single-box .img-box {
    width: 100%;
  }

  .index-s5 .single-box .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 640px) {
  .c-banner .label span {
    font-size: 24px;
  }

  .inner-s1 .left-block {
    padding: 50px 0 0;
  }

  .inner-s1 .right-block {
    padding: 20px 0 50px;
  }

  .inner-s1 .item a {
    padding: 20px;
    display: block;
  }

  .inner-s1 .item .img-box {
    width: 100%;
  }

  .inner-s1 .item .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }

  .inner-s2 {
    padding: 50px 0;
  }

  .inner-s2 .top-block .tit span {
    font-size: 20px;
  }

  .inner-s3 .right-box {
    padding: 50px 0;
  }

  .inner-s3 .right-box .block {
    margin-top: 50px;
  }

  .inner-s3 .right-box .para {
    margin-top: 15px;
    padding-top: 15px;
  }

  .inner-s4 {
    padding: 50px 0 0;
  }

  .inner-s4 a .txt-box {
    padding: 20px;
  }

  .inner-s4 a .tit {
    margin-top: 15px;
  }

  .inner-s5 {
    padding: 50px 0;
  }

  .inner-s5 .item .box {
    padding: 20px;
  }

  .inner-s6 {
    padding: 50px 0;
  }

  .inner-s6 .item {
    width: 100%;
  }

  .inner-s6 .item .tit {
    margin-top: 20px;
  }

  .inner-s7 {
    padding: 50px 0;
  }

  .inner-s9 {
    padding: 50px 0;
  }

  .inner-s9 .box {
    width: 100%;
  }

  .inner-s9 .box:nth-of-type(5) {
    display: block;
  }

  .inner-s9 .box:nth-of-type(5) span {
    display: block;
    width: 100%;
    padding-right: 0;
    border: none;
    margin-bottom: 10px;
  }

  .inner-s9 .box:nth-of-type(7) {
    display: block;
  }

  .inner-s9 .box .agree {
    margin-bottom: 10px;
  }

  .inner-s9 .box button {
    margin: 0 auto;
    display: block;
  }

  .inner-s10 {
    padding: 50px 0;
  }

  .inner-s10 .right-block {
    margin-top: 50px;
  }

  .inner-s11 {
    padding: 50px 0;
  }

  .inner-s12 {
    padding: 50px 0;
  }

  .inner-s12 .item a {
    padding: 0 24px;
  }

  .inner-s13 {
    padding: 50px 0;
  }

  .inner-s13 .label span {
    font-size: 20px;
  }

  .inner-s14 {
    padding: 50px 0;
  }

  .inner-s14.nopb {
    padding: 50px 0 0;
  }

  .inner-s14 .top-block {
    padding: 24px;
  }

  .inner-s14 .top-block .cont {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
  }

  .inner-s14 .top-block .s-para {
    width: 100%;
    margin-top: 20px;
  }

  .inner-s14 .item {
    width: 100%;
  }

  .inner-s15 {
    padding: 50px 0 0;
  }

  .inner-s15 .item {
    width: 100%;
  }

  .inner-s15 .bot-block {
    margin-top: 20px;
    padding: 20px;
  }

  .inner-s15 .dots {
    padding: 20px 0 0;
  }

  .inner-s15 .dot {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s16 {
    padding: 50px 0;
  }

  .inner-s16 .cont {
    margin-top: 20px;
  }

  .inner-s17 {
    padding: 50px 0;
  }

  .inner-s17 .info-box {
    margin-top: 20px;
    padding-top: 20px;
  }

  .inner-s17 .left-box {
    padding: 20px;
  }

  .inner-s18 {
    padding: 50px 0;
  }

  .inner-s18 .para.bg {
    margin-top: 20px;
    padding: 20px;
  }

  .inner-s18 .map-box {
    width: 70vw;
    height: 70vw;
  }

  .inner-s18 .map-box:before {
    transform: translate(1rem, 0.5rem);
  }

  .inner-s19 {
    padding: 50px 0 0;
  }

  .inner-s19 .cont-block {
    padding: 20px;
  }

  .inner-s19 .sw {
    grid-gap: 40px;
  }

  .inner-s19 .item {
    width: 100%;
  }

  .inner-s20 {
    padding: 50px 0 0;
  }

  .inner-s20.pb {
    padding: 50px 0;
  }

  .inner-s20 .item .cont {
    padding: 20px;
  }

  .inner-s22 {
    padding: 50px 0;
  }

  .inner-s24 {
    padding: 50px 0;
  }

  .inner-s25 .sticky {
    padding: 50px 0;
  }

  .inner-s25 .link-box {
    margin-top: 30px;
  }

  .inner-s25 .bot-block {
    margin-top: 30px;
  }

  .inner-s26 .sticky {
    padding: 50px 0;
  }

  .inner-s26 .left-box {
    padding: 20px;
  }

  .inner-s26 .bot-block {
    margin-top: 30px;
    padding-top: 20px;
  }

  .inner-s27 .txt-box {
    padding-top: 50px;
  }

  .inner-s27 .txt-box .tit span {
    font-size: 24px;
  }

  .inner-s28 .wrap-s {
    padding-top: 50px;
  }

  .inner-s28 .cont-block {
    padding: 20px;
  }

  .inner-s28 .right-block {
    grid-row-gap: 20px;
  }

  .inner-s29 {
    padding: 50px 0 0;
  }

  .inner-s29 .map-box {
    margin-top: 20px;
  }

  .inner-s29 .dot .show {
    width: 10px;
    height: 16px;
    margin-left: -5px;
  }

  .inner-s29 .dot .hide {
    transform: scale(0.6);
    transform-origin: center bottom;
  }

  .inner-s30 {
    padding: 50px 0;
  }

  .inner-s30 .left-box {
    padding: 20px;
  }

  .inner-s30 .item {
    padding: 20px;
  }

  .inner-s31 .block {
    padding: 50px 0;
  }

  .inner-s32 {
    padding: 50px 0;
  }

  .inner-s32 .sw {
    flex-wrap: wrap;
  }

  .inner-s32 .item {
    flex: none;
    width: 100%;
  }

  .inner-s33 {
    padding: 50px 0;
  }

  .inner-s34 {
    padding: 50px 0 0;
  }

  .inner-s34 .item {
    padding: 20px;
  }

  .inner-s34 .item .tit {
    margin-top: 20px;
  }

  .inner-s35 {
    padding: 50px 0 0;
  }

  .inner-s36 {
    padding: 50px 0 26.5625vw;
  }

  .index-s2 {
    padding: 50px 0;
  }

  .index-s2 .label span {
    font-size: 24px;
  }

  .index-s2 .data span {
    font-size: 30px;
  }

  .index-s3 {
    padding: 50px 0 0;
  }

  .index-s3 .label span {
    font-size: 24px;
  }

  .index-s3 .child {
    padding: 20px 0 50px;
  }

  .index-s4 {
    padding: 50px 0;
  }

  .index-s4 .label span {
    font-size: 24px;
  }

  .index-s5 {
    padding: 50px 0;
  }

  .index-s5 .label .tit {
    font-size: 24px;
  }

  .search-s1 {
    padding: 50px 0;
  }

  .search-s2 {
    padding: 50px 0;
  }

  .search-s2 .tips {
    font-size: 20px;
  }

  .search-s2 .item:before, .search-s2 .item:after {
    height: 4px;
  }
}

/*# sourceMappingURL=bundle.css.map */
