@charset "UTF-8";
@font-face {
  font-family: 'MiSans-Regular';
  src: url("/statics/theme/home/fonts/MiSans-Regular.ttf");
}
@font-face {
  font-family: 'MiSans-Medium';
  src: url("/statics/theme/home/fonts/MiSans-Medium.ttf");
}
@font-face {
  font-family: 'MiSans-Demibold';
  src: url("/statics/theme/home/fonts/MiSans-Demibold.ttf");
}
@font-face {
  font-family: 'MiSans-Bold';
  src: url("/statics/theme/home/fonts/MiSans-Bold.ttf");
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url("/statics/theme/home/fonts/Roboto-Medium-12.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-bg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes scale-bg-1 {
  0%,100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes o-scale {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes o-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes indexsvg {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animate-cloud {
  from {
    background-position: 100vw 100%;
  }
  to {
    background-position: 0 100%;
  }
}
@media screen and (min-width: 1025px) {
  .wow {
    visibility: hidden;
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    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 a.search {
    transition: all .3s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 7.5rem;
  font-size: 0;
  z-index: 9;
}
@media (any-hover: hover) {
  .header:hover {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  }
  .header:hover .logo img.show {
    opacity: 0;
  }
  .header:hover .logo img.hide {
    opacity: 1;
  }
  .header:hover li a.single {
    color: #666666;
  }
  .header:hover a.search {
    background-image: url("/statics/theme/home/images/icon-1-2.png");
  }
}
.header.down {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.header.down .logo img.show {
  opacity: 0;
}
.header.down .logo img.hide {
  opacity: 1;
}
.header.down li a.single {
  color: #666666;
  line-height: max(60px, 5rem);
}
.header.down a.search {
  background-image: url("/statics/theme/home/images/icon-1-2.png");
}
.header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  position: relative;
  width: 21.875rem;
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .logo img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .info {
  display: flex;
  align-items: center;
}
.header li {
  display: inline-block;
  vertical-align: top;
  margin-left: 3.75rem;
  position: relative;
}
.header li a.single {
  display: block;
  font-size: max(14px, 1.125rem);
  line-height: max(70px, 6.25rem);
  color: #fff;
  position: relative;
  transition: color .3s ease;
  will-change: color;
}
.header li a.single:after {
  content: '';
  width: 26px;
  height: 4px;
  background-color: #0e7bd8;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -13px;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.header li .subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -90px;
  width: 180px;
  border-radius: .625rem;
  background-color: #fff;
  padding: 1.875rem 0;
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.header li .subnav a {
  display: block;
  font-size: max(14px, 1rem);
  line-height: 40px;
  color: #49433d;
  margin-top: 1.25rem;
  text-align: center;
  transition: all .3s ease;
}
.header li .subnav a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .header li .subnav a:hover {
    background-color: #0e7bd8;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .header li:hover a.single {
    color: #0e7bd8;
  }
  .header li:hover a.single:after {
    opacity: 1;
  }
  .header li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.header a.search {
  width: max(18px, 1.5rem);
  height: max(18px, 1.5rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/icon-1-1.png");
  margin-left: 6.25rem;
}

.head-null {
  height: max(60px, 5rem);
}

.fixed-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.fixed-search .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.fixed-search .logo {
  position: fixed;
  left: 3.75rem;
  top: 2rem;
  z-index: 3;
}
.fixed-search .logo img {
  display: block;
  width: 21.875rem;
}
.fixed-search .close {
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/close-2.png");
  position: absolute;
  right: 5rem;
  top: 3.125rem;
  margin-top: -15px;
  cursor: pointer;
  z-index: 3;
}
.fixed-search .main {
  position: relative;
  z-index: 2;
}
.fixed-search .box {
  width: 90%;
  max-width: 50rem;
  margin: 0 auto;
}
.fixed-search .top-box {
  width: 100%;
  height: 6.25rem;
  background-color: #fff;
}
.fixed-search form {
  position: relative;
  height: 40px;
  padding-left: 40px;
}
.fixed-search form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("/statics/theme/home/images/icon-5.png") left center no-repeat;
  background-size: auto 16px;
  border-right: 1px solid #cccccc;
}
.fixed-search form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 1.25rem;
  background-color: transparent;
  font-size: max(14px, 1rem);
  color: #353544;
}
.fixed-search form input::-webkit-input-placeholder {
  color: #353544;
}
.fixed-search form input:-moz-placeholder {
  color: #353544;
}
.fixed-search form input::-moz-placeholder {
  color: #353544;
}
.fixed-search form input:-ms-input-placeholder {
  color: #353544;
}
.fixed-search form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background: url("/statics/theme/home/images/icon-1-2.png") center center no-repeat;
  background-size: auto 16px;
  display: none;
}
.fixed-search .bot-box {
  padding: 2.5rem 0 5rem;
  background-color: #f5f5f5;
}
.fixed-search .tit {
  font-size: max(14px, 1rem);
  color: #353544;
  padding: 0 7.5rem;
}
.fixed-search .link {
  padding: 10px 7.5rem 0;
}
.fixed-search .link a {
  display: block;
  padding: 0 2.5rem;
  font-size: max(16px, 1.5rem);
  line-height: 3.75rem;
  color: #808080;
  position: relative;
  border-radius: 5px;
  transition: all .3s ease;
}
.fixed-search .link a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/statics/theme/home/images/yiliao/icon-2-1.png");
  background-size: auto 99%;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  margin-top: -7px;
}
@media (any-hover: hover) {
  .fixed-search .link a:hover {
    color: #0080e2;
    background-color: #ffffff;
  }
  .fixed-search .link a:hover:after {
    background-image: url("/statics/theme/home/images/yiliao/icon-2-2.png");
  }
}

.footer {
  position: relative;
  font-size: 0;
  background-color: #142233;
  overflow: hidden;
}
.footer .move-img {
  width: 40.25rem;
  position: absolute;
  right: 0;
  top: -40%;
}
.footer .move-img img {
  display: block;
  width: 100%;
}
.footer .top-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5rem 0;
}
.footer .top-block .logo-box {
  width: 18.75rem;
}
.footer .top-block .logo-box img {
  display: block;
  width: 100%;
}
.footer .top-block .para {
  margin-top: 2rem;
}
.footer .top-block .para p {
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 5px;
}
.footer .top-block .para p:nth-of-type(1) {
  margin-top: 0;
}
.footer .top-block .para p span {
  color: #0080e2;
  font-family: 'MiSans-Demibold';
}
.footer .top-block .share {
  margin-top: 2.5rem;
  font-size: 0;
}
.footer .top-block .share a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 40px;
  height: 40px;
}
.footer .top-block .share a i {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #45494d;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.footer .top-block .share a .hide {
  width: 7.5rem;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -3.75rem;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 2;
}
.footer .top-block .share a .hide:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 10px;
  margin-left: -10px;
}
.footer .top-block .share a .hide .img-box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.footer .top-block .share a .hide img {
  display: block;
  width: 100%;
}
.footer .top-block .share a.wx i {
  background-image: url("/statics/theme/home/images/share-1.png");
}
.footer .top-block .share a.wb {
  margin-left: 1.25rem;
}
.footer .top-block .share a.wb i {
  background-image: url("/statics/theme/home/images/share-2.png");
}
@media (any-hover: hover) {
  .footer .top-block .share a:hover .hide {
    opacity: 1;
    visibility: visible;
  }
}
.footer .top-block .box {
  display: inline-block;
  vertical-align: top;
  margin-left: 3.75rem;
}
.footer .top-block .box span {
  display: block;
  font-size: max(16px, 1.125rem);
  color: #fff;
}
.footer .top-block .box span:after {
  content: '';
  width: 1.5rem;
  height: 2px;
  display: block;
  margin-top: 1rem;
  background-color: #0080e2;
}
.footer .top-block .box .link {
  margin-top: 1.25rem;
}
.footer .top-block .box .link a {
  display: block;
  margin-top: 1.25rem;
  font-size: max(14px, 1rem);
  color: #fff;
  transition: color .3s ease;
  will-change: color;
}
.footer .top-block .box .link a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .footer .top-block .box .link a:hover {
    color: #0080e2;
  }
}
.footer .top-block .box:nth-of-type(1) {
  margin-left: 0;
}
.footer .bot-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .bot-block p {
  font-size: max(12px, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
}
.footer .bot-block p a {
  color: rgba(255, 255, 255, 0.6);
}
.footer .bot-block .link a {
  display: inline-block;
  vertical-align: top;
  font-size: max(12px, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
}
.footer .bot-block .link a:after {
  content: '|';
  font-size: max(12px, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
  padding: 0 .625rem;
}
.footer .bot-block .link a:last-of-type:after {
  display: none;
}

.wrap-s {
  width: 86vw;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.c-bg-fixed, .index-s4, .about-s2, .about-s3 .bg, .yiliao-s2 {
  background-attachment: fixed;
}

.index-tit {
  font-size: 2.625rem;
  text-align: center;
  color: #34393d;
  font-family: 'MiSans-Demibold';
}

.c-banner {
  position: relative;
}
.c-banner.mt {
  margin-top: -4.375rem;
}
.c-banner.nomask:after {
  display: none;
}
.c-banner.t-gray .tit {
  color: #333333;
}
.c-banner.t-gray p {
  color: #666666;
}
.c-banner:after {
  content: '';
  width: 100%;
  height: 12.5vw;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/statics/theme/home/images/about/img-1.png");
  background-size: 100% 100%;
  z-index: 2;
}
.c-banner .img-box {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-banner img {
  display: block;
  width: 100%;
}
.c-banner .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.c-banner .tit {
  font-size: 3rem;
  color: #fff;
  font-family: 'MiSans-Medium';
}
.c-banner .tit.gray {
  color: #333;
}
.c-banner p {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 1rem;
}
.c-banner .form {
  position: relative;
  padding-right: 5rem;
  width: 80%;
  max-width: 45rem;
  margin: 0 auto;
  background-color: #fff;
  height: 5rem;
  border-radius: .625rem;
  overflow: hidden;
}
.c-banner .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 1.875rem;
  font-size: max(14px, 1.125rem);
  color: #333;
}
.c-banner .form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  height: 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/statics/theme/home/images/icon-1-2.png");
  background-size: auto 1.5rem;
  background-color: transparent;
  cursor: pointer;
}

.c-crumbs {
  font-size: 0;
  position: relative;
  z-index: 5;
}
.c-crumbs a.home {
  display: inline-block;
  vertical-align: middle;
  width: max(16px, 1.125rem);
  height: max(16px, 1.125rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/about/icon-1.svg");
}
.c-crumbs a.link {
  display: inline-block;
  vertical-align: middle;
  font-size: max(14px, 1rem);
  line-height: 4.375rem;
  color: #999999;
  position: relative;
  margin-left: calc(2.5rem + 7px);
  position: relative;
}
.c-crumbs a.link:before {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/about/icon-2.svg");
  position: absolute;
  left: calc(-7px - 1.25rem);
  top: 50%;
  margin-top: -6px;
}

.c-page {
  text-align: center;
  font-size: 0;
}
.c-page a {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #e2eaf3;
  line-height: 2.5rem;
  width: 2.5rem;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-left: 10px;
  transition: all .3s ease;
}
.c-page a:nth-of-type(1) {
  margin-left: 0;
}
.c-page a.first, .c-page a.last {
  width: 3.5rem;
}
.c-page a.active {
  background-color: #0076d1;
  color: #fff;
  border-color: transparent;
}
@media (any-hover: hover) {
  .c-page a:hover {
    background-color: #0076d1;
    color: #fff;
    border-color: transparent;
  }
}

.index-s1 {
  position: relative;
}
.index-s1 .item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.index-s1 .item:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(3, 0, 60, 0.1);
  z-index: 3;
}
.index-s1 .item .img-box {
  height: 100%;
  position: relative;
  z-index: 1;
}
.index-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s1 .item .txt-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}
.index-s1 .item .tit {
  text-align: center;
  font-size: 4.5rem;
  color: #fff;
  font-family: 'MiSans-Demibold';
  display: none;
  opacity: 0;
}
.index-s1 .item.swiper-slide-active img {
  animation: scale-bg 6s linear forwards;
}
.index-s1 .item.swiper-slide-active .tit {
  display: block;
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s1 .pagination {
  position: absolute;
  bottom: 3.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0;
  z-index: 2;
}
.index-s1 .pagination span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 1rem;
  cursor: pointer;
}
.index-s1 .pagination span:nth-of-type(1) {
  margin-left: 0;
}
.index-s1 .pagination span:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}
.index-s1 .pagination span:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.index-s1 .pagination span svg {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
}
.index-s1 .pagination span.active:before {
  opacity: 1;
}
.index-s1 .pagination span.active svg {
  animation: indexsvg 5.5s linear forwards;
}

.index-s2 {
  padding: 12.5rem 0;
  background-image: linear-gradient(180deg, #fff, #e1edfa);
  position: relative;
  overflow: hidden;
}
.index-s2 .move-img {
  width: 40.25rem;
  position: absolute;
  left: 0;
  top: -60%;
  z-index: 1;
}
.index-s2 .move-img img {
  display: block;
  width: 100%;
}
.index-s2 .build-img {
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.index-s2 .build-img img {
  display: block;
  height: 100%;
}
.index-s2 .cloud-1 {
  width: 100%;
  height: 28.4375vw;
  position: absolute;
  left: 0;
  bottom: -12vw;
  background: url("/statics/theme/home/images/index/cloud-1.png") repeat-x left center;
  background-size: auto 100%;
  -webkit-animation: animate-cloud 60s linear infinite;
  animation: animate-cloud 60s linear infinite;
  z-index: 2;
}
.index-s2 .cloud-2 {
  width: 100%;
  height: 28.4375vw;
  position: absolute;
  left: 0;
  top: -12vw;
  background: url("/statics/theme/home/images/index/cloud-1.png") repeat-x left center;
  background-size: auto 100%;
  -webkit-animation: animate-cloud 100s linear infinite;
  animation: animate-cloud 100s linear infinite;
  z-index: 2;
}
.index-s2 .index-tit {
  text-align: left;
}
.index-s2 .para {
  max-width: 54%;
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 1.5rem;
}
.index-s2 .para span {
  color: #0080e2;
  font-family: 'MiSans-Medium';
}
.index-s2 .data-box {
  max-width: 54%;
  margin-top: 3.125rem;
  display: flex;
}
.index-s2 .data-item {
  width: calc((100% - 6rem) / 3);
  margin-right: 3rem;
  border-top: 1px solid rgba(0, 128, 226, 0.2);
}
.index-s2 .data-item:nth-of-type(3n) {
  margin-right: 0;
}
.index-s2 .data-item .num span {
  font-size: 3.75rem;
  line-height: max(60px, 5.625rem);
  color: #0080e2;
  font-family: 'MiSans-Medium';
}
.index-s2 .data-item .num i {
  font-size: max(12px, 1rem);
  font-style: normal;
  color: #0080e2;
}
.index-s2 .data-item p {
  font-size: max(14px, 1.125rem);
  color: #999999;
}
.index-s2 a.more {
  display: block;
  width: max(120px, 10rem);
  font-size: max(14px, 1rem);
  line-height: max(40px, 3.125rem);
  color: #fff;
  background-color: #0080e2;
  text-align: center;
  margin-top: 3.75rem;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s2 a.more:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 128, 226, 0.3);
  }
}

.index-s3 {
  padding-top: 7.5rem;
}
.index-s3 .s-tit {
  display: none;
}
.index-s3 .flex {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
}
.index-s3 .left-box {
  width: calc(100% - 40rem);
  padding-right: 6.25rem;
  padding-top: 2.5rem;
}
.index-s3 .tab-tit .tit {
  display: inline-block;
  vertical-align: top;
  font-size: 1.875rem;
  color: #333;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  margin-left: 2.5rem;
  cursor: pointer;
}
.index-s3 .tab-tit .tit:nth-of-type(1) {
  margin-left: 0;
}
.index-s3 .tab-tit .tit.active {
  color: #0080e2;
  border-bottom-color: #0080e2;
}
.index-s3 .tab-para {
  margin-top: 1.5rem;
}
.index-s3 .tab-para .child {
  display: none;
}
.index-s3 .tab-para .child.active {
  display: block;
}
.index-s3 .tab-para p {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
}
.index-s3 .tab-span {
  font-size: 0;
  margin-top: 1.5rem;
}
.index-s3 .tab-span span {
  display: inline-block;
  vertical-align: top;
  font-size: max(14px, 1.125rem);
  color: #666;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
  margin-right: 1.5rem;
}
.index-s3 .tab-span span.active {
  color: #0080e2;
  border-color: #0080e2;
}
.index-s3 .tab-hosp {
  margin-top: 1.5rem;
}
.index-s3 .tab-hosp .child {
  display: none;
}
.index-s3 .tab-hosp .child.active {
  display: block;
}
.index-s3 .tab-hosp .sw {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.25rem;
}
.index-s3 .tab-hosp .item {
  width: calc(33.33% - 1.25rem);
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.index-s3 .tab-hosp .item a {
  display: block;
  position: relative;
}
.index-s3 .tab-hosp .item a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, transparent, rgba(18, 54, 116, 0.6));
  z-index: 2;
}
.index-s3 .tab-hosp .item .img-box {
  aspect-ratio: 55 / 31;
  overflow: hidden;
}
.index-s3 .tab-hosp .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s3 .tab-hosp .item span {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 1.25rem 1rem;
  z-index: 3;
  font-size: max(12px, 0.875rem);
  color: #fff;
}
.index-s3 .map-box {
  width: 40rem;
  position: relative;
  order: 2;
}
.index-s3 .map-box img.bg {
  display: block;
  width: 100%;
}
.index-s3 .map-box .tab-tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-s3 .map-box .item {
  position: absolute;
  cursor: pointer;
}
.index-s3 .map-box .item .img-box {
  width: 100%;
  opacity: 0.3;
  transition: opacity .3s ease;
  will-change: opacity;
}
.index-s3 .map-box .item .img-box img {
  display: block;
  width: 100%;
}
.index-s3 .map-box .item .range {
  width: 40px;
  height: 40px;
  position: absolute;
  margin: -20px 0 0 -20px;
  transition: all .3s ease;
  pointer-events: none;
}
.index-s3 .map-box .item .range:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.index-s3 .map-box .item .range i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  border: 2px solid transparent;
  animation: o-scale 3s ease-out infinite;
}
.index-s3 .map-box .item .range i:nth-of-type(2) {
  animation-delay: 1s;
}
.index-s3 .map-box .item .range i:nth-of-type(3) {
  animation-delay: 2s;
}
.index-s3 .map-box .item[data-province="gansu"] {
  width: 10.25rem;
  top: 9.13rem;
  left: 11.8rem;
}
.index-s3 .map-box .item[data-province="gansu"] .range {
  top: 70%;
  left: 70%;
}
.index-s3 .map-box .item[data-province="gansu"] .range:after {
  background-color: #00c5e2;
}
.index-s3 .map-box .item[data-province="gansu"] .range i {
  border-color: rgba(0, 197, 226, 0.5);
}
.index-s3 .map-box .item[data-province="liaoning"] {
  width: 4.125rem;
  top: 8.65rem;
  left: 28.37rem;
}
.index-s3 .map-box .item[data-province="liaoning"] .range {
  top: 40%;
  left: 60%;
}
.index-s3 .map-box .item[data-province="liaoning"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="liaoning"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item[data-province="henan"] {
  width: 4.1875rem;
  top: 15.15rem;
  left: 23.175rem;
}
.index-s3 .map-box .item[data-province="henan"] .range {
  top: 50%;
  left: 50%;
}
.index-s3 .map-box .item[data-province="henan"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="henan"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item[data-province="jiangsu"] {
  width: 4rem;
  top: 15.95rem;
  left: 27.125rem;
}
.index-s3 .map-box .item[data-province="jiangsu"] .range {
  top: 50%;
  left: 60%;
}
.index-s3 .map-box .item[data-province="jiangsu"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="jiangsu"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item[data-province="sichuan"] {
  width: 7.5625rem;
  top: 16.45rem;
  left: 14.3rem;
}
.index-s3 .map-box .item[data-province="sichuan"] .range {
  top: 50%;
  left: 40%;
}
.index-s3 .map-box .item[data-province="sichuan"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="sichuan"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item[data-province="jiangxi"] {
  width: 3.375rem;
  top: 20.26rem;
  left: 25.6rem;
}
.index-s3 .map-box .item[data-province="jiangxi"] .range {
  top: 50%;
  left: 40%;
}
.index-s3 .map-box .item[data-province="jiangxi"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="jiangxi"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item[data-province="chongqing"] {
  width: 3.375rem;
  top: 18.65rem;
  left: 19.7rem;
}
.index-s3 .map-box .item[data-province="chongqing"] .range {
  top: 58%;
  left: 50%;
}
.index-s3 .map-box .item[data-province="chongqing"] .range:after {
  background-color: #0080e2;
}
.index-s3 .map-box .item[data-province="chongqing"] .range i {
  border-color: rgba(0, 128, 226, 0.5);
}
.index-s3 .map-box .item.active .img-box {
  opacity: 1;
}
.index-s3 .map-box .item.active .range:after {
  background-color: #fff;
}
.index-s3 .map-box .item.active .range i {
  border-color: rgba(255, 255, 255, 0.5);
}
.index-s3 a.more {
  display: block;
  width: max(120px, 10rem);
  font-size: max(14px, 1rem);
  line-height: max(40px, 3.125rem);
  color: #fff;
  background-color: #0080e2;
  text-align: center;
  margin-top: 3.75rem;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s3 a.more:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 128, 226, 0.3);
  }
}

.index-s4 {
  padding: 8.75rem 0 7.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/index/img-7.jpg");
  position: relative;
}
.index-s4:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, #fff, transparent);
}
.index-s4 .items {
  margin-top: 3.125rem;
}
.index-s4 .sw {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.875rem;
}
.index-s4 .item {
  width: calc(33.33% - 1.875rem);
  margin-right: 1.875rem;
  background-color: #fff;
}
.index-s4 .item .img-box {
  overflow: hidden;
}
.index-s4 .item .img-box a {
  display: block;
}
.index-s4 .item img {
  display: block;
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.index-s4 .item .txt-box {
  position: relative;
}
.index-s4 .item .txt-box a {
  padding: 2rem;
  display: block;
}
.index-s4 .item .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-s4 .item span.date {
  font-size: max(14px, 1rem);
  color: #999999;
}
.index-s4 .item span.cate {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  z-index: 2;
}
.index-s4 .item span.cate a {
  font-size: max(12px, 0.875rem);
  color: #fff;
  background-color: #0080e2;
  line-height: 24px;
  padding: 0 .625rem;
}
.index-s4 .item .tit {
  font-size: max(16px, 1.25rem);
  font-family: 'MiSans-Demibold';
  margin-top: 0.625rem;
  transition: color .3s ease;
  will-change: color;
}
.index-s4 .item span.more {
  display: block;
  font-size: max(14px, 1rem);
  color: #0080e2;
  margin-top: 1.5rem;
}
.index-s4 .item span.more:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/index/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 1rem;
}
@media (any-hover: hover) {
  .index-s4 .item:hover img {
    transform: scale(1.1);
  }
  .index-s4 .item:hover .tit {
    color: #0080e2;
  }
}

.index-s5 {
  padding: 7.5rem 0;
}
.index-s5 .flex {
  margin-top: 3.125rem;
  display: flex;
}
.index-s5 .left-box {
  width: calc(50% - 3.75rem);
  background-color: #f5f7fa;
  margin-right: 2.5rem;
  display: flex;
}
.index-s5 .tab-cont {
  width: 48%;
  position: relative;
}
.index-s5 .tab-cont img.bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s5 .img-items {
  position: absolute;
  bottom: 10%;
  left: 25%;
  width: 55%;
}
.index-s5 .img-items .img-box {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity .3s ease;
}
.index-s5 .img-items .img-box.active {
  opacity: 1;
}
.index-s5 .img-items img {
  display: block;
  width: 100%;
}
.index-s5 .tab-tit {
  width: 52%;
  background-color: #f5f7fa;
}
.index-s5 .tab-tit .link {
  height: calc(100% - 5rem);
}
.index-s5 .tab-tit .link a {
  display: block;
  height: 33.33%;
  padding: 0 calc(2.5rem + 10px) 0 2.5rem;
  position: relative;
  transition: all .3s ease;
}
.index-s5 .tab-tit .link a:after {
  content: '';
  width: 10px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/index/icon-2.svg");
  position: absolute;
  right: 1.25rem;
  top: 50%;
  margin-top: -8px;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.index-s5 .tab-tit .link a .tit {
  font-size: max(14px, 1.25rem);
  color: #34393d;
  font-family: 'MiSans-Medium';
  transition: color .3s ease;
  will-change: color;
}
.index-s5 .tab-tit .link a span {
  display: block;
  font-size: max(14px, 1rem);
  color: #999999;
}
@media (any-hover: hover) {
  .index-s5 .tab-tit .link a:hover {
    background-color: #fff;
    margin-right: -1.25rem;
    padding-right: calc(3.75rem + 10px);
    box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
  }
  .index-s5 .tab-tit .link a:hover:after {
    opacity: 1;
  }
  .index-s5 .tab-tit .link a:hover .tit {
    color: #0080e2;
  }
}
.index-s5 .tab-tit a.more {
  display: block;
  padding: 0 2.5rem;
  line-height: 5rem;
  font-size: max(14px, 1rem);
  color: #0080e2;
  border-top: 1px solid #dcebf8;
}
.index-s5 .tab-tit a.more:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/index/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 1rem;
}
.index-s5 .right-box {
  width: calc(50% + 1.25rem);
}
.index-s5 .right-box img {
  display: block;
  width: 100%;
}

.index-s6 {
  padding-bottom: 7.5rem;
}
.index-s6 .items {
  margin-top: 1.25rem;
}
.index-s6 .sw {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.875rem;
}
.index-s6 .item {
  width: calc(33.33% - 1.875rem);
  margin: 1.875rem 1.875rem 0 0;
}
.index-s6 .item a {
  display: block;
  position: relative;
}
.index-s6 .item a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(180deg, transparent, rgba(0, 128, 226, 0.7));
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.index-s6 .item .img-box {
  height: 16.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.index-s6 .item .img-box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}
.index-s6 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.index-s6 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2.5rem 2.5rem;
  z-index: 3;
}
.index-s6 .item .tit {
  font-size: max(16px, 1.25rem);
  color: #fff;
  font-family: 'MiSans-Demibold';
}
.index-s6 .item span {
  display: block;
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 1.25rem;
  display: none;
  opacity: 0;
}
.index-s6 .item span:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/index/icon-1.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 1rem;
}
@media screen and (min-width: 769px) {
  .index-s6 .item:nth-of-type(1), .index-s6 .item:nth-of-type(2) {
    width: calc(50% - 1.875rem);
  }
  .index-s6 .item:nth-of-type(1) .img-box, .index-s6 .item:nth-of-type(2) .img-box {
    height: 25rem;
  }
}
@media (any-hover: hover) {
  .index-s6 .item:hover a:after {
    opacity: 1;
  }
  .index-s6 .item:hover img {
    transform: scale(1.1);
  }
  .index-s6 .item:hover span {
    display: block;
    animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}

.index-s7 {
  padding: 6.25rem 0;
  background-color: #f5f7fa;
}
.index-s7 .items {
  margin-top: 1.25rem;
}
.index-s7 .sw {
  display: flex;
  flex-wrap: wrap;
  margin-right: -3.75rem;
}
.index-s7 .item {
  width: calc(16.66% - 3.75rem);
  height: max(60px, 5rem);
  background-color: #fff;
  margin: 1.875rem 3.75rem 0 0;
}
.index-s7 .item .img-box {
  width: 100%;
  height: 100%;
  text-align: center;
}
.index-s7 .item img {
  width: auto;
  max-width: 86%;
  max-height: 86%;
}

.about-s1 {
  padding: 10rem 0 12.5rem;
  position: relative;
  background-image: linear-gradient(180deg, #fff, #e1edfa);
  overflow: hidden;
  margin-top: -4.375rem;
}
.about-s1 .move-img {
  width: 40.25rem;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -60%;
  z-index: 1;
}
.about-s1 .move-img img {
  display: block;
  width: 100%;
}
.about-s1 .build-img {
  width: 37.6875rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.about-s1 .build-img img {
  display: block;
  width: 100%;
}
.about-s1 .cloud-1 {
  width: 100%;
  height: 28.4375vw;
  position: absolute;
  left: 0;
  bottom: -12vw;
  background: url("/statics/theme/home/images/index/cloud-1.png") repeat-x left center;
  background-size: auto 100%;
  -webkit-animation: animate-cloud 60s linear infinite;
  animation: animate-cloud 60s linear infinite;
  z-index: 2;
}
.about-s1 .para {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 2.5rem;
}
.about-s1 .para p {
  margin-top: 1rem;
}
.about-s1 .para p:nth-of-type(1) {
  margin-top: 0;
}
.about-s1 .data-box {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
}
.about-s1 .data {
  width: calc((100% - 15rem) / 3);
  border-top: 1px solid rgba(0, 128, 226, 0.15);
}
.about-s1 .data span {
  font-size: 3.75rem;
  line-height: 6.25rem;
  color: #0080e2;
  font-family: 'Roboto-Medium';
}
.about-s1 .data i {
  font-size: max(12px, 1rem);
  color: #0080e2;
  font-style: normal;
}
.about-s1 .data p {
  font-size: max(14px, 1.125rem);
  color: #999999;
}

.about-s2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/about/img-3.jpg");
  padding: 5rem 0 0;
}
.about-s2 .index-tit {
  text-align: left;
}
.about-s2 .flex {
  display: flex;
}
.about-s2 .txt-box {
  width: calc(100% - 33.75rem);
  padding: 2.5rem 0 2.5rem 6.875rem;
  order: 2;
}
.about-s2 .para {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 2.5rem;
}
.about-s2 .para p {
  margin-top: 1rem;
}
.about-s2 .para p:nth-of-type(1) {
  margin-top: 0;
}
.about-s2 .img-box {
  width: 33.75rem;
}
.about-s2 .img-box img {
  display: block;
  width: 100%;
}

.about-s3 {
  position: relative;
  background-color: #000;
}
.about-s3 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/about/img-5.jpg");
  opacity: 0.8;
}
.about-s3 .items {
  position: relative;
  z-index: 2;
  display: flex;
}
.about-s3 .item {
  flex: 1;
  padding: 20rem 3.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
}
.about-s3 .item:nth-of-type(1) {
  border: none;
}
.about-s3 .item .s-tit {
  text-align: center;
  font-size: max(16px, 1.25rem);
  color: #fff;
}
.about-s3 .item .tips {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  font-family: 'MiSans-Medium';
  margin-top: 1rem;
}
.about-s3 .item .s-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}
.about-s3 .item .box {
  width: 45%;
  margin-top: 1.5rem;
}
.about-s3 .item .box:nth-of-type(1), .about-s3 .item .box:nth-of-type(2) {
  margin-top: 0;
}
.about-s3 .item p {
  font-size: max(14px, 1rem);
  color: #fff;
  text-align: center;
  margin-top: 5px;
}
@media (any-hover: hover) {
  .about-s3 .item:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

.other-s1 {
  padding: 4.375rem 0 5rem;
}
.other-s1 .para {
  font-size: max(14px, 1rem);
  color: #999999;
  line-height: 1.75;
}
.other-s1 .para.gray {
  color: #666666;
}
.other-s1 .para.mt {
  margin-top: 2.5rem;
}
.other-s1 .para.t-bold {
  font-family: 'MiSans-Medium';
}
.other-s1 .para p {
  margin-top: 1rem;
}
.other-s1 .para p:nth-of-type(1) {
  margin-top: 0;
}
.other-s1 .para span {
  display: block;
  padding: 1rem 0;
  font-size: max(16px, 1.25rem);
  color: #333;
  font-family: 'MiSans-Medium';
}
.other-s1 .tips {
  margin-top: 2.5rem;
}
.other-s1 .tips .tit {
  font-size: max(18px, 1.5rem);
  color: #333;
  font-family: 'MiSans-Medium';
}
.other-s1 .block {
  margin-top: 1.5rem;
}

.news-s1 {
  padding: 6.25rem 0;
  margin-top: -4.375rem;
  background-image: linear-gradient(180deg, #fff, #f5f7fa);
}
.news-s1 .swiper {
  margin-top: 2.5rem;
}
.news-s1 .item a {
  position: relative;
  display: block;
}
.news-s1 .item a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
  z-index: 2;
}
.news-s1 .item a:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, transparent, rgba(0, 128, 226, 0.8));
  z-index: 2;
}
.news-s1 .item .img-box {
  height: 25rem;
  overflow: hidden;
}
.news-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.news-s1 .item .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 3.75rem 3.125rem;
  z-index: 3;
}
.news-s1 .item .date {
  font-size: max(14px, 1rem);
  color: #fff;
}
.news-s1 .item .tit {
  font-size: max(16px, 1.25rem);
  color: #fff;
  font-family: 'MiSans-Demibold';
  margin-top: 10px;
}
.news-s1 .item span {
  display: block;
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 1.25rem;
  display: none;
  opacity: 0;
}
.news-s1 .item span:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/icon-1.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
}
@media (any-hover: hover) {
  .news-s1 .item:hover img {
    transform: scale(1.1);
  }
  .news-s1 .item:hover span {
    display: block;
    animation: o-upfade-top 0.7s 0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.news-s1 .pagination {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 0;
  z-index: 2;
}
.news-s1 .pagination span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 1rem;
  cursor: pointer;
}
.news-s1 .pagination span:nth-of-type(1) {
  margin-left: 0;
}
.news-s1 .pagination span:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
}
.news-s1 .pagination span:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #d7dbde;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.news-s1 .pagination span svg {
  fill: none;
  stroke: #0080e2;
  stroke-width: 2px;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
}
.news-s1 .pagination span.active:before {
  opacity: 1;
}
.news-s1 .pagination span.active:after {
  background-color: #0080e2;
}
.news-s1 .pagination span.active svg {
  animation: indexsvg 5.5s linear forwards;
}

