@charset "UTF-8";
@font-face {
  font-family: 'Roboto-Regular';
  src: url("../fonts/Roboto-Regular-14.ttf");
}
@font-face {
  font-family: 'Roboto-Light';
  src: url("../fonts/Roboto-Light-10.ttf");
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url("../fonts/Roboto-Medium-12.ttf");
}
@font-face {
  font-family: 'Roboto-Bold';
  src: url("../fonts/Roboto-Bold-3.ttf");
}
@font-face {
  font-family: 'Rajdhani-Regular';
  src: url("../fonts/Rajdhani-Regular-2.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes o-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes o-map-scale {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    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 li a.single {
    transition: all .3s ease;
  }
  .dom-loaded .header li a.single:after {
    transition: all .3s ease;
  }
  .dom-loaded .header .search-btn {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show span {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show:before {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show:after {
    transition: all .3s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0.6rem;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .header:hover, .header.hover, .header.down {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  }
  .header:hover .logo img.show, .header.hover .logo img.show, .header.down .logo img.show {
    opacity: 0;
  }
  .header:hover .logo img.hide, .header.hover .logo img.hide, .header.down .logo img.hide {
    opacity: 1;
  }
  .header:hover li a.single, .header.hover li a.single, .header.down li a.single {
    color: #132630;
  }
  .header:hover .global .show span, .header.hover .global .show span, .header.down .global .show span {
    color: #132630;
  }
  .header:hover .global .show:before, .header.hover .global .show:before, .header.down .global .show:before {
    background-image: url("../images/global-2.svg");
  }
  .header:hover .global .show:after, .header.hover .global .show:after, .header.down .global .show:after {
    background-image: url("../images/drop-2.svg");
  }
  .header.down li a.single {
    line-height: 0.9rem;
  }
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .flex {
  max-width: 14.4rem;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  position: relative;
  width: max(120px, 1.8rem);
}
.header .logo img {
  display: block;
  width: 100%;
  transition: opacity .3s ease;
}
.header .logo img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header ul {
  display: flex;
}
.header li {
  padding: 0 0.24rem;
}
.header li.pos {
  position: relative;
}
.header li a.single {
  display: block;
  font-size: max(15px, 0.2rem);
  line-height: 1.1rem;
  color: #ffffff;
  position: relative;
}
.header li a.single:after {
  content: '';
  width: 100%;
  height: 0.04rem;
  background-color: #008cd6;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}
.header li .pdnav {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid #e6e6e6;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.header li .pdnav .left-box {
  width: 27%;
  padding: 0.4rem 0;
  background-color: rgba(255, 255, 255, 0.6);
}
.header li .pdnav .left-box .box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0.12rem 0;
  margin-top: 0.1rem;
  transition: all .3s ease;
  cursor: pointer;
}
.header li .pdnav .left-box .box:nth-of-type(1) {
  margin-top: 0;
}
.header li .pdnav .left-box .box span {
  width: 2.8rem;
  font-size: max(14px, 0.18rem);
  color: #626e77;
  transition: color .3s ease;
}
.header li .pdnav .left-box .box:after {
  content: '';
  width: 2px;
  height: 100%;
  background-color: #008cd6;
  opacity: 0;
  transition: opacity .3s ease;
}
.header li .pdnav .left-box .box.active {
  background-color: #008cd6;
}
.header li .pdnav .left-box .box.active span {
  color: #fff;
}
.header li .pdnav .left-box .box.active:after {
  opacity: 1;
}
@media (any-hover: hover) {
  .header li .pdnav .left-box .box:not(.active):hover span {
    color: #008cd6;
  }
}
.header li .pdnav .right-box {
  width: 73%;
  padding: 0.4rem;
}
.header li .pdnav .right-box .child {
  display: none;
}
.header li .pdnav .right-box .child.active {
  display: block;
}
.header li .pdnav .right-box .show {
  padding-bottom: 10px;
  display: none;
}
.header li .pdnav .right-box .show span {
  font-size: 14px;
  color: #333;
}
.header li .pdnav .right-box .items {
  display: flex;
  gap: 0.2rem;
}
.header li .pdnav .right-box .item {
  width: 2.8rem;
  max-width: calc((100% - 0.6rem) / 4);
  background-color: #fff;
}
.header li .pdnav .right-box .item .inner {
  display: block;
  height: 100%;
}
.header li .pdnav .right-box .item .img-box {
  aspect-ratio: 28 / 23;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header li .pdnav .right-box .item .img-box img {
  max-width: 80%;
  max-height: 80%;
}
.header li .pdnav .right-box .item .tit {
  margin-top: 0.1rem;
  padding: 0 0.2rem 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Light';
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .header li .pdnav .right-box .item:hover .tit {
    color: #008cd6;
  }
}
.header li .newsnav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.1rem;
  background-color: #fff;
  padding: 0.2rem 0;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
}
.header li .newsnav a {
  display: block;
  font-size: max(13px, 0.16rem);
  padding: 0.15rem 0.2rem;
  color: #132630;
  white-space: nowrap;
  text-align: center;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .header li .newsnav a:hover {
    background-color: #008cd6;
    color: #fff;
  }
}
.header li.active a.single:after {
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .header li:hover a.single:after {
    transform: scaleX(1);
  }
  .header li:hover .pdnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
  }
  .header li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
  }
}
.header .ope {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header .global {
  position: relative;
  left: auto;
}
.header .global .show {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .global .show span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  padding: 0 0.1rem;
}
.header .global .show:before {
  content: '';
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/global-1.svg");
  will-change: transform;
}
.header .global .show:after {
  content: '';
  width: 7px;
  height: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/drop-1.svg");
}
.header .global .hide {
  width: max(90px, 1.2rem);
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.header .global .hide:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 20px;
  top: 11px;
}
.header .global .box {
  padding: 0.1rem 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.header .global .box a {
  font-size: max(12px, 0.14rem);
  line-height: 2;
  color: #181818;
  position: relative;
  transition: color .3s ease;
}
.header .global .box a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #008cd6;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all .5s;
}
@media (any-hover: hover) {
  .header .global .box a:hover {
    color: #008cd6;
  }
  .header .global .box a:hover:before {
    transform: scaleX(1);
  }
}
.header .global:hover .hide {
  opacity: 1;
  visibility: visible;
}
.header .search-btn {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background-color: #008cd6;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-1.svg");
  background-size: auto 0.2rem;
  cursor: pointer;
  will-change: transform;
}
.header .mNavBtn {
  display: none;
}

.fixed-form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.fixed-form .main {
  padding: 1.2rem 0;
  position: relative;
  background-color: #f6f6f6;
}
.fixed-form .close {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close-2.svg");
  position: absolute;
  top: 0.24rem;
  right: 0.6rem;
  cursor: pointer;
}
.fixed-form .form {
  width: 86%;
  max-width: 8rem;
  height: max(60px, 0.7rem);
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #333;
  padding-right: 30px;
}
.fixed-form input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: max(14px, 0.18rem);
  color: #333;
}
.fixed-form input::-webkit-input-placeholder {
  color: #333;
}
.fixed-form input:-moz-placeholder {
  color: #333;
}
.fixed-form input::-moz-placeholder {
  color: #333;
}
.fixed-form input:-ms-input-placeholder {
  color: #333;
}
.fixed-form button {
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url("../images/search-1.svg");
  background-size: auto max(16px, 0.2rem);
  cursor: pointer;
}

.head-null {
  height: 0.9rem;
}

.footer {
  background: #008cd6 url("../images/img-1.png") calc(100% + 0.6rem) -0.5rem no-repeat;
  background-size: auto 4.45rem;
}
.footer .top-block {
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .top-block .left-box {
  width: 3.2rem;
  padding-right: 0.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .top-block .left-box .link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all .3s ease;
}
.footer .top-block .left-box .link a:last-of-type {
  border: none;
}
.footer .top-block .left-box .link a span {
  font-size: max(15px, 0.2rem);
  color: #fff;
}
.footer .top-block .left-box .link a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2-1.svg");
}
@media (any-hover: hover) {
  .footer .top-block .left-box .link a:hover {
    border-color: #fff;
  }
}
.footer .top-block .center-box {
  padding-top: 0.3rem;
  display: flex;
  gap: 0.8rem;
}
.footer .top-block .center-box .box .tit {
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-family: 'Roboto-Medium';
}
.footer .top-block .center-box .box .link {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 0.2rem;
}
.footer .top-block .center-box .box .link a {
  max-width: max(140px, 1.8rem);
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-family: 'Roboto-Light';
  position: relative;
}
.footer .top-block .right-box {
  padding-top: 0.3rem;
}
.footer .top-block .right-box .tit {
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-family: 'Roboto-Medium';
}
.footer .top-block .right-box .share {
  margin-top: 0.3rem;
  display: flex;
}
.footer .top-block .right-box .share .box {
  position: relative;
  margin-left: 0.3rem;
}
.footer .top-block .right-box .share .box:nth-of-type(1) {
  margin-left: 0;
}
.footer .top-block .right-box .share .box .show {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.footer .top-block .right-box .share .box .show:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 16px;
}
.footer .top-block .right-box .share .box .show.fb:before {
  background-image: url("../images/share-1.svg");
}
.footer .top-block .right-box .share .box .show.in:before {
  background-image: url("../images/share-2.svg");
}
.footer .top-block .right-box .share .box .show.x:before {
  background-image: url("../images/share-3.svg");
}
.footer .top-block .right-box .share .box .show.ytb:before {
  background-image: url("../images/share-4.svg");
}
.footer .top-block .right-box .share .box .hide {
  position: absolute;
  top: 100%;
  padding-top: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
}
.footer .top-block .right-box .share .box .hide .img-box {
  width: max(80px, 1.06rem);
  height: max(80px, 1.06rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.footer .top-block .right-box .share .box .hide .img-box img {
  max-width: 100%;
  max-height: 100%;
}
.footer .top-block .right-box .share .box:hover .hide {
  opacity: 1;
}
.footer .top-block .right-box .info {
  margin-top: 0.3rem;
}
.footer .top-block .right-box .info p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-family: 'Roboto-Light';
  margin-top: 0.1rem;
}
.footer .top-block .right-box .info p:nth-of-type(1) {
  margin-top: 0;
}
.footer .bot-block {
  padding: 0.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .bot-block .left-box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.footer .bot-block .left-box .img-box {
  width: max(100px, 1.4rem);
}
.footer .bot-block .left-box .img-box img {
  display: block;
  width: 100%;
}
.footer .bot-block .left-box .copyright {
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-family: 'Roboto-Light';
  opacity: 0.6;
}
.footer .bot-block .right-box {
  display: flex;
  gap: 20px;
}
.footer .bot-block .right-box a {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Roboto-Light';
  transition: color .3s ease;
}
.footer .bot-block .right-box a:after {
  content: '|';
  width: 20px;
  font-size: max(13px, 0.16rem);
  color: #fff;
  font-family: 'Roboto-Light';
  text-align: center;
  opacity: 0.6;
  position: absolute;
  left: 100%;
  top: 0;
  text-align: center;
}
.footer .bot-block .right-box a:last-of-type:after {
  display: none;
}
@media (any-hover: hover) {
  .footer .bot-block .right-box a:hover {
    color: #fff;
  }
}

@media screen and (min-width: 1025px) {
  .ani-box.animating {
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  }

  .trans-1 {
    opacity: 0;
    transform: translateY(1rem);
  }
  .trans-1.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-1.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-1.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-1.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-2 {
    opacity: 0;
    transform: translateX(-1rem);
  }
  .trans-2.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-2.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-2.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-2.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-3 {
    opacity: 0;
    transform: translateX(1rem);
  }
  .trans-3.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-3.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-3.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-3.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-4 {
    opacity: 0;
    transform: translateY(-1rem);
  }
  .trans-4.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-4.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-4.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-4.animating.delay-3 {
    transition-delay: .3s;
  }

  .scale-1 {
    transform: scale(1.3);
  }
  .scale-1.animating {
    transform: scale(1);
  }
}
body {
  min-width: 1200px;
}

.swiper-pagination-lock {
  display: none !important;
}

.wrap-s {
  width: 14.4rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.inner-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.inner-label .tips {
  width: 100%;
  font-size: max(18px, 0.24rem);
  color: #008cd6;
  text-align: center;
  margin-bottom: 0.1rem;
}
.inner-label .label {
  width: 100%;
  font-size: 0.36rem;
  color: #132630;
  font-family: 'Roboto-Bold';
  text-align: center;
}

.c-crumbs.style-1 {
  background-color: #008cd6;
}
.c-crumbs.style-1 a.home {
  color: rgba(255, 255, 255, 0.7);
}
.c-crumbs.style-1 a.home:before {
  background-image: url("../images/icon-1-1.svg");
}
.c-crumbs.style-1 a.home:after {
  background-image: url("../images/icon-2-1.svg");
}
.c-crumbs.style-1 a.link {
  color: rgba(255, 255, 255, 0.7);
}
.c-crumbs.style-1 a.link:after {
  background-image: url("../images/icon-2-1.svg");
}
.c-crumbs.style-1 span {
  color: #fff;
}
.c-crumbs .wrap-s {
  display: flex;
  align-items: center;
  grid-gap: 45px;
  height: max(40px, 0.6rem);
}
.c-crumbs a.home {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: rgba(98, 110, 119, 0.7);
  padding-left: 0.24rem;
}
.c-crumbs a.home:before {
  content: '';
  width: 0.18rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1-2.svg");
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: calc(50% - 0.09rem);
}
.c-crumbs a.home:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2-2.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs a.link {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: rgba(98, 110, 119, 0.7);
}
.c-crumbs a.link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2-2.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs span {
  font-size: max(13px, 0.16rem);
  color: #132630;
}

.c-banner {
  position: relative;
  overflow: hidden;
}
.c-banner.style-1 .img-box {
  height: 27.0833vw;
}
.c-banner.style-1 .label {
  font-size: 0.48rem;
}
.c-banner .img-box {
  height: 31.25vw;
}
.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;
  align-content: center;
  z-index: 2;
}
.c-banner .label {
  font-size: 0.56rem;
  color: #fff;
}
.c-banner .crumbs {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.c-banner .crumbs .wrap-s {
  display: flex;
  align-items: center;
  grid-gap: 45px;
  height: max(40px, 0.6rem);
}
.c-banner .crumbs a.home {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0.24rem;
}
.c-banner .crumbs a.home:before {
  content: '';
  width: 0.18rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1-1.svg");
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: calc(50% - 0.09rem);
}
.c-banner .crumbs a.home:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-banner .crumbs a.link {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.7);
}
.c-banner .crumbs a.link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-banner .crumbs span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}

.c-pages {
  margin-top: 0.6rem;
  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: #333333;
  text-align: center;
  z-index: 2;
  transition: all .3s ease;
}
.c-pages ul li.active a {
  color: #fff;
  background-color: #008cd6;
}
@media (any-hover: hover) {
  .c-pages ul li:hover a {
    color: #fff;
    background-color: #008cd6;
  }
}

.video-pop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
}
.video-pop .bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  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%);
}

.index-s1 {
  position: relative;
  overflow: hidden;
}
.index-s1 .item {
  position: relative;
  overflow: hidden;
}
.index-s1 .item .img-box {
  height: 100vh;
}
.index-s1 .item img, .index-s1 .item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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-family: 'Roboto-Medium';
}
.index-s1 .item p {
  font-size: max(18px, 0.24rem);
  color: #fff;
  margin-top: 0.4rem;
}
.index-s1 .item .btns {
  margin-top: 0.4rem;
  display: flex;
}
.index-s1 .item .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.16rem;
  transition: all .3s ease;
}
.index-s1 .item .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  transition: color .3s ease;
}
.index-s1 .item .btns a:after {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2-2.svg");
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s1 .item .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
}
.index-s1 .pagination {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  z-index: 2;
}
.index-s1 .pagination .wrap-s {
  display: flex;
  grid-gap: 0.1rem;
  width: 14.4rem;
}
.index-s1 .pagination span {
  width: 0.24rem;
  height: 0.04rem;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
  cursor: pointer;
}
.index-s1 .pagination span.active {
  width: 0.6rem;
  background-color: #008cd6;
}

