@font-face {
  font-family: 'impact';
  src: url("../fonts/impact.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes o-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes colorSlide {
  0% {
    height: 0;
  }
  90% {
    height: 100%;
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(-8px);
    transform: scale(1) translateY(-8px);
  }
  34% {
    opacity: 1;
    -webkit-transform: scale(0.9) translateY(4px);
    transform: scale(0.9) translateY(4px);
  }
  68% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(16px);
    transform: scale(0.4) translateY(16px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.4) translateY(-8px);
    transform: scale(0.4) translateY(-8px);
  }
}
@keyframes clip-path-1 {
  0% {
    clip-path: inset(0 0 0% 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes o-scale2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  33% {
    transform: scale(1);
    opacity: 1;
  }
  50%,to {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-bg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    transition: all .3s ease;
  }
  .dom-loaded .header .logo {
    transition: all .3s ease;
  }
  .dom-loaded .header .logo img {
    transition: all .3s ease;
  }
  .dom-loaded .header .search-btn {
    transition: all .3s ease;
  }
  .dom-loaded .header .ope i {
    transition: all .3s ease;
  }
  .dom-loaded .header a.tel:before {
    transition: all .3s ease;
  }
  .dom-loaded .header a.tel span {
    transition: all .3s ease;
  }
  .dom-loaded .header a.lang {
    transition: all .3s ease;
  }
  .dom-loaded .header .search-btn {
    transition: all .3s ease;
  }
  .dom-loaded .header li a.single {
    transition: all .3s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .header:hover, .header.down {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  }
  .header:hover .logo img.show, .header.down .logo img.show {
    opacity: 0;
  }
  .header:hover .logo img.hide, .header.down .logo img.hide {
    opacity: 1;
  }
  .header:hover .ope i, .header.down .ope i {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .header:hover a.tel:before, .header.down a.tel:before {
    background-image: url("../images/tel-2.svg");
  }
  .header:hover a.tel span, .header.down a.tel span {
    color: #333333;
  }
  .header:hover a.lang, .header.down a.lang {
    color: #333333;
  }
  .header:hover .search-btn, .header.down .search-btn {
    background-image: url("../images/search-2.svg");
  }
  .header:hover li a.single, .header.down li a.single {
    color: #333;
  }
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .wrap-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  position: relative;
  width: 3.4rem;
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .logo img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .ope {
  padding-top: 0.2rem;
}
.header .ope i {
  width: 1px;
  height: 0.14rem;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 0.15rem;
}
.header .top-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header a.tel {
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.header a.tel:before {
  content: '';
  width: max(16px, 0.2rem);
  height: max(16px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/tel-1.svg");
}
.header a.tel span {
  font-size: max(16px, 0.2rem);
  line-height: 20px;
  color: #fff;
  font-weight: bold;
}
.header a.lang {
  font-size: max(15px, 0.18rem);
  font-weight: bold;
  color: #fff;
  margin-left: 0.48rem;
}
.header .search-btn {
  width: max(16px, 0.2rem);
  height: max(16px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search-1.svg");
  cursor: pointer;
}
.header ul {
  display: flex;
  grid-gap: 0.48rem;
}
.header li a.single {
  display: block;
  font-size: max(15px, 0.18rem);
  color: #fff;
  line-height: max(40px, 0.6rem);
  position: relative;
}
.header li a.single:after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #158fc2;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.header li.active a.single {
  color: #158fc2;
}
.header li.active a.single:after {
  opacity: 1;
}
@media (any-hover: hover) {
  .header li:hover a.single {
    color: #158fc2;
  }
}
.header .mNavBtn {
  display: none;
}

.head-null {
  height: max(calc(60px + 0.2rem), calc(0.8rem + 20px));
}

.fixed-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  transition-delay: .3s;
}
.fixed-search.active {
  opacity: 1;
  transition-delay: 0s;
  pointer-events: auto;
}
.fixed-search.active .main {
  transform: translateX(0);
  transition-delay: .3s;
}
.fixed-search .main {
  transform: translateY(-101%);
  transition: transform .5s ease;
  z-index: 2;
}
.fixed-search .top-box {
  height: 1rem;
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-search .top-box .close {
  position: absolute;
  right: max(40px, 0.6em);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/close.svg");
  background-size: auto 12px;
  cursor: pointer;
}
.fixed-search .form {
  max-width: 1020px;
  margin: 0 auto;
  width: 86%;
  position: relative;
  height: 36px;
  padding-left: 44px;
}
.fixed-search .form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../images/search-2.svg") left center no-repeat;
  background-size: auto 18px;
  border-right: 1px solid #e6e6e6;
}
.fixed-search .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: transparent;
  font-size: max(13px, 0.16rem);
  color: #808080;
  font-family: 'Inter-Regular';
}
.fixed-search .form input::-webkit-input-placeholder {
  color: #808080;
}
.fixed-search .form input:-moz-placeholder {
  color: #808080;
}
.fixed-search .form input::-moz-placeholder {
  color: #808080;
}
.fixed-search .form input:-ms-input-placeholder {
  color: #808080;
}
.fixed-search .bot-box {
  background-color: #f5f5f5;
  padding: 0.4rem 0 0.6rem;
}
.fixed-search .block {
  max-width: max(500px, 7.2rem);
  width: 86%;
  margin: 0 auto;
}
.fixed-search .tit {
  font-size: max(13px, 0.16rem);
  color: #20252b;
}
.fixed-search .link {
  margin-top: 0.2rem;
}
.fixed-search .link a {
  display: block;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  position: relative;
  transition: all .3s ease;
}
.fixed-search .link a span {
  display: block;
  font-size: max(15px, 0.2rem);
  color: #808080;
  transition: color .3s ease;
}
.fixed-search .link a:after {
  content: '';
  width: 8px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1-1.svg");
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -7px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .fixed-search .link a:hover {
    background-color: #fff;
  }
  .fixed-search .link a:hover span {
    color: #158fc2;
  }
  .fixed-search .link a:hover:after {
    background-image: url("../images/icon-1-2.svg");
  }
}

.footer {
  background-color: #fff;
}
.footer .top-block {
  padding: 0.5rem 0 0.3rem;
}
.footer .top-block .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.footer .top-block .box {
  padding-top: 0.24rem;
}
.footer .top-block .box .tit {
  font-size: max(18px, 0.24rem);
  color: #000000;
  font-weight: bold;
}
.footer .top-block .box .link {
  margin-top: 0.1rem;
  padding-top: 0.24rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 0.16rem;
}
.footer .top-block .box .link:before {
  content: '';
  width: 0.3rem;
  height: 0.03rem;
  background-color: #158fc2;
  position: absolute;
  top: 0;
  left: 0;
}
.footer .top-block .box .link a {
  max-width: 2.8rem;
  font-size: max(13px, 0.16rem);
  color: #6b6b6b;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .footer .top-block .box .link a:hover {
    color: #158fc2;
  }
}
.footer .left-box .img-box {
  width: 3.4rem;
}
.footer .left-box .img-box img {
  display: block;
  width: 100%;
}
.footer .info-box {
  margin-top: 0.5rem;
}
.footer .info {
  width: 4rem;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.footer .info:nth-of-type(1) {
  margin-top: 0;
}
.footer .info .icon {
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .info .icon.tel {
  background-image: url("../images/foot-1.svg");
}
.footer .info .icon.mail {
  background-image: url("../images/foot-2.svg");
}
.footer .info .icon.addr {
  background-image: url("../images/foot-3.svg");
}
.footer .info p {
  width: calc(100% - 0.3rem);
  font-size: max(13px, 0.16rem);
  color: #000000;
}
.footer .ewm-box {
  padding-top: 0.24rem;
  width: 1.55rem;
}
.footer .ewm-box .img-box {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  overflow: hidden;
}
.footer .ewm-box .img-box img {
  display: block;
  width: 100%;
}
.footer .ewm-box p {
  font-size: max(12px, 0.14rem);
  color: #333333;
  text-align: center;
  margin-top: 0.1rem;
}
.footer .fdship {
  margin-top: 0.8rem;
  display: flex;
  align-items: baseline;
}
.footer .fdship span {
  font-size: max(13px, 0.16rem);
  color: #999999;
  white-space: nowrap;
}
.footer .fdship .link {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.2rem;
  grid-row-gap: 0.1rem;
}
.footer .fdship .link a {
  font-size: max(13px, 0.16rem);
  color: #999999;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .footer .fdship .link a:hover {
    color: #158fc2;
  }
}
.footer .bot-block {
  padding: 0.24rem 0;
  background-color: #f5f5f5;
}
.footer .bot-block .wrap-s {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .bot-block .link {
  display: flex;
  align-items: center;
  grid-gap: 0.3rem;
}
.footer .bot-block .link a {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: #999999;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .footer .bot-block .link a:hover {
    color: #158fc2;
  }
}
.footer .copyright {
  font-size: max(13px, 0.16rem);
  color: #999999;
}
.footer .copyright a {
  color: #999999;
  display: inline-block;
}
.footer .totop {
  width: 0.9rem;
  height: 0.9rem;
  position: fixed;
  right: 0.2rem;
  bottom: 0.2rem;
  background: #158fc2 url("../images/totop.svg") center center no-repeat;
  background-size: auto 12px;
  border-radius: 50%;
  z-index: 6;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.footer .totop svg {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 268;
  stroke-dashoffset: 268;
  transform: rotate(-90deg);
}
.footer .totop.active {
  opacity: 1;
  visibility: visible;
}

.wrap-s {
  width: 86vw;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  background-color: #fff;
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span {
  background-color: #158fc2;
}

.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-1.delay-1 {
  transition-delay: .1s;
}
.trans-1.delay-2 {
  transition-delay: .2s;
}

.trans-2 {
  opacity: 0;
  transform: translateY(0.6rem);
}
.trans-2.animating {
  opacity: 1;
  transform: translateY(0);
}
.trans-2.delay-1 {
  transition-delay: .1s;
}
.trans-2.delay-2 {
  transition-delay: .2s;
}

.c-crumbs {
  position: relative;
  z-index: 5;
}
.c-crumbs .flex {
  display: flex;
  align-items: center;
  grid-gap: 45px;
}
.c-crumbs a.home {
  position: relative;
  width: 0.18rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.svg");
  opacity: 0.5;
}
.c-crumbs a.home:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-2.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs a.link {
  position: relative;
  font-size: max(12px, 0.16rem);
  color: #fff;
  line-height: 0.8rem;
  opacity: 0.5;
}
.c-crumbs a.link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-2.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs span {
  font-size: max(12px, 0.16rem);
  color: #ffffff;
  line-height: 0.8rem;
}
.c-crumbs.gray a.home {
  background-image: url("../images/home-1.svg");
}
.c-crumbs.gray a.home:after {
  background-image: url("../images/crumbs-2-1.svg");
}
.c-crumbs.gray a.link {
  color: #333333;
}
.c-crumbs.gray a.link:after {
  background-image: url("../images/crumbs-2-1.svg");
}
.c-crumbs.gray span {
  color: #333333;
}

.c-banner {
  margin-top: -0.8rem;
  position: relative;
}
.c-banner .img-box {
  aspect-ratio: 3 / 1;
  overflow: hidden;
}
.c-banner .img-box 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;
}
.c-banner .txt-box .tit {
  font-size: 0.5rem;
  color: #fff;
  font-weight: bold;
}
.c-banner .txt-box .s-tit {
  font-size: 0.34rem;
  color: #fff;
  margin-top: 0.1rem;
}
.c-banner .txt-box .para {
  width: 75%;
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin: 0.2rem auto 0;
}
.c-banner.pb .txt-box {
  padding-bottom: 1rem;
}
.c-banner.pb-1 .txt-box {
  padding-bottom: 1.7rem;
}
.c-banner.pb-1 .txt-box .tit {
  text-align: center;
  margin: 0 auto;
}
.c-banner.nomt {
  margin-top: 0;
}
.c-banner.detail {
  background-color: #158fc2;
  overflow: hidden;
}
.c-banner.detail .img-box {
  opacity: 0.5;
  transform: scale(1.1);
}
.c-banner.detail .img-box img {
  filter: blur(4px);
}

.c-label .label {
  font-size: 0.38rem;
  color: #333333;
  text-align: center;
  font-weight: bold;
}
.c-label .s-label {
  font-size: max(16px, 0.26rem);
  color: #888888;
  margin-top: 0.1rem;
}
.c-label p {
  font-size: max(16px, 0.22rem);
  color: #666666;
  text-align: center;
  margin-top: 0.1rem;
}
.c-label .line {
  width: 0.24rem;
  height: 0.04rem;
  background-color: #158fc2;
  margin: 0.24rem auto 0;
}

.c-pages {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}
.c-pages ul {
  display: flex;
  grid-gap: 0.15rem;
}
.c-pages ul li {
  position: relative;
}
.c-pages ul li a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: max(12px, 0.14rem);
  color: #808080;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
  transition: all .3s ease;
}
.c-pages ul li.prev a, .c-pages ul li.next a {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/join/icon-23.png");
}
@media (any-hover: hover) {
  .c-pages ul li.prev:hover a, .c-pages ul li.next:hover a {
    background-image: url("../images/join/icon-23-1.png");
  }
}
.c-pages ul li.next {
  transform: rotateY(180deg);
}
.c-pages ul li.active a {
  color: #fff;
  background-color: #158fc2;
}
@media (any-hover: hover) {
  .c-pages ul li:hover a {
    color: #fff;
    background-color: #158fc2;
  }
}

.fixed-joinpop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: none;
}
.fixed-joinpop .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.fixed-joinpop .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  max-width: 10rem;
  background-color: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.fixed-joinpop .close {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/join/icon-2.png");
  background-size: auto 0.16rem;
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  z-index: 2;
  cursor: pointer;
}
.fixed-joinpop .top-block {
  padding: 0.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/join/img-5.jpg");
}
.fixed-joinpop .top-block .tit {
  font-size: 0.48rem;
  color: #fff;
  font-weight: bold;
}
.fixed-joinpop .info-box {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.36rem;
  grid-row-gap: 0.1rem;
}
.fixed-joinpop .info {
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-weight: bold;
}
.fixed-joinpop .bot-block {
  padding: 0.4rem 0.6rem;
}
.fixed-joinpop .bot-block .link {
  display: flex;
  width: 100%;
  height: max(40px, 0.6rem);
  border-radius: 5px;
  background-color: #158fc2;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.fixed-joinpop .bot-block .link span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
@media (any-hover: hover) {
  .fixed-joinpop .bot-block .link:hover {
    transform: translateY(-3px);
    background-color: #158fc2;
    border-color: #158fc2;
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.fixed-joinpop .block {
  max-height: calc(80vh - 3rem);
  overflow: auto;
  padding-right: 20px;
}
.fixed-joinpop .block .box {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 2px solid #f4f4f4;
}
.fixed-joinpop .block .box:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.fixed-joinpop .block .s-tit {
  font-size: max(16px, 0.22rem);
  color: #333333;
  font-weight: bold;
}
.fixed-joinpop .block .para {
  margin-top: 0.15rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 2;
}

.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: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  background: url("../images/close-1.svg") center no-repeat;
  transition: all .3s ease;
  cursor: pointer;
  z-index: 2;
}
@media (any-hover: hover) {
  .video-pop .close:hover {
    transform: rotate(180deg);
  }
}
.video-pop video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 86%;
  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%);
}

@media screen and (min-width: 1025px) {
  .index-page .inner-s3 .item .img-box {
    height: 100vh;
  }
}
.index-s1 {
  position: relative;
}
.index-s1 .item {
  position: relative;
  height: 100vh;
}
.index-s1 .item .img-box {
  position: relative;
  height: 100%;
  z-index: 1;
}
.index-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}
.index-s1 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.index-s1 .item .tit {
  font-size: 0.56rem;
  color: #fff;
  font-weight: bold;
  opacity: 0;
}
.index-s1 .item p {
  font-size: max(16px, 0.22rem);
  color: #fff;
  margin-top: 0.2rem;
  opacity: 0;
}
.index-s1 .item .btns {
  margin-top: 0.4rem;
  display: flex;
  opacity: 0;
}
.index-s1 .item .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.5rem);
  border-radius: 3px;
  border: 0.02rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s1 .item .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s1 .item .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s1 .item .btns a:hover {
    transform: translateY(-3px);
    background-color: #158fc2;
    border-color: #158fc2;
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.index-s1 .item.swiper-slide-active img {
  animation: scale-bg 6s linear forwards;
}
.index-s1 .item.swiper-slide-active .tit, .index-s1 .item.swiper-slide-active p, .index-s1 .item.swiper-slide-active .btns {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s1 .item.swiper-slide-active p {
  animation-delay: .1s;
}
.index-s1 .item.swiper-slide-active .btns {
  animation-delay: .2s;
}
.index-s1 .ope {
  width: 86vw;
  max-width: 1600px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 0.1rem;
  z-index: 2;
}
.index-s1 .play-btn {
  width: max(24px, 0.32rem);
  height: max(24px, 0.32rem);
  position: relative;
  cursor: pointer;
}
.index-s1 .play-btn: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/index/icon-1.png");
}
.index-s1 .play-btn:after {
  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/index/icon-2-1.png");
}
.index-s1 .play-btn.pause:after {
  background-image: url("../images/index/icon-2-2.png");
}
.index-s1 .pagination {
  width: auto;
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s1 .button {
  width: max(24px, 0.32rem);
  height: max(24px, 0.32rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.index-s1 .prev {
  background-image: url("../images/about/prev.png");
}
.index-s1 .next {
  background-image: url("../images/about/next.png");
}
.index-s1 .mouse {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  right: 0;
  width: 34px;
  height: 50px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../images/index/icon-4-1.png");
  transform: scale(0.6);
  transform-origin: center bottom;
  z-index: 3;
}
.index-s1 .mouse:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/index/icon-4-2.png") 0 0 no-repeat;
  animation: colorSlide 1.6s linear infinite;
}
.index-s1 .mouse:after {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 15px;
  animation: trackBallSlide 1.6s linear infinite;
}

.index-s2 {
  position: relative;
}
.index-s2 .num-block {
  position: absolute;
  top: clamp(80px, 7vw, 2rem);
  left: calc(50% - 4.4rem);
  z-index: 1;
}
.index-s2 .num-block span {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 2px #158fc2;
}
.index-s2 .pic-block {
  position: absolute;
  width: calc(50% + 1.9rem);
  height: 100%;
  right: 0;
  top: 0;
  z-index: 3;
}
.index-s2 .pic-block .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: all 1s ease;
}
.index-s2 .pic-block .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s2 .pic-block .img-box.active {
  opacity: 1;
}
.index-s2 .txt-block {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(44% - 0.5rem);
  bottom: 0;
  z-index: 2;
}
.index-s2 .txt-block .wrap-s {
  height: 100%;
}
.index-s2 .txt-block .block {
  width: 5.3rem;
  height: 100%;
  position: relative;
}
.index-s2 .txt-block .tab-cont .child {
  display: none;
}
.index-s2 .txt-block .tab-cont .child.active {
  display: block;
}
.index-s2 .txt-block .tab-cont .child.active .tit, .index-s2 .txt-block .tab-cont .child.active .para, .index-s2 .txt-block .tab-cont .child.active .btns {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s2 .txt-block .tab-cont .child.active .para {
  animation-delay: .1s;
}
.index-s2 .txt-block .tab-cont .child.active .btns {
  animation-delay: .2s;
}
.index-s2 .txt-block .tit {
  font-size: 0.28rem;
  color: #111111;
  font-weight: bold;
  opacity: 0;
}
.index-s2 .txt-block .para {
  font-size: max(13px, 0.17rem);
  color: #444444;
  line-height: 1.5;
  overflow: hidden;
  margin-top: 0.15rem;
  opacity: 0;
}
.index-s2 .txt-block .btns {
  margin-top: 0.3rem;
  display: flex;
  opacity: 0;
}
.index-s2 .txt-block .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s2 .txt-block .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s2 .txt-block .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s2 .txt-block .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.index-s2 .txt-block .ope {
  width: 100%;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.index-s2 .txt-block .num {
  font-size: max(13px, 0.16rem);
  color: #cecece;
  font-weight: bold;
}
.index-s2 .txt-block .num span.curr {
  color: #158fc2;
}
.index-s2 .txt-block .line {
  position: relative;
  width: 3rem;
  height: 3px;
  background-color: #efefef;
  margin: 0 0.1rem;
}
.index-s2 .txt-block .line span {
  height: 100%;
  background-color: #158fc2;
  position: absolute;
  top: 0;
  left: 0;
  transition: width .3s ease;
}
.index-s2 .txt-block .button {
  width: max(26px, 0.36rem);
  height: max(26px, 0.36rem);
  border-radius: 50%;
  background-color: #8bc7e1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s2 .txt-block .button:hover {
    background-color: #158fc2;
  }
}
.index-s2 .txt-block .prev {
  background-image: url("../images/about/prev.png");
}
.index-s2 .txt-block .next {
  background-image: url("../images/about/next.png");
}
.index-s2 .m-block {
  display: none;
}
.index-s2 .m-block .item .box {
  display: block;
  height: 100%;
}
.index-s2 .m-block .item .img-box {
  aspect-ratio: 10 / 6;
  border-radius: 5px;
  overflow: hidden;
}
.index-s2 .m-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s2 .m-block .item .tit {
  font-size: 16px;
  color: #111111;
  font-weight: bold;
  margin-top: 15px;
}
.index-s2 .m-block .item .para {
  font-size: 13px;
  color: #444444;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.index-s2 .m-block .item .btns {
  margin-top: 20px;
  display: flex;
}
.index-s2 .m-block .item .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
}
.index-s2 .m-block .item .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s2 .m-block .item .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
.index-s2 .m-block .pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  grid-gap: 0.1rem;
}
.index-s2 .m-block .pagination span {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.06rem;
  background-color: #158fc2;
  opacity: .2;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s2 .m-block .pagination span.active {
  width: 0.3rem;
  opacity: 1;
}

.index-s3 .cont-block {
  height: 100%;
  padding-top: max(calc(60px + 0.2rem), calc(0.8rem + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.index-s3 .top-block .label {
  font-size: 0.46rem;
  color: #111111;
  font-weight: bold;
  text-align: center;
}
.index-s3 .top-block p {
  font-size: max(15px, 0.2rem);
  color: #444444;
  text-align: center;
  margin-top: 0.15rem;
}
.index-s3 .bot-block {
  margin-top: 0.4rem;
  position: relative;
}
.index-s3 .swiper {
  padding: 0 calc(50vw - 4.2rem);
}
.index-s3 .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.index-s3 .item a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/index/img-3.png") center bottom no-repeat;
  background-size: 200% auto;
  z-index: 2;
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s3 .item .img-box {
  aspect-ratio: 843 / 475;
}
.index-s3 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s3 .item .show {
  font-size: max(15px, 0.2rem);
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.4rem 0.3rem;
  z-index: 3;
  transition: opacity .3s ease;
}
.index-s3 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.4rem;
  z-index: 3;
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s3 .item .tit {
  font-size: 0.28rem;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s3 .item p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.index-s3 .item .more {
  margin-top: 0.24rem;
  display: flex;
}
.index-s3 .item .more .link {
  width: max(120px, 1.5rem);
  height: max(40px, 0.5rem);
  border-radius: 3px;
  border: 0.02rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s3 .item .more .link span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s3 .item .more .link:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
.index-s3 .item.swiper-slide-active a:after {
  opacity: 1;
}
.index-s3 .item.swiper-slide-active .show {
  opacity: 0;
}
.index-s3 .item.swiper-slide-active .txt-box {
  opacity: 1;
}
.index-s3 .button {
  width: max(26px, 0.36rem);
  height: max(26px, 0.36rem);
  position: absolute;
  top: calc(50% - 18px);
  border-radius: 50%;
  background-color: #8bc7e1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 2;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s3 .button:hover {
    background-color: #158fc2;
  }
}
.index-s3 .prev {
  left: calc(50vw - 4.2rem);
  transform: translateX(-50%);
  background-image: url("../images/join/prev-1.png");
}
.index-s3 .next {
  right: calc(50vw - 4.2rem);
  transform: translateX(50%);
  background-image: url("../images/join/next-1.png");
}
.index-s3 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.index-s3 .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s3 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s3 .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s3 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}

.index-s4 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-4.jpg");
}
.index-s4 .cont-block {
  height: 100%;
  padding-top: max(calc(60px + 0.2rem), calc(0.8rem + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.index-s4 .block {
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.index-s4 .txt-box {
  width: 50%;
  padding: 0 0.8rem;
}
.index-s4 .txt-box .tit {
  font-size: 0.46rem;
  color: #fff;
  font-weight: bold;
}
.index-s4 .txt-box .para {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  line-height: 1.5;
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s4 .txt-box .btns {
  margin-top: 0.5rem;
  display: flex;
}
.index-s4 .txt-box .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.5rem);
  border-radius: 3px;
  border: 0.02rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s4 .txt-box .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s4 .txt-box .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s4 .txt-box .btns a:hover {
    transform: translateY(-3px);
    background-color: #158fc2;
    border-color: #158fc2;
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.index-s4 .data-box {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.index-s4 .data {
  width: 50%;
  height: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.index-s4 .data .num span {
  font-size: 1rem;
  color: #fff;
  font-family: 'impact';
}
.index-s4 .data .num em {
  font-style: normal;
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-weight: bold;
}
.index-s4 .data .num i {
  font-style: normal;
  font-size: 0.36rem;
  color: #fff;
  font-family: 'impact';
}
.index-s4 .data p {
  font-size: max(15px, 0.2rem);
  color: #fff;
}

.index-s5 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-5.jpg");
}
.index-s5 .cont-block {
  height: 100%;
  padding-top: max(calc(60px + 0.2rem), calc(0.8rem + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.index-s5 .top-block .label {
  font-size: 0.46rem;
  color: #111111;
  font-weight: bold;
  text-align: center;
}
.index-s5 .top-block p {
  font-size: max(15px, 0.2rem);
  color: #444444;
  text-align: center;
  margin-top: 0.15rem;
}
.index-s5 .bot-block {
  margin-top: 0.6rem;
}
.index-s5 .item {
  display: flex;
  width: 2.5rem;
  height: 1.1rem;
}
.index-s5 .item .img-box {
  width: 100%;
  height: 100%;
  border-radius: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.index-s5 .item img {
  max-width: 70%;
  max-height: 60%;
}
.index-s5 .pagination {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.1rem;
}
.index-s5 .pagination span {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.06rem;
  background-color: #158fc2;
  opacity: .2;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s5 .pagination span.active {
  width: 0.3rem;
  opacity: 1;
}

.index-s6 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-8.jpg");
}
.index-s6 .cont-block {
  height: 100%;
  padding-top: max(calc(60px + 0.2rem), calc(0.8rem + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.index-s6 .top-block .label {
  font-size: 0.46rem;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.index-s6 .top-block p {
  font-size: max(15px, 0.2rem);
  color: #ffffff;
  text-align: center;
  margin-top: 0.15rem;
}
.index-s6 .bot-block {
  margin-top: 0.7rem;
  display: flex;
  grid-gap: 0.8rem;
}
.index-s6 .left-box {
  width: calc((100% - 1.6rem) / 3);
}
.index-s6 .left-box a {
  display: block;
  height: 100%;
}
.index-s6 .left-box .img-box {
  aspect-ratio: 255 / 157;
  border-radius: 0.1rem;
  overflow: hidden;
}
.index-s6 .left-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.index-s6 .left-box .tips {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #ffffff;
}
.index-s6 .left-box .tit {
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
  transition: color .3s ease;
}
.index-s6 .left-box .date {
  margin-top: 0.3rem;
  display: flex;
  grid-gap: 0.1rem;
}
.index-s6 .left-box .date: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/index/icon-3.svg");
}
.index-s6 .left-box .date span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
@media (any-hover: hover) {
  .index-s6 .left-box:hover img {
    transform: scale(1.05);
  }
  .index-s6 .left-box:hover .tit {
    color: #158fc2;
  }
}
.index-s6 .center-box {
  width: calc((100% - 1.6rem) / 3);
  position: relative;
}
.index-s6 .center-box:before, .index-s6 .center-box:after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 0;
}
.index-s6 .center-box:before {
  left: -0.4rem;
}
.index-s6 .center-box:after {
  right: -0.4rem;
}
.index-s6 .center-box .tips {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #ffffff;
}
.index-s6 .center-box .tit {
  font-size: 0.3rem;
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
  transition: color .3s ease;
}
.index-s6 .center-box p {
  font-size: max(13px, 0.17rem);
  color: #ffffff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.3rem;
}
.index-s6 .center-box .date {
  margin-top: 1rem;
  display: flex;
  grid-gap: 0.1rem;
}
.index-s6 .center-box .date: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/index/icon-3.svg");
}
.index-s6 .center-box .date span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s6 .center-box .more {
  margin-top: 0.6rem;
  display: flex;
}
.index-s6 .center-box .more .link {
  width: max(120px, 1.5rem);
  height: max(40px, 0.5rem);
  border-radius: 3px;
  border: 0.02rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s6 .center-box .more .link span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s6 .center-box .more .link:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s6 .center-box .more .link:hover {
    transform: translateY(-3px);
    background-color: #158fc2;
    border-color: #158fc2;
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
@media (any-hover: hover) {
  .index-s6 .center-box:hover .tit {
    color: #158fc2;
  }
}
.index-s6 .right-box {
  width: calc((100% - 1.6rem) / 3);
}
.index-s6 .right-box .tips {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
}
.index-s6 .right-box .links {
  margin-top: 0.2rem;
}
.index-s6 .right-box a {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.index-s6 .right-box a:nth-of-type(1) {
  padding-top: 0;
  border: none;
}
.index-s6 .right-box a:last-of-type {
  padding-bottom: 0;
}
.index-s6 .right-box a .img-box {
  width: 1.5rem;
  aspect-ratio: 15 / 9;
  border-radius: 5px;
  overflow: hidden;
}
.index-s6 .right-box a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.index-s6 .right-box a .txt-box {
  width: calc(100% - 1.5rem);
  padding-left: 0.15rem;
}
.index-s6 .right-box a .tit {
  font-size: max(13px, 0.16rem);
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.index-s6 .right-box a .date {
  margin-top: 0.1rem;
  display: flex;
  grid-gap: 0.1rem;
}
.index-s6 .right-box a .date: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/index/icon-3.svg");
}
.index-s6 .right-box a .date span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
@media (any-hover: hover) {
  .index-s6 .right-box a:hover img {
    transform: scale(1.05);
  }
  .index-s6 .right-box a:hover .tit {
    color: #158fc2;
  }
}
.index-s6 .btns {
  margin-top: 0.5rem;
  display: none;
  justify-content: center;
}
.index-s6 .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.index-s6 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s6 .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .index-s6 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}

.inner-s1 {
  padding: 1rem 0;
}
.inner-s1 .items {
  margin-top: 0.4rem;
  display: flex;
  grid-gap: 0.6rem;
}
.inner-s1 .item {
  position: relative;
  width: calc((100% - 1.2rem) / 3);
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
}
.inner-s1 .item .img-box {
  aspect-ratio: 494 / 294;
  overflow: hidden;
}
.inner-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s1 .item .txt-box {
  position: relative;
  padding: 0.7rem 0.5rem 0.8rem;
}
.inner-s1 .item .icon {
  width: 0.76rem;
  height: 0.76rem;
  background-color: #158fc2;
  border-radius: 50%;
  position: absolute;
  top: -0.36rem;
  left: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 0.3rem;
  box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
}
.inner-s1 .item .icon.tel {
  background-image: url("../images/contact/icon-1-1.svg");
}
.inner-s1 .item .icon.addr {
  background-image: url("../images/contact/icon-1-2.svg");
}
.inner-s1 .item .icon.mail {
  background-image: url("../images/contact/icon-1-3.svg");
}
.inner-s1 .item .tit {
  font-size: max(16px, 0.22rem);
  color: #333333;
  font-weight: bold;
}
.inner-s1 .item p {
  font-size: max(15px, 0.2rem);
  color: #696969;
  margin-top: 0.1rem;
}
.inner-s1 .item .tips {
  font-size: max(13px, 0.16rem);
  color: #696969;
  opacity: 0.7;
  position: absolute;
  bottom: 0.24rem;
  left: 0.5rem;
  right: 0.5rem;
}
@media (any-hover: hover) {
  .inner-s1 .item:hover img {
    transform: scale(1.05);
  }
}
.inner-s1 .map-box {
  margin-top: 0.9rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.inner-s1 .map-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-s2 {
  padding: 1.2rem 0;
  background-color: #f8f8f8;
}
.inner-s2 .form {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s2 .form .box {
  position: relative;
  width: calc((100% - 0.6rem) / 4);
  background-color: #fff;
}
.inner-s2 .form .box:nth-of-type(1), .inner-s2 .form .box:nth-of-type(2), .inner-s2 .form .box:nth-of-type(3) {
  width: calc((100% - 0.4rem) / 3);
}
.inner-s2 .form .box:nth-of-type(4), .inner-s2 .form .box:nth-of-type(5) {
  width: 100%;
}
.inner-s2 .form .box.flex {
  border: 1px solid #e2e2e2;
  padding: 0.2rem;
  border-radius: 5px;
}
.inner-s2 .form .box.flex .tips {
  font-size: max(13px, 0.16rem);
  margin-bottom: 10px;
  color: #666666;
}
.inner-s2 .form span {
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  display: block;
  font-size: max(13px, 0.16rem);
  color: #666666;
}
.inner-s2 .form span i {
  color: #f00;
  font-style: normal;
}
.inner-s2 .form input {
  width: 100%;
  height: max(46px, 0.6rem);
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding: 0 0.2rem;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  transition: all .3s ease;
}
.inner-s2 .form textarea {
  display: block;
  width: 100%;
  height: 1.8rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding: 0.1rem 0.2rem;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  resize: none;
  transition: all .3s ease;
}
.inner-s2 .form button {
  display: block;
  width: max(120px, 1.5rem);
  height: max(36px, 0.44rem);
  background-color: #158fc2;
  border-radius: 3px;
  margin: 0.4rem auto 0;
  font-size: max(13px, 0.16rem);
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.inner-s2 .form button:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
  display: inline-block;
  vertical-align: middle;
  margin: -0.04rem 0 0 0.14rem;
}
@media (any-hover: hover) {
  .inner-s2 .form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.inner-s2 .layui-input:hover, .inner-s2 .layui-textarea:hover,
.inner-s2 .layui-input:focus, .inner-s2 .layui-textarea:focus {
  border-color: #158fc2 !important;
}
.inner-s2 .layui-input:focus, .inner-s2 .layui-textarea:focus {
  box-shadow: none;
}
.inner-s2 .layui-form-select dl {
  top: 100%;
}
.inner-s2 .layui-form-select dl dd, .inner-s2 .layui-form-select dl dt {
  padding: 0 0.2rem;
  font-size: max(13px, 0.16rem);
}
.inner-s2 .layui-form-select dl dd.layui-this {
  color: #158fc2;
}
.inner-s2 .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #158fc2 !important;
}
.inner-s2 .layui-form-checked[lay-skin=primary] > i {
  border-color: #158fc2 !important;
  background-color: #158fc2 !important;
}
.inner-s2 .layui-form-checkbox > div {
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding-right: 0.3rem;
  white-space: normal;
  margin-bottom: 10px;
}

.inner-s3 {
  display: flex;
}
.inner-s3 .c-label .label {
  color: #fff;
  text-align: left;
}
.inner-s3 .item {
  flex: 1 1;
  position: relative;
}
.inner-s3 .item:nth-of-type(1) .txt-box {
  padding-right: 1.6rem;
  justify-content: flex-end;
}
.inner-s3 .item:nth-of-type(2) .txt-box {
  padding-left: 1.6rem;
}
.inner-s3 .item .img-box {
  height: 4.12rem;
}
.inner-s3 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s3 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.inner-s3 .item .block {
  width: 100%;
  max-width: calc(800px - 1.6rem);
}
.inner-s3 .item .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s3 .item .btns {
  margin-top: 0.3rem;
  display: flex;
}
.inner-s3 .item .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.5rem);
  border-radius: 3px;
  border: 0.02rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.inner-s3 .item .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s3 .item .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s3 .item .btns a:hover {
    transform: translateY(-3px);
    background-color: #158fc2;
    border-color: #158fc2;
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}

.inner-s4 {
  padding: 1rem 0;
}
.inner-s4 .c-label .label {
  text-align: left;
}
.inner-s4 .cont-block {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.inner-s4 .left-box {
  width: calc(50% + 1.6rem);
}
.inner-s4 .left-box .img-box {
  aspect-ratio: 960 / 558;
  border-radius: 0.1rem;
  overflow: hidden;
  display: none;
}
.inner-s4 .left-box .img-box.active {
  display: block;
}
.inner-s4 .left-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s4 .right-box {
  width: calc(50% - 1.6rem);
  padding: 0.4rem 0 0 0.6rem;
}
.inner-s4 .item {
  margin-top: 0.4rem;
}
.inner-s4 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s4 .item .tit {
  display: flex;
  align-items: center;
  grid-gap: 0.15rem;
  cursor: pointer;
}
.inner-s4 .item .tit:before {
  content: '';
  width: 0.15rem;
  height: 0.17rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/join/icon-1.png");
  opacity: 0.5;
  transition: opacity .3s ease;
}
.inner-s4 .item .tit span {
  width: calc(1005 - 0.3rem);
  font-size: 0.3rem;
  color: #adadad;
  font-weight: bold;
  transition: color .3s ease;
}
.inner-s4 .item .para {
  margin: 0.3rem 0 0 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #696969;
  line-height: 1.5;
  display: none;
}
.inner-s4 .item .para span {
  font-size: inherit !important;
  font-family: inherit !important;
}
.inner-s4 .item .img-box {
  opacity: 0;
  display: none;
  aspect-ratio: 960 / 558;
  border-radius: 0.1rem;
  overflow: hidden;
  margin: 0.2rem 0 0 0.3rem;
}
.inner-s4 .item .img-box img {
  display: block;
  width: 100%;
}
.inner-s4 .item.active .tit:before {
  opacity: 1;
}
.inner-s4 .item.active .tit span {
  color: #111111;
}

.inner-s5 {
  padding: 1rem 0;
  background-color: #f8f8f8;
  overflow: hidden;
}
.inner-s5 .para {
  font-size: max(13px, 0.16rem);
  color: #333333;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
}
.inner-s5 .items {
  margin-top: 0.4rem;
  position: relative;
  padding: 0 2.6rem;
}
.inner-s5 .swiper {
  margin: 0 calc(-50vw + 800px - 2.6rem);
  padding: 0 calc(50vw - 800px);
}
.inner-s5 .item {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
}
.inner-s5 .item:last-of-type {
  margin-right: 0;
}
.inner-s5 .item .img-box {
  aspect-ratio: 490 / 317;
  border-radius: 0.1rem;
  overflow: hidden;
}
.inner-s5 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
@media (any-hover: hover) {
  .inner-s5 .item:hover img {
    transform: scale(1.05);
  }
}
.inner-s5 .button {
  width: 36px;
  height: 36px;
  position: absolute;
  top: calc(50% - 18px);
  border-radius: 50%;
  background-color: #8bc7e1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 2;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s5 .button:hover {
    background-color: #158fc2;
  }
}
.inner-s5 .prev {
  left: calc(-20px - 0.2rem);
  background-image: url("../images/join/prev-1.png");
}
.inner-s5 .next {
  right: calc(-20px - 0.2rem);
  background-image: url("../images/join/next-1.png");
}

.inner-s6 {
  position: relative;
  padding: 1rem 0 1.2rem;
}
.inner-s6:before {
  content: '';
  width: 100%;
  height: 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/join/img-3.jpg");
  position: absolute;
  top: 0;
  left: 0;
}
.inner-s6 .c-label .label {
  color: #fff;
}
.inner-s6 .c-label p {
  color: #fff;
}
.inner-s6 .para {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
}
.inner-s6 .link {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.4rem;
}
.inner-s6 .link a {
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 1px solid #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.inner-s6 .link a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: color .3s ease;
}
.inner-s6 .link a.active {
  background-color: #fff;
}
.inner-s6 .link a.active span {
  color: #158fc2;
}
@media (any-hover: hover) {
  .inner-s6 .link a:hover {
    background-color: #fff;
  }
  .inner-s6 .link a:hover span {
    color: #158fc2;
  }
}
.inner-s6 .items {
  margin: 0.9rem 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.36rem;
}
.inner-s6 .item {
  width: calc((100% - 0.72rem) / 3);
  background-color: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  padding: 0.4rem;
  box-shadow: 0 0.1rem 0.3rem rgba(153, 153, 153, 0.2);
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s6 .item:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/join/img-4.png") center bottom no-repeat;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.inner-s6 .item .tit {
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.inner-s6 .item .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.22rem;
  background-color: #158fc2;
  transition: all .3s ease;
}
.inner-s6 .item .tit span {
  width: calc(100% - 0.14rem);
  font-size: max(16px, 0.24rem);
  color: #333333;
  font-weight: bold;
  transition: color .3s ease;
}
.inner-s6 .item .info-box {
  margin-top: 0.24rem;
  padding-top: 0.24rem;
  border-top: 1px solid rgba(21, 143, 194, 0.2);
  transition: all .3s ease;
}
.inner-s6 .item .info {
  margin-top: 0.24rem;
}
.inner-s6 .item .info:nth-of-type(1) {
  margin-top: 0;
}
.inner-s6 .item .info span {
  font-size: max(13px, 0.16rem);
  color: #666666;
  transition: color .3s ease;
}
.inner-s6 .item .info span:nth-of-type(1) {
  color: #158fc2;
}
.inner-s6 .item .hide {
  display: none;
}
@media (any-hover: hover) {
  .inner-s6 .item:hover {
    background-color: #158fc2;
  }
  .inner-s6 .item:hover:before {
    opacity: 1;
  }
  .inner-s6 .item:hover .tit:before {
    background-color: #fff;
  }
  .inner-s6 .item:hover .tit span {
    color: #fff;
  }
  .inner-s6 .item:hover .info-box {
    border-color: rgba(255, 255, 255, 0.6);
  }
  .inner-s6 .item:hover .info span {
    color: #fff;
  }
}

.inner-s7 {
  padding: 2.2rem 0;
  background: url("../images/tech/img-1.jpg") center bottom no-repeat;
  background-size: 100% auto;
}
.inner-s7 .c-label .label {
  text-align: left;
}
.inner-s7 .para {
  max-width: 12rem;
  font-size: max(15px, 0.2rem);
  color: #626e77;
  line-height: 1.6;
  margin-top: 0.2rem;
}
.inner-s7 .btns {
  margin-top: 0.6rem;
  display: flex;
}
.inner-s7 .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.inner-s7 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s7 .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s7 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}

.inner-s8 {
  padding: 1.6rem 0 0;
  position: relative;
}
.inner-s8: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/tech/img-3.jpg");
}
.inner-s8 .c-label .label {
  color: #fff;
}
.inner-s8 .c-label p {
  color: #fff;
}
.inner-s8 .items {
  transform: translateY(0.9rem);
}
.inner-s8 .sw {
  display: flex;
  grid-gap: 0.24rem;
}
.inner-s8 .item {
  width: calc((100% - 0.48rem) / 3);
  position: relative;
  border-radius: 0.1rem;
  background-color: #fff;
}
.inner-s8 .item .img-box {
  aspect-ratio: 514 / 347;
  border-radius: 0.1rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s8 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s8 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.inner-s8 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #999999;
  transition: color .3s ease;
}
.inner-s8 .item .box {
  position: relative;
  transition: padding .3s ease;
}
.inner-s8 .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  position: relative;
}
.inner-s8 .item i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s ease;
}
.inner-s8 .item i.hide {
  opacity: 0;
}
.inner-s8 .item .s-tit {
  margin-top: 0.15rem;
  font-size: 0.3rem;
  color: #000000;
  transition: color .3s ease;
}
.inner-s8 .item p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: max(15px, 0.2rem);
  color: #ffffff;
  opacity: 0;
  transition: opacity .3s ease;
}
@media (any-hover: hover) {
  .inner-s8 .item:hover .img-box {
    opacity: 1;
  }
  .inner-s8 .item:hover .tit {
    color: #fff;
  }
  .inner-s8 .item:hover .box {
    padding-bottom: 0.4rem;
  }
  .inner-s8 .item:hover i.show {
    opacity: 0;
  }
  .inner-s8 .item:hover i.hide {
    opacity: 1;
  }
  .inner-s8 .item:hover .s-tit {
    color: #fff;
  }
  .inner-s8 .item:hover p {
    opacity: 1;
  }
}

.inner-s9 {
  padding: 2.1rem 0 1.2rem;
  background-color: #f8f8f8;
}
.inner-s9 .items {
  margin-top: 0.4rem;
  margin-right: -0.2rem;
  padding-right: 0.2rem;
  overflow: auto;
  max-height: max(calc(0.64rem + 350px), 5.64rem);
}
.inner-s9 .item {
  margin-top: 0.16rem;
}
.inner-s9 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s9 .item a {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: all .3s ease;
}
.inner-s9 .item a:before {
  content: '';
  width: 0.3rem;
  height: 0.34rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/tech/icon-4-1.svg");
  transition: all .3s ease;
}
.inner-s9 .item a:after {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/tech/icon-5-1.svg");
  transition: all .3s ease;
}
.inner-s9 .item a i {
  width: 1px;
  height: 0.5rem;
  background-color: #e8e8e8;
  margin-left: 0.6rem;
}
.inner-s9 .item a span {
  width: calc(100% - 1.1rem - 2px);
  padding-left: 0.6rem;
  font-size: max(15px, 0.2rem);
  color: #158fc2;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s9 .item a:hover {
    background-color: #158fc2;
  }
  .inner-s9 .item a:hover:before {
    background-image: url("../images/tech/icon-4-2.svg");
  }
  .inner-s9 .item a:hover:after {
    background-image: url("../images/tech/icon-5-2.svg");
  }
  .inner-s9 .item a:hover span {
    color: #fff;
  }
}

.inner-s10 {
  padding: 1.2rem 0;
}
.inner-s10 .form {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s10 .form .box {
  position: relative;
  width: calc((100% - 0.6rem) / 4);
  background-color: #fff;
}
.inner-s10 .form .box:nth-of-type(1), .inner-s10 .form .box:nth-of-type(2), .inner-s10 .form .box:nth-of-type(3) {
  width: calc((100% - 0.4rem) / 3);
}
.inner-s10 .form .box:nth-of-type(4), .inner-s10 .form .box:nth-of-type(9) {
  width: 100%;
}
.inner-s10 .form .box.flex {
  border: 1px solid #e2e2e2;
  padding: 0.2rem;
  border-radius: 5px;
}
.inner-s10 .form .box.flex .tips {
  font-size: max(13px, 0.16rem);
  margin-bottom: 10px;
  color: #666666;
}
.inner-s10 .form span {
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  display: block;
  font-size: max(13px, 0.16rem);
  color: #666666;
}
.inner-s10 .form span i {
  color: #f00;
  font-style: normal;
}
.inner-s10 .form input {
  width: 100%;
  height: max(46px, 0.6rem);
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding: 0 0.2rem;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  transition: all .3s ease;
}
.inner-s10 .form textarea {
  display: block;
  width: 100%;
  height: 1.8rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding: 0.1rem 0.2rem;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  resize: none;
  transition: all .3s ease;
}
.inner-s10 .form button {
  display: block;
  width: max(120px, 1.5rem);
  height: max(36px, 0.44rem);
  background-color: #158fc2;
  border-radius: 3px;
  margin: 0.4rem auto 0;
  font-size: max(14px, 0.16rem);
  color: #fff;
  cursor: pointer;
  transition: all .3s ease;
}
.inner-s10 .form button:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
  display: inline-block;
  vertical-align: middle;
  margin: -0.04rem 0 0 0.14rem;
}
@media (any-hover: hover) {
  .inner-s10 .form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.inner-s10 .layui-input:hover, .inner-s10 .layui-textarea:hover,
.inner-s10 .layui-input:focus, .inner-s10 .layui-textarea:focus {
  border-color: #158fc2 !important;
}
.inner-s10 .layui-input:focus, .inner-s10 .layui-textarea:focus {
  box-shadow: none;
}
.inner-s10 .layui-form-select dl {
  top: 100%;
}
.inner-s10 .layui-form-select dl dd, .inner-s10 .layui-form-select dl dt {
  padding: 0 0.2rem;
  font-size: max(13px, 0.16rem);
}
.inner-s10 .layui-form-select dl dd.layui-this {
  color: #158fc2;
}
.inner-s10 .layui-form-select dl dd.layui-select-tips {
  padding: 0 0.2rem !important;
}
.inner-s10 .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #158fc2 !important;
}
.inner-s10 .layui-form-checked[lay-skin=primary] > i {
  border-color: #158fc2 !important;
  background-color: #158fc2 !important;
}
.inner-s10 .layui-form-checkbox > div {
  font-size: max(13px, 0.16rem);
  color: #666666;
  padding-right: 0.3rem;
  white-space: normal;
  margin-bottom: 10px;
}

.inner-s11 {
  padding: 1rem 0 1.2rem;
}
.inner-s11 .items {
  margin-bottom: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.4rem;
}
.inner-s11 .item {
  width: calc((100% - 0.8rem) / 3);
}
.inner-s11 .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
}
.inner-s11 .item .img-box {
  aspect-ratio: 511 / 272;
  overflow: hidden;
}
.inner-s11 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s11 .item .txt-box {
  padding: 0.4rem 0.3rem;
}
.inner-s11 .item .txt-box .tit {
  font-size: max(15px, 0.2rem);
  color: #333333;
}
.inner-s11 .item .txt-box .tips {
  font-size: max(12px, 0.14rem);
  color: #333333;
  margin-top: 0.1rem;
}
.inner-s11 .item .hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(21, 143, 194, 0.8), #158fc2);
  padding: 0 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s11 .item .hide .tips {
  font-size: max(12px, 0.14rem);
  color: #fff;
  margin-top: 0.1rem;
}
.inner-s11 .item .hide .tit {
  font-size: max(18px, 0.28rem);
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.inner-s11 .item .hide p {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.inner-s11 .item .hide .btns {
  margin-top: 0.3rem;
  display: flex;
}
.inner-s11 .item .hide .btns .link {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
}
.inner-s11 .item .hide .btns .link span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s11 .item .hide .btns .link:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s11 .item:hover .hide {
    opacity: 1;
  }
}

.inner-s12 {
  background-color: #f8f8f8;
}
.inner-s12 .flex {
  transform: translateY(-1rem);
  display: flex;
  grid-gap: 0.4rem;
}
.inner-s12 .left-block {
  width: calc(100% - 3.8rem);
}
.inner-s12 .top-block {
  background-color: #fff;
  border-radius: 5px;
  padding: 0.9rem 0.5rem;
}
.inner-s12 .top-block .para {
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 2;
}
.inner-s12 .top-block .para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s12 .top-block .btns {
  margin-top: 0.6rem;
  display: flex;
}
.inner-s12 .top-block .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.inner-s12 .top-block .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s12 .top-block .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s12 .top-block .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.inner-s12 .bot-block {
  margin-top: 0.2rem;
  background-color: #fff;
  padding: 0.3rem 0.5rem;
  border-top: 0.03rem solid #158fc2;
  box-shadow: 0 0 0.5rem rgba(195, 195, 195, 0.25);
  border-radius: 0 0 5px 5px;
}
.inner-s12 .bot-block a {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
  transition: color .3s ease;
}
.inner-s12 .bot-block a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .inner-s12 .bot-block a:hover {
    color: #158fc2;
  }
}
.inner-s12 .right-block {
  width: 3.4rem;
}
.inner-s12 .right-block .block {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0.5rem rgba(195, 195, 195, 0.25);
  padding: 0.3rem 0.2rem;
  margin-top: 0.3rem;
}
.inner-s12 .right-block .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s12 .right-block .label {
  margin: 0 -0.2rem;
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
}
.inner-s12 .right-block .label:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #158fc2;
}
.inner-s12 .right-block .label span {
  max-width: calc(100% - 0.24rem);
  font-size: max(18px, 0.26rem);
  color: #333333;
  font-weight: bold;
}
.inner-s12 .right-block .single-box {
  margin-top: 0.3rem;
}
.inner-s12 .right-block .single-box a {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.inner-s12 .right-block .single-box a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/project/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.inner-s12 .right-block .single-box .img-box {
  aspect-ratio: 296 / 196;
}
.inner-s12 .right-block .single-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s12 .right-block .single-box .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem 0.1rem;
  z-index: 3;
}
.inner-s12 .right-block .single-box .tit {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  text-align: center;
}
@media (any-hover: hover) {
  .inner-s12 .right-block .single-box:hover img {
    transform: scale(1.05);
  }
}
.inner-s12 .right-block .list-box {
  margin-top: 0.2rem;
}
.inner-s12 .right-block .list-box a {
  display: flex;
  align-items: center;
  grid-gap: 0.15rem;
  padding: 0.2rem 0;
  border-bottom: 1px dashed #d5d5d5;
}
.inner-s12 .right-block .list-box a:last-of-type {
  border: none;
}
.inner-s12 .right-block .list-box a:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #cccccc;
}
.inner-s12 .right-block .list-box a span {
  max-width: calc(100% - 0.22rem);
  font-size: max(13px, 0.16rem);
  color: #555555;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s12 .right-block .list-box a:hover span {
    color: #158fc2;
  }
}
.inner-s12 .right-block .item {
  border-bottom: 1px dashed #d5d5d5;
}
.inner-s12 .right-block .item:last-of-type {
  border: none;
}
.inner-s12 .right-block .item a {
  position: relative;
  display: block;
  padding: 0.2rem 0;
  overflow: hidden;
  transition: height .5s ease;
}
.inner-s12 .right-block .item .show {
  display: flex;
  align-items: center;
  grid-gap: 0.15rem;
}
.inner-s12 .right-block .item .show:last-of-type {
  border: none;
}
.inner-s12 .right-block .item .show:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #cccccc;
}
.inner-s12 .right-block .item .show span {
  max-width: calc(100% - 0.22rem);
  font-size: max(13px, 0.16rem);
  color: #555555;
  transition: color .3s ease;
}
.inner-s12 .right-block .item .hide {
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 0.2rem;
  height: 1.96rem;
  opacity: 0;
}
.inner-s12 .right-block .item .hide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/project/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.inner-s12 .right-block .item .hide .img-box {
  height: 1.96rem;
}
.inner-s12 .right-block .item .hide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s12 .right-block .item .hide .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem 0.1rem;
  z-index: 3;
}
.inner-s12 .right-block .item .hide .tit {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s12 .right-block .item.active a {
  height: 2.36rem !important;
}
.inner-s12 .right-block .item.active .show {
  opacity: 0;
}
.inner-s12 .right-block .item.active .hide {
  opacity: 1;
}

.inner-s13 {
  padding: 1.2rem 0;
  background: url("../images/product/img-1.png") center top no-repeat;
  background-size: 100% auto;
}
.inner-s13 .c-label .label {
  text-align: left;
}
.inner-s13 .link-box {
  margin-top: 0.24rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e5e5e5;
}
.inner-s13 .link-box .sw {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 0.36rem;
  grid-row-gap: 0.1rem;
}
.inner-s13 .link-box a.all {
  background-color: #fff;
  line-height: 0.4rem;
  padding: 0 0.3rem;
  border-radius: 0.25rem;
  font-size: max(13px, 0.16rem);
  color: #444444;
  transition: all .3s ease;
}
.inner-s13 .link-box a.all sup {
  font-size: 12px;
}
.inner-s13 .link-box a.all.active {
  background-color: #158fc2;
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s13 .link-box a.all:hover {
    background-color: #158fc2;
    color: #fff;
  }
}
.inner-s13 .link-box a.link {
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 0.44rem;
  transition: color .3s ease;
}
.inner-s13 .link-box a.link.active {
  color: #158fc2;
}
@media (any-hover: hover) {
  .inner-s13 .link-box a.link:hover {
    color: #158fc2;
  }
}
.inner-s13 .items {
  margin: 0.6rem 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.3rem;
}
.inner-s13 .item {
  width: calc((100% - 0.3rem) / 2);
  border-radius: 0.1rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all .3s ease;
}
.inner-s13 .item a {
  display: block;
  height: 100%;
}
.inner-s13 .item .img-box {
  aspect-ratio: 785 / 420;
  position: relative;
  overflow: hidden;
}
.inner-s13 .item .img-box:after {
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid #158fc2;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.1rem 0.1rem 0 0;
  opacity: 0;
  z-index: 2;
  transition: opacity .3s ease;
}
.inner-s13 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s13 .item .txt-box {
  height: max(70px, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s13 .item span {
  font-size: max(15px, 0.2rem);
  color: #333333;
  text-align: center;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s13 .item:hover {
    background-color: #158fc2;
  }
  .inner-s13 .item:hover .img-box:after {
    opacity: 1;
  }
  .inner-s13 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s13 .item:hover span {
    color: #fff;
  }
}

.inner-s14 {
  padding: 0 0 1.2rem;
  background-color: #f8f8f8;
}
.inner-s14 .cont-block {
  margin-top: -1rem;
}
.inner-s14 .block {
  padding: 0.5rem 0.7rem;
  background-color: #fff;
}
.inner-s14 .block:nth-of-type(1) {
  margin-top: 0;
  border-radius: 0.1rem 0.1rem 0 0;
}
.inner-s14 .block:last-of-type {
  border-radius: 0 0 0.1rem 0.1rem;
}
.inner-s14 .block .label {
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.inner-s14 .block .label:before {
  content: '';
  width: 0.04rem;
  height: 0.2rem;
  background-color: #158fc2;
}
.inner-s14 .block .label span {
  font-size: max(18px, 0.24rem);
  color: #111111;
  font-weight: bold;
}
.inner-s14 .block .para {
  margin: 0.1rem 0 0 0.14rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 2;
}
.inner-s14 .block .btns {
  margin: 0.3rem 0 0 0.14rem;
  display: flex;
}
.inner-s14 .block .btns a {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.inner-s14 .block .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s14 .block .btns a:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s14 .block .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
.inner-s14 .cont-1 {
  display: flex;
  align-items: center;
  grid-gap: 0.6rem;
}
.inner-s14 .cont-1 .img-box {
  width: 4rem;
  aspect-ratio: 400 / 248;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.inner-s14 .cont-1 .img-box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.inner-s14 .cont-1 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s14 .cont-1 .img-box .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.84rem;
  height: 0.84rem;
  margin: -0.422rem 0 0 -0.42rem;
  z-index: 3;
  cursor: pointer;
}
.inner-s14 .cont-1 .img-box .video-btn: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/product/icon-1-1.png");
  animation: o-rotate 5s linear infinite;
}
.inner-s14 .cont-1 .img-box .video-btn:after {
  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/product/icon-1-2.png");
}
.inner-s14 .cont-1 .txt-box {
  width: calc(100% - 4.6rem);
}
.inner-s14 .cont-2 .items {
  margin: 0.2rem 0 0 0.14rem;
  padding-top: 0.3rem;
  border-top: 1px solid #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s14 .cont-2 .item {
  width: calc((100% - 0.6rem) / 4);
}
.inner-s14 .cont-2 .item a {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.inner-s14 .cont-2 .item a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/product/img-5.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.inner-s14 .cont-2 .item .img-box {
  aspect-ratio: 352 / 233;
}
.inner-s14 .cont-2 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s14 .cont-2 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s14 .cont-2 .item .txt-box span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  text-align: center;
}
@media (any-hover: hover) {
  .inner-s14 .cont-2 .item:hover img {
    transform: scale(1.05);
  }
}
.inner-s14 .cont-4 .items {
  margin: 0.3rem 0 0 0.14rem;
}
.inner-s14 .cont-4 .item {
  margin-top: 0.1rem;
}
.inner-s14 .cont-4 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s14 .cont-4 .item a {
  display: flex;
  align-items: center;
  padding: 0.15rem 0.35rem;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: all .3s ease;
}
.inner-s14 .cont-4 .item a:before {
  content: '';
  width: 0.24rem;
  height: 0.27rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/tech/icon-4-4.svg");
  transition: all .3s ease;
}
.inner-s14 .cont-4 .item a:after {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/tech/icon-5-4.svg");
  transition: all .3s ease;
}
.inner-s14 .cont-4 .item a i {
  width: 1px;
  height: 0.18rem;
  background-color: #e8e8e8;
  margin-left: 0.4rem;
}
.inner-s14 .cont-4 .item a span {
  width: calc(100% - 0.84rem - 2px);
  padding-left: 0.4rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s14 .cont-4 .item a:hover {
    border-color: #158fc2;
  }
  .inner-s14 .cont-4 .item a:hover:before {
    background-image: url("../images/tech/icon-4-3.svg");
  }
  .inner-s14 .cont-4 .item a:hover:after {
    background-image: url("../images/tech/icon-5-3.svg");
  }
  .inner-s14 .cont-4 .item a:hover span {
    color: #158fc2;
  }
}
.inner-s14 .cont-5 .items {
  margin-left: 0.14rem;
}
.inner-s14 .cont-5 .swiper {
  margin: 0 -0.12rem;
  padding: 0.3rem 0.12rem 0.5rem;
}
.inner-s14 .cont-5 .item {
  width: calc((100% - 0.6rem) / 4);
  height: auto;
  margin-right: 0.2rem;
}
.inner-s14 .cont-5 .item:last-of-type {
  margin-right: 0;
}
.inner-s14 .cont-5 .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.12rem rgba(0, 0, 0, 0.05);
}
.inner-s14 .cont-5 .item .img-box {
  aspect-ratio: 511 / 272;
  overflow: hidden;
}
.inner-s14 .cont-5 .item img {
  display: block;
  width: 100%;
  height: 102%;
  object-fit: cover;
  transition: transform .3s ease;
  will-change: transform;
}
.inner-s14 .cont-5 .item .txt-box {
  padding: 0.24rem;
}
.inner-s14 .cont-5 .item .txt-box .tit {
  font-size: max(13px, 0.16rem);
  color: #333333;
}
.inner-s14 .cont-5 .item .txt-box .tips {
  font-size: max(12px, 0.14rem);
  color: #333333;
  margin-top: 0.1rem;
}
@media (any-hover: hover) {
  .inner-s14 .cont-5 .item:hover img {
    transform: scale(1.05);
  }
}
.inner-s14 .cont-5 .swiper-horizontal > .swiper-scrollbar {
  width: 90%;
  margin: 0 auto;
  height: 1px;
  background-color: #e5e5e5;
  left: 0;
  right: 0;
  bottom: 1px;
  border-radius: 0;
}
.inner-s14 .cont-5 .swiper-scrollbar-drag {
  height: 2px;
  top: -1px;
  background-color: #158fc2;
  cursor: pointer;
  border-radius: 2px;
}
.inner-s14 .bot-block {
  margin-top: 0.2rem;
  background-color: #fff;
  padding: 0.3rem 0.5rem;
  border-top: 0.03rem solid #158fc2;
  box-shadow: 0 0 0.5rem rgba(195, 195, 195, 0.25);
  border-radius: 0 0 5px 5px;
  padding-right: 3.6rem;
  position: relative;
}
.inner-s14 .bot-block a.link {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #333333;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s14 .bot-block a.link:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .inner-s14 .bot-block a.link:hover {
    color: #158fc2;
  }
}
.inner-s14 .bot-block a.btns {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: max(120px, 1.4rem);
  height: max(40px, 0.5rem);
  border-radius: 2px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.12rem;
  transition: all .3s ease;
}
.inner-s14 .bot-block a.btns span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s14 .bot-block a.btns:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s14 .bot-block a.btns:hover {
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}

.inner-s15 {
  height: max(35px, 0.5rem);
}
.inner-s15 .flex {
  height: max(70px, 1rem);
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.4rem rgba(203, 203, 203, 0.35);
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s15 .left-box {
  display: flex;
  grid-gap: 0.8rem;
}
.inner-s15 .left-box a {
  position: relative;
  line-height: max(70px, 1rem);
  font-size: max(13px, 0.16rem);
  color: #010101;
  transition: color .3s ease;
}
.inner-s15 .left-box a:after {
  content: '';
  width: 100%;
  height: 4px;
  background-color: #158fc2;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease;
}
.inner-s15 .left-box a.active {
  color: #158fc2;
}
.inner-s15 .left-box a.active:after {
  opacity: 1;
  transform: scale(1);
}
@media (any-hover: hover) {
  .inner-s15 .left-box a:hover {
    color: #158fc2;
  }
  .inner-s15 .left-box a:hover:after {
    opacity: 1;
    transform: scale(1);
  }
}
.inner-s15 .right-box {
  display: flex;
  align-items: center;
  grid-gap: 45px;
}
.inner-s15 .right-box a.home {
  position: relative;
  width: 0.18rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home-1.svg");
}
.inner-s15 .right-box a.home:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.inner-s15 .right-box a.link {
  position: relative;
  font-size: max(12px, 0.16rem);
  color: #010101;
  line-height: 0.8rem;
}
.inner-s15 .right-box a.link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.inner-s15 .right-box span {
  font-size: max(12px, 0.16rem);
  color: #010101;
  line-height: 0.8rem;
}

.inner-s16 {
  padding: 0 0 1.2rem;
}
.inner-s16 .items {
  margin-bottom: 0.7rem;
}
.inner-s16 .item {
  position: relative;
}
.inner-s16 .item:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #158fc2;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left top;
}
.inner-s16 .item a {
  display: flex;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.inner-s16 .item .img-box {
  order: 2;
  width: 5.48rem;
  aspect-ratio: 548 / 338;
  border-radius: 0.1rem;
  overflow: hidden;
}
.inner-s16 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s16 .item .txt-box {
  width: calc(100% - 5.48rem);
  padding-right: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.inner-s16 .item .date {
  display: flex;
  align-items: center;
  grid-gap: 0.1rem;
}
.inner-s16 .item .date: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/news/icon-1.svg");
}
.inner-s16 .item .date span {
  font-size: max(13px, 0.16rem);
  color: #333333;
}
.inner-s16 .item .tit {
  margin-top: 0.3rem;
  font-size: 0.3rem;
  font-weight: bold;
  transition: color .3s ease;
}
.inner-s16 .item p {
  margin-top: 0.4rem;
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s16 .item .btns {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
}
.inner-s16 .item .btns .link {
  width: max(120px, 1.5rem);
  height: max(40px, 0.48rem);
  border-radius: 3px;
  background-color: #158fc2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.14rem;
  transition: all .3s ease;
}
.inner-s16 .item .btns .link span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s16 .item .btns .link:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-2.png");
}
@media (any-hover: hover) {
  .inner-s16 .item .btns .link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(21, 143, 194, 0.3);
  }
}
@media (any-hover: hover) {
  .inner-s16 .item:hover:after {
    transform: scaleX(1);
    transition: transform .6s ease;
  }
  .inner-s16 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s16 .item:hover .tit {
    color: #158fc2;
  }
}

.inner-s17 {
  background-color: #f4f4f4;
  padding: 0.4rem 0 1.2rem;
}
.inner-s17 .flex {
  display: flex;
  grid-gap: 0.4rem;
}
.inner-s17 .left-block {
  width: calc(100% - 3.8rem);
}
.inner-s17 .top-block {
  background-color: #fff;
  border-radius: 5px;
}
.inner-s17 .top-box {
  padding: 0.6rem 0.5rem;
  border-bottom: 2px solid #f3f3f3;
}
.inner-s17 .top-box .tit {
  font-size: 0.4rem;
  color: #333333;
  font-weight: bold;
}
.inner-s17 .top-box .ope {
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-s17 .top-box .ope .l-box {
  display: flex;
  grid-gap: 0.2rem;
}
.inner-s17 .top-box .ope span {
  display: inline-block;
  vertical-align: top;
  font-size: max(13px, 0.16rem);
  color: #666666;
}
.inner-s17 .top-box .ope .share a {
  display: inline-block;
  vertical-align: top;
  margin-left: 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .3s ease;
}
.inner-s17 .top-box .ope .share a:nth-of-type(1) {
  margin-left: 0;
}
.inner-s17 .top-box .ope .share a.wechat {
  width: 24px;
  height: 19px;
  background-image: url("../images/news/share-1-1.png");
}
@media (any-hover: hover) {
  .inner-s17 .top-box .ope .share a.wechat:hover {
    background-image: url("../images/news/share-1-2.png");
  }
}
.inner-s17 .top-box .ope .share a.sina {
  width: 24px;
  height: 19px;
  background-image: url("../images/news/share-2-1.png");
}
@media (any-hover: hover) {
  .inner-s17 .top-box .ope .share a.sina:hover {
    background-image: url("../images/news/share-2-2.png");
  }
}
.inner-s17 .box-box {
  padding: 0.6rem 0.5rem;
}
.inner-s17 .box-box .para {
  font-size: max(13px, 0.16rem);
  color: #666666;
  line-height: 2;
}
.inner-s17 .box-box .para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s17 .bot-block {
  margin-top: 0.2rem;
  background-color: #fff;
  padding: 0.3rem 0.5rem;
  border-top: 0.03rem solid #158fc2;
  box-shadow: 0 0 0.5rem rgba(195, 195, 195, 0.25);
  border-radius: 0 0 5px 5px;
  padding-right: 3.6rem;
  position: relative;
}
.inner-s17 .bot-block a.link {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #333333;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s17 .bot-block a.link:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .inner-s17 .bot-block a.link:hover {
    color: #158fc2;
  }
}
.inner-s17 .bot-block a.back {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: max(120px, 1.4rem);
  height: max(40px, 0.5rem);
  border-radius: 2px;
  background-color: #6a778a;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.12rem;
  transition: all .3s ease;
}
.inner-s17 .bot-block a.back:before {
  content: '';
  width: 0.25rem;
  height: 0.22rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.png");
}
.inner-s17 .bot-block a.back span {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s17 .bot-block a.back:hover {
    background-color: #158fc2;
  }
}
.inner-s17 .right-block {
  width: 3.4rem;
}
.inner-s17 .right-block .block {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0.5rem rgba(195, 195, 195, 0.25);
  padding: 0.3rem 0.2rem;
  margin-top: 0.3rem;
}
.inner-s17 .right-block .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s17 .right-block .label {
  margin: 0 -0.2rem;
  display: flex;
  align-items: center;
  grid-gap: 0.2rem;
}
.inner-s17 .right-block .label:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #158fc2;
}
.inner-s17 .right-block .label span {
  max-width: calc(100% - 0.24rem);
  font-size: max(18px, 0.26rem);
  color: #333333;
  font-weight: bold;
}
.inner-s17 .right-block .single-box {
  margin-top: 0.3rem;
}
.inner-s17 .right-block .single-box a {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.inner-s17 .right-block .single-box a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/project/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.inner-s17 .right-block .single-box .img-box {
  aspect-ratio: 296 / 196;
}
.inner-s17 .right-block .single-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s17 .right-block .single-box .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem 0.1rem;
  z-index: 3;
}
.inner-s17 .right-block .single-box .tit {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  text-align: center;
}
@media (any-hover: hover) {
  .inner-s17 .right-block .single-box:hover img {
    transform: scale(1.05);
  }
}
.inner-s17 .right-block .list-box {
  margin-top: 0.2rem;
}
.inner-s17 .right-block .list-box a {
  display: flex;
  align-items: center;
  grid-gap: 0.15rem;
  padding: 0.2rem 0;
  border-bottom: 1px dashed #d5d5d5;
}
.inner-s17 .right-block .list-box a:last-of-type {
  border: none;
}
.inner-s17 .right-block .list-box a:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #cccccc;
}
.inner-s17 .right-block .list-box a span {
  max-width: calc(100% - 0.22rem);
  font-size: max(13px, 0.16rem);
  color: #555555;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s17 .right-block .list-box a:hover span {
    color: #158fc2;
  }
}
.inner-s17 .right-block .item {
  border-bottom: 1px dashed #d5d5d5;
}
.inner-s17 .right-block .item:last-of-type {
  border: none;
}
.inner-s17 .right-block .item a {
  position: relative;
  display: block;
  padding: 0.2rem 0;
  overflow: hidden;
  transition: height .5s ease;
}
.inner-s17 .right-block .item .show {
  display: flex;
  align-items: center;
  grid-gap: 0.15rem;
}
.inner-s17 .right-block .item .show:last-of-type {
  border: none;
}
.inner-s17 .right-block .item .show:before {
  content: '';
  width: 0.06rem;
  height: 0.06rem;
  background-color: #cccccc;
}
.inner-s17 .right-block .item .show span {
  max-width: calc(100% - 0.22rem);
  font-size: max(13px, 0.16rem);
  color: #555555;
  transition: color .3s ease;
}
.inner-s17 .right-block .item .hide {
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 0.2rem;
  height: 1.96rem;
  opacity: 0;
}
.inner-s17 .right-block .item .hide:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/project/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
  z-index: 2;
}
.inner-s17 .right-block .item .hide .img-box {
  height: 1.96rem;
}
.inner-s17 .right-block .item .hide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s17 .right-block .item .hide .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.2rem 0.1rem;
  z-index: 3;
}
.inner-s17 .right-block .item .hide .tit {
  font-size: max(13px, 0.16rem);
  color: #ffffff;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s17 .right-block .item.active a {
  height: 2.36rem !important;
}
.inner-s17 .right-block .item.active .show {
  opacity: 0;
}
.inner-s17 .right-block .item.active .hide {
  opacity: 1;
}

.inner-s18 .cont-block {
  margin-top: -1.7rem;
  background-color: #fff;
  border-radius: 0.1rem;
  padding: 0.6rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
}
.inner-s18 .icon {
  width: 0.78rem;
  height: 0.64rem;
  margin: 0 auto 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/icon-1.png");
}
.inner-s18 .para {
  margin-top: 0.3rem;
  font-size: max(15px, 0.2rem);
  color: #696969;
  line-height: 1.5;
  text-align: center;
}
.inner-s18 .para span {
  color: #158fc2;
}
.inner-s18 .para p {
  margin-top: 0.15rem;
}
.inner-s18 .para p:nth-of-type(1) {
  margin-top: 0;
}

.inner-s19 {
  padding: 0.8rem 0;
}
.inner-s19 .cont-block {
  width: 82%;
  margin: 0 auto;
}
.inner-s19 .items {
  display: grid;
  grid-gap: 0.24rem;
  grid-template-columns: repeat(3, calc((100% - 0.48rem) / 3));
  grid-template-rows: repeat(2, calc((100% - 0.24rem) / 2));
}
.inner-s19 .item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.inner-s19 .item .img-box {
  aspect-ratio: 423 / 308;
}
.inner-s19 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.inner-s19 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.3rem;
}
.inner-s19 .item .txt-box span {
  font-size: max(16px, 0.22rem);
  color: #ffffff;
}
.inner-s19 .item:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}
.inner-s19 .item:nth-of-type(2) .img-box {
  aspect-ratio: auto;
  height: 100%;
}
@media (any-hover: hover) {
  .inner-s19 .item:hover img {
    transform: scale(1.05);
  }
}

.inner-s20 {
  padding: 1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
}
.inner-s20 .tab-cont {
  margin-top: 0.4rem;
}
.inner-s20 .tab-cont .child {
  display: none;
}
.inner-s20 .tab-cont .child.active {
  display: block;
}
.inner-s20 .tab-cont .child.active .year, .inner-s20 .tab-cont .child.active .para {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s20 .tab-cont .child.active .para {
  animation-delay: .15s;
}
.inner-s20 .tab-cont .year {
  font-size: 1.8rem;
  color: #158fc2;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  opacity: 0;
}
.inner-s20 .tab-cont .para {
  width: 75%;
  margin: 0.2rem auto 0;
  font-size: max(13px, 0.16rem);
  color: #696969;
  line-height: 1.5;
  text-align: center;
  height: max(63px, 0.8rem);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
}
.inner-s20 .tab-cont .para span {
  font-family: inherit !important;
  font-size: inherit !important;
}
.inner-s20 .bot-block {
  margin-top: 0.24rem;
  position: relative;
  padding: 0 90px;
}
.inner-s20 .bot-block .swiper {
  padding-top: 17px;
}
.inner-s20 .bot-block .swiper:before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #c8ccd1;
  position: absolute;
  top: 21px;
  left: 0;
}
.inner-s20 .bot-block .item {
  width: 20%;
  cursor: pointer;
}
.inner-s20 .bot-block .item:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b8b8b8;
  display: block;
  margin: 0 auto;
  transition: all .3s ease;
}
.inner-s20 .bot-block .item span {
  display: block;
  font-size: max(16px, 0.18rem);
  color: #b8b8b8;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  transition: color .3s ease;
}
.inner-s20 .bot-block .item.active:before {
  background-color: #158fc2;
}
.inner-s20 .bot-block .item.active span {
  color: #158fc2;
}
.inner-s20 .button {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 0;
  border-radius: 50%;
  background-color: #8bc7e1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 2;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s20 .button:hover {
    background-color: #158fc2;
  }
}
.inner-s20 .prev {
  left: 0;
  background-image: url("../images/about/prev.png");
}
.inner-s20 .next {
  right: 0;
  background-image: url("../images/about/next.png");
}

.inner-s21 {
  padding: 1.2rem 0 0.8rem;
}
.inner-s21 .items {
  position: relative;
}
.inner-s21 .swiper {
  padding: 0.4rem 0;
}
.inner-s21 .item {
  width: 3.6rem;
}
.inner-s21 .item .box {
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s21 .item .img-box {
  aspect-ratio: 36 / 50;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
}
.inner-s21 .item .img-box img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s21 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #333333;
  text-align: center;
  font-weight: bold;
  margin-top: 0.1rem;
}
.inner-s21 .item.swiper-slide-visible .box {
  opacity: .5;
}
.inner-s21 .item.swiper-slide-active .box {
  opacity: 1;
}
.inner-s21 .button {
  width: 46px;
  height: 46px;
  position: absolute;
  top: calc(50% - 23px);
  border-radius: 50%;
  background-color: #8bc7e1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 2;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s21 .button:hover {
    background-color: #158fc2;
  }
}
.inner-s21 .prev {
  left: 0;
  background-image: url("../images/about/prev.png");
}
.inner-s21 .next {
  right: 0;
  background-image: url("../images/about/next.png");
}