.news-s2 {
  padding: 1.875rem 0 6.25rem;
}
.news-s2 .items {
  margin-bottom: 3.75rem;
}
.news-s2 .item {
  border-bottom: 1px solid #dbedfb;
  transition: all .3s ease;
  margin-top: -1px;
}
.news-s2 .item a {
  display: flex;
  align-items: center;
  padding: 3.125rem 0;
}
.news-s2 .item .img-box {
  width: 28.75rem;
  height: 16rem;
  overflow: hidden;
}
.news-s2 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.news-s2 .item .txt-box {
  width: calc(100% - 28.75rem);
  padding-left: 2.5rem;
}
.news-s2 .item .date {
  font-size: max(14px, 1rem);
  color: #999999;
}
.news-s2 .item .tit {
  font-size: max(16px, 1.25rem);
  color: #34393d;
  font-family: 'MiSans-Demibold';
  margin-top: 1rem;
}
.news-s2 .item p {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-s2 .item span {
  display: block;
  font-size: max(14px, 1rem);
  color: #0080e2;
  margin-top: 2rem;
}
.news-s2 .item span:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
}
@media (any-hover) {
  .news-s2 .item:hover {
    background-color: #f5f7fa;
    box-shadow: 0 1.25rem 1.875rem rgba(0, 17, 80, 0.1);
  }
  .news-s2 .item:hover img {
    transform: scale(1.1);
  }
}