.index-s2 {
  padding: 1.2rem 0;
}
.index-s2 .txt-cont .child {
  display: none;
}
.index-s2 .txt-cont .child.active {
  display: block;
}
.index-s2 .label {
  font-size: 0.48rem;
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.index-s2 .label span {
  color: #008cd6;
}
.index-s2 .data-box {
  margin-top: 0.4rem;
  height: max(55px, 0.7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.index-s2 .data-box .line {
  width: 1px;
  height: 0.6rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.index-s2 .data .num {
  text-align: center;
  position: relative;
}
.index-s2 .data .num .s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index-s2 .data .num .h {
  opacity: 0;
}
.index-s2 .data .num span {
  font-size: 0.5rem;
  color: #008cd6;
}
.index-s2 .data .num i {
  font-size: max(15px, 0.2rem);
  color: #008cd6;
  font-family: 'Roboto-Bold';
  font-style: normal;
}
.index-s2 .data p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  text-align: center;
}
.index-s2 .tab-cont .child {
  height: 5.6rem;
  position: relative;
  display: none;
}
.index-s2 .tab-cont .child.active {
  display: block;
}
.index-s2 .tab-cont .child.active .num, .index-s2 .tab-cont .child.active .img-box {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s2 .tab-cont .child.active .img-box {
  animation-delay: .2s;
}
.index-s2 .tab-cont .img-box {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.index-s2 .tab-cont .img-box img {
  max-width: 90%;
  max-height: 90%;
}
.index-s2 .tab-tit {
  padding: 0 20px;
  position: relative;
}
.index-s2 .tab-tit .item {
  width: 33.33%;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity .3s ease;
}
.index-s2 .tab-tit .item .img-box {
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-s2 .tab-tit .item .img-box img {
  max-width: 70%;
  max-height: 100%;
}
.index-s2 .tab-tit .item .tit {
  display: flex;
  justify-content: center;
  margin-top: 0.2rem;
}
.index-s2 .tab-tit .item .tit span {
  position: relative;
  font-size: max(13px, 0.16rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Light';
  padding: 0 0.4rem 0.2rem;
}
.index-s2 .tab-tit .item .tit span:after {
  content: '';
  width: 3.5rem;
  height: 0.44rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-7.png");
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s2 .tab-tit .item.active {
  opacity: 1;
}
.index-s2 .tab-tit .item.active .tit span:after {
  opacity: 1;
}
.index-s2 .tab-tit .button {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/next-1.svg");
  position: absolute;
  top: calc(50% - 10px);
  z-index: 2;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s2 .tab-tit .button.default {
  background-image: url("../images/index/next.svg");
  cursor: default;
}
.index-s2 .tab-tit .prev {
  left: 0;
  transform: rotate(180deg);
}
.index-s2 .tab-tit .next {
  right: 0;
}

.index-s3 {
  position: relative;
  overflow: hidden;
}
.index-s3 .bg-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-s3 .bg-block .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0;
}
.index-s3 .bg-block .bg.active {
  opacity: 1;
}
.index-s3 .txt-block {
  padding: 1.2rem 0;
  position: relative;
  z-index: 2;
}
.index-s3 .txt-block .label {
  font-size: 0.48rem;
  color: #fff;
  font-family: 'Roboto-Medium';
}
.index-s3 .tab-cont {
  margin-top: 0.5rem;
  height: 6rem;
}
.index-s3 .tab-cont .child {
  display: none;
}
.index-s3 .tab-cont .child.active {
  display: block;
}
.index-s3 .tab-cont .child.active .tit, .index-s3 .tab-cont .child.active .para, .index-s3 .tab-cont .child.active .data-box, .index-s3 .tab-cont .child.active .btns {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s3 .tab-cont .child.active .para {
  animation-delay: .1s;
}
.index-s3 .tab-cont .child.active .data-box {
  animation-delay: .2s;
}
.index-s3 .tab-cont .child.active .btns {
  animation-delay: .3s;
}
.index-s3 .tab-cont .tit, .index-s3 .tab-cont .para, .index-s3 .tab-cont .data-box, .index-s3 .tab-cont .btns {
  opacity: 0;
}
.index-s3 .tab-cont .tit {
  font-size: 0.36rem;
  color: #fff;
  font-family: 'Roboto-Medium';
}
.index-s3 .tab-cont .para {
  max-width: 6rem;
  font-size: max(14px, 0.18rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 0.3rem;
}
.index-s3 .tab-cont .data-box {
  margin-top: 0.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.index-s3 .tab-cont .data .num {
  position: relative;
}
.index-s3 .tab-cont .data .num .s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index-s3 .tab-cont .data .num .h {
  opacity: 0;
  pointer-events: none;
}
.index-s3 .tab-cont .data .num span {
  font-size: 0.52rem;
  color: #fff;
  font-family: 'Roboto-Medium';
}
.index-s3 .tab-cont .data .num i {
  font-size: 0.3rem;
  color: #fff;
  font-style: normal;
}
.index-s3 .tab-cont .data p {
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-family: 'Roboto-Light';
  max-width: 2.1rem;
}
.index-s3 .tab-cont .btns {
  margin-top: 0.8rem;
  display: flex;
}
.index-s3 .tab-cont .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.16rem;
  transition: all .3s ease;
}
.index-s3 .tab-cont .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  transition: color .3s ease;
}
.index-s3 .tab-cont .btns a:after {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2-2.svg");
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s3 .tab-cont .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
}
.index-s3 .tab-tit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.index-s3 .tab-tit .item {
  width: 20%;
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity .3s ease;
}
.index-s3 .tab-tit .item:before {
  content: '';
  width: 100%;
  height: 0.04rem;
  background-color: #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left top;
}
.index-s3 .tab-tit .item .icon {
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-s3 .tab-tit .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.index-s3 .tab-tit .item span {
  max-width: calc(100% - 0.7rem);
  font-size: max(15px, 0.2rem);
  color: #fff;
}
.index-s3 .tab-tit .item.active {
  opacity: 1;
}
.index-s3 .tab-tit .item.active:before {
  transform: scaleX(1);
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .index-s3 .tab-tit .item:hover {
    opacity: 1;
  }
}

.index-s4 {
  padding: 1.2rem 0;
}
.index-s4 .top-block .label {
  font-size: 0.48rem;
  color: #132630;
  font-family: 'Roboto-Medium';
  text-align: center;
}
.index-s4 .top-block .label span {
  color: #008cd6;
}
.index-s4 .top-block .para {
  font-size: max(14px, 0.18rem);
  color: #626e77;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.2rem;
  text-align: center;
}
.index-s4 .top-block .more {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
}
.index-s4 .top-block .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.index-s4 .top-block .more a span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.index-s4 .top-block .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s4 .top-block .more a:hover:after {
    background-color: #008cd6;
    background-image: url("../images/product/icon-1-2.svg");
  }
}
.index-s4 .mid-block {
  position: relative;
  margin-top: 0.2rem;
  z-index: 1;
}
.index-s4 .mid-block .map-box {
  width: 10rem;
  height: 10rem;
  position: relative;
  margin: 0 auto;
  z-index: 2;
}
.index-s4 .mid-block .map-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-10.png");
  transform: translate(2rem, 1rem);
  z-index: 1;
}
.index-s4 .mid-block .map-box .main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.index-s4 .mid-block .map-box svg {
  border-radius: 50%;
  background: #e3e8ee;
}
.index-s4 .mid-block .map-box .releaseCountries {
  stroke-width: 1px;
  fill: #fff;
}
.index-s4 .mid-block .map-box .dotSvg {
  cursor: pointer;
}
.index-s4 .mid-block .map-box .dotSvg path, .index-s4 .mid-block .map-box .dotSvg text {
  will-change: transform;
}
.index-s4 .mid-block .map-box .layerBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}
.index-s4 .mid-block .map-box .layerBox.showInfoBox {
  pointer-events: auto;
  opacity: 1;
}
.index-s4 .mid-block .map-box .infoBox {
  width: 4.8rem;
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
  padding: 0.4rem;
}
.index-s4 .mid-block .map-box .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.index-s4 .mid-block .map-box .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #008cd6;
  position: absolute;
  left: -0.4rem;
  top: calc(50% - 0.12rem);
}
.index-s4 .mid-block .map-box .info {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  padding-top: 0.1rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.index-s4 .mid-block .map-box .info a {
  color: #008cd6;
}
.index-s4 .m-block {
  display: none;
  margin-top: 30px;
}
.index-s4 .m-block .tab-tit {
  position: relative;
}
.index-s4 .m-block .tab-tit:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  bottom: 0;
  left: 0;
}
.index-s4 .m-block .tab-tit .item {
  width: 33.33%;
  max-width: 150px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.index-s4 .m-block .tab-tit .item span {
  font-size: 14px;
  color: #333333;
  text-align: center;
  transition: color .3s ease;
}
.index-s4 .m-block .tab-tit .item:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #008cd6;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease;
}
.index-s4 .m-block .tab-tit .item.active span {
  color: #008cd6;
}
.index-s4 .m-block .tab-tit .item.active:after {
  opacity: 1;
  transform: scale(1);
}
.index-s4 .m-block .tab-cont .child {
  position: relative;
  display: none;
  padding: 20px 20px 0;
}
.index-s4 .m-block .tab-cont .child.active {
  display: block;
}
.index-s4 .m-block .tab-cont .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.index-s4 .m-block .tab-cont .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #008cd6;
  position: absolute;
  left: -20px;
  top: calc(50% - 0.12rem);
}
.index-s4 .m-block .tab-cont .info {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 2;
  font-family: 'Roboto-Light';
}
.index-s4 .m-block .tab-cont .info a {
  color: #008cd6;
}
.index-s4 .bot-block {
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0 1.2rem;
  z-index: 2;
}
.index-s4 .bot-block .data .num {
  position: relative;
}
.index-s4 .bot-block .data .num .s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.index-s4 .bot-block .data .num .h {
  opacity: 0;
  text-align: center;
}
.index-s4 .bot-block .data .num span {
  font-size: 1.2rem;
  color: #008cd6;
}
.index-s4 .bot-block .data .num i {
  font-size: 0.6rem;
  color: #008cd6;
  font-style: normal;
}
.index-s4 .bot-block .data p {
  font-size: max(14px, 0.18rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  text-align: center;
}

.index-s5 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-3.jpg");
  background-attachment: fixed;
  overflow: hidden;
}
.index-s5 .label {
  font-size: 0.48rem;
  color: #fff;
  font-family: 'Roboto-Medium';
  text-align: center;
}
.index-s5 .top-block .para {
  font-size: max(14px, 0.18rem);
  color: #fff;
  text-align: center;
  margin-top: 0.2rem;
  text-align: center;
}
.index-s5 .mid-block {
  margin-top: 0.5rem;
  position: relative;
}
.index-s5 .mid-block .item {
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.index-s5 .mid-block .item:last-of-type {
  margin-right: 0;
}
.index-s5 .mid-block .item .inner {
  display: block;
  height: 100%;
  padding: 0.2rem;
}
.index-s5 .mid-block .item .img-box {
  aspect-ratio: 560 / 316;
  overflow: hidden;
}
.index-s5 .mid-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s5 .mid-block .item .txt-box {
  padding: 0.24rem 0.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.index-s5 .mid-block .item .tit {
  font-size: max(18px, 0.24rem);
  color: #fff;
  transition: color .3s ease;
}
.index-s5 .mid-block .item .info {
  margin-top: 0.3rem;
}
.index-s5 .mid-block .item .box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.15rem;
}
.index-s5 .mid-block .item .box:nth-of-type(1) {
  margin-top: 0;
}
.index-s5 .mid-block .item .box:before {
  content: '';
  width: max(12px, 0.16rem);
  height: max(12px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index-s5 .mid-block .item .box span {
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Roboto-Light';
}
.index-s5 .mid-block .item .box.time:before {
  background-image: url("../images/event/icon-1-2.svg");
}
.index-s5 .mid-block .item .box.addr:before {
  background-image: url("../images/event/icon-2-2.svg");
}
.index-s5 .mid-block .item .box.num:before {
  background-image: url("../images/event/icon-3-2.svg");
}
.index-s5 .mid-block .item .more {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.index-s5 .mid-block .item .more span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.index-s5 .mid-block .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-2.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s5 .mid-block .item:hover img {
    transform: scale(1.05);
  }
  .index-s5 .mid-block .item:hover .more:after {
    background-color: #fff;
    background-image: url("../images/product/icon-1-1.svg");
  }
}
.index-s5 .button {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/icon-2-2.svg");
  background-size: auto 10px;
  cursor: pointer;
  z-index: 2;
}
.index-s5 .prev {
  left: -70px;
  transform: rotate(180deg);
}
.index-s5 .next {
  right: -70px;
}
.index-s5 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.index-s5 .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.16rem;
  transition: all .3s ease;
}
.index-s5 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
  transition: color .3s ease;
}
.index-s5 .btns a:after {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2-2.svg");
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s5 .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
}

.index-s6 {
  padding: 1.2rem 0;
}
.index-s6 .label {
  font-size: 0.48rem;
  color: #132630;
  font-family: 'Roboto-Medium';
}
.index-s6 .label span {
  color: #008cd6;
}
.index-s6 .cont-block {
  margin-top: 0.5rem;
  display: flex;
}
.index-s6 .left-box {
  width: 50%;
}
.index-s6 .left-box .inner {
  display: block;
}
.index-s6 .left-box .img-box {
  overflow: hidden;
  aspect-ratio: 720 / 406;
}
.index-s6 .left-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s6 .left-box .txt-box {
  margin-top: 0.24rem;
}
.index-s6 .left-box .date {
  font-size: max(14px, 0.18rem);
  color: #606466;
  font-family: 'Roboto-Light';
}
.index-s6 .left-box .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  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 p {
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
}
@media (any-hover: hover) {
  .index-s6 .left-box:hover img {
    transform: scale(1.05);
  }
  .index-s6 .left-box:hover .tit {
    color: #008cd6;
  }
}
.index-s6 .right-box {
  width: calc(50% - 0.6rem);
  margin-left: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.index-s6 .items {
  height: 100%;
}
.index-s6 .item {
  height: 33.33%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.index-s6 .item .inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.index-s6 .item .img-box {
  width: 2.4rem;
  aspect-ratio: 240 / 136;
  overflow: hidden;
}
.index-s6 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s6 .item .txt-box {
  width: calc(100% - 2.4rem);
  padding-left: 0.3rem;
}
.index-s6 .item .date {
  font-size: max(14px, 0.18rem);
  color: #606466;
  font-family: 'Roboto-Light';
}
.index-s6 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.1rem;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .index-s6 .item:hover img {
    transform: scale(1.05);
  }
  .index-s6 .item:hover .tit {
    color: #008cd6;
  }
}
.index-s6 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-end;
}
.index-s6 .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.16rem;
  transition: all .3s ease;
}
.index-s6 .btns a span {
  font-size: max(13px, 0.16rem);
  color: #132630;
  transition: color .3s ease;
}
.index-s6 .btns a:after {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2-1.svg");
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s6 .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
  .index-s6 .btns a:hover span {
    color: #fff;
  }
  .index-s6 .btns a:hover:after {
    background-image: url("../images/index/icon-2-2.svg");
  }
}

.inner-s1 {
  padding: 1.2rem 0;
}
.inner-s1 .items {
  gap: 0.4rem;
}
.inner-s1 .item {
  margin-top: 0.4rem;
}
.inner-s1 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s1 .item .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.2rem;
  background-color: #f7f7f7;
  transition: all .3s ease;
}
.inner-s1 .item .img-box {
  width: 47.15%;
  aspect-ratio: 660 / 340;
  overflow: hidden;
}
.inner-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s1 .item .txt-box {
  width: 52.85%;
  padding: 0.4rem;
}
.inner-s1 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #333333;
  font-family: 'Roboto-Medium';
  transition: color .3s ease;
}
.inner-s1 .item p {
  font-size: max(13px, 0.16rem);
  color: #333333;
  line-height: 2;
  font-family: 'Roboto-Light';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
}
.inner-s1 .item .more {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s1 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s1 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s1 .item:hover .inner {
    box-shadow: 0 0.2rem 0.3rem rgba(10, 32, 68, 0.1);
  }
  .inner-s1 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s1 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s1 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}

.inner-s2 {
  padding: 1.2rem 0;
}
.inner-s2 .para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  color: rgba(98, 110, 119, 0.7);
  line-height: 1.78;
}
.inner-s2 .items {
  margin-top: 0.5rem;
}
.inner-s2 .swiper {
  padding-bottom: 0.6rem;
}
.inner-s2 .item {
  width: calc((100% - 1.2rem) / 3);
  height: auto;
  background: #f5f5f4 url("../images/industries/img-2.png") calc(100% + 0.6rem) -0.5rem no-repeat;
  background-size: auto 2.15rem;
  padding: 0.6rem 0.4rem;
  margin-right: 0.6rem;
}
.inner-s2 .item:last-of-type {
  margin-right: 0;
}
.inner-s2 .item .icon {
  height: 0.4rem;
  display: flex;
}
.inner-s2 .item .icon img {
  max-height: 100%;
  width: auto;
}
.inner-s2 .item .tit {
  margin-top: 0.2rem;
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s2 .item .s-para {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  line-height: 1.78;
}
.inner-s2 .swiper-control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s2 .swiper-scrollbar {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: calc(100% - 1.4rem);
  height: 2px;
  background-color: #e7e9ea;
}
.inner-s2 .swiper-scrollbar-drag {
  background-color: #008cd6;
  cursor: pointer;
}
.inner-s2 .button {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/industries/next.svg");
  cursor: pointer;
  transition: transform .3s ease;
  will-change: transform;
}
.inner-s2 .prev {
  transform: rotate(180deg);
}

.inner-s3 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/industries/img-3.jpg");
  background-attachment: fixed;
}
.inner-s3 .cont-block {
  margin-top: 0.5rem;
  padding: 0.6rem 0;
  background-image: linear-gradient(180deg, #1c98d9, #85c2e2);
  display: flex;
}
.inner-s3 .tab-tit {
  width: 4.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0.7rem;
}
.inner-s3 .tab-tit .item {
  margin-top: 0.24rem;
  cursor: pointer;
}
.inner-s3 .tab-tit .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s3 .tab-tit .item span {
  display: block;
  font-size: max(15px, 0.2rem);
  color: #fff;
  opacity: 0.5;
  transition: opacity .3s ease;
}
.inner-s3 .tab-tit .item.active span {
  opacity: 1;
}
@media (any-hover: hover) {
  .inner-s3 .tab-tit .item:not(.active):hover span {
    opacity: 0.8;
  }
}
.inner-s3 .tab-cont {
  width: calc(100% - 4.9rem);
  padding: 0.5rem 1rem;
}
.inner-s3 .tab-cont .child {
  display: none;
}
.inner-s3 .tab-cont .child.active {
  display: block;
}
.inner-s3 .tab-cont .child.active .tit, .inner-s3 .tab-cont .child.active .s-para {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s3 .tab-cont .child.active .s-para {
  animation-delay: .1s;
}
.inner-s3 .tab-cont .tit, .inner-s3 .tab-cont .s-para {
  opacity: 0;
}
.inner-s3 .tab-cont .tit {
  display: flex;
  align-items: center;
  gap: 0.24rem;
}
.inner-s3 .tab-cont .tit span {
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Roboto-Bold';
}
.inner-s3 .tab-cont .icon {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
}
.inner-s3 .tab-cont .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s3 .tab-cont .s-para {
  font-size: max(14px, 0.18rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.78;
  font-family: 'Roboto-Light';
  margin-top: 0.3rem;
}

.inner-s4 {
  padding: 1.2rem 0;
}
.inner-s4 .cont-block {
  margin-top: 0.5rem;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
}
.inner-s4 .img-box {
  width: 5.3rem;
  aspect-ratio: 53 / 42;
}
.inner-s4 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s4 .txt-box {
  width: calc(100% - 5.3rem);
  padding: 0 0.6rem;
}
.inner-s4 .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s4 .tips {
  margin-top: 0.15rem;
  font-size: max(14px, 0.18rem);
  color: #008cd6;
}
.inner-s4 .data-box {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.inner-s4 .data {
  width: calc((100% - 0.8rem) / 3);
}
.inner-s4 .data .num span {
  font-size: 0.52rem;
  color: #008cd6;
  font-family: 'Roboto-Medium';
}
.inner-s4 .data .num i {
  font-style: normal;
  font-size: 0.3rem;
  color: #008cd6;
}
.inner-s4 .data p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  font-family: 'Roboto-Light';
  margin-top: 0.1rem;
}

.inner-s5 {
  padding: 1.2rem 0 0;
}
.inner-s5 .item .inner {
  display: flex;
}
.inner-s5 .item .img-box {
  width: 50%;
  aspect-ratio: 720 / 406;
  overflow: hidden;
}
.inner-s5 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s5 .item .txt-box {
  width: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-s5 .item .date {
  font-size: max(14px, 0.18rem);
  color: #606466;
  font-family: 'Roboto-Light';
}
.inner-s5 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  line-height: 1.5;
  font-family: 'Roboto-Medium';
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s5 .item p {
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 1.5;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s5 .item .more {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s5 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s5 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
.inner-s5 .item .date, .inner-s5 .item .tit, .inner-s5 .item p, .inner-s5 .item .more {
  opacity: 0;
}
.inner-s5 .item.swiper-slide-active .date, .inner-s5 .item.swiper-slide-active .tit, .inner-s5 .item.swiper-slide-active p, .inner-s5 .item.swiper-slide-active .more {
  animation: o-upfade-top 0.7s 0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s5 .item.swiper-slide-active .tit {
  animation-delay: .1s;
}
.inner-s5 .item.swiper-slide-active p {
  animation-delay: .2s;
}
.inner-s5 .item.swiper-slide-active .more {
  animation-delay: .3s;
}
@media (any-hover: hover) {
  .inner-s5 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s5 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s5 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}
.inner-s5 .pagination {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.12rem;
}
.inner-s5 .pagination span {
  width: 0.14rem;
  height: 0.04rem;
  background-color: #e6e6e6;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s5 .pagination span.active {
  width: 0.24rem;
  background-color: #008cd6;
}

.inner-s6 {
  padding: 0.8rem  0 1.2rem;
}
.inner-s6 .item {
  margin-top: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.inner-s6 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s6 .item .inner {
  display: flex;
  align-items: center;
  padding: 0.3rem;
}
.inner-s6 .item .img-box {
  width: 3.6rem;
  aspect-ratio: 360 / 204;
  overflow: hidden;
}
.inner-s6 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s6 .item .txt-box {
  width: calc(100% - 3.6rem);
  padding: 0 0.4rem;
}
.inner-s6 .item .date {
  font-size: max(14px, 0.18rem);
  color: #606466;
  font-family: 'Roboto-Light';
}
.inner-s6 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  line-height: 1.5;
  font-family: 'Roboto-Medium';
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s6 .item .more {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s6 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s6 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s6 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s6 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s6 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}

.inner-s7 {
  padding: 0.6rem 0 1.2rem;
}
.inner-s7 .top-block .date {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}
.inner-s7 .top-block .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-s7 .top-block .date span {
  font-size: max(14px, 0.18rem);
  color: #008cd6;
  font-family: 'Roboto-Light';
}
.inner-s7 .top-block .label {
  font-size: 0.36rem;
  color: #132630;
  font-family: 'Roboto-Medium';
  margin-top: 0.2rem;
}
.inner-s7 .mid-block {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(0, 140, 214, 0.2);
}
.inner-s7 .mid-block .edit-para {
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 2;
}
.inner-s7 .mid-block .edit-para p {
  margin-top: 0.24rem;
}
.inner-s7 .mid-block .edit-para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s7 .mid-block .edit-para img, .inner-s7 .mid-block .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s7 .mid-block .edit-para ul {
  padding-left: 0.2rem;
}
.inner-s7 .mid-block .edit-para ul li {
  list-style: inherit;
}
.inner-s7 .bot-block {
  margin-top: 0.6rem;
}
.inner-s7 .bot-block .return-box {
  display: flex;
  align-items: center;
}
.inner-s7 .bot-block .return-box:before, .inner-s7 .bot-block .return-box:after {
  content: '';
  width: calc(50% - 0.8rem);
  height: 1px;
  background-color: #bfc1c2;
}
.inner-s7 .bot-block .return-box a {
  width: 1.6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.1rem;
}
.inner-s7 .bot-block .return-box a:before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.svg");
}
.inner-s7 .bot-block .return-box a span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s7 .bot-block .page-box {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.inner-s7 .bot-block .page-box a {
  max-width: 45%;
  color: #606466;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s7 .bot-block .page-box a span {
  font-size: max(14px, 0.18rem);
}
.inner-s7 .bot-block .page-box a i {
  font-style: normal;
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Light';
}
@media (any-hover: hover) {
  .inner-s7 .bot-block .page-box a:hover {
    color: #008cd6;
  }
}

.inner-s8 {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  height: max(540px, 8.2rem);
}
.inner-s8 .map-box {
  width: 5794px;
  height: 2862px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .map-box img.bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inner-s8 .dot {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
}
.inner-s8 .dot:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-3-1.png");
  animation: o-map 2s linear infinite;
}
.inner-s8 .dot span {
  font-size: max(16px, 0.22rem);
  color: #008cd6;
  font-family: 'Roboto-Medium';
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.inner-s8 .dot.right span {
  left: 0.36rem;
}
.inner-s8 .dot.left span {
  right: calc(100% + 0.36rem);
}
.inner-s8 .dot.active:before {
  background-image: url("../images/contact/icon-3-2.png");
  animation: none;
}
.inner-s8 .dot.active span {
  display: block;
}
.inner-s8 .items {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  z-index: 3;
}
.inner-s8 .item {
  width: 5rem;
  height: auto;
  padding-top: max(30px, 0.4rem);
  margin-right: 10px;
  cursor: pointer;
  transition: padding 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .item:last-of-type {
  margin-right: 0;
}
.inner-s8 .item .box {
  position: relative;
  height: 100%;
  padding: 0.5rem 0.4rem;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}
.inner-s8 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s8 .item p {
  font-size: max(13px, 0.16rem);
  height: max(48px, 0.6rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  margin-top: 0.15rem;
}
.inner-s8 .item .link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 0.2rem;
  height: max(30px, 0.4rem);
  background-color: #008cd6;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s8 .item .link span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Roboto-Light';
}
.inner-s8 .item .link:after {
  content: '';
  width: 16px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-4.svg");
}
.inner-s8 .item.active {
  padding-top: 0;
}
.inner-s8 .item.active .link {
  opacity: 1;
  pointer-events: auto;
}
.inner-s8 .buttons {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
}
.inner-s8 .buttons .wrap-s {
  display: flex;
  justify-content: flex-end;
  grid-gap: 10px;
}
.inner-s8 .button {
  width: 56px;
  height: 30px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 10px;
  cursor: pointer;
  background-image: url("../images/contact/icon-4-1.svg");
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s8 .button:hover {
    background-color: #008cd6;
    background-image: url("../images/contact/icon-4.svg");
  }
}
.inner-s8 .prev {
  transform: rotate(180deg);
}

.inner-s9 {
  padding: 1.2rem 0;
}
.inner-s9 .inner-label .label {
  width: auto;
  font-family: 'Roboto-Regular';
  position: relative;
}
.inner-s9 .inner-label .label:after {
  content: '';
  width: 1.91rem;
  height: 0.52rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/img-2.png");
  position: absolute;
  right: -0.43rem;
  bottom: -0.2rem;
}
.inner-s9 .form {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
}
.inner-s9 .box {
  width: calc((100% - 0.2rem) / 2);
  background-color: #f7f7f7;
}
.inner-s9 .box input {
  width: 100%;
  height: max(50px, 0.6rem);
  background-color: transparent;
  padding: 0 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #626e77;
}
.inner-s9 .box input::-webkit-input-placeholder {
  color: #626e77;
}
.inner-s9 .box input:-moz-placeholder {
  color: #626e77;
}
.inner-s9 .box input::-moz-placeholder {
  color: #626e77;
}
.inner-s9 .box input:-ms-input-placeholder {
  color: #626e77;
}
.inner-s9 .box textarea {
  display: block;
  width: 100%;
  height: 1.8rem;
  background-color: transparent;
  border: none;
  padding: 0.15rem 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #626e77;
  resize: none;
}
.inner-s9 .box textarea::-webkit-input-placeholder {
  color: #626e77;
}
.inner-s9 .box textarea:-moz-placeholder {
  color: #626e77;
}
.inner-s9 .box textarea::-moz-placeholder {
  color: #626e77;
}
.inner-s9 .box textarea:-ms-input-placeholder {
  color: #626e77;
}
.inner-s9 .box .agree {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  display: flex;
  align-items: center;
}
.inner-s9 .box button {
  width: 2rem;
  height: max(50px, 0.6rem);
  font-size: max(13px, 0.16rem);
  color: #fff;
  background-color: #008cd6;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .inner-s9 .box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(33, 132, 199, 0.3);
  }
}
.inner-s9 .box .layui-input:focus, .inner-s9 .box .layui-textarea:focus {
  box-shadow: none;
}
.inner-s9 .box .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #008cd6 !important;
}
.inner-s9 .box .layui-form-checked[lay-skin=primary] > i {
  border-color: #008cd6 !important;
  background-color: #008cd6 !important;
}
.inner-s9 .box .layui-form-checkbox > div {
  font-size: max(13px, 0.16rem);
  color: #626e77;
}
.inner-s9 .box:nth-of-type(5), .inner-s9 .box:nth-of-type(6), .inner-s9 .box:nth-of-type(7) {
  width: 100%;
}
.inner-s9 .box:nth-of-type(5) {
  padding: 0.2rem 0.3rem;
  display: flex;
  align-items: baseline;
  grid-gap: 0.4rem;
}
.inner-s9 .box:nth-of-type(5) span {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  padding-right: 0.3rem;
  border-right: 1px solid #e6e6e6;
  white-space: nowrap;
}
.inner-s9 .box:nth-of-type(7) {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 0.4rem;
}

.inner-s10 {
  padding: 1.2rem 0;
}
.inner-s10 .items {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.inner-s10 .item {
  width: calc((100% - 0.2rem) / 2);
  height: max(80px, 110px);
  padding: 0 0.48rem;
  background-color: #f7f7f7;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
}
.inner-s10 .item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
}
.inner-s10 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s10 .item span {
  max-width: calc(100% - 24px - 0.2rem);
  font-size: max(14px, 0.18rem);
  color: #626e77;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s10 .item:hover {
    box-shadow: 0 0.1rem 0.2rem rgba(10, 32, 68, 0.1);
  }
  .inner-s10 .item:hover span {
    color: #008cd6;
  }
}
.inner-s10 .info-box {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
}
.inner-s10 .info-box .img-box {
  width: calc(50% - 0.7rem);
  aspect-ratio: 650 / 431;
  overflow: hidden;
}
.inner-s10 .info-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s10 .info-box .txt-box {
  width: calc(50% + 0.7rem);
  padding-left: 0.6rem;
}
.inner-s10 .info-box .tit {
  font-size: 0.36rem;
  font-family: 'Roboto-Medium';
  color: #132630;
}
.inner-s10 .info-box .info {
  margin-top: 0.3rem;
}
.inner-s10 .info-box .box {
  margin-top: 0.3rem;
}
.inner-s10 .info-box .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s10 .info-box .box span {
  display: block;
  font-size: max(18px, 0.24rem);
  color: #008cd6;
  font-family: 'Roboto-Medium';
}
.inner-s10 .info-box .box p {
  font-size: max(14px, 0.18rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  margin-top: 0.1rem;
}

.inner-s11 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/img-3.jpg");
  background-attachment: fixed;
}
.inner-s11 .inner-label .label {
  color: #fff;
}
.inner-s11 .para {
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-top: 0.3rem;
}
.inner-s11 .tips {
  margin-top: 0.8rem;
  font-size: max(18px, 0.24rem);
  color: #fff;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.inner-s11 .items {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.inner-s11 .item {
  width: calc((100% - 0.8rem) / 5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.3rem;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.inner-s11 .item .icon {
  width: 0.32rem;
  height: 0.32rem;
  display: flex;
  align-items: center;
}
.inner-s11 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s11 .item p {
  margin-top: 0.2rem;
  font-size: max(14px, 0.18rem);
  color: #fff;
  line-height: 1.78;
  font-family: 'Roboto-Light';
}

.inner-s12 {
  padding: 1.2rem 0 0;
  position: relative;
  background-image: linear-gradient(180deg, #fff, #f6f5f6);
}
.inner-s12 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/img-4.jpg");
  background-attachment: fixed;
  mask: linear-gradient(180deg, #fff 80%, rgba(255, 255, 255, 0) 100%);
}
.inner-s12 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.75;
  margin-top: 0.3rem;
}
.inner-s12 .tips {
  margin-top: 0.8rem;
  font-size: max(18px, 0.24rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.inner-s12 .items {
  margin-top: 0.4rem;
}
.inner-s12 .item {
  margin-top: 0.3rem;
  position: relative;
  padding: 0.3rem 0.8rem;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}
.inner-s12 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s12 .item:before {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/service/icon-5.svg");
  position: absolute;
  left: 0.3rem;
  top: calc(50% - 0.12rem);
}
.inner-s12 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s12 .item p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  margin-top: 0.15rem;
  font-family: 'Roboto-Light';
}

.inner-s13 {
  padding: 1.2rem 0;
  position: relative;
  background-image: linear-gradient(180deg, #f6f5f6, #efeff0);
}
.inner-s13 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/img-5.jpg");
  background-attachment: fixed;
  mask: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 20%);
}
.inner-s13 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.75;
  margin-top: 0.3rem;
}
.inner-s13 .items {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.inner-s13 .item {
  width: calc((100% - 2.8rem) / 3);
  position: relative;
}
.inner-s13 .item:last-of-type:before {
  display: none;
}
.inner-s13 .item:before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -0.7rem;
  bottom: 0;
}
.inner-s13 .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
}
.inner-s13 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s13 .item .tit {
  margin-top: 0.2rem;
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s13 .item p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  margin-top: 0.25rem;
  font-family: 'Roboto-Light';
}

.inner-s14 {
  padding: 1.2rem 0;
  position: relative;
}
.inner-s14 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.75;
  margin-top: 0.3rem;
}
.inner-s14 .items {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.inner-s14 .item {
  width: calc((100% - 1.2rem) / 3);
  padding: 0.6rem 0.4rem;
  background-color: #f5f5f5;
}
.inner-s14 .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.inner-s14 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s14 .item .tit {
  margin-top: 0.3rem;
  font-size: max(15px, 0.2rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.inner-s14 .item p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
  font-family: 'Roboto-Light';
}

.inner-s15 {
  padding: 2.6rem 0;
  position: relative;
  background-color: #e4eef0;
}
.inner-s15 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/service/img-6.jpg");
  background-attachment: fixed;
}
.inner-s15 .wrap-s {
  padding-left: 6.4rem;
}
.inner-s15 .inner-label {
  justify-content: flex-start;
}
.inner-s15 .inner-label .label {
  text-align: left;
}
.inner-s15 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.75;
  margin-top: 0.3rem;
}

.inner-s16 {
  padding: 1.2rem 0 0;
  position: relative;
}
.inner-s16 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.75;
  margin-top: 0.3rem;
}
.inner-s16 .items {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.inner-s16 .item {
  width: calc((100% - 1.2rem) / 3);
  padding: 0.4rem;
  background-color: #f5f5f5;
}
.inner-s16 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.inner-s16 .item .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #008cd6;
  position: absolute;
  left: -0.4rem;
  top: calc(50% - 0.12rem);
}
.inner-s16 .item p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.5;
  margin-top: 0.2rem;
  font-family: 'Roboto-Light';
}

.inner-s17 {
  padding: 1.2rem 0;
}
.inner-s17 .pc-block {
  position: relative;
  width: 15.1rem;
  margin: 0.6rem auto 0 -0.7rem;
}
.inner-s17 .pc-block .img-box img {
  display: block;
  width: 100%;
}
.inner-s17 .pc-block .dot {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  margin: -0.2rem 0 0 -0.2rem;
}
.inner-s17 .pc-block .dot .show {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 50%;
}
.inner-s17 .pc-block .dot .show:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s17 .pc-block .dot .show .range {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.inner-s17 .pc-block .dot .show .range i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 140, 214, 0.1);
  border-radius: 50%;
  opacity: 0;
  animation: o-map-scale 2.1s linear infinite;
}
.inner-s17 .pc-block .dot .show .range i:nth-of-type(2) {
  animation-delay: .7s;
}
.inner-s17 .pc-block .dot .show .range i:nth-of-type(3) {
  animation-delay: 1.4s;
}
.inner-s17 .pc-block .dot .show:after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #008cd6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 2;
}
.inner-s17 .pc-block .dot .hide {
  position: absolute;
  top: 100%;
  padding-top: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.inner-s17 .pc-block .dot .hide .box {
  width: 4.8rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}
.inner-s17 .pc-block .dot .hide .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.inner-s17 .pc-block .dot .hide .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #008cd6;
  position: absolute;
  left: -0.4rem;
  top: calc(50% - 0.12rem);
}
.inner-s17 .pc-block .dot .hide .info {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 2;
  font-family: 'Roboto-Light';
}
.inner-s17 .pc-block .dot .hide .info a {
  color: #008cd6;
}
.inner-s17 .pc-block .dot.rb .hide {
  right: 0;
}
.inner-s17 .pc-block .dot.lb .hide {
  left: 0;
}
.inner-s17 .pc-block .dot.cb .hide {
  left: -1.4rem;
}
@media (any-hover: hover) {
  .inner-s17 .pc-block .dot:hover .show:before {
    opacity: 1;
  }
  .inner-s17 .pc-block .dot:hover .hide {
    opacity: 1;
    visibility: visible;
  }
}
.inner-s17 .m-block {
  display: none;
  margin-top: 30px;
}
.inner-s17 .m-block .tab-tit {
  position: relative;
}
.inner-s17 .m-block .tab-tit:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  bottom: 0;
  left: 0;
}
.inner-s17 .m-block .tab-tit .item {
  width: 33.33%;
  max-width: 150px;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.inner-s17 .m-block .tab-tit .item span {
  font-size: 14px;
  color: #333333;
  text-align: center;
  transition: color .3s ease;
}
.inner-s17 .m-block .tab-tit .item:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #008cd6;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease;
}
.inner-s17 .m-block .tab-tit .item.active span {
  color: #008cd6;
}
.inner-s17 .m-block .tab-tit .item.active:after {
  opacity: 1;
  transform: scale(1);
}
.inner-s17 .m-block .tab-cont .child {
  position: relative;
  display: none;
  padding: 20px 20px 0;
}
.inner-s17 .m-block .tab-cont .child.active {
  display: block;
}
.inner-s17 .m-block .tab-cont .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.inner-s17 .m-block .tab-cont .tit:before {
  content: '';
  width: 0.04rem;
  height: 0.24rem;
  background-color: #008cd6;
  position: absolute;
  left: -20px;
  top: calc(50% - 0.12rem);
}
.inner-s17 .m-block .tab-cont .info {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 2;
  font-family: 'Roboto-Light';
}
.inner-s17 .m-block .tab-cont .info a {
  color: #008cd6;
}
.inner-s17 .info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.inner-s17 .info-block .info {
  background-color: #f7f7f7;
  width: calc((100% - 0.6rem - 5rem) / 2);
  padding: 0.2rem;
}
.inner-s17 .info-block .info:nth-of-type(1) {
  width: 5rem;
  padding: 0.4rem 0.3rem;
}
.inner-s17 .info-block .tit {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
}
.inner-s17 .info-block .inner {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.24rem;
}
.inner-s17 .info-block .inner .box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s17 .info-block .inner .box .icon {
  width: 0.2rem;
  height: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s17 .info-block .inner .box .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s17 .info-block .inner .box span {
  font-size: max(14px, 0.18rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.inner-s17 .info-block .inner .line {
  width: 1px;
  height: 0.18rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.inner-s17 .info-block .ewm-box {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s17 .info-block .ewm-box .img-box {
  width: max(120px, 1.44rem);
}
.inner-s17 .info-block .ewm-box .img-box img {
  display: block;
  width: 100%;
}
.inner-s17 .info-block .ewm-box p {
  width: max(calc(100% - 1.44rem - 0.2rem), calc(100% - 120px - 0.2rem));
  font-size: max(13px, 0.16rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}

.inner-s18 {
  padding: 1rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/event/img-2.jpg");
}
.inner-s18 .label {
  font-size: 0.36rem;
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s18 .info {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1rem;
}
.inner-s18 .box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s18 .box:before {
  content: '';
  width: max(12px, 0.16rem);
  height: max(12px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inner-s18 .box span {
  font-size: max(14px, 0.18rem);
  color: #008cd6;
  font-family: 'Roboto-Light';
}
.inner-s18 .box.time:before {
  background-image: url("../images/event/icon-1.svg");
}
.inner-s18 .box.addr:before {
  background-image: url("../images/event/icon-2.svg");
}
.inner-s18 .box.num:before {
  background-image: url("../images/event/icon-3.svg");
}

.inner-s19 {
  padding: 0.8rem 0 1.2rem;
}
.inner-s19 .mid-block .edit-para {
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 2;
}
.inner-s19 .mid-block .edit-para p {
  margin-top: 0.24rem;
}
.inner-s19 .mid-block .edit-para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s19 .mid-block .edit-para img, .inner-s19 .mid-block .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s19 .mid-block .edit-para ul {
  padding-left: 0.2rem;
}
.inner-s19 .mid-block .edit-para ul li {
  list-style: inherit;
}
.inner-s19 .bot-block {
  margin-top: 0.6rem;
}
.inner-s19 .bot-block .return-box {
  display: flex;
  align-items: center;
}
.inner-s19 .bot-block .return-box:before, .inner-s19 .bot-block .return-box:after {
  content: '';
  width: calc(50% - 0.8rem);
  height: 1px;
  background-color: #bfc1c2;
}
.inner-s19 .bot-block .return-box a {
  width: 1.6rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.1rem;
}
.inner-s19 .bot-block .return-box a:before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.svg");
}
.inner-s19 .bot-block .return-box a span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s19 .bot-block .page-box {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}
.inner-s19 .bot-block .page-box a {
  max-width: 45%;
  color: #606466;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.inner-s19 .bot-block .page-box a span {
  font-size: max(14px, 0.18rem);
}
.inner-s19 .bot-block .page-box a i {
  font-style: normal;
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Light';
}
@media (any-hover: hover) {
  .inner-s19 .bot-block .page-box a:hover {
    color: #008cd6;
  }
}

.inner-s20 {
  padding: 1.2rem 0 0;
}
.inner-s20 .swiper {
  background-color: #f7f7f7;
}
.inner-s20 .item .inner {
  display: flex;
  padding: 0.4rem;
}
.inner-s20 .item .img-box {
  width: calc(50% + 0.3rem);
  aspect-ratio: 720 / 406;
  overflow: hidden;
}
.inner-s20 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s20 .item .txt-box {
  width: calc(50% - 0.3rem);
  padding: 0 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-s20 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  transition: color .3s ease;
}
.inner-s20 .item .info {
  margin-top: 0.4rem;
}
.inner-s20 .item .box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.2rem;
}
.inner-s20 .item .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s20 .item .box:before {
  content: '';
  width: max(12px, 0.16rem);
  height: max(12px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inner-s20 .item .box span {
  font-size: max(14px, 0.18rem);
  color: #626e77;
  font-family: 'Roboto-Light';
}
.inner-s20 .item .box.time:before {
  background-image: url("../images/event/icon-1-1.svg");
}
.inner-s20 .item .box.addr:before {
  background-image: url("../images/event/icon-2-1.svg");
}
.inner-s20 .item .box.num:before {
  background-image: url("../images/event/icon-3-1.svg");
}
.inner-s20 .item .more {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s20 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s20 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
.inner-s20 .item .tit, .inner-s20 .item .info, .inner-s20 .item .more {
  opacity: 0;
}
.inner-s20 .item.swiper-slide-active .tit, .inner-s20 .item.swiper-slide-active .info, .inner-s20 .item.swiper-slide-active .more {
  animation: o-upfade-top 0.7s 0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s20 .item.swiper-slide-active .info {
  animation-delay: .1s;
}
.inner-s20 .item.swiper-slide-active .more {
  animation-delay: .2s;
}
@media (any-hover: hover) {
  .inner-s20 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s20 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s20 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}
.inner-s20 .pagination {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.12rem;
}
.inner-s20 .pagination span {
  width: 0.14rem;
  height: 0.04rem;
  background-color: #e6e6e6;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s20 .pagination span.active {
  width: 0.24rem;
  background-color: #008cd6;
}

.inner-s21 {
  padding: 0.8rem 0 1.2rem;
}
.inner-s21 .filter-box {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 0.2rem;
  position: relative;
  z-index: 2;
}
.inner-s21 .filter-box .data-box {
  position: relative;
  width: 3.2rem;
}
.inner-s21 .filter-box .data-box .show {
  height: max(40px, 0.5rem);
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 0.3rem;
  cursor: pointer;
  z-index: 2;
}
.inner-s21 .filter-box .data-box .show span {
  font-size: max(13px, 0.16rem);
  color: #9aa3ab;
}
.inner-s21 .filter-box .data-box .show:after {
  content: '';
  width: 16px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/event/icon-4.svg");
  position: absolute;
  right: 0.3rem;
  top: calc(50% - 4px);
}
.inner-s21 .filter-box .data-box .hide {
  position: absolute;
  font-size: 0;
  padding: 0.3rem;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  max-height: 3rem;
  overflow: auto;
  display: none;
}
.inner-s21 .filter-box .data-box .hide a {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #626e77;
  margin-top: 0.15rem;
  cursor: pointer;
}
.inner-s21 .filter-box .data-box .hide a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .inner-s21 .filter-box .data-box .hide a:hover {
    color: #008cd6;
  }
}
.inner-s21 .filter-box .data-box.open .show {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.inner-s21 .filter-box .data-box.open .hide {
  display: block;
}
.inner-s21 .filter-box .form-box {
  width: calc(100% - 6.8rem);
  height: max(40px, 0.5rem);
  border: 1px solid #ebebeb;
  position: relative;
  padding-right: 0.8rem;
}
.inner-s21 .filter-box .form-box input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #9aa3ab;
  background-color: transparent;
}
.inner-s21 .filter-box .form-box button {
  width: 0.8rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-3.svg");
  background-size: auto max(16px, 0.2rem);
  background-color: transparent;
  cursor: pointer;
}
.inner-s21 .items {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
}
.inner-s21 .item {
  width: 33.33%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.inner-s21 .item:nth-of-type(3n) {
  border: none;
}
.inner-s21 .item .inner {
  display: block;
  height: 100%;
  padding: 0.4rem;
  transition: all .3s ease;
}
.inner-s21 .item .img-box {
  aspect-ratio: 400 / 226;
  overflow: hidden;
}
.inner-s21 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s21 .item .txt-box {
  margin-top: 0.3rem;
}
.inner-s21 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #132630;
  font-family: 'Roboto-Medium';
  transition: color .3s ease;
}
.inner-s21 .item .info {
  margin-top: 0.3rem;
}
.inner-s21 .item .box {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.2rem;
}
.inner-s21 .item .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s21 .item .box:before {
  content: '';
  width: max(12px, 0.16rem);
  height: max(12px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inner-s21 .item .box span {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
}
.inner-s21 .item .box.time:before {
  background-image: url("../images/event/icon-1-1.svg");
}
.inner-s21 .item .box.addr:before {
  background-image: url("../images/event/icon-2-1.svg");
}
.inner-s21 .item .box.num:before {
  background-image: url("../images/event/icon-3-1.svg");
}
.inner-s21 .item .more {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s21 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s21 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s21 .item:hover .inner {
    background-color: #f7f7f7;
  }
  .inner-s21 .item:hover img {
    transform: scale(1.05);
  }
  .inner-s21 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s21 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}

.inner-s22 {
  position: relative;
  overflow: hidden;
}
.inner-s22 .item {
  position: relative;
  overflow: hidden;
}
.inner-s22 .item .img-box {
  height: 44.8vw;
  background-color: #000;
}
.inner-s22 .item img, .inner-s22 .item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s22 .item video {
  opacity: 0.6;
}
.inner-s22 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 2.2rem;
  z-index: 2;
}
.inner-s22 .item .inner-label .label {
  font-family: 'Roboto-Regular';
  color: #fff;
}
.inner-s22 .item .para {
  font-size: max(15px, 0.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s22 .item .more {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.inner-s22 .item .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s22 .item .more a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s22 .item .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-2.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s22 .item .more a:hover:after {
    background-color: #fff;
    background-image: url("../images/product/icon-1-1.svg");
  }
}
.inner-s22 .button {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/product/next.svg");
  position: absolute;
  top: calc(50% - 10px);
  z-index: 2;
  cursor: pointer;
}
.inner-s22 .prev {
  left: 0.4rem;
  transform: rotate(180deg);
}
.inner-s22 .next {
  right: 0.4rem;
}
.inner-s22 .pagination {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  grid-gap: 0.12rem;
  z-index: 2;
}
.inner-s22 .pagination span {
  width: 0.24rem;
  height: 0.04rem;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s22 .pagination span.active {
  width: 0.6rem;
  background-color: #008cd6;
}

.inner-s23 {
  position: relative;
  padding: 1.3rem 0;
}
.inner-s23 .bg {
  position: absolute;
  top: 0.1rem;
  bottom: 0.1rem;
  left: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-2.jpg");
  background-attachment: fixed;
}
.inner-s23 .inner-label .label {
  font-family: 'Roboto-Regular';
}
.inner-s23 .para {
  font-size: max(15px, 0.2rem);
  color: #132630;
  line-height: 1.5;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s23 .more {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.inner-s23 .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s23 .more a span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s23 .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s23 .more a:hover:after {
    background-color: #008cd6;
    background-image: url("../images/product/icon-1-2.svg");
  }
}
.inner-s23 .img-box {
  margin: 1rem auto 0;
  width: 100%;
  max-width: 11.94rem;
}
.inner-s23 .img-box img {
  display: block;
  width: 100%;
}

.inner-s24 {
  padding: 2.2rem 0 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-4.jpg");
  background-attachment: fixed;
  position: relative;
}
.inner-s24:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.inner-s24 .inner-label .label {
  font-family: 'Roboto-Regular';
  color: #fff;
}
.inner-s24 .para {
  font-size: max(15px, 0.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s24 .more {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.inner-s24 .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s24 .more a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s24 .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-2.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s24 .more a:hover:after {
    background-color: #fff;
    background-image: url("../images/product/icon-1-1.svg");
  }
}

.inner-s25 {
  position: relative;
  padding: 1.3rem 0;
}
.inner-s25 .bg {
  position: absolute;
  top: 0.1rem;
  bottom: 0.1rem;
  left: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-5.jpg");
  background-attachment: fixed;
}
.inner-s25 .inner-label .label {
  font-family: 'Roboto-Regular';
}
.inner-s25 .para {
  font-size: max(15px, 0.2rem);
  color: #132630;
  line-height: 1.5;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s25 .more {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.inner-s25 .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s25 .more a span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s25 .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s25 .more a:hover:after {
    background-color: #008cd6;
    background-image: url("../images/product/icon-1-2.svg");
  }
}
.inner-s25 .img-box {
  margin: 0.4rem auto 0;
  width: 100%;
  max-width: 6.4rem;
}
.inner-s25 .img-box img {
  display: block;
  width: 100%;
}

.inner-s26 {
  padding: 1.6rem 0 1.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-7.jpg");
  background-attachment: fixed;
}
.inner-s26 .inner-label .label {
  font-family: 'Roboto-Regular';
  color: #fff;
}
.inner-s26 .para {
  font-size: max(15px, 0.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s26 .more {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}
.inner-s26 .more a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s26 .more a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s26 .more a:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1-2.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s26 .more a:hover:after {
    background-color: #fff;
    background-image: url("../images/product/icon-1-1.svg");
  }
}
.inner-s26 .img-box {
  margin: 1rem auto 0;
  width: 100%;
  max-width: 10.98rem;
}
.inner-s26 .img-box img {
  display: block;
  width: 100%;
}

.inner-s27 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-9.jpg");
  background-attachment: fixed;
}
.inner-s27 .wrap-s {
  display: flex;
  align-items: center;
}
.inner-s27 .left-box {
  width: 50%;
}
.inner-s27 .left-box .inner-label {
  justify-content: flex-start;
}
.inner-s27 .left-box .inner-label .label {
  font-family: 'Roboto-Medium';
  color: #fff;
  text-align: left;
}
.inner-s27 .left-box .para {
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-family: 'Roboto-Light';
  margin-top: 0.4rem;
}
.inner-s27 .left-box .btns {
  margin-top: 0.5rem;
  display: flex;
}
.inner-s27 .left-box .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  transition: all .3s ease;
}
.inner-s27 .left-box .btns a:before {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/product/icon-2.svg");
}
.inner-s27 .left-box .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s27 .left-box .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
}
.inner-s27 .right-box {
  width: 50%;
  padding-left: 1.2rem;
}
.inner-s27 .right-box .items {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.inner-s27 .right-box .item {
  aspect-ratio: 6 / 5;
}
.inner-s27 .right-box .item .img-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s27 .right-box .item .img-box img {
  max-width: 80%;
  max-height: 80%;
}

.inner-s28 {
  padding: 1.2rem 0;
  background-color: #f0f0f0;
}
.inner-s28 .edit-para {
  margin-top: 0.4rem;
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 2;
}
.inner-s28 .edit-para p {
  margin-top: 0.24rem;
}
.inner-s28 .edit-para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s28 .edit-para img, .inner-s28 .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s28 .edit-para ul {
  padding-left: 0.2rem;
}
.inner-s28 .edit-para ul li {
  list-style: inherit;
}

.inner-s29 {
  padding: 1.2rem 0;
}
.inner-s29 .edit-para {
  margin-top: 0.4rem;
}
.inner-s29 .edit-para table {
  width: 100%;
}
.inner-s29 .edit-para table thead {
  background-color: #008cd6;
}
.inner-s29 .edit-para table th {
  text-align: center;
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-weight: normal;
  padding: 0.15rem;
}
.inner-s29 .edit-para table tr {
  border-bottom: 1px solid #ebebeb;
}
.inner-s29 .edit-para table td {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  text-align: center;
  padding: 0.1rem 0.15rem;
}

.inner-s30 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-12.jpg");
  background-attachment: fixed;
}
.inner-s30 .edit-para {
  margin-top: 0.4rem;
  font-size: max(14px, 0.18rem);
  color: #606466;
  line-height: 2;
}
.inner-s30 .edit-para p {
  margin-top: 0.24rem;
}
.inner-s30 .edit-para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s30 .edit-para img, .inner-s30 .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s30 .edit-para ul {
  padding-left: 0.2rem;
}
.inner-s30 .edit-para ul li {
  list-style: inherit;
}

.inner-s31 {
  padding: 1.2rem 0;
}
.inner-s31 .inner-label {
  justify-content: flex-start;
}
.inner-s31 .inner-label .label {
  text-align: left;
}
.inner-s31 .block {
  margin-top: 1rem;
}
.inner-s31 .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s31 .items {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.4rem;
}
.inner-s31 .item {
  width: calc((100% - 0.4rem) / 2);
}
.inner-s31 .item .inner {
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 0.4rem;
  transition: all .3s ease;
}
.inner-s31 .item .img-box {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s31 .item .img-box img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s31 .item .txt-box {
  width: calc(100% - 1.8rem);
  padding-left: 0.4rem;
}
.inner-s31 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  transition: color .3s ease;
}
.inner-s31 .item p {
  font-size: max(12px, 0.14rem);
  color: #626e77;
  line-height: 1.5;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s31 .item .more {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s31 .item .more span {
  font-size: max(13px, 0.16rem);
  color: #008cd6;
}
.inner-s31 .item .more:after {
  content: '';
  width: 24px;
  height: 24px;
  border: 1px solid #008cd6;
  border-radius: 50%;
  background-color: rgba(0, 140, 214, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/industries/icon-1.svg");
  background-size: auto 8px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s31 .item:hover .inner {
    box-shadow: 0 0.2rem 0.3rem rgba(10, 32, 68, 0.1);
  }
  .inner-s31 .item:hover .tit {
    color: #008cd6;
  }
  .inner-s31 .item:hover .more:after {
    background-color: #008cd6;
    background-image: url("../images/industries/icon-1-1.svg");
  }
}

.inner-s32 {
  padding: 0 0 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-18.jpg");
  background-attachment: fixed;
}
.inner-s32.style-1 .bot-block .item .tit {
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Regular';
  line-height: 1.5;
}
.inner-s32.style-2 .top-block .img-box {
  bottom: 1rem;
}
.inner-s32.style-2 .top-block .img-box img {
  max-width: 100%;
}
.inner-s32.style-2 .bot-block .item .tit {
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Regular';
  line-height: 1.5;
}
.inner-s32 .top-block {
  height: 7.4rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 0.1rem;
}
.inner-s32 .top-block .txt-box {
  width: calc(50% + 0.6rem);
  padding-right: 0.6rem;
}
.inner-s32 .top-block .label {
  font-size: 0.48rem;
  color: #fff;
  font-family: 'Roboto-Medium';
}
.inner-s32 .top-block .para {
  margin-top: 0.5rem;
  font-size: max(14px, 0.18rem);
  line-height: 1.78em;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Roboto-Light';
}
.inner-s32 .top-block .btns {
  margin-top: 0.5rem;
  display: flex;
}
.inner-s32 .top-block .btns a {
  min-width: 1.8rem;
  padding: 0 0.2rem;
  height: max(40px, 0.48rem);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  transition: all .3s ease;
}
.inner-s32 .top-block .btns a:before {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/product/icon-2.svg");
}
.inner-s32 .top-block .btns a span {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s32 .top-block .btns a:hover {
    background-color: #008cd6;
    border-color: #008cd6;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 140, 214, 0.3);
    transform: translateY(-2px);
  }
}
.inner-s32 .top-block .img-box {
  width: calc(50% - 0.6rem);
  position: absolute;
  right: 0;
  top: 1.4rem;
  bottom: -1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-s32 .top-block .img-box img {
  max-width: 90%;
  max-height: 90%;
}
.inner-s32 .bot-block .item {
  width: calc((100% - 0.72rem) / 4);
  height: auto;
  margin-right: 0.24rem;
  padding: 0.5rem 0.3rem 0.4rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.inner-s32 .bot-block .item:last-of-type {
  margin-right: 0;
}
.inner-s32 .bot-block .item .icon {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s32 .bot-block .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s32 .bot-block .item .tit {
  margin-top: 0.5rem;
  font-size: max(14px, 0.18rem);
  color: #fff;
  text-align: center;
  font-family: 'Roboto-Medium';
}
.inner-s32 .bot-block .item p {
  font-size: max(12px, 0.14rem);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s32 .bot-block .pagination {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.08rem;
}
.inner-s32 .bot-block .pagination span {
  width: 0.14rem;
  height: 0.04rem;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s32 .bot-block .pagination span.active {
  width: 0.24rem;
  background-color: #008cd6;
}

.inner-s33 {
  padding: 1.2rem 0;
}
.inner-s33 .img-box {
  margin-top: 0.5rem;
}
.inner-s33 .img-box img {
  display: block;
  width: 100%;
}

.inner-s34 {
  padding: 9vw 0 30vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-21.jpg");
}
.inner-s34 .inner-label .label {
  color: #fff;
}
.inner-s34 .img-box {
  width: 5.59rem;
  max-width: 100%;
  margin: 0.3rem auto 0;
}
.inner-s34 .img-box img {
  display: block;
  width: 100%;
}
.inner-s34 .para {
  margin-top: 0.4rem;
  font-size: max(14px, 0.18rem);
  color: #fff;
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 2;
}

.inner-s35 {
  padding: 1.2rem 0;
}
.inner-s35 .para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #626e77;
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 2;
}
.inner-s35 .cont-block {
  margin-top: 0.6rem;
  position: relative;
}
.inner-s35 .txt-box {
  width: calc(50% + 0.4rem);
  border: 1px solid #b7def4;
  background-color: #e5f3fb;
  padding: 0.4rem;
}
.inner-s35 .txt-box .topbox {
  background-color: #f5fafd;
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 1.4rem;
  display: flex;
  align-items: center;
  position: relative;
}
.inner-s35 .txt-box .topbox:before {
  content: '';
  width: 1px;
  height: 0.6rem;
  position: absolute;
  top: calc(50% - 0.3rem);
  left: 50%;
  background-color: #008cd6;
  opacity: 0.4;
}
.inner-s35 .txt-box .topbox .box {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s35 .txt-box .topbox .box img {
  max-width: 2.2rem;
}
.inner-s35 .txt-box .botbox {
  margin-top: 0.2rem;
  display: flex;
  gap: 0.2rem;
}
.inner-s35 .txt-box .botbox .inner {
  width: calc((100% - 0.2rem) / 2);
}
.inner-s35 .txt-box .botbox .box {
  height: max(120px, 1.7rem);
  background-color: #f5fafd;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.inner-s35 .txt-box .botbox .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s35 .txt-box .botbox .box span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: max(15px, 0.2rem);
  font-family: 'Roboto-Light';
  color: #626e77;
}
.inner-s35 .txt-box .botbox .box p {
  font-size: 0.28rem;
  color: #008cd6;
  text-align: center;
  font-family: 'Roboto-Medium';
  padding: 0.1rem 0;
}
.inner-s35 .txt-box .botbox-1 {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.inner-s35 .txt-box .botbox-1 .inner {
  width: calc((100% - 0.2rem) / 3);
  padding: 0.3rem 0.15rem;
  background-color: #f5fafd;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.inner-s35 .txt-box .botbox-1 .icon {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s35 .txt-box .botbox-1 .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s35 .txt-box .botbox-1 span {
  display: block;
  width: 100%;
  font-size: max(15px, 0.22rem);
  color: #008cd6;
  font-family: 'Roboto-Medium';
  text-align: center;
  margin-top: 0.3rem;
}
.inner-s35 .txt-box .botbox-1 .spara {
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Light';
  color: #626e77;
  margin-top: 0.15rem;
}
.inner-s35 .txt-box .botbox-1 .spara p {
  margin-top: 0.1rem;
}
.inner-s35 .txt-box .botbox-1 .spara p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s35 .img-box {
  width: 7.43rem;
  position: absolute;
  right: -0.2rem;
  top: 0;
}
.inner-s35 .img-box img {
  display: block;
  width: 100%;
}

.inner-s36 {
  padding: 1.6rem 0 1.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-26.jpg");
}
.inner-s36 .inner-label .label {
  color: #fff;
}
.inner-s36 .para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #fff;
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 1.67;
}
.inner-s36 .para p {
  margin-top: 0.15rem;
}
.inner-s36 .para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s36 .img-box {
  width: 100%;
  max-width: 9.56rem;
  margin: 0.3rem auto 0;
}
.inner-s36 .img-box img {
  display: block;
  width: 100%;
}

.inner-s37 {
  padding: 1.2rem 0 0;
}
.inner-s37 .para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #626e77;
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 2;
}
.inner-s37 .data-box {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s37 .data-box .line {
  width: 1px;
  height: 1rem;
  background-color: #008cd6;
  opacity: 0.2;
}
.inner-s37 .data .num {
  position: relative;
  text-align: center;
}
.inner-s37 .data .num .s {
  position: absolute;
  top: 0;
  left: 0;
}
.inner-s37 .data .num .h {
  opacity: 0;
}
.inner-s37 .data .num span {
  font-size: 0.9rem;
  color: #008cd6;
  font-family: 'Roboto-Bold';
}
.inner-s37 .data .num i {
  font-size: 0.36rem;
  color: #008cd6;
  font-family: 'Roboto-Medium';
  font-style: normal;
}
.inner-s37 .data p {
  font-size: max(14px, 0.18rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  text-align: center;
}
.inner-s37 .img-box {
  margin: 0.8rem auto 0;
  width: 100%;
  max-width: 9.25rem;
}
.inner-s37 .img-box img {
  display: block;
  width: 100%;
}

.inner-s38 {
  padding: 1.2rem 0 0;
  background-color: #f2f2f2;
}
.inner-s38 .para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #626e77;
  text-align: center;
  font-family: 'Roboto-Light';
  line-height: 2;
}
.inner-s38 .data {
  font-size: 1rem;
  color: #008cd6;
  font-family: 'Roboto-Bold';
  text-align: center;
  margin-top: 0.5rem;
}
.inner-s38 .img-box {
  margin: 0.8rem auto 0;
  width: 100%;
  max-width: 9.57rem;
}
.inner-s38 .img-box img {
  display: block;
  width: 100%;
}

.inner-s39 {
  padding: 3rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-30.jpg");
  background-attachment: fixed;
}
.inner-s39 .label {
  font-size: 0.48rem;
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s39 .para {
  max-width: 6rem;
  font-size: max(14px, 0.18rem);
  color: #626e77;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s39 .data {
  margin-top: 0.6rem;
}
.inner-s39 .data span {
  display: block;
  font-size: max(18px, 0.24rem);
  color: #626e77;
  font-family: 'Roboto-Light';
}
.inner-s39 .data .num em, .inner-s39 .data .num i {
  font-style: normal;
  font-size: 2rem;
  color: #008cd6;
  font-family: 'Roboto-Bold';
  line-height: 1;
}

.inner-s40 {
  padding: 1.2rem 0;
  background-color: #fcfdfc;
}
.inner-s40.style-1 .left-box .item .show:after {
  display: none;
}
.inner-s40 .cont-block {
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.inner-s40 .left-box {
  width: calc(100% - 9.2rem);
  padding-right: 0.8rem;
}
.inner-s40 .left-box .item {
  margin-top: 0.2rem;
  padding: 0 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.inner-s40 .left-box .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s40 .left-box .item .show {
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.inner-s40 .left-box .item .show .tit {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s40 .left-box .item .show .icon {
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
}
.inner-s40 .left-box .item .show .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s40 .left-box .item .show span {
  font-size: max(15px, 0.2rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s40 .left-box .item .show:after {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/product/icon-4-1.png");
}
.inner-s40 .left-box .item .hide {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0 0.6rem;
  display: none;
}
.inner-s40 .left-box .item .info p {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  position: relative;
  padding-left: 0.15rem;
  margin-top: 0.2rem;
}
.inner-s40 .left-box .item .info p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s40 .left-box .item .info p:before {
  content: '•';
  font-size: max(13px, 0.16rem);
  color: #008cd6;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Roboto-Medium';
}
.inner-s40 .left-box .item .iconbox {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}
.inner-s40 .left-box .item .iconbox .icon {
  width: 0.26rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
}
.inner-s40 .left-box .item .iconbox .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s40 .left-box .item .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Light';
  line-height: 1.5;
}
.inner-s40 .left-box .item .imgbox {
  margin-top: 0.24rem;
  max-width: 2.45rem;
}
.inner-s40 .left-box .item .imgbox img {
  display: block;
  width: 100%;
}
.inner-s40 .left-box .item.active .show:after {
  background-image: url("../images/product/icon-4-2.png");
}
.inner-s40 .right-box {
  width: 9.2rem;
}
.inner-s40 .right-box img {
  display: block;
  width: 100%;
}

.inner-s41 {
  padding: 1.2rem 0;
}
.inner-s41 .img-box {
  width: 100%;
  max-width: 13.7rem;
}
.inner-s41 .img-box img {
  display: block;
  width: 100%;
}

.inner-s42 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-34.jpg");
  background-attachment: fixed;
}
.inner-s42 .inner-label .label {
  color: #fff;
}
.inner-s42 .cont-block {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
}
.inner-s42 .txt-box {
  width: calc(50% - 0.8rem);
  margin-right: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 0 0.4rem;
}
.inner-s42 .txt-box .topbox {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.24rem 0;
  display: flex;
}
.inner-s42 .txt-box .topbox span {
  width: 50%;
  font-size: max(15px, 0.2rem);
  color: #fff;
  text-align: center;
}
.inner-s42 .txt-box .botbox {
  padding: 0.24rem 0;
}
.inner-s42 .txt-box .botbox li {
  display: flex;
  margin-top: 0.24rem;
}
.inner-s42 .txt-box .botbox li:nth-of-type(1) {
  margin-top: 0;
}
.inner-s42 .txt-box .botbox li span {
  width: 50%;
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Roboto-Light';
  text-align: center;
}
.inner-s42 .img-box {
  width: 50%;
  padding-left: 0.2rem;
  order: 2;
}
.inner-s42 .img-box img {
  display: block;
  width: 100%;
}

.inner-s43 {
  padding: 1.2rem 0;
  background-color: #f0f0f0;
}
.inner-s43 .img-box {
  margin-top: 0.5rem;
}
.inner-s43 .img-box img {
  display: block;
  width: 100%;
}

.inner-s44 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-41.jpg");
  background-attachment: fixed;
}
.inner-s44 .inner-label .label {
  color: #fff;
}
.inner-s44 .img-box {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.inner-s44 .img-box img {
  max-width: 100%;
}
.inner-s44 .tips {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  font-family: 'Roboto-Light';
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.inner-s45 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-45.jpg");
  background-attachment: fixed;
}
.inner-s45 .inner-label .label {
  color: #fff;
}
.inner-s45 .cont-block {
  margin-top: 0.5rem;
  position: relative;
}
.inner-s45 .cont-block .img-box {
  width: 2.8rem;
  position: absolute;
  top: 0.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner-s45 .cont-block .img-box img {
  width: 100%;
}
.inner-s45 .items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
.inner-s45 .item {
  width: calc((100% - 4rem) / 2);
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.inner-s45 .item:nth-of-type(odd) {
  text-align: right;
}
.inner-s45 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #fff;
}
.inner-s45 .item .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.78;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}

.inner-s46 {
  height: 150vh;
  position: relative;
  z-index: 1;
}
.inner-s46 .bg-box {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/banner-1.jpg");
}
.inner-s46 .icon {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  overflow: hidden;
  z-index: 2;
}
.inner-s46 .icon .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center 40%;
  z-index: 1;
}
.inner-s46 .icon .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.inner-s46 .icon .line.line-1:before, .inner-s46 .icon .line.line-1:after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(50vh - 4.8rem);
  background-color: #fff;
}
.inner-s46 .icon .line.line-1:before {
  top: 0;
}
.inner-s46 .icon .line.line-1:after {
  bottom: 0;
}
.inner-s46 .icon .line.line-2:before, .inner-s46 .icon .line.line-2:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: calc(50vw - 8rem);
  background-color: #fff;
}
.inner-s46 .icon .line.line-2:before {
  left: 0;
}
.inner-s46 .icon .line.line-2:after {
  right: 0;
}
.inner-s46 .icon .img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19.2rem;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.inner-s46 .icon img {
  display: block;
  width: 100%;
}
.inner-s46 .txt-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
}
.inner-s46 .txt-box .pic-box {
  margin: 0 auto 0.3rem;
  width: 70%;
  max-width: 300px;
  display: none;
}
.inner-s46 .txt-box .pic-box img {
  display: block;
  width: 100%;
}
.inner-s46 .txt-box .para {
  font-size: max(13px, 0.16rem);
  color: #132630;
  font-family: 'Roboto-Light';
  line-height: 1.5;
  text-align: center;
  margin-top: 0.3rem;
}
.inner-s46 .dot-box {
  position: absolute;
  z-index: 2;
}
.inner-s46 .dot-box.pos-1 {
  left: -0.1rem;
  bottom: 1rem;
  width: 3.41rem;
  height: 7.68rem;
}
.inner-s46 .dot-box.pos-2 {
  right: 0;
  bottom: 1rem;
  width: 3rem;
  height: 6.25rem;
}
.inner-s46 .dot-box img {
  display: block;
  width: 100%;
}

.inner-s47 {
  margin-top: -40vh;
  position: relative;
  z-index: 2;
}
.inner-s47.scroll {
  height: 175vh;
}
.inner-s47 .wrap-s {
  height: 100%;
  padding-top: 16.67vh;
}
.inner-s47 .cont-block {
  background-image: linear-gradient(180deg, #57c1f9, #008cd6);
  border-radius: 0.16rem;
  height: 66.66vh;
  min-height: 7rem;
  position: sticky;
  top: 16.67vh;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-s47 .block {
  display: flex;
  height: calc(100% - 3rem);
  margin-top: 0.3rem;
}
.inner-s47 .label {
  overflow: hidden;
  display: flex;
}
.inner-s47 .label .tit {
  font-size: 0.36rem;
  color: #ffffff;
  position: relative;
  padding: 0 0.4rem 0.24rem 0;
}
.inner-s47 .label .tit:after {
  content: '';
  width: 1.91rem;
  height: 0.52rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/about/img-7.png");
  position: absolute;
  right: 0;
  bottom: 0;
}
.inner-s47 .left-block {
  width: 50%;
  overflow: hidden;
}
.inner-s47 .left-block .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
  font-family: 'Roboto-Light';
}
.inner-s47 .right-block {
  width: calc(50% - 1rem);
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  grid-row-gap: 0.8rem;
}
.inner-s47 .right-block:before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
}
.inner-s47 .right-block .data {
  width: 50%;
}
.inner-s47 .right-block .data .icon {
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.inner-s47 .right-block .data .icon img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.4;
}
.inner-s47 .right-block .data .num {
  margin-top: 0.2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.inner-s47 .right-block .data .num span {
  font-size: 0.6rem;
  color: #fff;
  font-family: 'Rajdhani-Regular';
}
.inner-s47 .right-block .data .num i {
  font-style: normal;
  font-size: 0.2rem;
  color: #fff;
}
.inner-s47 .right-block .data p {
  font-size: max(13px, 0.16rem);
  color: #fff;
  text-align: center;
}

.inner-s48 {
  padding: 1.5rem 0 27vw;
  background: #fff url("../images/about/img-2.png") center bottom no-repeat;
  background-size: 100% auto;
}
.inner-s48 .para {
  max-width: 7.6rem;
  margin: 0.3rem auto 0;
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.78;
}

.inner-s49 {
  padding: 1.5rem 0 27vw;
  background: #f0f6fa url("../images/about/img-3.png") center bottom no-repeat;
  background-size: 100% auto;
}
.inner-s49 .stit {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  text-align: center;
  font-family: 'Roboto-Light';
  margin-bottom: 0.2rem;
}
.inner-s49 .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.78;
  margin-top: 0.3rem;
}
.inner-s49 .s-label {
  font-size: max(18px, 0.24rem);
  color: #132630;
  text-align: center;
  font-family: 'Roboto-Medium';
  margin-top: 0.8rem;
}
.inner-s49 .cont-block {
  margin-top: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.inner-s49 .cont-block .left-box {
  width: 2.8rem;
}
.inner-s49 .cont-block .left-box .box {
  position: relative;
  aspect-ratio: 280 / 120;
  margin-top: 1.2rem;
  cursor: pointer;
}
.inner-s49 .cont-block .left-box .box:nth-of-type(1) {
  margin-top: 0;
}
.inner-s49 .cont-block .left-box .box:nth-of-type(2):before, .inner-s49 .cont-block .left-box .box:nth-of-type(2):after {
  transform: rotate(180deg);
}
.inner-s49 .cont-block .left-box .box:before, .inner-s49 .cont-block .left-box .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .3s ease;
  z-index: 1;
}
.inner-s49 .cont-block .left-box .box:before {
  background-image: url("../images/about/img-4-1.png");
}
.inner-s49 .cont-block .left-box .box:after {
  background-image: url("../images/about/img-4-2.png");
  opacity: 0;
}
.inner-s49 .cont-block .left-box .box .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  position: relative;
  z-index: 2;
}
.inner-s49 .cont-block .left-box .box .icon {
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
}
.inner-s49 .cont-block .left-box .box .icon 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-s49 .cont-block .left-box .box .icon i.h {
  opacity: 0;
}
.inner-s49 .cont-block .left-box .box span {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  font-family: 'Roboto-Medium';
  transition: color .3s ease;
}
.inner-s49 .cont-block .left-box .box.active:before {
  opacity: 0;
}
.inner-s49 .cont-block .left-box .box.active:after {
  opacity: 1;
}
.inner-s49 .cont-block .left-box .box.active .icon i.s {
  opacity: 0;
}
.inner-s49 .cont-block .left-box .box.active .icon i.h {
  opacity: 1;
}
.inner-s49 .cont-block .left-box .box.active span {
  color: #fff;
}
.inner-s49 .cont-block .center-box {
  width: 4.6rem;
  height: 4.6rem;
  position: relative;
}
.inner-s49 .cont-block .center-box .item {
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  transform-origin: center bottom;
  pointer-events: none;
}
.inner-s49 .cont-block .center-box .item:nth-of-type(2) {
  transform: rotate(90deg);
}
.inner-s49 .cont-block .center-box .item:nth-of-type(2) .inner {
  transform: rotate(-90deg);
}
.inner-s49 .cont-block .center-box .item:nth-of-type(3) {
  transform: rotate(180deg);
}
.inner-s49 .cont-block .center-box .item:nth-of-type(3) .inner {
  transform: rotate(-180deg);
}
.inner-s49 .cont-block .center-box .item:nth-of-type(4) {
  transform: rotate(270deg);
}
.inner-s49 .cont-block .center-box .item:nth-of-type(4) .inner {
  transform: rotate(-270deg);
}
.inner-s49 .cont-block .center-box .item .box {
  width: 2.7rem;
  height: 2.3rem;
  position: absolute;
  top: 0;
  right: -0.4rem;
}
.inner-s49 .cont-block .center-box .item .svg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mask: linear-gradient(180deg, #fff 90%, rgba(255, 255, 255, 0) 100%);
  transition: opacity .3s ease;
}
.inner-s49 .cont-block .center-box .item svg {
  display: block;
  width: 100%;
  height: 100%;
}
.inner-s49 .cont-block .center-box .item path {
  pointer-events: auto;
  cursor: pointer;
}
.inner-s49 .cont-block .center-box .item .inner {
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  pointer-events: none;
}
.inner-s49 .cont-block .center-box .item .inner .icon {
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
}
.inner-s49 .cont-block .center-box .item .inner .icon 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-s49 .cont-block .center-box .item .inner .icon i.h {
  opacity: 0;
}
.inner-s49 .cont-block .center-box .item .inner span {
  width: 100%;
  font-size: max(13px, 0.16rem);
  color: #626e77;
  text-align: center;
  font-family: 'Roboto-Medium';
  margin-top: 0.1rem;
  transition: color .3s ease;
}
.inner-s49 .cont-block .center-box .item.active .svg-box {
  opacity: 1;
}
.inner-s49 .cont-block .center-box .item.active .inner .icon i.s {
  opacity: 0;
}
.inner-s49 .cont-block .center-box .item.active .inner .icon i.h {
  opacity: 1;
}
.inner-s49 .cont-block .center-box .item.active .inner span {
  color: #fff;
}
.inner-s49 .cont-block .right-box {
  width: calc(100% - 7.4rem);
  position: absolute;
  right: 0;
  top: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 0.16rem 0.6rem rgba(0, 50, 76, 0.1);
  padding: 0.6rem;
  z-index: 3;
}
.inner-s49 .cont-block .right-box .child {
  display: none;
}
.inner-s49 .cont-block .right-box .child.active {
  display: block;
}
.inner-s49 .cont-block .right-box .tit {
  font-size: max(15px, 0.16rem);
  color: #132630;
  font-family: 'Roboto-Medium';
}
.inner-s49 .cont-block .right-box .para {
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 1.78;
  font-family: 'Roboto-Light';
  margin-top: 0.2rem;
}
.inner-s49 .cont-block .right-box .para span {
  font-size: inherit !important;
  font-family: 'Roboto-Regular';
  color: #132630;
}
.inner-s49 .cont-block .right-box .para ul {
  padding-left: 0.2rem;
}
.inner-s49 .cont-block .right-box .para li {
  list-style: inherit !important;
}
.inner-s49 .m-block {
  display: none;
  margin-top: 30px;
}
.inner-s49 .m-block .tab-tit {
  position: relative;
}
.inner-s49 .m-block .tab-tit:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
  bottom: 0;
  left: 0;
}
.inner-s49 .m-block .tab-tit .item {
  width: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  cursor: pointer;
  margin-right: 20px;
  padding: 0 5px 15px;
}
.inner-s49 .m-block .tab-tit .item:last-of-type {
  margin-right: 0;
}
.inner-s49 .m-block .tab-tit .item .icon {
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
}
.inner-s49 .m-block .tab-tit .item .icon 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-s49 .m-block .tab-tit .item .icon i.h {
  opacity: 0;
}
.inner-s49 .m-block .tab-tit .item span {
  font-size: 14px;
  color: #333333;
  text-align: center;
  transition: color .3s ease;
}
.inner-s49 .m-block .tab-tit .item:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #008cd6;
  opacity: 0;
  transform: scale(0);
  transition: all .3s ease;
}
.inner-s49 .m-block .tab-tit .item.active span {
  color: #008cd6;
}
.inner-s49 .m-block .tab-tit .item.active:after {
  opacity: 1;
  transform: scale(1);
}
.inner-s49 .m-block .tab-cont .child {
  position: relative;
  display: none;
  padding: 20px 0 0;
}
.inner-s49 .m-block .tab-cont .child.active {
  display: block;
}
.inner-s49 .m-block .tab-cont .tit {
  font-size: 15px;
  color: #132630;
  font-family: 'Roboto-Medium';
  position: relative;
}
.inner-s49 .m-block .tab-cont .info {
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: max(13px, 0.16rem);
  color: #626e77;
  line-height: 2;
  font-family: 'Roboto-Light';
}
.inner-s49 .m-block .tab-cont .info a {
  color: #008cd6;
}

.inner-s50 {
  position: relative;
  z-index: 2;
}
.inner-s50 .info-box {
  width: 100%;
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  z-index: 2;
}
.inner-s50 .info-box .wrap-s {
  display: flex;
  justify-content: flex-end;
  gap: 0.2rem;
}
.inner-s50 .info-box .box {
  min-width: 3.3rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.26rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s50 .info-box .box .tit {
  font-size: max(15px, 0.2rem);
  color: #132630;
  white-space: nowrap;
}
.inner-s50 .info-box .box .line {
  width: 1px;
  height: 0.48rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.inner-s50 .info-box .box p {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-top: 0.15rem;
}
.inner-s50 .info-box .box p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s50 .info-box .box p.tel:before {
  background-image: url("../images/contact/icon-1.svg");
}
.inner-s50 .info-box .box p.mail:before {
  background-image: url("../images/contact/icon-2.svg");
}
.inner-s50 .info-box .box p:before {
  content: '';
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.inner-s50 .info-box .box p span {
  font-size: max(13px, 0.16rem);
  color: #132630;
  font-family: 'Roboto-Light';
}

.other-s1 .flex {
  display: flex;
}
.other-s1 .left-box {
  width: 3.7rem;
  padding: 1.2rem 0.3rem 1.2rem 0;
}
.other-s1 .sticky {
  position: sticky;
  top: 1.8rem;
}
.other-s1 .position span {
  display: block;
  font-size: max(10px, 0.14rem);
  color: #8e9aa9;
  border-radius: 5px;
  padding: 0.16rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.other-s1 .position span:after {
  content: '';
  width: 0.2rem;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/other/icon-1.svg");
  position: absolute;
  right: 0.2rem;
  top: calc(50% - 5px);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.other-s1 .position span.active {
  background-color: #f7f8fa;
  color: #353844;
}
.other-s1 .position span.active:after {
  opacity: 1;
}
.other-s1 .right-box {
  width: calc(100% - 3.7rem);
  padding: 1.2rem 0;
  border-left: 1px solid #ebebeb;
  padding-left: 0.6rem;
}
.other-s1 .right-box .block {
  margin-top: 0.7rem;
}
.other-s1 .right-box .block:nth-of-type(1) {
  margin-top: 0;
}
.other-s1 .right-box .tit {
  overflow: hidden;
}
.other-s1 .right-box .tit span {
  display: block;
  font-size: max(16px, 0.24rem);
  line-height: 1;
  color: #353844;
  position: relative;
  padding-left: 0.2rem;
}
.other-s1 .right-box .tit span:before {
  content: '';
  width: 0.04rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #008cd6;
}
.other-s1 .right-box .para {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #ebebeb;
  font-size: max(13px, 0.16rem);
  color: #353844;
  line-height: 1.5;
}

.search-s1 {
  padding: 1.2rem 0;
  background-color: #f2f2f2;
}
.search-s1 .form {
  position: relative;
  width: 100%;
  max-width: 7.2rem;
  margin: 0 auto;
  background-color: #fff;
  height: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
}
.search-s1 .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #3e4247;
}
.search-s1 .form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-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: #000;
}
.search-s2 .items {
  margin: 0.24rem 0 0.4rem;
}
.search-s2 .item {
  position: relative;
}
.search-s2 .item:before, .search-s2 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.04rem;
}
.search-s2 .item:before {
  background-color: #f2f2f2;
}
.search-s2 .item:after {
  background-color: #008cd6;
  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: #008cd6;
  font-weight: 400;
}
.search-s2 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #000;
}
@media (any-hover: hover) {
  .search-s2 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
}

@media only screen and (max-width: 1700px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1685px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1670px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1655px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1625px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1610px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1595px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1565px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1550px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1535px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1505px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1490px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1475px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1445px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1430px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1415px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1385px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1355px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1325px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1310px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1295px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 70px;
  }
}
@media screen and (max-width: 1681px) {
  .header .flex {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .header li {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1025px) {
  body {
    min-width: 100%;
    padding-top: 60px;
  }

  .wrap-s {
    width: 86%;
  }

  .header {
    height: 60px;
    background-color: #ffff;
    padding: 0 7vw;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .header .logo img.show {
    opacity: 0;
  }
  .header .logo img.hide {
    opacity: 1;
  }
  .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 i {
    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/drop-2.svg");
    background-size: auto 6px;
    z-index: 1;
  }
  .header li .pdnav {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 20px 10px;
    background: none;
    display: none;
    box-shadow: none;
  }
  .header li .pdnav .left-box {
    display: none;
  }
  .header li .pdnav .right-box {
    width: 100%;
    padding: 0;
  }
  .header li .pdnav .right-box .child {
    display: block;
    margin-top: 40px;
  }
  .header li .pdnav .right-box .child:nth-of-type(1) {
    margin-top: 0;
  }
  .header li .pdnav .right-box .show {
    display: block;
  }
  .header li .pdnav .right-box .items {
    flex-wrap: wrap;
  }
  .header li .pdnav .right-box .item {
    width: calc((100% - 0.2rem) / 2);
    max-width: none;
    border: 1px solid #e6e6e6;
  }
  .header li .pdnav .right-box .item .img-box {
    width: 100%;
    height: 30vw;
    aspect-ratio: auto;
  }
  .header li .pdnav .right-box .item .tit {
    padding: 0 5px 10px;
  }
  .header li .newsnav {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    font-size: 0;
    padding: 10px;
  }
  .header li .newsnav a {
    text-align: left;
  }
  .header .ope {
    margin-right: 40px;
    gap: 20px;
  }
  .header .search-btn {
    width: 18px;
    height: 18px;
    background-color: transparent;
    background-image: url("../images/search-2.svg");
    background-size: contain;
    border-radius: 0;
  }
  .header .global .show span {
    display: none;
  }
  .header .global .show:before {
    width: 18px;
    height: 18px;
    background-image: url("../images/global-2.svg");
  }
  .header .global .show:after {
    margin-left: 5px;
    background-image: url("../images/drop-2.svg");
  }
  .header .global .hide:before {
    right: 11px;
  }
  .header .mNavBtn {
    display: block;
    width: 20px;
    height: 16px;
    right: 7%;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .header .mNavBtn span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #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 {
    display: none;
  }

  .footer {
    background-position: 20vw -5vw;
    background-size: 80% auto;
  }

  .footer .top-block {
    display: block;
    padding: 30px 0;
  }

  .footer .top-block .left-box {
    display: none;
  }

  .footer .top-block .center-box {
    display: none;
  }

  .footer .top-block .right-box {
    padding-top: 0;
  }

  .footer .top-block .right-box .tit {
    text-align: center;
  }

  .footer .top-block .right-box .share {
    justify-content: center;
  }

  .footer .top-block .right-box .info p {
    text-align: center;
  }

  .footer .bot-block {
    display: block;
    padding: 20px 0;
  }

  .footer .bot-block .left-box {
    display: block;
  }

  .footer .bot-block .left-box .img-box {
    display: none;
  }

  .footer .bot-block .left-box .copyright {
    text-align: center;
  }

  .footer .bot-block .right-box {
    margin-top: 10px;
    justify-content: center;
  }

  .c-crumbs {
    display: none;
  }

  .c-banner .crumbs {
    display: none;
  }

  .inner-s2 .item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }

  .inner-s3 {
    background-attachment: inherit;
  }

  .inner-s3 .cont-block {
    display: block;
    padding: 40px;
  }

  .inner-s3 .tab-tit {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    padding-bottom: 20px;
  }

  .inner-s3 .tab-tit .item {
    width: auto;
    max-width: 60%;
    margin: 0 20px 0 0;
  }
  .inner-s3 .tab-tit .item:last-of-type {
    margin-right: 0;
  }

  .inner-s3 .tab-cont {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }

  .inner-s4 .cont-block {
    display: block;
  }

  .inner-s4 .img-box {
    width: 100%;
  }

  .inner-s4 .txt-box {
    width: 100%;
    padding: 30px 20px;
  }

  .inner-s4 .data-box {
    margin-top: 20px;
  }

  .inner-s5 .item .inner {
    display: block;
  }

  .inner-s5 .item .img-box {
    width: 100%;
  }

  .inner-s5 .item .txt-box {
    width: 100%;
    padding: 20px;
  }

  .inner-s6 .item .img-box {
    width: 30%;
  }

  .inner-s6 .item .txt-box {
    width: 70%;
  }

  .inner-s6 .item .tit {
    -webkit-line-clamp: 3;
  }

  .inner-s6 .item .more {
    margin-top: 15px;
  }

  .inner-s8 .item {
    width: 4rem;
  }

  .inner-s10 .item {
    width: 100%;
    height: auto;
    padding: 0.3rem;
  }

  .inner-s10 .info-box {
    display: block;
  }

  .inner-s10 .info-box .img-box {
    width: 100%;
  }

  .inner-s10 .info-box .txt-box {
    width: 100%;
    padding: 0;
    margin-top: 0.3rem;
  }

  .inner-s11 {
    background-attachment: inherit;
  }

  .inner-s11 .item {
    width: calc((100% - 0.4rem) / 3);
  }

  .inner-s12 .bg {
    background-attachment: inherit;
  }

  .inner-s13 .bg {
    background-attachment: inherit;
  }

  .inner-s15 .bg {
    background-attachment: inherit;
  }

  .inner-s17 .pc-block {
    display: none;
  }

  .inner-s17 .m-block {
    display: block;
  }

  .inner-s17 .info-block {
    margin-top: 30px;
    gap: 0.2rem;
  }

  .inner-s17 .info-block .info {
    width: calc((100% - 0.2rem) / 2);
  }

  .inner-s17 .info-block .info:nth-of-type(1) {
    width: 100%;
  }

  .inner-s20 .item .inner {
    display: block;
    padding: 20px;
  }

  .inner-s20 .item .img-box {
    width: 100%;
  }

  .inner-s20 .item .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }

  .inner-s20 .item .tit {
    font-size: 16px;
  }

  .inner-s20 .item .info {
    margin-top: 15px;
  }

  .inner-s20 .item .more {
    margin-top: 15px;
  }

  .inner-s21 .filter-box .data-box {
    width: 100%;
  }

  .inner-s21 .filter-box .form-box {
    width: 100%;
  }

  .inner-s21 .item .inner {
    padding: 20px;
  }

  .inner-s22 .item .img-box {
    height: 60vw;
  }

  .inner-s22 .item .txt-box {
    padding-top: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .inner-s22 .button {
    display: none;
  }

  .inner-s22 .pagination {
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    grid-gap: 0.12rem;
  }
  .inner-s22 .pagination span {
    width: 0.14rem;
    height: 0.04rem;
    background-color: #e6e6e6;
    transition: all .3s ease;
    cursor: pointer;
  }
  .inner-s22 .pagination span.active {
    width: 0.24rem;
    background-color: #008cd6;
  }

  .inner-s23 .bg {
    background-attachment: inherit;
  }

  .inner-s24 {
    background-attachment: inherit;
  }

  .inner-s25 .bg {
    background-attachment: inherit;
  }

  .inner-s26 {
    background-attachment: inherit;
  }

  .inner-s27 {
    background-attachment: inherit;
  }

  .inner-s30 {
    background-attachment: inherit;
  }

  .inner-s31 .item {
    width: 100%;
  }

  .inner-s32 {
    background-attachment: inherit;
  }

  .inner-s32 .bot-block .item {
    width: calc((100% - 0.48rem) / 3);
  }

  .inner-s35 {
    padding: 1.2rem 0 0;
  }

  .inner-s35 .txt-box {
    width: 100%;
  }

  .inner-s35 .img-box {
    position: static;
    max-width: 100%;
    margin: 30px auto 0;
  }

  .inner-s37 .data .num span {
    font-size: 0.6rem;
  }

  .inner-s39 {
    background-attachment: inherit;
  }

  .inner-s40 .cont-block {
    display: block;
  }

  .inner-s40 .left-box {
    width: 100%;
    padding-right: 0;
  }

  .inner-s40 .right-box {
    width: 100%;
    margin-top: 30px;
  }

  .inner-s42 {
    background-attachment: inherit;
  }

  .inner-s42 .cont-block {
    display: block;
  }

  .inner-s42 .img-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 0;
  }

  .inner-s42 .txt-box {
    width: 100%;
    margin: 20px auto 0;
  }

  .inner-s44 {
    background-attachment: inherit;
  }

  .inner-s45 {
    background-attachment: inherit;
  }

  .inner-s45 .cont-block .img-box {
    position: static;
    width: 40%;
    max-width: 180px;
  }

  .inner-s45 .items {
    gap: 0.4rem;
  }

  .inner-s45 .item {
    width: calc((100% - 0.4rem) / 2);
    text-align: left !important;
  }

  .inner-s46 {
    height: auto;
  }

  .inner-s46 .bg-box {
    position: absolute;
    height: 100%;
    background-attachment: inherit;
    display: none;
  }

  .inner-s46 .icon {
    margin-top: 0;
    height: auto;
  }

  .inner-s46 .icon .box {
    display: none;
  }

  .inner-s46 .dot-box {
    display: none;
  }

  .inner-s46 .txt-box {
    position: static;
    padding-top: 1.2rem;
  }

  .inner-s46 .txt-box .pic-box {
    display: block;
  }

  .inner-s47 {
    margin-top: 0;
  }

  .inner-s47 .wrap-s {
    padding-top: 1.2rem;
  }

  .inner-s47 .cont-block {
    height: auto;
    min-height: auto;
    position: static;
    padding: 1rem;
  }

  .inner-s47 .block {
    display: block;
    height: auto;
  }

  .inner-s47 .left-block {
    width: 100%;
  }

  .inner-s47 .right-block {
    width: 100%;
    margin-top: 0.3rem;
    margin-left: 0;
    border: none;
  }

  .inner-s47 .right-block:before {
    display: none;
  }

  .inner-s47 .right-block .data {
    padding-left: 0;
  }

  .inner-s49 .cont-block {
    display: none;
  }

  .inner-s49 .m-block {
    display: block;
  }

  .inner-s50 {
    padding: 60px 0;
  }

  .inner-s50 .info-box {
    position: static;
  }

  .inner-s50 .info-box .wrap-s {
    flex-wrap: wrap;
  }

  .inner-s50 .info-box .box {
    width: calc((100% - 0.2rem) / 2);
    background-color: #f9f9f9;
  }

  .other-s1 .flex {
    display: block;
  }

  .other-s1 .left-box {
    display: none;
  }

  .other-s1 .right-box {
    width: 100%;
    padding-left: 0;
    border: none;
  }

  .index-s1 .item .img-box {
    height: 60vw;
  }

  .index-s1 .pagination .wrap-s {
    width: 86%;
  }

  .index-s2 .data-box {
    height: 120px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px 0;
  }

  .index-s2 .data {
    width: 50%;
    text-align: center;
  }

  .index-s2 .data p {
    font-size: 12px;
    padding: 0 5px;
  }

  .index-s2 .data-box .line {
    display: none;
  }

  .index-s2 .tab-tit .item {
    width: 50%;
  }

  .index-s3 .bg-block .bg {
    background-attachment: inherit;
  }

  .index-s3 .txt-block {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .index-s3 .tab-tit .item {
    width: auto;
    margin-right: 30px;
    gap: 10px;
  }
  .index-s3 .tab-tit .item:last-of-type {
    margin-right: 0;
  }

  .index-s3 .tab-tit .item span {
    white-space: nowrap;
    max-width: none;
  }

  .index-s4 .mid-block {
    display: none;
  }

  .index-s4 .m-block {
    display: block;
  }

  .index-s4 .bot-block {
    position: static;
    flex-wrap: wrap;
    gap: 15px 0;
    padding: 0;
    margin-top: 20px;
  }

  .index-s4 .bot-block .data {
    width: 50%;
  }

  .index-s4 .bot-block .data .num span {
    font-size: 50px;
  }

  .index-s4 .bot-block .data .num i {
    font-size: 20px;
  }

  .index-s5 .mid-block .item {
    width: calc((100% - 0.3rem) / 2);
  }

  .index-s5 .mid-block .item .img-box {
    width: 100%;
  }

  .index-s5 .mid-block .item .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }

  .index-s5 .button {
    display: none;
  }

  .index-s5 .pagination {
    margin-top: 0.3rem;
    display: flex;
    justify-content: center;
    grid-gap: 0.12rem;
  }
  .index-s5 .pagination span {
    width: 0.14rem;
    height: 0.04rem;
    background-color: #fff;
    opacity: 0.3;
    transition: all .3s ease;
    cursor: pointer;
  }
  .index-s5 .pagination span.active {
    width: 0.24rem;
    opacity: 1;
  }

  .index-s6 .cont-block {
    display: block;
  }

  .index-s6 .left-box {
    width: 100%;
  }

  .index-s6 .right-box {
    width: 100%;
    margin: 30px 0 0;
  }

  .index-s6 .item .inner {
    padding: 20px 0;
  }

  .index-s6 .btns {
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  .inner-s1 .item .inner {
    display: block;
  }

  .inner-s1 .item .img-box {
    width: 100%;
  }

  .inner-s1 .item .txt-box {
    width: 100%;
  }

  .inner-s13 .items {
    gap: 48px;
  }

  .inner-s11 .item {
    width: 100%;
  }

  .inner-s13 .item {
    width: 100%;
  }

  .inner-s13 .item:before {
    width: 100%;
    height: 1px;
    right: 0;
    bottom: -24px;
  }

  .inner-s14 .item {
    width: 100%;
  }

  .inner-s14 .items {
    gap: 24px;
  }

  .inner-s15 .wrap-s {
    padding-left: 0;
  }

  .inner-s15 .bg {
    opacity: 0.3;
  }

  .inner-s16 .items {
    gap: 24px;
  }

  .inner-s16 .item {
    width: 100%;
  }

  .inner-s21 .items {
    gap: 0.24rem;
  }

  .inner-s21 .item {
    width: calc((100% - 0.24rem) / 2);
    border: none;
    background-color: #f7f7f7;
  }

  .inner-s27 .wrap-s {
    display: block;
  }

  .inner-s27 .left-box {
    width: 100%;
  }

  .inner-s27 .right-box {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .inner-s32 {
    padding: 1.2rem 0;
  }

  .inner-s32 .top-block .txt-box {
    width: 100%;
    padding-right: 0;
  }

  .inner-s32 .top-block .img-box {
    width: 100%;
    position: static;
    aspect-ratio: 6 / 5;
  }

  .inner-s32 .top-block {
    display: block;
    height: auto;
    padding-top: 0;
  }
}
@media screen and (max-width: 769px) {
  .inner-s4 .data-box {
    gap: 20px;
  }

  .inner-s4 .data {
    width: 100%;
  }

  .inner-s32 .bot-block .item {
    width: calc((100% - 0.24rem) / 2);
  }

  .index-s5 .mid-block .item {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .inner-label .tips {
    font-size: 16px;
  }

  .c-banner .label {
    font-size: 24px !important;
  }

  .inner-s1 {
    padding: 60px 0;
  }

  .inner-s1 .item .txt-box {
    padding: 15px 0 0;
  }

  .inner-s1 .item .tit {
    font-size: 16px;
  }

  .inner-s1 .item p {
    line-height: 1.5;
    margin-top: 10px;
  }

  .inner-s1 .item .more {
    bottom: 20px;
    margin-top: 15px;
  }

  .inner-s2 {
    padding: 60px 0;
  }

  .inner-s2 .para {
    margin-top: 15px;
  }

  .inner-s2 .items {
    margin-top: 20px;
  }

  .inner-s2 .item {
    width: 100%;
    padding: 20px;
  }

  .inner-s3 {
    padding: 60px 0;
  }

  .inner-s3 .cont-block {
    margin-top: 20px;
  }

  .inner-s3 .tab-tit .item span {
    font-size: 12px;
  }

  .inner-s3 .tab-cont .tit span {
    font-size: 16px;
  }

  .inner-s3 .tab-cont .s-para {
    margin-top: 10px;
  }

  .inner-s4 {
    padding: 60px 0;
  }

  .inner-s4 .cont-block {
    margin-top: 20px;
  }

  .inner-s5 {
    padding: 60px 0 0;
  }

  .inner-s6 {
    padding: 60px 0;
  }

  .inner-s6 .item .inner {
    padding: 20px;
    display: block;
  }

  .inner-s6 .item .img-box {
    width: 100%;
  }

  .inner-s6 .item .txt-box {
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }

  .inner-s7 {
    padding: 60px 0;
  }

  .inner-s7 .top-block .label {
    font-size: 20px;
  }

  .inner-s7 .mid-block {
    margin-top: 20px;
    padding-top: 20px;
  }

  .inner-s7 .bot-block .page-box {
    display: block;
  }

  .inner-s7 .bot-block .page-box a {
    display: block;
    max-width: 100%;
  }

  .inner-s9 {
    padding: 60px 0;
  }

  .inner-s9 .box {
    width: 100%;
  }

  .inner-s9 .box:nth-of-type(5) {
    display: block;
  }

  .inner-s9 .box:nth-of-type(5) span {
    display: block;
    width: 100%;
    padding-right: 0;
    border: none;
    margin-bottom: 10px;
  }

  .inner-s9 .box:nth-of-type(7) {
    display: block;
  }

  .inner-s9 .box .agree {
    margin-bottom: 10px;
  }

  .inner-s9 .box button {
    margin: 0 auto;
    display: block;
  }

  .inner-s10 {
    padding: 60px 0;
  }

  .inner-label .label {
    font-size: 20px;
  }

  .inner-s10 .items {
    margin-top: 20px;
  }

  .inner-s10 .info-box {
    margin-top: 30px;
  }

  .inner-s10 .info-box .tit {
    font-size: 18px;
  }

  .inner-s10 .info-box .box span {
    font-size: 16px;
  }

  .inner-s10 .info-box .box p {
    font-size: 13px;
  }

  .inner-s11 {
    padding: 60px 0;
  }

  .inner-s11 .tips {
    margin-top: 30px;
    font-size: 16px;
  }

  .inner-s11 .items {
    margin-top: 20px;
  }

  .inner-s12 {
    padding: 60px 0 0;
  }

  .inner-s12 .tips {
    margin-top: 30px;
    font-size: 16px;
  }

  .inner-s12 .items {
    margin-top: 20px;
  }

  .inner-s12 .item {
    padding: 20px 20px 20px 50px;
  }

  .inner-s13 {
    padding: 60px 0;
  }

  .inner-s13 .items {
    margin-top: 30px;
  }

  .inner-s14 {
    padding: 60px 0;
  }

  .inner-s14 .items {
    margin-top: 20px;
  }

  .inner-s14 .item {
    padding: 20px;
  }

  .inner-s14 .item p {
    margin-top: 10px;
  }

  .inner-s15 {
    padding: 60px 0;
  }

  .inner-s16 {
    padding: 60px 0 0;
  }

  .inner-s16 .items {
    margin-top: 20px;
  }

  .inner-s16 .item {
    padding: 20px;
  }

  .inner-s16 .item .tit:before {
    left: -20px;
  }

  .inner-s17 {
    padding: 60px 0;
  }

  .inner-s17 .info-block .inner {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .inner-s17 .info-block .inner .line {
    display: none;
  }

  .inner-s17 .info-block .inner .box {
    width: 100%;
  }

  .inner-s17 .info-block .info {
    width: 100%;
  }

  .inner-s18 {
    padding: 60px 0;
  }

  .inner-s18 .label {
    font-size: 20px;
  }

  .inner-s19 {
    padding: 60px 0;
  }

  .inner-s19 .bot-block .page-box {
    display: block;
  }

  .inner-s19 .bot-block .page-box a {
    display: block;
    max-width: 100%;
  }

  .inner-s20 {
    padding: 60px 0 0;
  }

  .inner-s21 {
    padding: 60px 0;
  }

  .inner-s21 .item {
    width: 100%;
  }

  .inner-s22 .item .img-box {
    height: 80vw;
  }

  .inner-s21 .item .more {
    margin-top: 15px;
  }

  .inner-s22 .item .para {
    font-size: 13px;
  }

  .inner-s23 {
    padding: 60px 0;
  }

  .inner-s23 .para {
    font-size: 13px;
  }

  .inner-s23 .img-box {
    margin-top: 30px;
  }

  .inner-s24 {
    padding: 60px 0 120px;
  }

  .inner-s24 .para {
    font-size: 13px;
  }

  .inner-s25 {
    padding: 60px 0;
  }

  .inner-s25 .para {
    font-size: 13px;
  }

  .inner-s26 {
    padding: 60px 0;
  }

  .inner-s26 .para {
    font-size: 13px;
  }

  .inner-s27 {
    padding: 60px 0;
  }

  .inner-s27 .left-box .para {
    margin-top: 15px;
  }

  .inner-s27 .left-box .btns {
    margin-top: 20px;
  }

  .inner-s28 {
    padding: 60px 0;
  }

  .inner-s28 .edit-para {
    margin-top: 20px;
  }

  .inner-s29 {
    padding: 60px 0;
  }

  .inner-s29 .edit-para {
    margin-top: 20px;
  }

  .inner-s30 {
    padding: 60px 0;
  }

  .inner-s30 .edit-para {
    margin-top: 20px;
  }

  .inner-s31 {
    padding: 60px 0;
  }

  .inner-s31 .block {
    margin-top: 40px;
  }

  .inner-s31 .items {
    margin-top: 20px;
  }

  .inner-s31 .item .inner {
    padding: 20px;
  }

  .inner-s31 .item .img-box {
    width: 100px;
    height: 100px;
  }

  .inner-s31 .item .txt-box {
    width: calc(100% - 100px);
    padding-left: 15px;
  }

  .inner-s31 .item .more {
    margin-top: 15px;
  }

  .inner-s32 {
    padding: 60px 0;
  }

  .inner-s32 .top-block .label {
    font-size: 24px;
  }

  .inner-s32 .top-block .para {
    margin-top: 15px;
  }

  .inner-s32 .top-block .btns {
    margin-top: 20px;
  }

  .inner-s32 .bot-block .item {
    width: 100%;
    padding: 20px;
  }

  .inner-s32.style-1 .bot-block .item .tit {
    margin-top: 15px;
  }

  .inner-s33 {
    padding: 60px 0;
  }

  .inner-s33 .img-box {
    margin-top: 20px;
  }

  .inner-s34 {
    padding: 60px 0 50vw;
  }

  .inner-s34 .img-box {
    margin-top: 10px;
  }

  .inner-s34 .para {
    margin-top: 10px;
    line-height: 1.5;
  }

  .inner-s35 {
    padding: 60px 0 0;
  }

  .inner-s35 .para {
    margin-top: 15px;
    line-height: 1.5;
  }

  .inner-s35 .cont-block {
    margin-top: 20px;
  }

  .inner-s35 .txt-box {
    padding: 20px;
  }

  .inner-s35 .txt-box .botbox .box span {
    font-size: 12px;
  }

  .inner-s35 .txt-box .botbox .box p {
    font-size: 14px;
  }

  .inner-s35 .txt-box .topbox .box img {
    max-width: 80%;
  }

  .inner-s35 .txt-box .botbox-1 .inner {
    width: 100%;
  }

  .inner-s36 {
    padding: 60px 0;
  }

  .inner-s37 {
    padding: 60px 0 0;
  }

  .inner-s37 .para {
    line-height: 1.5;
  }

  .inner-s37 .data-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .inner-s37 .data-box .line {
    width: 100%;
    height: 1px;
  }

  .inner-s37 .img-box {
    margin: 20px auto 0;
  }

  .inner-s38 {
    padding: 60px 0 0;
  }

  .inner-s38 .para {
    line-height: 1.5;
  }

  .inner-s38 .data {
    font-size: 0.6rem;
    margin-top: 20px;
  }

  .inner-s38 .img-box {
    margin: 20px auto 0;
  }

  .inner-s39 {
    padding: 60px 0;
  }

  .inner-s39 .label {
    font-size: 24px;
  }

  .inner-s39 .data .num em,
  .inner-s39 .data .num i {
    font-size: 1rem;
  }

  .inner-s40 {
    padding: 60px 0;
  }

  .inner-s40 .right-box {
    padding: 20px;
  }

  .inner-s41 {
    padding: 60px 0;
  }

  .inner-s42 {
    padding: 60px 0;
  }

  .inner-s43 {
    padding: 60px 0;
  }

  .inner-s43 .img-box {
    margin-top: 20px;
  }

  .inner-s44 {
    padding: 60px 0;
  }

  .inner-s44 .img-box {
    margin-top: 20px;
  }

  .inner-s45 {
    padding: 60px 0;
  }

  .inner-s45 .item {
    width: 100%;
    padding: 20px;
  }

  .inner-s46 .txt-box {
    padding-top: 60px;
  }

  .inner-s47 .wrap-s {
    padding-top: 60px;
  }

  .inner-s47 .cont-block {
    padding: 20px;
  }

  .inner-s47 .right-block {
    grid-row-gap: 20px;
  }

  .inner-s50 .info-box .box {
    width: 100%;
  }

  .inner-s48 {
    padding: 60px 0 27vw;
  }

  .inner-s48 .para {
    margin-top: 15px;
  }

  .inner-s49 {
    padding: 60px 0 27vw;
  }

  .inner-s49 .para {
    margin-top: 15px;
  }

  .inner-s49 .s-label {
    font-size: 16px;
    margin-top: 40px;
  }

  .other-s1 .right-box {
    padding: 60px 0;
  }

  .other-s1 .right-box .block {
    margin-top: 40px;
  }

  .other-s1 .right-box .para {
    margin-top: 15px;
    padding-top: 15px;
  }

  .index-s1 .item .img-box {
    height: 100vw;
  }

  .index-s1 .item .tit {
    font-size: 20px;
  }

  .index-s1 .item p {
    font-size: 14px;
  }

  .index-s1 .pagination {
    bottom: 20px;
  }

  .index-s2 {
    padding: 60px 0;
  }

  .index-s2 .label {
    font-size: 20px;
  }

  .index-s2 .data-box {
    height: 96px;
  }

  .index-s2 .data .num span {
    font-size: 18px;
  }

  .index-s2 .data .num i {
    font-size: 14px;
  }

  .index-s2 .tab-cont {
    margin-top: 15px;
  }

  .index-s2 .tab-cont .child {
    height: 70vw;
  }

  .index-s2 .tab-tit {
    margin-top: 15px;
  }

  .index-s2 .tab-tit .item {
    width: 100%;
  }

  .index-s2 .tab-tit .item .tit span {
    width: 100%;
  }

  .index-s2 .tab-tit .item .img-box {
    height: 50px;
  }

  .index-s3 .txt-block {
    padding: 60px 0;
  }

  .index-s3 .txt-block .label {
    font-size: 20px;
  }

  .index-s3 .tab-cont {
    margin-top: 15px;
    height: 450px;
  }

  .index-s3 .tab-cont .tit {
    font-size: 16px;
  }

  .index-s3 .tab-cont .para {
    margin-top: 10px;
    font-size: 13px;
  }

  .index-s3 .tab-cont .data-box {
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .index-s3 .tab-cont .data {
    width: calc(50% - 5px);
  }

  .index-s3 .tab-cont .data .num span {
    font-size: 24px;
  }

  .index-s3 .tab-cont .data .num i {
    font-size: 12px;
  }

  .index-s3 .tab-cont .btns {
    margin-top: 30px;
  }

  .index-s3 .tab-tit .item {
    height: 60px;
  }

  .index-s3 .tab-tit .item span {
    font-size: 14px;
  }

  .index-s4 {
    padding: 60px 0;
  }

  .index-s4 .top-block .label {
    font-size: 20px;
  }

  .index-s4 .bot-block .data .num span {
    font-size: 30px;
  }

  .index-s4 .bot-block .data .num i {
    font-size: 14px;
  }

  .index-s5 {
    padding: 60px 0;
  }

  .index-s5 .label {
    font-size: 20px;
  }

  .index-s5 .mid-block {
    margin-top: 20px;
  }

  .index-s6 {
    padding: 60px 0;
  }

  .index-s6 .label {
    font-size: 20px;
  }

  .index-s6 .cont-block {
    margin-top: 20px;
  }

  .index-s6 .item .img-box {
    width: 30%;
  }

  .index-s6 .item .txt-box {
    width: 70%;
  }

  .index-s6 .item .tit {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .index-s6 .item .date {
    font-size: 12px;
  }

  .search-s1 {
    padding: 60px 0;
  }

  .search-s2 {
    padding: 60px 0;
  }

  .search-s2 .tips {
    font-size: 16px;
  }

  .search-s2 .item:before, .search-s2 .item:after {
    height: 4px;
  }
}

/*# sourceMappingURL=bundle.css.map */