.inner-s22 {
  position: relative;
  overflow: hidden;
}
.inner-s22 .c-label .label {
  color: #fff;
  display: none;
}
.inner-s22 .txt-box {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
}
.inner-s22 .img-box {
  height: 41.66vw;
  position: relative;
}
.inner-s22 .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s22 .img-box .ani-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-s22 .img-box .ani-box img {
  opacity: 0;
  animation: o-scale2 6s linear infinite 0s;
}
.inner-s22 .img-box .ani-box img:nth-of-type(2) {
  animation-delay: 1s;
}
.inner-s22 .img-box .ani-box img:nth-of-type(3) {
  animation-delay: 2s;
}
.inner-s22 .img-box .ani-box img:nth-of-type(4) {
  animation-delay: 3s;
}
.inner-s22 .img-box .ani-box img:nth-of-type(5) {
  animation-delay: 4s;
}
.inner-s22 .img-box .ani-box img:nth-of-type(6) {
  animation-delay: 5s;
}

.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: calc(100% - 0.8rem);
  height: 100%;
  padding: 0 0.3rem;
  font-size: max(13px, 0.16rem);
  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-2.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: #158fc2;
}
.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: #158fc2;
  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: #158fc2;
  font-weight: 400;
}
.search-s2 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #333;
  font-weight: 500;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .search-s2 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
  .search-s2 .item:hover .tit {
    color: #158fc2;
  }
}