.news-s3 {
  padding: 7.5rem 0 6.25rem;
  margin-top: -4.375rem;
}
.news-s3 .items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.875rem;
  margin-bottom: 3.125rem;
}
.news-s3 .item {
  width: calc(33.33% - 1.875rem);
  margin: 3.125rem 1.875rem 0 0;
  border-bottom: 1px solid #dbdbdb;
  transition: border .3s ease;
}
@media screen and (min-width: 769px) {
  .news-s3 .item:nth-of-type(1), .news-s3 .item:nth-of-type(2), .news-s3 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
.news-s3 .item .img-box {
  width: 28.75rem;
  height: 16rem;
  overflow: hidden;
}
.news-s3 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.news-s3 .item .txt-box {
  padding: 2rem 0;
}
.news-s3 .item .tit {
  font-size: max(16px, 1.125rem);
  color: #34393d;
  font-family: 'MiSans-Demibold';
}
.news-s3 .item .info {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-s3 .item .date {
  font-size: max(14px, 1rem);
  color: #999999;
}
.news-s3 .item span {
  display: block;
  font-size: max(14px, 1rem);
  color: #0080e2;
}
.news-s3 .item span:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
}
@media (any-hover) {
  .news-s3 .item:hover {
    border-color: #0080e2;
  }
  .news-s3 .item:hover img {
    transform: scale(1.1);
  }
}

.news-s4 {
  padding: 7.5rem 0 6.25rem;
  margin-top: -4.375rem;
}
.news-s4 .items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.875rem;
  margin-bottom: 3.75rem;
}
.news-s4 .item {
  width: calc(33.33% - 1.875rem);
  margin: 2.5rem 1.875rem 0 0;
  position: relative;
  background-color: #f5f7fa;
}
@media screen and (min-width: 769px) {
  .news-s4 .item:nth-of-type(1), .news-s4 .item:nth-of-type(2), .news-s4 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
.news-s4 .item:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/news/img-3.jpg");
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.news-s4 .item a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 3.75rem 2.5rem calc(6.25rem + 28px);
}
.news-s4 .item .tit {
  font-size: max(16px, 1.25rem);
  color: #333333;
  font-family: 'MiSans-Medium';
  transition: color .3s ease;
}
.news-s4 .item .date {
  font-size: max(14px, 1rem);
  color: #999999;
  margin-top: 1.5rem;
  transition: color .3s ease;
}
.news-s4 .item p {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.news-s4 .item .from {
  position: absolute;
  bottom: 3.75rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
}
.news-s4 .item .from:after {
  content: '';
  width: max(30px, 2.75rem);
  height: max(30px, 2.75rem);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/icon-3.png");
  opacity: 0;
  transition: opacity .3s ease;
  will-change: opacity;
}
.news-s4 .item span {
  font-size: max(14px, 1rem);
  color: #999999;
  transition: color .3s ease;
}
.news-s4 .item .img-box {
  position: relative;
  width: 120px;
  height: 28px;
  margin-left: 1rem;
}
.news-s4 .item .img-box img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  transition: opacity .3s ease;
}
.news-s4 .item .img-box img.hide {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
@media (any-hover: hover) {
  .news-s4 .item:hover:before {
    opacity: 1;
  }
  .news-s4 .item:hover .tit, .news-s4 .item:hover .date, .news-s4 .item:hover p, .news-s4 .item:hover span {
    color: #fff;
  }
  .news-s4 .item:hover .from:after {
    opacity: 1;
  }
  .news-s4 .item:hover .img-box img.show {
    opacity: 0;
  }
  .news-s4 .item:hover .img-box img.hide {
    opacity: 1;
  }
}

.news-s5 {
  padding: 7.5rem 0 6.25rem;
  margin-top: -4.375rem;
  background-color: #f5f7fa;
}
.news-s5 .flex {
  display: flex;
  align-items: flex-start;
}
.news-s5 .left-block {
  width: calc(100% - 380px);
  padding-right: 3.75rem;
}
.news-s5 .top-box {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e9e9e9;
}
.news-s5 .top-box .tit {
  font-size: 2.25rem;
  color: #333;
  font-family: 'MiSans-Medium';
}
.news-s5 .top-box .date {
  font-size: max(14px, 1.125rem);
  color: #999999;
  margin-top: 1.5rem;
}
.news-s5 .mid-box {
  padding: 3.75rem 0;
}
.news-s5 .mid-box .para {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
}
.news-s5 .mid-box .para p {
  margin-top: 1.5rem;
}
.news-s5 .mid-box .para p:nth-of-type(1) {
  margin-top: 0;
}
.news-s5 .mid-box .para img {
  max-width: 100%;
  height: auto !important;
}
.news-s5 .other-page {
  margin-top: 3.75rem;
  border-top: 1px solid #e1e1e1;
}
.news-s5 .other-page a {
  display: flex;
  border-bottom: 1px solid #e1e1e1;
}
.news-s5 .other-page a span {
  font-size: max(14px, 1rem);
  line-height: 5rem;
  color: #333333;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 8px;
  transition: all .3s ease;
}
.news-s5 .other-page a span:nth-of-type(1) {
  width: 100px;
}
.news-s5 .other-page a span:nth-of-type(2) {
  max-width: calc(100% - 100px);
  padding-left: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-s5 .other-page a.prev span:nth-of-type(1) {
  background-image: url("/statics/theme/home/images/news/icon-3-1.png");
}
@media (any-hover: hover) {
  .news-s5 .other-page a.prev:hover span:nth-of-type(1) {
    background-image: url("/statics/theme/home/images/news/icon-3-2.png");
  }
}
.news-s5 .other-page a.next span:nth-of-type(1) {
  background-image: url("/statics/theme/home/images/news/icon-4-1.png");
}
@media (any-hover: hover) {
  .news-s5 .other-page a.next:hover span:nth-of-type(1) {
    background-image: url("/statics/theme/home/images/news/icon-4-2.png");
  }
}
@media (any-hover: hover) {
  .news-s5 .other-page a:hover span {
    color: #286dc0;
  }
}
.news-s5 .right-block {
  width: 380px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/news/img-6.jpg");
  padding: 2.5rem 1.875rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 6.25rem;
}
.news-s5 .right-block .label {
  font-size: max(18px, 1.5rem);
  color: #286dc0;
  font-family: 'MiSans-Medium';
}
.news-s5 .right-block .link {
  margin-top: 1rem;
  border-top: 1px solid #e6e6e6;
}
.news-s5 .right-block .link a {
  display: block;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  padding: 1.25rem 0 1.25rem 1.25rem;
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
  transition: color .3s ease;
}
.news-s5 .right-block .link a:before {
  content: '鈻';
  font-size: max(14px, 1rem);
  color: #286dc0;
  position: absolute;
  top: 1.25rem;
  left: 0;
}
@media (any-hover: hover) {
  .news-s5 .right-block .link a:hover {
    color: #286dc0;
  }
}

.news-s6 {
  padding: 6.25rem 0;
}
.news-s6 .flex {
  display: flex;
  align-items: flex-start;
}
.news-s6 .left-box {
  width: 34rem;
  position: sticky;
  top: 7.5rem;
}
.news-s6 .left-box .item {
  position: relative;
}
.news-s6 .left-box .item span {
  display: block;
  font-size: 9.375rem;
  color: #0080e2;
  line-height: 15rem;
  font-family: 'MiSans-Medium';
  opacity: 0.4;
  position: relative;
  z-index: 2;
  transition: opacity .3s ease;
  will-change: opacity;
  cursor: pointer;
}
.news-s6 .left-box .item:after {
  content: '';
  width: 20rem;
  height: 20rem;
  position: absolute;
  left: 6.25rem;
  top: 50%;
  margin-top: -10rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/img-7.png");
  z-index: 1;
  animation: o-rotate 5s linear infinite;
  opacity: 0;
  transition: opacity .3s ease;
}
.news-s6 .left-box .item.active span {
  opacity: 1;
}
.news-s6 .left-box .item.active:after {
  opacity: 1;
}
.news-s6 .right-box {
  width: calc(100% - 34rem);
}
.news-s6 .right-box .items {
  display: flex;
  flex-wrap: wrap;
}
.news-s6 .right-box .item {
  width: calc((100% - 3.75rem) / 2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/news/img-8.jpg");
  margin-bottom: 3.75rem;
}
.news-s6 .right-box .item:nth-of-type(even) {
  transform: translateY(3.75rem);
  margin-left: 3.75rem;
}
.news-s6 .right-box .item a {
  display: block;
  position: relative;
  height: 18.75rem;
  padding: 3.125rem 2.5rem;
}
.news-s6 .right-box .item span {
  display: block;
  font-size: max(14px, 1.125rem);
  color: #0080e2;
}
.news-s6 .right-box .item .tit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2.5rem 3.125rem;
  font-size: max(16px, 1.25rem);
  color: #333333;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .news-s6 .right-box .item:hover .tit {
    color: #0080e2;
  }
}

.duty-s1 {
  padding: 7.5rem 0 6.25rem;
  margin-top: -4.375rem;
}
.duty-s1 .index-tit {
  text-align: left;
}
.duty-s1 .img-box img {
  display: block;
  width: 100%;
}
.duty-s1 .txt-box {
  position: absolute;
  left: 5.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40rem;
}
.duty-s1 .para {
  font-size: max(14px, 1.125rem);
  color: #666666;
  line-height: 1.75;
  margin-top: 1.5rem;
}

.duty-s2 {
  padding: 6.25rem 0;
  background-color: #f5f7fa;
}
.duty-s2 .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-right: -1.875rem;
  margin-bottom: 3.125rem;
}
.duty-s2 .item {
  width: calc(33.33% - 1.875rem);
  margin: 2.5rem 0 0 1.875rem;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .duty-s2 .item:nth-of-type(1), .duty-s2 .item:nth-of-type(2), .duty-s2 .item:nth-of-type(3) {
    margin-top: 0;
  }
}
.duty-s2 .item .img-box {
  height: 16.25rem;
  overflow: hidden;
}
.duty-s2 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  will-change: transform;
}
.duty-s2 .item .txt-box {
  padding: 2.5rem;
}
.duty-s2 .item .date {
  font-size: max(14px, 1rem);
  color: #999999;
}
.duty-s2 .item .tit {
  font-size: max(16px, 1.25rem);
  color: #34393d;
  font-family: 'MiSans-Demibold';
  margin-top: 1rem;
}
.duty-s2 .item span {
  display: block;
  font-size: max(14px, 1rem);
  color: #0080e2;
  margin-top: 2rem;
}
.duty-s2 .item span:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/news/icon-2.svg");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
}
@media (any-hover: hover) {
  .duty-s2 .item:hover img {
    transform: scale(1.1);
  }
}

.join-s1 {
  padding: 7.5rem 0 9.375rem;
  background: #f5f7fa url("../images/join/img-2.png") center bottom no-repeat;
  margin-top: -4.375rem;
}
.join-s1 .index-tit {
  text-align: left;
}
.join-s1 .flex {
  display: flex;
  align-items: center;
}
.join-s1 .img-box {
  width: 36.25rem;
}
.join-s1 .img-box img {
  display: block;
  width: 100%;
}
.join-s1 .txt-box {
  width: calc(100% - 36.25rem);
  padding-left: 5rem;
  order: 2;
}
.join-s1 .para {
  font-size: max(14px, 1.125rem);
  color: #666666;
  line-height: 1.7;
  margin-top: 2rem;
}
.join-s1 .para p {
  margin-top: 1rem;
}
.join-s1 .para p:nth-of-type(1) {
  margin-top: 0;
}
.join-s1 .tips {
  font-size: max(16px, 1.25rem);
  color: #0080e2;
  font-family: 'MiSans-Medium';
  margin-top: 1.5rem;
}
.join-s1 a {
  display: block;
  width: max(120px, 10rem);
  line-height: max(40px, 3.125rem);
  background-color: #0080e2;
  text-align: center;
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 3.75rem;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .join-s1 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 128, 226, 0.3);
  }
}