.other-s2 {
  background-image: linear-gradient(180deg, #fff, #f8f8f8);
}
.other-s2 .flex {
  display: flex;
}
.other-s2 .left-box {
  width: 3.7rem;
  padding: 1.2rem 0.3rem 1.2rem 0;
}
.other-s2 .sticky {
  position: sticky;
  top: calc(1rem + 20px);
}
.other-s2 .position span {
  display: block;
  font-size: max(14px, 0.16rem);
  color: #333;
  border-radius: 5px;
  padding: 0.16rem 0.2rem;
  position: relative;
  cursor: pointer;
  transition: all .3s ease;
}
.other-s2 .position span.active {
  background-color: #eeeeee;
}
.other-s2 .right-box {
  width: calc(100% - 3.7rem);
  padding: 1.2rem 0;
  border-left: 1px solid #eeeeee;
  padding-left: 0.6rem;
}
.other-s2 .right-box .block {
  margin-top: 0.6rem;
}
.other-s2 .right-box .block:nth-of-type(1) {
  margin-top: 0;
}
.other-s2 .right-box .tit {
  font-size: 0.32rem;
  color: #333;
  padding-left: 0.3rem;
  position: relative;
}
.other-s2 .right-box .tit:before {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #158fc2;
}
.other-s2 .right-box .para {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid #eeeeee;
  font-size: max(13px, 0.16rem);
  color: #333;
  line-height: 2;
}
.other-s2 .right-box .para span {
  display: block;
  color: #158fc2;
}
.other-s2 .right-box .para.nomt {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.other-s2 .right-box .para.mb {
  margin-bottom: 0.6rem;
}
.other-s2 .right-box .para.gray {
  color: #333;
}
.other-s2 .right-box.style .tit {
  padding-left: 0;
}
.other-s2 .right-box.style .tit:before {
  display: none;
}
.other-s2 .right-box.style .tit:after {
  content: '';
  width: 1.2rem;
  height: 1px;
  position: absolute;
  bottom: calc(-0.3rem - 1px);
  left: 0;
  background-color: #158fc2;
}

/*add*/
.inner-s14 .block .para h3 {
  font-size: max(18px, 0.24rem);
  font-weight: bold;
}

.inner-s17 .box-box .para h4 {
  font-size: max(18px, 0.24rem);
  color: #158fc3;
  font-weight: bold;
}

.inner-s14 .block .para video, .inner-s17 .box-box .para video {
  display: block;
  max-width: 100%;
  margin: 0px auto;
  background: #000;
  height: auto;
  aspect-ratio: 16/9;
}

.inner-s14 .block .para img, .inner-s17 .block .para img {
  width: auto;
  max-width: 100% !important;
  height: auto !important;
}

@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-s3 .item .block {
    width: calc(43vw - 1.6rem);
  }

  .inner-s5 .swiper {
    margin: 0 calc(-7vw - 2.6rem);
    padding: 0 7vw;
  }
}
@media screen and (max-width: 1441px) {
  .inner-s12 .left-block {
    width: calc(100% - 260px - 0.4rem);
  }

  .inner-s12 .right-block {
    width: 260px;
  }

  .inner-s17 .left-block {
    width: calc(100% - 260px - 0.4rem);
  }

  .inner-s17 .right-block {
    width: 260px;
  }

  .index-s3 .swiper {
    padding: 0 calc(50vw - 18vw);
  }

  .index-s3 .prev {
    left: calc(50vw - 18vw);
  }

  .index-s3 .next {
    right: calc(50vw - 18vw);
  }

  .index-s4 .data {
    height: 3rem;
  }

  .index-s6 .bot-block {
    margin-top: 0.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .header ul {
    grid-gap: 0.26rem;
  }
}
@media screen and (max-width: 1025px) {
  .header {
    height: 60px;
    background-color: #ffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .header .wrap-s {
    height: 100%;
  }
  .header .logo {
    width: 180px;
  }
  .header .logo img.show {
    opacity: 0;
  }
  .header .logo img.hide {
    opacity: 1;
  }
  .header .ope {
    padding-top: 0;
    margin-right: 40px;
  }
  .header .ope i {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .header a.tel {
    display: none;
  }
  .header a.lang {
    color: #333333;
  }
  .header .search-btn {
    background-image: url("../images/search-2.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;
    opacity: 1;
    pointer-events: auto;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header ul.active {
    left: 0;
  }
  .header li {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
  }
  .header li a.single {
    display: inline-block;
    line-height: 50px;
    color: #000;
    z-index: 2;
  }
  .header li a.single:after {
    display: none;
  }
  .header li em {
    width: 100%;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-image: url("../images/icon-1-1.svg");
    background-size: auto 10px;
    z-index: 1;
  }
  .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;
  }

  .fixed-search .top-box .close {
    right: 4vw;
  }

  .footer .top-block {
    padding: 30px 0;
  }

  .footer .info-box {
    margin-top: 20px;
  }

  .footer .fdship {
    margin-top: 20px;
  }

  .footer .top-block .box {
    display: none;
  }

  .footer .bot-block {
    padding: 24px 0;
  }

  .footer .bot-block .wrap-s {
    display: block;
  }

  .footer .copyright {
    text-align: center;
  }

  .footer .bot-block .link {
    margin-top: 10px;
    justify-content: center;
  }

  .fixed-joinpop .block {
    max-height: calc(70vh - 3rem);
  }

  .fixed-joinpop .top-block .tit {
    font-size: 18px;
  }

  .c-crumbs {
    display: none;
  }

  .c-banner {
    margin-top: 0;
  }

  .c-banner .img-box {
    aspect-ratio: 10 / 6;
  }

  .c-banner.pb .txt-box {
    padding-bottom: 0;
  }

  .c-banner.pb-1 .img-box {
    aspect-ratio: 1 / 1;
  }

  .c-banner.pb-1 .txt-box {
    padding-bottom: 0;
  }

  .c-banner .txt-box .para {
    width: 100%;
  }

  .inner-s1 .items {
    grid-gap: 0.2rem;
  }

  .inner-s1 .item {
    width: calc((100% - 0.4rem) / 3);
  }

  .inner-s1 .item .txt-box {
    padding: 0.7rem 20px 0.8rem;
  }

  .inner-s1 .item .icon {
    left: 20px;
  }

  .inner-s1 .item .tips {
    left: 20px;
    right: 20px;
  }

  .inner-s1 .map-box {
    height: 60vw;
  }

  .inner-s1 .map-box img {
    width: 300%;
    margin-left: -135%;
    object-position: center 60%;
  }

  .inner-s2 .form .box {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s3 {
    display: block;
  }

  .inner-s3 .item .txt-box {
    padding: 0 7vw !important;
  }

  .inner-s3 .item .img-box {
    height: 5rem;
  }

  .inner-s3 .item .block {
    width: 100%;
    max-width: 100%;
  }

  .inner-s4 .left-box {
    display: none;
  }

  .inner-s4 .right-box {
    width: 100%;
    padding: 0;
  }

  .inner-s4 .item.active .img-box {
    display: block;
    animation: o-upfade-top 0.7s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .inner-s5 .item {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s5 .button {
    display: none;
  }

  .inner-s5 .pagination {
    margin-top: 0.4rem;
    display: flex;
    justify-content: center;
    grid-gap: 0.1rem;
  }
  .inner-s5 .pagination span {
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    background-color: #158fc2;
    opacity: 0.3;
    cursor: pointer;
    transition: all .3s ease;
  }
  .inner-s5 .pagination span.active {
    opacity: 1;
  }

  .inner-s6:before {
    height: 6rem;
  }

  .inner-s6 .item {
    width: calc((100% - 0.36rem) / 2);
  }

  .inner-s8 {
    padding: 1.2rem 0;
  }

  .inner-s8 .items {
    transform: none;
    margin-top: 20px;
  }

  .inner-s8 .item p {
    opacity: 1;
    color: #666;
    position: static;
    margin-top: 0.1rem;
  }

  .inner-s8 .item .img-box {
    display: none;
  }

  .inner-s8 .item .txt-box {
    position: static;
    padding: 24px;
  }

  .inner-s8 .item .box {
    margin-top: 15px;
  }

  .inner-s9 {
    padding: 1.2rem 0;
  }

  .inner-s10 .form .box {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s11 .item {
    width: calc((100% - 0.4rem) / 2);
  }

  .inner-s11 .item .hide {
    display: none;
  }

  .inner-s12 {
    padding: 1rem 0;
  }

  .inner-s12 .flex {
    transform: none;
    display: block;
  }

  .inner-s12 .left-block {
    width: 100%;
  }

  .inner-s12 .right-block {
    width: 100%;
    margin-top: 50px;
  }

  .inner-s12 .right-block .item .hide {
    display: none;
  }

  .inner-s14 {
    padding: 1.2rem 0;
  }

  .inner-s14 .cont-block {
    margin-top: 0;
  }

  .inner-s14 .cont-2 .item {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s14 .cont-5 .item {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s14 .bot-block {
    padding: 0.3rem 0.5rem;
  }

  .inner-s14 .bot-block a.btns {
    position: static;
    transform: none;
    margin-top: 0.1rem;
  }

  .inner-s15 {
    height: auto;
    padding-top: 20px;
  }

  .inner-s15 .flex {
    height: 60px;
    transform: none;
    justify-content: center;
  }

  .inner-s15 .left-box {
    grid-gap: 20px;
  }

  .inner-s15 .left-box a {
    line-height: 60px;
  }

  .inner-s15 .right-box {
    display: none;
  }

  .inner-s16 .item .img-box {
    width: 35%;
  }

  .inner-s16 .item .txt-box {
    width: 65%;
    padding-right: 0.6rem;
  }

  .inner-s17 .top-box .ope .share {
    display: none;
  }

  .inner-s17 .flex {
    display: block;
  }

  .inner-s17 .left-block {
    width: 100%;
  }

  .inner-s17 .right-block {
    width: 100%;
    margin-top: 50px;
  }

  .inner-s17 .right-block .item .hide {
    display: none;
  }

  .inner-s17 .bot-block {
    padding: 0.3rem 0.5rem;
  }

  .inner-s17 .bot-block a.back {
    position: static;
    transform: none;
    margin-top: 0.1rem;
  }

  .inner-s18 {
    padding: 0.8rem 0 0;
  }

  .inner-s18 .cont-block {
    margin-top: 0;
  }

  .inner-s19 .cont-block {
    width: 100%;
  }

  .inner-s20 .bot-block {
    padding: 0;
  }

  .inner-s20 .button {
    display: none;
  }

  .inner-s21 .button {
    display: none;
  }

  .inner-s21 .pagination {
    margin-top: 0.4rem;
    display: flex;
    justify-content: center;
    grid-gap: 0.1rem;
  }
  .inner-s21 .pagination span {
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    background-color: #158fc2;
    opacity: 0.3;
    cursor: pointer;
    transition: all .3s ease;
  }
  .inner-s21 .pagination span.active {
    opacity: 1;
  }

  .other-s1 {
    margin-top: 0;
  }

  .other-s2 .flex {
    display: block;
  }

  .other-s2 .left-box {
    display: none;
  }

  .other-s2 .right-box {
    width: 100%;
    padding-left: 0;
    border: none;
  }

  .index-page {
    padding-top: 60px;
  }

  .index-s1 .item {
    height: 100vw;
  }

  .index-s1 .mouse {
    display: none;
  }

  .index-s2 {
    padding: 1.2rem 0;
    border-bottom: 4px solid #e6e6e6;
  }

  .index-s2 .num-block,
  .index-s2 .pic-block,
  .index-s2 .txt-block {
    display: none;
  }

  .index-s2 .m-block {
    display: block;
  }

  .index-s3 .cont-block {
    padding: 1.2rem 0;
  }

  .index-s3 .swiper {
    padding: 0 7vw;
  }

  .index-s3 .button {
    display: none;
  }

  .index-s3 .pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    grid-gap: 0.1rem;
  }
  .index-s3 .pagination span {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0.06rem;
    background-color: #158fc2;
    opacity: .2;
    cursor: pointer;
    transition: all .3s ease;
  }
  .index-s3 .pagination span.active {
    width: 0.3rem;
    opacity: 1;
  }

  .index-s4 .cont-block {
    padding: 1.2rem 0;
  }

  .index-s4 .block {
    display: block;
  }

  .index-s4 .txt-box {
    width: 100%;
    padding: 24px;
  }

  .index-s4 .data {
    height: 150px;
  }

  .index-s4 .data-box {
    width: 100%;
  }

  .index-s5 .cont-block {
    padding: 1.2rem 0;
  }

  .index-s5 .pagination {
    margin-top: 20px;
  }

  .index-s6 .cont-block {
    padding: 1.2rem 0;
  }

  .index-s6 .bot-block {
    display: block;
  }

  .index-s6 .left-box {
    width: 100%;
    display: none;
  }

  .index-s6 .center-box {
    width: 100%;
    display: none;
  }

  .index-s6 .right-box {
    width: 100%;
  }

  .index-s6 .btns {
    display: flex;
  }
}
@media screen and (max-width: 769px) {
  .inner-s1 .items {
    display: block;
  }

  .inner-s1 .item {
    width: 100%;
    margin-top: 30px;
  }
  .inner-s1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .inner-s8 .sw {
    flex-wrap: wrap;
  }

  .inner-s8 .item {
    width: 100%;
  }

  .inner-s9 .item a i {
    display: none;
  }

  .inner-s9 .item a span {
    width: calc(100% - 0.5rem);
    padding-left: 20px;
  }

  .inner-s14 .cont-1 {
    display: block;
  }

  .inner-s14 .cont-1 .img-box {
    width: 100%;
  }

  .inner-s14 .cont-1 .txt-box {
    width: 100%;
    margin-top: 20px;
  }

  .inner-s14 .cont-4 .item a i {
    display: none;
  }

  .inner-s14 .cont-4 .item a span {
    width: calc(100% - 0.44rem);
    padding-left: 20px;
  }

  .inner-s16 .item a {
    display: block;
  }

  .inner-s16 .item .img-box {
    width: 100%;
  }

  .inner-s16 .item .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }

  .inner-s16 .item .btns {
    display: none;
  }

  .other-s1 .item {
    display: block;
  }

  .other-s1 .item i {
    display: block;
    width: 100%;
  }

  .other-s1 .item .link {
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .footer .top-block .flex {
    flex-direction: column;
    align-items: center;
  }

  .footer .info {
    width: 100%;
    margin-top: 10px;
  }

  .c-banner.pb-1 .img-box {
    aspect-ratio: 1 / 1.6;
  }

  .c-banner .txt-box .tit {
    font-size: 20px;
  }

  .c-banner .txt-box .s-tit {
    font-size: 16px;
  }

  .c-banner .txt-box .para {
    font-size: 14px;
  }

  .c-label .label {
    font-size: 20px;
  }

  .c-label p {
    font-size: 14px;
  }

  .inner-s1 {
    padding: 50px 0;
  }

  .inner-s1 .map-box {
    margin-top: 30px;
  }

  .inner-s2 {
    padding: 50px 0;
  }

  .inner-s2 .form {
    margin-top: 20px;
  }

  .inner-s2 .form .box {
    width: 100% !important;
  }

  .inner-s4 {
    padding: 50px 0;
  }

  .inner-s5 {
    padding: 50px 0;
  }

  .inner-s5 .item {
    width: 100%;
  }

  .inner-s6 {
    padding: 50px 0;
  }

  .inner-s6 .item {
    width: 100%;
  }

  .inner-s6 .link {
    grid-gap: 10px;
    margin-top: 20px;
  }

  .inner-s6 .items {
    margin-top: 20px;
  }

  .inner-s7 {
    padding: 50px 0;
  }

  .inner-s8 {
    padding: 50px 0;
  }

  .inner-s9 {
    padding: 50px 0;
  }

  .inner-s9 .item a {
    padding: 15px;
  }

  .inner-s10 {
    padding: 50px 0;
  }

  .inner-s10 .form {
    margin-top: 20px;
  }

  .inner-s10 .form .box {
    width: 100% !important;
  }

  .inner-s11 {
    padding: 50px 0;
  }

  .inner-s11 .item {
    width: 100%;
  }

  .inner-s12 {
    padding: 50px 0;
  }

  .inner-s12 .top-block {
    padding: 20px;
  }

  .inner-s12 .bot-block {
    padding: 20px;
  }

  .inner-s13 {
    padding: 50px 0;
  }

  .inner-s13 .item {
    width: 100%;
  }

  .inner-s14 {
    padding: 50px 0;
  }

  .inner-s14 .block {
    padding: 20px;
  }

  .inner-s14 .cont-2 .item {
    width: 100%;
  }

  .inner-s14 .cont-4 .item a {
    padding: 15px;
  }

  .inner-s14 .cont-5 .item {
    width: 100%;
  }

  .inner-s14 .bot-block {
    padding: 20px;
  }

  .inner-s16 {
    padding: 0 0 50px;
  }

  .inner-s16 .item a {
    padding: 24px 0;
  }

  .inner-s17 {
    padding: 24px 0 50px;
  }

  .inner-s17 .top-box {
    padding: 20px;
  }

  .inner-s17 .top-box .tit {
    font-size: 20px;
  }

  .inner-s17 .box-box {
    padding: 20px;
  }

  .inner-s17 .bot-block {
    padding: 20px;
  }

  .inner-s18 {
    padding: 50px 0 0;
  }

  .inner-s18 .cont-block {
    padding: 24px;
  }

  .inner-s19 {
    padding: 50px 0;
  }

  .inner-s19 .items {
    grid-gap: 5px;
    grid-template-columns: repeat(3, calc((100% - 10px) / 3));
    grid-template-rows: repeat(2, calc((100% - 5px) / 2));
  }

  .inner-s19 .item .txt-box {
    padding: 10px;
  }

  .inner-s19 .item .txt-box span {
    font-size: 13px;
  }

  .inner-s20 {
    padding: 50px 0;
  }

  .inner-s20 .tab-cont .year {
    font-size: 80px;
  }

  .inner-s20 .tab-cont .para {
    width: 100%;
  }

  .inner-s20 .bot-block .item span {
    font-size: 14px;
  }

  .inner-s21 {
    padding: 50px 0;
  }

  .inner-s22 .txt-box {
    position: static;
  }

  .inner-s22 .c-label .label {
    color: #333;
    display: block;
  }

  .inner-s22 .img-box {
    margin-top: 20px;
  }

  .other-s1 {
    padding: 50px 0;
  }

  .other-s1 .item i {
    font-size: 20px;
  }

  .other-s1 .item .link a {
    min-width: calc(50% - 0.12rem);
  }

  .other-s2 .right-box {
    padding: 50px 0;
  }

  .other-s2 .right-box .tit {
    font-size: 18px;
  }

  .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;
  }

  .index-s1 .item .tit {
    font-size: 20px;
  }

  .index-s1 .item p {
    font-size: 14px;
  }

  .index-s2 {
    padding: 50px 0;
  }

  .index-s3 .cont-block {
    padding: 50px 0;
  }

  .index-s3 .top-block .label {
    font-size: 20px;
  }

  .index-s3 .top-block p {
    font-size: 14px;
  }

  .index-s3 .item .more {
    display: none;
  }

  .index-s3 .item .tit {
    font-size: 16px;
  }

  .index-s3 .item .txt-box {
    padding: 20px;
  }

  .index-s4 .cont-block {
    padding: 50px 0;
  }

  .index-s4 .txt-box .tit {
    font-size: 20px;
  }

  .index-s4 .data .num span {
    font-size: 30px;
  }

  .index-s4 .data {
    height: 120px;
    padding-left: 24px;
  }

  .index-s4 .data p {
    font-size: 14px;
  }

  .index-s5 .cont-block {
    padding: 50px 0;
  }

  .index-s5 .top-block .label {
    font-size: 20px;
  }

  .index-s5 .top-block p {
    font-size: 14px;
  }

  .index-s6 .cont-block {
    padding: 50px 0;
  }

  .index-s6 .top-block .label {
    font-size: 20px;
  }

  .index-s6 .top-block p {
    font-size: 14px;
  }

  /*add*/
  .inner-s14 .block .para video, .inner-s17 .box-box .para video {
    width: 100%;
  }
}

/*# sourceMappingURL=bundle.css.map */