.contact-s1 {
  padding: 7.5rem 0 0;
  margin-top: -4.375rem;
}
.contact-s1 .items {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
  display: flex;
}
.contact-s1 .item {
  width: 29%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/contact/img-3.jpg");
  margin-right: 2.5rem;
  padding: 3.125rem 1.5rem;
}
.contact-s1 .item i {
  display: block;
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
.contact-s1 .item span {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-size: max(14px, 1rem);
}
.contact-s1 .item p {
  font-size: max(16px, 1.5rem);
  color: #0080e2;
  text-align: center;
  margin-top: 10px;
  font-family: 'MiSans-Medium';
}
.contact-s1 .item-1 {
  width: calc(42% - 5rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/contact/img-4.jpg");
  padding: 1.75rem 5rem;
  display: flex;
  align-items: center;
}
.contact-s1 .item-1 .txt {
  width: calc(100% - 9.375rem);
  padding-right: 1rem;
}
.contact-s1 .item-1 span {
  display: block;
  font-size: max(16px, 1.5rem);
  color: #333333;
  font-family: 'MiSans-Medium';
}
.contact-s1 .item-1 p {
  font-size: max(12px, 1rem);
  color: #666;
  line-height: 1.5;
  margin-top: 1rem;
}
.contact-s1 .item-1 .img {
  width: 9.375rem;
}
.contact-s1 .item-1 .img img {
  display: block;
  width: 100%;
}
.contact-s1 .item-1 .img i {
  display: block;
  margin-top: 5px;
  font-size: max(12px, 1rem);
  text-align: center;
  color: #666666;
  font-style: normal;
}
.contact-s1 .map-box {
  position: relative;
  margin-top: -5rem;
}
.contact-s1 .map-box img.bg {
  display: block;
  width: 100%;
}
.contact-s1 .dot {
  width: 3.125rem;
  height: 4.375rem;
  position: absolute;
  bottom: 12.5vw;
  left: 50%;
  margin-left: -1.5rem;
}
.contact-s1 .dot i {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/contact/icon-2.png");
}
.contact-s1 .dot .block {
  position: absolute;
  bottom: 6.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.contact-s1 .dot .box {
  width: max(400px, 37.5rem);
  border-radius: 10px;
  background-color: #0080e2;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 57, 90, 0.2);
  padding: 1.875rem 15rem 1.875rem 1.875rem;
  position: relative;
}
.contact-s1 .dot .box:after {
  content: '';
  width: 11.875rem;
  height: 12.5rem;
  position: absolute;
  right: 2rem;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/contact/icon-3.png");
}
.contact-s1 .dot img {
  display: block;
  height: 2rem;
}
.contact-s1 .dot p {
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 1rem;
}
.contact-s1 .dot a {
  display: block;
  font-size: max(14px, 1rem);
  color: #fff;
  margin-top: 1.5rem;
  text-decoration: underline;
}
.contact-s1 .dot a:before {
  content: '';
  width: 1rem;
  height: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/contact/icon-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 5px 0 0;
}

.yiyao-s1 {
  position: relative;
  margin-top: -4.375rem;
}
.yiyao-s1 .img-box img.pc {
  display: block;
  width: 100%;
}
.yiyao-s1 .img-box img.mobile {
  display: none;
}
.yiyao-s1 .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.yiyao-s1 .txt-box .wrap-s {
  height: 100%;
}
.yiyao-s1 .txt-box .cell-box {
  height: 100%;
  text-align: right;
}
.yiyao-s1 .txt-box .box {
  display: inline-block;
  width: 50%;
  text-align: left;
}
.yiyao-s1 .txt-box .tit {
  font-size: 1.875rem;
  color: #333;
  font-family: 'MiSans-Medium';
}
.yiyao-s1 .txt-box .para {
  margin-top: 1.5rem;
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
}

.yiyao-s2 {
  padding: 6.25rem 0;
}
.yiyao-s2 .img-box {
  margin-top: 3.125rem;
  overflow: hidden;
}
.yiyao-s2 .img-box img {
  display: block;
  width: 100%;
}
.yiyao-s2 .flex {
  display: flex;
  align-items: flex-start;
  margin-top: 3.75rem;
}
.yiyao-s2 .data-box {
  width: 30rem;
  display: flex;
  flex-wrap: wrap;
}
.yiyao-s2 .data {
  width: calc(50% - 3.75rem);
  border-top: 1px solid #b2d9f6;
  margin-right: 3.75rem;
  padding: 1.5rem 0 3.75rem;
}
.yiyao-s2 .data span, .yiyao-s2 .data i {
  font-size: 3rem;
  color: #0080e2;
  font-family: 'MiSans-Medium';
}
.yiyao-s2 .data i {
  font-style: normal;
}
.yiyao-s2 .data p {
  font-size: max(14px, 1rem);
  color: #666666;
  margin-top: 10px;
}
.yiyao-s2 .txt-box {
  width: calc(100% - 31.5rem - 160px);
}
.yiyao-s2 .txt-box .para {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
}
.yiyao-s2 .txt-box .para p {
  margin-top: 1rem;
}
.yiyao-s2 .txt-box .para p:nth-of-type(1) {
  margin-top: 0;
}
.yiyao-s2 .txt-box a.more {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0 2rem;
  background-color: #0080e2;
  line-height: max(40px, 3.125rem);
  font-size: max(14px, 1rem);
  color: #fff;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .yiyao-s2 .txt-box a.more:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 128, 226, 0.3);
  }
}
.yiyao-s2 .ewm-box {
  padding: 1.25rem;
  width: 160px;
  margin-left: 1.5rem;
  background-color: #f5f5f5;
}
.yiyao-s2 .ewm-box .tit {
  font-size: max(16px, 1.125rem);
  color: #333;
  text-align: center;
  font-family: 'MiSans-Medium';
}
.yiyao-s2 .ewm-box p {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-top: 0.625rem;
}
.yiyao-s2 .ewm-box .ewm {
  margin-top: 1rem;
}
.yiyao-s2 .ewm-box .ewm .img {
  width: 100px;
  margin: 0 auto;
}
.yiyao-s2 .ewm-box .ewm img {
  display: block;
  width: 100%;
}

.yiyao-s3 {
  padding: 6.25rem 0;
  background-color: #f5f7fa;
}
.yiyao-s3 .blocks {
  margin-top: 3.125rem;
}
.yiyao-s3 .block {
  margin-top: 3.75rem;
}
.yiyao-s3 .block:nth-of-type(1) {
  margin-top: 0;
}
.yiyao-s3 .block .label {
  text-align: center;
  font-size: max(18px, 1.75rem);
  color: #34393d;
  font-family: 'MiSans-Medium';
}
.yiyao-s3 .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-right: -1.5rem;
}
.yiyao-s3 .item {
  width: calc(25% - 1.5rem);
  margin: 1.5rem 1.5rem 0 0;
  padding-bottom: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/yiyao/img-4.jpg");
}
@media screen and (min-width: 769px) {
  .yiyao-s3 .item:nth-of-type(1), .yiyao-s3 .item:nth-of-type(2), .yiyao-s3 .item:nth-of-type(3), .yiyao-s3 .item:nth-of-type(4) {
    margin-top: 0;
  }
}
.yiyao-s3 .item .img-box {
  height: max(140px, 11.25rem);
  text-align: center;
}
.yiyao-s3 .item .img-box img {
  width: auto;
  max-width: 80%;
  max-height: 80%;
}
.yiyao-s3 .item span {
  display: block;
  font-size: max(16px, 1.125rem);
  color: #666666;
  text-align: center;
}

.yiliao-s1 {
  padding: 5rem 0 6.25rem;
}
.yiliao-s1 .flex {
  display: flex;
  align-items: flex-start;
}
.yiliao-s1 .left-block {
  width: calc(100% - 300px);
  padding-right: 3.75rem;
}
.yiliao-s1 .left-block .para {
  font-size: max(14px, 1rem);
  color: #666666;
  line-height: 1.75;
}
.yiliao-s1 .left-block .para p {
  margin-top: 1.5rem;
}
.yiliao-s1 .left-block .para p:nth-of-type(1) {
  margin-top: 0;
}
.yiliao-s1 .left-block .para img {
  max-width: 100%;
  height: auto !important;
}
.yiliao-s1 .left-block a.more {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0 2rem;
  background-color: #0080e2;
  line-height: max(40px, 3.125rem);
  font-size: max(14px, 1rem);
  color: #fff;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .yiliao-s1 .left-block a.more:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 128, 226, 0.3);
  }
}
.yiliao-s1 .right-block {
  width: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/yiliao/img-3.jpg");
  padding: 2.5rem 1rem;
  position: sticky;
  top: 6.25rem;
}
.yiliao-s1 .right-block span {
  display: block;
  font-size: max(18px, 1.5rem);
  text-align: center;
  color: #333333;
  font-family: 'MiSans-Medium';
}
.yiliao-s1 .right-block p {
  text-align: center;
  font-size: max(14px, 1rem);
  color: #666666;
  margin-top: 10px;
}
.yiliao-s1 .right-block .img-box {
  width: 11.75rem;
  margin: 1.25rem auto 0;
}
.yiliao-s1 .right-block .img-box img {
  display: block;
  width: 100%;
}

.yiliao-s2 {
  padding: 6.25rem 0 7.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/statics/theme/home/images/yiliao/img-6.jpg");
}
.yiliao-s2 .index-tit {
  color: #fff;
}
.yiliao-s2 .flex {
  margin-top: 2rem;
  display: flex;
}
.yiliao-s2 .left-block {
  width: 360px;
  margin-top: 3.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
}
.yiliao-s2 .tab-tit {
  position: relative;
}
.yiliao-s2 .tab-tit span {
  display: block;
  background-color: #0e7bd8;
  padding: 0 1.25rem;
  line-height: max(40px, 3rem);
  font-size: max(16px, 1.125rem);
  color: #fff;
  position: relative;
  cursor: pointer;
}
.yiliao-s2 .tab-tit span:after {
  content: '';
  width: 12px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/yiliao/icon-1.png");
  position: absolute;
  right: 1.25rem;
  top: 50%;
  margin-top: -4px;
}
.yiliao-s2 .tab-tit ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: none;
}
.yiliao-s2 .tab-tit li {
  display: block;
  line-height: max(40px, 3rem);
  font-size: max(16px, 1.125rem);
  color: #333;
  padding: 0 1.25rem;
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .yiliao-s2 .tab-tit li:hover {
    background-color: #0e7bd8;
    color: #fff;
  }
}
.yiliao-s2 .tab-tit.open ul {
  display: block;
}
.yiliao-s2 .tab-cont {
  margin-top: 1rem;
}
.yiliao-s2 .tab-cont .child {
  display: none;
}
.yiliao-s2 .tab-cont .child.active {
  display: block;
}
.yiliao-s2 .tab-cont .scroll {
  max-height: 39rem;
  overflow: auto;
  margin-right: -8px;
  padding-right: 8px;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar-button:vertical {
  display: none;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar-corner, .yiliao-s2 .tab-cont .scroll ::-webkit-scrollbar-track {
  background-color: #5267ab;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #94a7d0;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #94a7d0;
}
.yiliao-s2 .tab-cont .scroll::-webkit-scrollbar-thumb:vertical:active {
  background-color: #94a7d0;
}
.yiliao-s2 .tab-cont .item {
  padding: 1.875rem 1.25rem;
  transition: all .3s ease;
}
.yiliao-s2 .tab-cont .item .tit {
  font-size: max(16px, 1.25rem);
  color: #fff;
}
.yiliao-s2 .tab-cont .item p {
  font-size: max(13px, 0.875rem);
  color: #fff;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1rem;
}
.yiliao-s2 .tab-cont .item a {
  margin-top: 1.25rem;
  display: inline-block;
  font-size: max(14px, 1rem);
  color: #fff;
  transition: all .3s ease;
}
.yiliao-s2 .tab-cont .item a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("/statics/theme/home/images/yiliao/icon-2-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 10px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .yiliao-s2 .tab-cont .item a:hover {
    color: #0e7bd8;
  }
  .yiliao-s2 .tab-cont .item a:hover:after {
    background-image: url("/statics/theme/home/images/yiliao/icon-2-2.png");
  }
}
@media (any-hover: hover) {
  .yiliao-s2 .tab-cont .item:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.yiliao-s2 .right-block {
  width: calc(100% - 360px);
  padding-left: 3.75rem;
}
.yiliao-s2 .right-block .maincont {
  position: relative;
}
.yiliao-s2 .right-block img.bg {
  display: block;
  width: 100%;
}
.yiliao-s2 .right-block .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.yiliao-s2 .right-block .item {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  cursor: pointer;
  z-index: 1;
}
.yiliao-s2 .right-block .item .range {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  transition: all .3s ease;
}
.yiliao-s2 .right-block .item .range:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
}
.yiliao-s2 .right-block .item .range i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: o-scale 4.5s ease-out infinite;
}
.yiliao-s2 .right-block .item .range i:nth-of-type(2) {
  animation-delay: 1.125s;
}
.yiliao-s2 .right-block .item .range i:nth-of-type(3) {
  animation-delay: 2.25s;
}
.yiliao-s2 .right-block .item span {
  position: absolute;
  left: 100%;
  top: -8px;
  line-height: 24px;
  font-size: max(14px, 1rem);
  color: #cfcfcf;
  padding-left: 20px;
  white-space: nowrap;
}
.yiliao-s2 .right-block .item .hide {
  position: absolute;
  bottom: 30px;
  left: 0;
  margin-left: -110px;
  width: 220px;
  padding: 14px 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 0;
  display: flex;
  display: none;
  opacity: 0;
}
.yiliao-s2 .right-block .item .hide:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 75px;
  height: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/statics/theme/home/images/yiliao/icon-3.png");
  background-size: auto 35px;
}
.yiliao-s2 .right-block .item .hide .txt {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 80px);
  padding-left: 20px;
}
.yiliao-s2 .right-block .item .hide .tit {
  font-size: max(16px, 1.25rem);
  color: #fff;
}
.yiliao-s2 .right-block .item .hide p {
  font-size: max(14px, 1rem);
  color: #fff;
}
.yiliao-s2 .right-block .item .hide p em {
  font-size: 1.875rem;
  font-family: 'MiSans-Medium';
  font-style: normal;
}
.yiliao-s2 .right-block .item:nth-of-type(1) {
  top: 34%;
  left: 76%;
}
.yiliao-s2 .right-block .item:nth-of-type(2) {
  top: 65%;
  left: 44%;
}
.yiliao-s2 .right-block .item:nth-of-type(3) {
  top: 56%;
  left: 62%;
}
.yiliao-s2 .right-block .item:nth-of-type(4) {
  top: 57%;
  left: 72%;
}
.yiliao-s2 .right-block .item:nth-of-type(5) {
  top: 73%;
  left: 66%;
}
.yiliao-s2 .right-block .item:nth-of-type(5) .hide {
  bottom: auto;
  top: 0;
  left: auto;
  margin-left: 0;
  right: calc(100% + 20px);
}
.yiliao-s2 .right-block .item:nth-of-type(6) {
  top: 68.5%;
  left: 51%;
}
.yiliao-s2 .right-block .item:nth-of-type(6) .hide {
  bottom: auto;
  top: 0;
  left: auto;
  margin-left: 0;
  right: calc(100% + 20px);
}
.yiliao-s2 .right-block .item:nth-of-type(4) {
  top: 57%;
  left: 72%;
}
.yiliao-s2 .right-block .item.active {
  z-index: 2;
}
.yiliao-s2 .right-block .item.active .hide {
  display: block;
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.other-s3 {
  padding: 7.5rem 0;
  background-image: linear-gradient(180deg, #fff, #f8f8f8);
}
.other-s3 .tips {
  text-align: center;
  font-size: 2rem;
  color: #333333;
}
.other-s3 .tips span {
  color: #0e7bd8;
}
.other-s3 .items {
  margin: 1.5rem 0 2.5rem;
}
.other-s3 .item {
  position: relative;
}
.other-s3 .item:before, .other-s3 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
}
.other-s3 .item:before {
  background-color: #f2f2f2;
}
.other-s3 .item:after {
  background-color: #0e7bd8;
  transform: scaleX(0);
  transform-origin: left top;
}
.other-s3 .item a {
  position: relative;
  display: block;
  padding: 2.5rem 0;
}
.other-s3 .item span, .other-s3 .item p {
  display: block;
  font-size: max(14px, 1rem);
  color: #808080;
}
.other-s3 .item .tit {
  margin: 1.5rem 0;
  font-size: max(16px, 1.25rem);
  color: #353844;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .other-s3 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
  .other-s3 .item:hover .tit {
    color: #0e7bd8;
  }
}

.other-s4 {
  padding: 6.25rem 0;
  font-size: 0;
}
.other-s4 .item {
  margin-top: 2.25rem;
  border: 1px solid #e2eaf3;
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.other-s4 .item:nth-of-type(1) {
  margin-top: 0;
}
.other-s4 .item .tit {
  color: #252d36;
  position: relative;
  font-size: max(16px, 1.5rem);
}
.other-s4 .item .tit:before {
  content: '';
  width: 4px;
  height: 100%;
  background-color: #0e7bd8;
  position: absolute;
  left: -2.5rem;
  top: 0;
}
.other-s4 .item .link a {
  display: inline-block;
  vertical-align: top;
  padding: 0 2.5rem;
  text-align: center;
  line-height: 3rem;
  color: #252d36;
  font-size: max(14px, 1.125rem);
  border-radius: 5px;
  background-color: #f1f1f1;
  margin: 1rem 1rem 0 0;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .other-s4 .item .link a:hover {
    background-color: #0e7bd8;
    color: #fff;
  }
}

@media screen and (max-width: 1800px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1681px) {
  html {
    font-size: 14px;
  }

  .header li {
    margin-left: 2.5rem;
  }

  .header a.search {
    margin-left: 3.75rem;
  }

  .news-s5 .right-block {
    width: 320px;
  }

  .news-s5 .left-block {
    width: calc(100% - 320px);
  }

  .index-s2 .para,
  .index-s2 .data-box {
    max-width: 48%;
  }
}
@media screen and (max-width: 1441px) {
  html {
    font-size: 13px;
  }

  .yiliao-s2 .left-block {
    width: 320px;
  }

  .yiliao-s2 .right-block {
    width: calc(100% - 320px);
  }
}
@media screen and (max-width: 1367px) {
  html {
    font-size: 12px;
  }

  .about-s2 .img-box {
    width: 45rem;
  }

  .about-s2 .txt-box {
    width: calc(100% - 45rem);
    padding: 2.5rem 0 2.5rem 3.75rem;
  }
}
@media screen and (max-width: 1281px) {
  html {
    font-size: 10px;
  }

  .header li {
    margin-left: 2rem;
  }

  .header a.search {
    margin-left: 2.5rem;
  }

  .news-s5 .right-block {
    width: 300px;
  }

  .news-s5 .left-block {
    width: calc(100% - 300px);
  }

  .yiliao-s2 .left-block {
    width: 300px;
  }

  .yiliao-s2 .right-block {
    width: calc(100% - 300px);
  }

  .yiliao-s2 .tab-cont .scroll {
    max-height: 30vw;
  }

  .index-s2 {
    padding: 8rem 0;
  }

  .index-s3 .map-box .item .range:after {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
  }
}
@media screen and (max-width: 1025px) {
  html {
    font-size: 10px;
  }

  .wrap-s {
    width: 90%;
  }

  body {
    padding-top: 60px;
  }

  .header {
    height: 60px;
    background-color: #fff;
    padding: 0 5%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  }

  .header .flex {
    height: 100%;
  }

  .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;
    padding: 60px 30px;
    text-align: left;
    z-index: 3;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header ul.active {
    left: 0;
  }

  .header li {
    display: block;
    margin: 0;
  }

  .header li a.single {
    font-size: 16px;
    color: #333;
    line-height: 50px;
    border-bottom: 1px solid #e6e6e6;
  }

  .header li a.single:after {
    display: none;
  }

  .header li i {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/statics/theme/home/images/yiliao/icon-2-3.png");
    background-size: auto 9px;
  }

  .header li .subnav {
    position: static;
    margin-left: 0;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    font-size: 0;
    padding: 0 20px;
  }

  .header li .subnav a {
    margin: 0;
    text-align: left;
  }

  .header a.search {
    background-image: url("/statics/theme/home/images/icon-1-2.png");
    margin-left: 0;
  }

  .header .info {
    margin-right: 40px;
  }

  .mNavBtn {
    display: block;
    width: 20px;
    height: 16px;
    right: 5%;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .mNavBtn span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mNavBtn span.line1 {
    top: 0;
  }
  .mNavBtn span.line2 {
    top: 7px;
  }
  .mNavBtn span.line3 {
    bottom: 0;
  }
  .mNavBtn.active span {
    background-color: #999;
  }
  .mNavBtn.active .line2 {
    display: none;
  }
  .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
  }

  .head-null {
    display: none;
  }

  .fixed-search .logo {
    top: 18px;
    left: 5%;
  }

  .fixed-search .close {
    right: 5%;
    top: 15px;
    margin-top: 0;
  }

  .fixed-search .top-box {
    height: 60px;
    position: relative;
  }

  .fixed-search .top-box .box {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
  }

  .fixed-search form {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding-left: 0;
  }

  .fixed-search form:before {
    display: none;
  }

  .fixed-search form button {
    display: block;
  }

  .fixed-search .bot-box {
    padding: 80px 0 40px;
  }

  .fixed-search .tit {
    padding: 0;
  }

  .fixed-search .link {
    padding: 10px 0 0;
  }

  .footer .top-block .right-box {
    display: none;
  }

  .footer .move-img {
    display: none;
  }

  .footer .top-block {
    display: block;
    padding: 3rem 0;
  }

  .footer .top-block .share {
    display: none;
  }

  .footer .top-block .logo-box {
    margin: 0 auto;
  }

  .footer .top-block .para {
    text-align: center;
  }

  .footer .bot-block {
    display: block;
    text-align: center;
  }

  .footer .bot-block .link {
    margin-top: 1rem;
  }

  .c-banner.mt {
    margin-top: 0;
  }

  .c-banner img {
    height: 60vw;
    object-fit: cover;
  }

  .c-crumbs {
    display: none;
  }

  .c-bg-fixed, .index-s4, .about-s2, .about-s3 .bg, .yiliao-s2 {
    background-attachment: inherit;
  }

  .about-s1 {
    padding: 6rem 0 30vw;
    margin-top: 0;
  }

  .about-s1 .move-img {
    display: none;
  }

  .contact-s1 {
    margin-top: 0;
  }

  .contact-s1 .map-box {
    margin-top: 0;
  }

  .contact-s1 .item-1 {
    padding: 1.75rem;
  }

  .duty-s1 {
    margin-top: 0;
  }

  .duty-s2 .item .txt-box {
    padding: 1.5rem;
  }

  .join-s1 {
    margin-top: 0;
  }

  .news-s5 {
    margin-top: 0;
  }

  .news-s1 {
    margin-top: 0;
  }

  .news-s1 .pagination span {
    transform: scale(0.6);
    margin-left: -5px;
  }

  .news-s1 .item .img-box {
    height: 24vw;
  }

  .news-s3 {
    margin-top: 0;
  }

  .news-s4 {
    margin-top: 0;
  }

  .news-s4 .item .img-box {
    width: 100px;
    height: 20px;
  }

  .news-s6 .left-box {
    top: 100px;
  }

  .yiyao-s1 {
    margin-top: 0;
  }

  .index-s5 .tab-tit .link a {
    padding: 0 1rem;
  }

  .index-s5 .tab-tit a.more {
    padding: 0 1rem;
    line-height: 4rem;
  }

  .index-s5 .tab-tit .link {
    height: calc(100% - 4rem);
  }

  .index-s1 .item {
    height: 60vw;
  }

  .index-s2 .move-img {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .about-s2 .flex {
    display: block;
  }

  .about-s2 .txt-box {
    width: 100%;
    padding: 0;
  }

  .about-s2 .img-box {
    width: 100%;
    max-width: 40rem;
    margin: 2rem auto 0;
  }

  .news-s5 .flex {
    display: block;
  }

  .news-s5 .left-block {
    width: 100%;
    padding-right: 0;
  }

  .news-s5 .right-block {
    width: 100%;
    margin-top: 4rem;
  }

  .news-s6 .flex {
    display: block;
  }

  .news-s6 .left-box {
    width: 110%;
    margin: 0 -5%;
    background-color: #fff;
    top: 60px;
  }

  .news-s6 .right-box {
    width: 100%;
    margin-top: 4rem;
  }

  .news-s6 .right-box .item:nth-of-type(even) {
    transform: none;
  }

  .news-s6 .left-box .item:after {
    display: none;
  }

  .news-s6 .left-box .item span {
    font-size: 3rem;
    line-height: 6rem;
    text-align: center;
  }

  .news-s6 .left-box .item.active span {
    opacity: 1;
  }

  .yiyao-s1 .txt-box {
    position: static;
    padding: 4rem 0;
  }

  .yiyao-s1 .txt-box .box {
    width: 100%;
  }

  .yiyao-s1 .img-box img.pc {
    display: none;
  }

  .yiyao-s1 .img-box img.mobile {
    display: block;
    width: 100%;
  }

  .yiliao-s2 .flex {
    display: block;
  }

  .yiliao-s2 .left-block {
    width: 100%;
    margin-top: 0;
  }

  .yiliao-s2 .right-block {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }

  .yiliao-s2 .tab-cont .scroll {
    max-height: none;
  }

  .yiliao-s2 .right-block .item .hide {
    width: 200px;
    margin-left: -100px;
    bottom: 15px;
  }

  .yiliao-s1 .flex {
    display: block;
  }

  .yiliao-s1 .left-block {
    width: 100%;
    padding-right: 0;
  }

  .yiliao-s1 .right-block {
    width: 100%;
    position: static;
    margin-top: 4rem;
  }

  .index-s2 .para, .index-s2 .data-box {
    max-width: 100%;
  }

  .index-s2 .build-img {
    display: none;
  }

  .index-s2 .cloud-1 {
    display: none;
  }

  .index-s2 .cloud-2 {
    display: none;
  }

  .index-s3 .flex {
    display: block;
  }

  .index-s3 .map-box {
    width: 100%;
    display: none;
  }

  .index-s3 .left-box {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 769px) {
  .c-banner .tit {
    font-size: 24px;
  }

  .c-banner p {
    font-size: 14px;
  }

  .about-s1 {
    padding: 4rem 0 30vw;
  }

  .index-tit {
    font-size: 20px;
  }

  .about-s1 .para {
    margin-top: 1.5rem;
  }

  .about-s1 .build-img {
    width: 40vw;
  }

  .about-s1 .data-box {
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .about-s1 .data {
    width: 40%;
    margin-top: 2rem;
  }
  .about-s1 .data:nth-of-type(1), .about-s1 .data:nth-of-type(2) {
    margin-top: 0;
  }

  .about-s1 .data span {
    font-size: 3rem;
  }

  .about-s2 {
    padding: 4rem 0 0;
  }

  .about-s2 .para {
    margin-top: 1.5rem;
  }

  .about-s3 .items {
    display: block;
  }

  .about-s3 .item {
    padding: 4rem 5%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .about-s3 .item .box {
    width: 48%;
  }

  .contact-s1 {
    padding: 4rem 0 0;
  }

  .contact-s1 .items {
    margin-top: 2rem;
    display: block;
  }

  .contact-s1 .item {
    width: 100%;
    margin: 0 0 20px;
    padding: 2rem;
  }

  .contact-s1 .item span {
    margin-top: 1rem;
  }

  .contact-s1 .item-1 {
    width: 100%;
    padding: 2rem;
  }

  .contact-s1 .map-box {
    padding-top: 30vw;
  }

  .contact-s1 .dot .box:after {
    display: none;
  }

  .contact-s1 .dot .box {
    width: 240px;
    padding: 1.5rem;
  }

  .contact-s1 .item-1 .txt {
    width: calc(1005 - 12rem);
  }

  .contact-s1 .item-1 .img {
    width: 12rem;
  }

  .duty-s1 {
    padding: 4rem 0;
  }

  .duty-s1 .txt-box {
    position: static;
    width: 100%;
    transform: none;
  }

  .duty-s1 .img-box {
    margin-top: 2rem;
  }

  .duty-s2 {
    padding: 4rem 0;
  }

  .duty-s2 .items {
    display: block;
    margin-right: 0;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }

  .duty-s2 .item {
    width: 100%;
    margin: 4rem 0 0;
  }
  .duty-s2 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .duty-s2 .item span {
    margin-top: 1rem;
  }

  .join-s1 {
    padding: 4rem 0;
  }

  .join-s1 .flex {
    display: block;
  }

  .join-s1 .txt-box {
    width: 100%;
    padding-left: 0;
  }

  .join-s1 .para {
    margin-top: 1.5rem;
  }

  .join-s1 a {
    margin-top: 2rem;
  }

  .join-s1 .img-box {
    margin-top: 4rem;
    width: 100%;
  }

  .other-s1 {
    padding: 4rem 0;
  }

  .news-s5 {
    padding: 4rem 0;
  }

  .news-s5 .top-box {
    padding-bottom: 2rem;
  }

  .news-s5 .top-box .tit {
    font-size: 20px;
  }

  .news-s5 .mid-box {
    padding: 2rem 0;
  }

  .news-s5 .other-page {
    margin-top: 0;
  }

  .news-s5 .other-page a span:nth-of-type(1) {
    width: 70px;
  }

  .news-s5 .other-page a span:nth-of-type(2) {
    max-width: calc(100% - 70px);
    padding-left: 10px;
  }

  .news-s1 .item .img-box {
    height: 50vw;
  }

  .news-s1 {
    padding: 4rem 0;
  }

  .news-s1 .swiper {
    margin-top: 2rem;
  }

  .news-s1 .item .txt-box {
    padding: 0 2rem 2rem;
  }

  .news-s2 {
    padding: 4rem 0;
  }

  .news-s2 .items {
    margin-bottom: 4rem;
  }

  .news-s2 .item:nth-of-type(1) a {
    padding-top: 0;
  }

  .news-s2 .item a {
    padding: 4rem 0;
    display: block;
  }

  .news-s2 .item .img-box {
    width: 100%;
    height: 50vw;
  }

  .news-s2 .item .txt-box {
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }

  .news-s3 {
    padding: 4rem 0;
  }

  .news-s3 .items {
    margin-right: 0;
    margin-bottom: 4rem;
    display: block;
  }

  .news-s3 .item {
    width: 100%;
    margin: 4rem 0 0;
  }
  .news-s3 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .news-s3 .item .img-box {
    width: 100%;
    height: 50vw;
  }

  .news-s3 .item .info {
    margin-top: 1.5rem;
  }

  .news-s4 {
    padding: 4rem 0;
  }

  .news-s4 .items {
    display: block;
    margin-bottom: 4rem;
    margin-right: 0;
  }

  .news-s4 .item {
    width: 100%;
    margin: 4rem 0 0;
  }
  .news-s4 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .news-s4 .item a {
    padding: 2rem;
  }

  .news-s4 .item .from {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }

  .news-s6 {
    padding: 4rem 0 0;
  }

  .news-s6 .right-box .items {
    display: block;
  }

  .news-s6 .right-box .item {
    width: 100%;
    margin-bottom: 4rem;
  }

  .news-s6 .right-box .item:nth-of-type(even) {
    margin-left: 0;
  }

  .news-s6 .right-box .item a {
    padding: 2rem;
  }

  .news-s6 .right-box .item .tit {
    padding: 0 2rem 2rem;
  }

  .yiliao-s2 {
    padding: 4rem 0;
  }

  .yiliao-s2 .right-block {
    display: none;
  }

  .yiliao-s1 {
    padding: 4rem 0;
  }

  .yiyao-s2 {
    padding: 4rem 0;
  }

  .yiyao-s2 .img-box {
    margin-top: 2rem;
  }

  .yiyao-s2 .flex {
    margin-top: 2rem;
    display: block;
  }

  .yiyao-s2 .data-box {
    width: 100%;
    justify-content: space-between;
  }

  .yiyao-s2 .data {
    width: 45%;
    margin-right: 0;
    padding: 2rem 0;
  }

  .yiyao-s2 .txt-box {
    width: 100%;
  }

  .yiyao-s3 {
    padding: 4rem 0;
  }

  .yiyao-s3 .blocks {
    margin-top: 2rem;
  }

  .yiyao-s3 .block {
    margin-top: 4rem;
  }

  .yiyao-s3 .items {
    display: block;
    margin-right: 0;
  }

  .yiyao-s3 .item {
    width: 100%;
    margin: 4rem 0 0;
  }
  .yiyao-s3 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .yiyao-s3 .item .img-box {
    height: 50vw;
  }

  .yiyao-s2 .ewm-box {
    width: 100%;
    margin: 2rem 0 0;
    padding: 2.5rem;
  }

  .yiyao-s2 .ewm-box .ewm {
    margin-top: 2rem;
  }

  .index-s1 .item .tit {
    font-size: 24px;
  }

  .index-s1 .pagination {
    bottom: 1rem;
  }

  .index-s1 .pagination span {
    margin-left: -5px;
    transform: scale(0.6);
  }

  .index-s2 {
    padding: 4rem 0;
  }

  .index-s2 .data-box {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .index-s2 .data-item .num span {
    font-size: 3rem;
  }

  .index-s2 .data-item {
    width: 45%;
    margin-right: 0;
    margin-top: 2rem;
  }
  .index-s2 .data-item:nth-of-type(1), .index-s2 .data-item:nth-of-type(2) {
    margin-top: 0;
  }

  .index-s2 a.more {
    margin-top: 4rem;
  }

  .index-s3 {
    padding-top: 4rem;
  }

  .index-s3 .tab-hosp {
    margin-top: 2rem;
  }

  .index-s3 .tab-hosp .item {
    width: calc(50% - 1.25rem);
    margin-top: 1.25rem;
  }
  .index-s3 .tab-hosp .item:nth-of-type(1), .index-s3 .tab-hosp .item:nth-of-type(2) {
    margin-top: 0;
  }

  .index-s3 .tab-span span {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

  .index-s4 {
    padding: 4rem 0;
  }
  .index-s4 .pagination {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 0;
    z-index: 2;
  }
  .index-s4 .pagination span {
    display: inline-block;
    vertical-align: top;
    position: relative;
    transform: scale(0.6);
    margin-left: -5px;
    cursor: pointer;
  }
  .index-s4 .pagination span:nth-of-type(1) {
    margin-left: 0;
  }
  .index-s4 .pagination span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  .index-s4 .pagination span:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #d7dbde;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
  }
  .index-s4 .pagination span svg {
    fill: none;
    stroke: #0080e2;
    stroke-width: 2px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transform: rotate(-90deg);
  }
  .index-s4 .pagination span.active:before {
    opacity: 1;
  }
  .index-s4 .pagination span.active:after {
    background-color: #0080e2;
  }
  .index-s4 .pagination span.active svg {
    animation: indexsvg 5.5s linear forwards;
  }

  .index-s4 .sw {
    flex-wrap: nowrap;
  }

  .index-s4 .item {
    width: 100%;
    margin-right: 0;
    height: auto;
  }

  .index-s4 .item img {
    height: 50vw;
  }

  .index-s5 {
    padding: 4rem 0;
  }

  .index-s5 .flex {
    margin-top: 2rem;
    display: block;
  }

  .index-s5 .left-box {
    width: 100%;
    margin-right: 0;
  }

  .index-s5 .right-box {
    width: 100%;
    margin-top: 2rem;
  }

  .index-s6 {
    padding-bottom: 4rem;
  }
  .index-s6 .pagination {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 0;
    z-index: 2;
  }
  .index-s6 .pagination span {
    display: inline-block;
    vertical-align: top;
    position: relative;
    transform: scale(0.6);
    margin-left: -5px;
    cursor: pointer;
  }
  .index-s6 .pagination span:nth-of-type(1) {
    margin-left: 0;
  }
  .index-s6 .pagination span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  .index-s6 .pagination span:after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #d7dbde;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -4px;
  }
  .index-s6 .pagination span svg {
    fill: none;
    stroke: #0080e2;
    stroke-width: 2px;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transform: rotate(-90deg);
  }
  .index-s6 .pagination span.active:before {
    opacity: 1;
  }
  .index-s6 .pagination span.active:after {
    background-color: #0080e2;
  }
  .index-s6 .pagination span.active svg {
    animation: indexsvg 5.5s linear forwards;
  }

  .index-s6 .items {
    margin-top: 2rem;
  }

  .index-s6 .sw {
    flex-wrap: nowrap;
  }

  .index-s6 .item {
    width: 100%;
    margin: 0;
  }

  .index-s6 .item .img-box {
    height: 50vw;
  }

  .index-s6 .item .txt-box {
    padding: 0 2rem 2rem;
  }

  .index-s7 {
    padding: 4rem 0;
  }

  .index-s7 .sw {
    margin-right: -10px;
  }

  .index-s7 .item {
    width: calc(50% - 10px);
    height: 15vw;
    margin: 10px 10px 0 0;
  }

  .other-s3 {
    padding: 4rem 0;
  }

  .other-s3 .tips {
    font-size: 16px;
  }

  .other-s3 .items {
    margin: 0 0 4rem;
  }

  .other-s3 .item:before, .other-s3 .item:after {
    height: 4px;
  }

  .other-s4 {
    padding: 4rem 0;
  }

  .other-s4 .item .link a {
    padding: 0 10px;
  }
}

/*# sourceMappingURL=bundle.css.map */
<!--0.0002281665802002-->