@font-face {
  font-family: 'Outfit-SemiBold';
  src: url("../fonts/Outfit-SemiBold.ttf");
}
@font-face {
  font-family: 'Outfit-Medium';
  src: url("../fonts/Outfit-Medium.ttf");
}
@font-face {
  font-family: 'Outfit-Regular';
  src: url("../fonts/Outfit-Regular.ttf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clip-path-1 {
  0% {
    clip-path: inset(0 0 0% 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes rotate-1 {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes index-1 {
  0%,100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes about-1 {
  0% {
    stroke-dashoffset: 1690;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    transition: all .3s ease;
  }
  .dom-loaded .header li a.single {
    transition: all .3s ease;
  }
}
.topheader {
  background-color: #fff;
  padding: 0.2rem 0.6rem 0;
  position: relative;
  z-index: 8;
}
.topheader .main {
  background-color: #f2f2f2;
  border-radius: 9000px;
  height: 0.5rem;
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topheader .info {
  display: flex;
  gap: 0.2rem;
}
.topheader .info p {
  font-size: max(13px, 0.16rem);
}
.topheader .share {
  display: flex;
  gap: 0.3rem;
}
.topheader .share .box {
  width: 0.16rem;
  height: 0.16rem;
}
.topheader .share .box .show {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topheader .share .box .show img {
  max-width: 100%;
  max-height: 100%;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #f2f2f2;
  padding: 0 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .header.down {
    background-color: #fff;
  }
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .logo {
  width: 3.8rem;
}
.header .logo img {
  display: block;
  width: 100%;
}
.header .right-box {
  display: flex;
  grid-gap: 0.6rem;
  align-items: center;
}
.header ul {
  display: flex;
  grid-gap: 0.6rem;
}
.header li {
  position: relative;
}
.header li a.single {
  font-size: max(16px, 0.18rem);
  color: #0e213c;
  line-height: 1rem;
  position: relative;
}
.header li a.single:after {
  content: '';
  width: 100%;
  height: 0.02rem;
  background-color: #062d65;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform .3s ease;
  will-change: transform;
}
.header li .subnav-1 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.header li .subnav-1 .box {
  border-radius: 10px;
  background-color: #fff;
  padding: 10px;
  transform: translateY(20px);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.header li .subnav-1 a {
  display: block;
  font-size: max(13px, 0.16rem);
  white-space: nowrap;
  padding: 0.1rem 0.3rem;
  border-radius: 5px;
  color: #2a2b35;
  margin-top: 10px;
  text-align: center;
  transition: all .3s ease;
}
.header li .subnav-1 a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .header li .subnav-1 a:hover {
    background-color: #062d65;
    color: #fff;
  }
}
.header li.active a.single:after {
  opacity: 1;
}
@media (any-hover: hover) {
  .header li:hover a.single:after {
    opacity: 1;
  }
  .header li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header li:hover .subnav .box {
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.header .ope {
  display: flex;
  align-items: center;
  grid-gap: 0.16rem;
  position: relative;
  z-index: 2;
}
.header .ope i {
  width: 1px;
  height: 0.14rem;
  background-color: #dbdee1;
}
.header .lang {
  position: relative;
}
.header .lang .show {
  display: flex;
  align-items: center;
  grid-gap: 0.08rem;
  cursor: pointer;
}
.header .lang .show:before {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/global.svg");
}
.header .lang .show:after {
  content: '';
  width: 0.08rem;
  height: 0.05rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/drop.svg");
}
.header .lang .hide {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.header .lang .hide:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 10px;
  top: 10px;
}
.header .lang .box {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.2rem;
}
.header .lang .box a {
  display: block;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  white-space: nowrap;
  text-align: center;
  margin-top: 0.1rem;
  position: relative;
  transition: color .3s ease;
}
.header .lang .box a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #062d65;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all .5s;
}
.header .lang .box a:nth-of-type(1) {
  margin-top: 0;
}
@media (any-hover: hover) {
  .header .lang .box a:hover {
    color: #062d65;
  }
  .header .lang .box a:hover:before {
    transform: scaleX(1);
  }
}
.header .lang:hover .hide {
  opacity: 1;
  visibility: visible;
}
.header .search-btn {
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search-1.svg");
  cursor: pointer;
}
.header .mNavBtn {
  display: none;
}

.fixed-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  transition-delay: .3s;
}
.fixed-search.active {
  opacity: 1;
  transition-delay: 0s;
  pointer-events: auto;
}
.fixed-search.active .main {
  transform: translateX(0);
  transition-delay: .3s;
}
.fixed-search .main {
  transform: translateY(-101%);
  transition: transform .5s ease;
  z-index: 2;
}
.fixed-search .top-box {
  height: 1rem;
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-search .top-box .close {
  position: absolute;
  right: max(40px, 0.6em);
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/close-1.svg");
  background-size: auto 12px;
  cursor: pointer;
}
.fixed-search .form {
  max-width: 1020px;
  margin: 0 auto;
  width: 86%;
  position: relative;
  height: 36px;
  padding-left: 44px;
}
.fixed-search .form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../images/search-1.svg") left center no-repeat;
  background-size: auto 18px;
  border-right: 1px solid #e6e6e6;
}
.fixed-search .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: transparent;
  font-size: max(13px, 0.16rem);
  color: #808080;
  font-family: 'Inter-Regular';
}
.fixed-search .form input::-webkit-input-placeholder {
  color: #808080;
}
.fixed-search .form input:-moz-placeholder {
  color: #808080;
}
.fixed-search .form input::-moz-placeholder {
  color: #808080;
}
.fixed-search .form input:-ms-input-placeholder {
  color: #808080;
}
.fixed-search .bot-box {
  background-color: #f5f5f5;
  padding: 0.4rem 0 0.6rem;
}
.fixed-search .block {
  max-width: max(500px, 7.2rem);
  width: 86%;
  margin: 0 auto;
}
.fixed-search .tit {
  font-size: max(13px, 0.16rem);
  color: #20252b;
}
.fixed-search .link {
  margin-top: 0.2rem;
}
.fixed-search .link a {
  display: block;
  padding: 0 0.4rem;
  border-radius: 5px;
  position: relative;
  transition: all .3s ease;
}
.fixed-search .link a span {
  display: block;
  font-size: max(16px, 0.2rem);
  line-height: max(40px, 0.6rem);
  color: #808080;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .fixed-search .link a:hover {
    background-color: #fff;
  }
  .fixed-search .link a:hover span {
    color: #062d65;
  }
}

.footer {
  padding-bottom: 0.3rem;
}
.footer .top-block {
  position: relative;
  padding: 0.6rem 0 0.8rem;
}
.footer .top-block:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  background-color: #f5f7f9;
  border-radius: 0.4rem;
}
.footer .top-block .wrap-s {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .top-block .left-box .img-box {
  width: 1.62rem;
}
.footer .top-block .left-box .img-box img {
  display: block;
  width: 100%;
}
.footer .top-block .left-box .info-box {
  margin-top: 0.3rem;
}
.footer .top-block .left-box .info {
  position: relative;
  margin-top: 0.2rem;
  max-width: 3.6rem;
}
.footer .top-block .left-box .info:before {
  content: '';
  width: 0.16rem;
  height: max(16px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
.footer .top-block .left-box .info p {
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  padding-left: 0.24rem;
}
.footer .top-block .left-box .info:nth-of-type(1) {
  margin-top: 0;
}
.footer .top-block .left-box .info.tel:before {
  background-image: url("../images/contact/icon-1.svg");
}
.footer .top-block .left-box .info.mail:before {
  background-image: url("../images/contact/icon-2.svg");
}
.footer .top-block .left-box .info.addr:before {
  background-image: url("../images/contact/icon-3.svg");
}
.footer .top-block .left-box .share {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.14rem;
}
.footer .top-block .left-box .share .box {
  width: max(26px, 0.3rem);
  height: max(26px, 0.3rem);
}
.footer .top-block .left-box .share .box .show {
  height: 100%;
  background-color: #e7eaee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .top-block .left-box .share .box .show img {
  max-width: max(14px, 0.16rem);
  max-height: max(12px, 0.14rem);
}
.footer .top-block .right-box {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.footer .top-block .right-box .box span {
  display: block;
  font-size: max(15px, 0.2rem);
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.footer .top-block .right-box .box .link {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 0.1rem;
  position: relative;
  padding-top: 0.2rem;
}
.footer .top-block .right-box .box .link:before {
  content: '';
  width: 0.15rem;
  height: 0.02rem;
  background-color: #062d65;
  position: absolute;
  top: 0;
  left: 0;
}
.footer .top-block .right-box .box .link a {
  font-size: max(13px, 0.16rem);
  color: #2a2b35;
  font-weight: 300;
  position: relative;
  padding-bottom: 2px;
  transition: color .3s ease;
}
.footer .top-block .right-box .box .link a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #062d65;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .footer .top-block .right-box .box .link a:hover {
    color: #062d65;
  }
  .footer .top-block .right-box .box .link a:hover:before {
    transform: scaleX(1);
  }
}
.footer .top-block .totop {
  width: max(40px, 0.44rem);
  height: max(40px, 0.44rem);
  background-color: #062d65;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/totop.svg");
  background-size: auto max(14px, 0.18rem);
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.footer .bot-block {
  margin-top: 0.2rem;
  position: relative;
  padding: 0.3rem 0;
}
.footer .bot-block:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  background-color: #062d65;
  border-radius: 0.4rem;
}
.footer .bot-block .wrap-s {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .bot-block .copyright {
  font-size: max(12px, 0.14rem);
  color: #fff;
}
.footer .bot-block .link {
  display: flex;
  gap: 0.2rem;
}
.footer .bot-block .link a {
  font-size: max(12px, 0.14rem);
  color: #ffffff;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .footer .bot-block .link a:hover {
    color: #cadb00;
  }
}

.fixed-cookie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
}
.fixed-cookie .main {
  position: absolute;
  bottom: 0.2rem;
  left: 0.6rem;
  right: 0.6rem;
  padding: 0.6rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.4rem;
}
.fixed-cookie .label {
  font-size: 0.3rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.fixed-cookie .box {
  margin-top: 0.2rem;
  display: flex;
  justify-content: space-between;
}
.fixed-cookie .para {
  width: calc(100% - 5rem);
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 1.5;
}
.fixed-cookie .btns {
  display: flex;
  gap: 0.1rem;
}
.fixed-cookie .btn {
  min-width: 1.6rem;
  padding: 0 0.2rem;
  height: max(36px, 0.4rem);
  border-radius: 9000px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fixed-cookie .btn span {
  font-size: max(13px, 0.16rem);
  font-family: 'Outfit-SemiBold';
}
.fixed-cookie .btn:nth-of-type(1) {
  background-color: #062d65;
}
.fixed-cookie .btn:nth-of-type(1) span {
  color: #fff;
}
.fixed-cookie .btn:nth-of-type(2) {
  background-color: #cadb00;
}
.fixed-cookie .btn:nth-of-type(2) span {
  color: #062d65;
}

@media screen and (min-width: 1025px) {
  .ani-box.animating {
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  }

  .trans-1 {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  .trans-1.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-1.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-1.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-1.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-2 {
    opacity: 0;
    transform: translateX(-0.5rem);
  }
  .trans-2.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-2.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-2.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-2.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-3 {
    opacity: 0;
    transform: translateX(0.5rem);
  }
  .trans-3.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-3.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-3.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-3.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-4 {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  .trans-4.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-4.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-4.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-4.animating.delay-3 {
    transition-delay: .3s;
  }

  .scale-1 {
    transform: scale(1.3);
  }
  .scale-1.animating {
    transform: scale(1);
  }
}
.wrap-s {
  width: 83.33%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.inner-wrap-s {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.c-crumbs {
  padding: 0 0.6rem;
  height: max(40px, 0.54rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  z-index: 5;
}
.c-crumbs .left-box {
  display: flex;
  gap: 0.4rem;
}
.c-crumbs .left-box .home {
  font-size: max(12px, 0.14rem);
  color: rgba(14, 33, 60, 0.4);
  display: flex;
  align-items: center;
  gap: 0.1rem;
  position: relative;
}
.c-crumbs .left-box .home:before {
  content: '';
  width: 0.14rem;
  height: 0.12rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.svg");
}
.c-crumbs .left-box .home:after {
  content: '';
  width: 0.4rem;
  height: 0.07rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/crumbs-1.svg");
  background-size: auto 100%;
  position: absolute;
  left: 100%;
  top: calc(50% - 0.04rem);
  pointer-events: none;
}
.c-crumbs .left-box .link {
  font-size: max(12px, 0.14rem);
  color: #0e213c;
  position: relative;
}
.c-crumbs .left-box .link:after {
  content: '';
  width: 0.4rem;
  height: 0.07rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/crumbs-1.svg");
  background-size: auto 100%;
  position: absolute;
  left: 100%;
  top: calc(50% - 0.04rem);
  pointer-events: none;
}
.c-crumbs .left-box span {
  font-size: max(12px, 0.14rem);
  color: #0e213c;
}
.c-crumbs .right-box {
  display: flex;
  gap: 0.2rem;
}
.c-crumbs .right-box a {
  padding: 0 0.2rem;
  font-size: max(12px, 0.14rem);
  color: #0e213c;
  line-height: calc(0.54rem - 1px);
  position: relative;
}
.c-crumbs .right-box a:after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: #cadb00;
  opacity: 0;
  transform: scaleX(0);
  transition: all .3s ease;
}
.c-crumbs .right-box a.active:after {
  opacity: 1;
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .c-crumbs .right-box a:hover:after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.c-pages {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}
.c-pages ul {
  display: flex;
  grid-gap: 0.1rem;
}
.c-pages ul li {
  position: relative;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9000px;
  border: 1px solid #f0f2f2;
  transition: all .3s ease;
}
.c-pages ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(12px, 0.14rem);
  color: #2a2b35;
  font-family: 'Outfit-Light';
  z-index: 2;
  transition: color .3s ease;
}
.c-pages ul li.first, .c-pages ul li.last {
  width: 60px;
  background-color: #062d65;
}
.c-pages ul li.first a, .c-pages ul li.last a {
  font-size: 12px;
  color: #fff;
}
.c-pages ul li.active {
  background-color: #cadb00;
}
.c-pages ul li.active a {
  color: #fff;
}
@media (any-hover: hover) {
  .c-pages ul li:hover {
    background-color: #cadb00;
  }
  .c-pages ul li:hover a {
    color: #fff;
  }
}

.index-s1 {
  height: calc(100vh - 1.7rem);
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.index-s1 .img-box {
  width: 66%;
  height: 100%;
  border-radius: 1.2rem 0 0 1rem;
  transform: skewX(-10deg);
  transform-origin: bottom left;
  overflow: hidden;
  order: 2;
}
.index-s1 .img-box .inner {
  height: 100%;
  transform: skewX(10deg);
  transform-origin: bottom left;
}
.index-s1 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: index-1 12s linear infinite;
}
.index-s1 .txt-box {
  width: 34%;
  padding-left: 0.6rem;
}
.index-s1 .txt-box .inner {
  width: calc(100% + 0.6rem);
}
.index-s1 .label {
  font-size: 0.54rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.index-s1 .btns {
  margin-top: 0.6rem;
  display: flex;
}
.index-s1 .btns a {
  min-width: 2.1rem;
  padding: 0 0.24rem;
  height: 0.7rem;
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all .3s ease;
}
.index-s1 .btns a span {
  font-size: max(15px, 0.2rem);
  color: #0e213c;
}
.index-s1 .btns a:after {
  content: '';
  width: 0.22rem;
  height: 0.16rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1-1.svg");
}
@media (any-hover: hover) {
  .index-s1 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}

.index-s2 {
  padding: 1.6rem 0;
  background: url("../images/index/img-3.png") center top no-repeat;
  background-size: 100% auto;
}
.index-s2 .logo-box {
  width: 4.7rem;
  margin: 0 auto;
}
.index-s2 .logo-box img {
  display: block;
  width: 100%;
}
.index-s2 .para {
  font-size: 0.26rem;
  color: #062d65;
  text-align: center;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.index-s2 .img-box {
  max-width: 11rem;
  margin: 0.9rem auto 0;
}
.index-s2 .img-box img {
  display: block;
  width: 100%;
}

.index-s3 {
  display: flex;
  justify-content: flex-end;
  padding: 1.6rem 0 0;
  position: relative;
  z-index: 3;
}
.index-s3:before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0;
  bottom: -1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/img-6.png");
  background-size: 100% 100%;
  z-index: 1;
}
.index-s3 .txt-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.index-s3 .block {
  width: 6.7rem;
}
.index-s3 .label {
  font-size: 0.46rem;
  color: #fff;
  font-family: 'Outfit-SemiBold';
}
.index-s3 .para {
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.8;
  margin-top: 0.3rem;
}
.index-s3 .btns {
  margin-top: 0.8rem;
  display: flex;
}
.index-s3 .btns a {
  min-width: 2.1rem;
  padding: 0 0.24rem;
  height: 0.7rem;
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all .3s ease;
}
.index-s3 .btns a span {
  font-size: max(15px, 0.2rem);
  color: #0e213c;
}
.index-s3 .btns a:after {
  content: '';
  width: 0.22rem;
  height: 0.16rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1-1.svg");
}
@media (any-hover: hover) {
  .index-s3 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}
.index-s3 .pic-block {
  padding: 0.38rem 0;
  position: relative;
  z-index: 2;
}
.index-s3 .items {
  width: 35vw;
  aspect-ratio: 67 / 76;
  position: relative;
  overflow: hidden;
}
.index-s3 .item {
  height: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
}
.index-s3 .item .img-box {
  width: 100%;
  height: 100%;
}
.index-s3 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s3 .item.active {
  z-index: 2;
}
.index-s3 .item.animating {
  z-index: 3;
  animation: clip-path-1 0.8s cubic-bezier(0.8, 0, 0, 1) forwards;
}
.index-s3 .dot-box {
  height: 100%;
  aspect-ratio: 276 / 837;
  position: absolute;
  left: -3.6vw;
  top: 0;
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.index-s3 .dot-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-5.png");
}
.index-s3 .dot {
  position: relative;
  cursor: pointer;
}
.index-s3 .dot:before {
  content: '';
  width: 0.32rem;
  height: 0.32rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2-1.png");
}
.index-s3 .dot span {
  font-size: max(16px, 0.22rem);
  line-height: 24px;
  color: #fff;
  position: absolute;
  white-space: nowrap;
  right: 0;
  top: -12px;
}
.index-s3 .dot:nth-of-type(1), .index-s3 .dot:nth-of-type(4) {
  transform: translateX(14vw);
}
.index-s3 .dot:nth-of-type(1) span, .index-s3 .dot:nth-of-type(4) span {
  padding-right: 0.4rem;
}
.index-s3 .dot:nth-of-type(2), .index-s3 .dot:nth-of-type(3) {
  transform: translateX(1.15vw);
}
.index-s3 .dot:nth-of-type(2) span, .index-s3 .dot:nth-of-type(3) span {
  padding-right: 0.24rem;
}
.index-s3 .dot.active:before {
  background-image: url("../images/index/icon-2-2.png");
}
.index-s3 .m-block {
  display: none;
  margin-top: 0.4rem;
}
.index-s3 .m-block .m-item {
  width: calc((100% - 0.2rem) / 2);
  height: auto;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.4rem;
  margin-right: 0.2rem;
}
.index-s3 .m-block .m-item:last-of-type {
  margin-right: 0;
}
.index-s3 .m-block .m-item .img-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.index-s3 .m-block .m-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s3 .m-block .m-item .tit {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin-top: 0.15rem;
}
.index-s3 .m-block .pagination {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.1rem;
  justify-content: center;
}
.index-s3 .m-block .pagination span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #062d65;
  opacity: 0.3;
  transition: opacity .3s ease;
}
.index-s3 .m-block .pagination span.active {
  opacity: 1;
}

.index-s4 {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.index-s4 .cont-block {
  display: flex;
}
.index-s4 .left-block {
  width: calc(50%	- 0.6rem);
  position: relative;
  overflow: hidden;
}
.index-s4 .left-block:before {
  content: '';
  display: block;
  width: 82%;
  aspect-ratio: 743 / 1270;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-8.png");
}
.index-s4 .items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 2;
}
.index-s4 .items .swiper {
  height: 100%;
  padding-right: 18%;
}
.index-s4 .item {
  position: relative;
}
.index-s4 .item .offset {
  position: absolute;
  right: -7vw;
  width: 22vw;
  top: calc(50% - 11vw);
  aspect-ratio: 1 / 1;
  opacity: 0;
  transition: all .3s ease;
}
.index-s4 .item .offset:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-11.png");
  opacity: 0;
  animation: rotate-1 10s linear infinite reverse;
}
.index-s4 .item .offset span {
  width: 100%;
  position: absolute;
  top: 75%;
  right: calc(50% + 0.6rem);
  font-size: 0.3rem;
  color: rgba(6, 46, 101, 0.6);
  font-family: 'Outfit-SemiBold';
  text-align: right;
}
.index-s4 .item .box {
  width: 86%;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 7%;
  transform: scale(0.5);
  transition: transform .3s ease;
}
.index-s4 .item .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-10.png");
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
  animation: rotate-1 10s linear infinite;
}
.index-s4 .item .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-9.png");
  z-index: 1;
  transition: opacity .3s ease;
  animation: rotate-1 10s linear infinite;
}
.index-s4 .item .img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.index-s4 .item .img-box img {
  max-width: 78%;
  max-height: 78%;
}
.index-s4 .item.prev-1 .offset {
  opacity: 1;
  transform: translate(-6.3vw, -5vw);
}
.index-s4 .item.prev-2 .offset {
  opacity: 1;
  transform: translate(-20vw, 0vw);
}
.index-s4 .item.prev-2 span {
  right: 50%;
}
.index-s4 .item.prev-3 .offset {
  transform: translate(-40vw, 10vw);
}
.index-s4 .item.next-1 .offset {
  transform: translate(-5vw, 5vw);
}
.index-s4 .item.swiper-slide-active .offset {
  opacity: 1;
}
.index-s4 .item.swiper-slide-active .offset:before {
  opacity: 1;
}
.index-s4 .item.swiper-slide-active .offset span {
  opacity: 0;
}
.index-s4 .item.swiper-slide-active .box {
  transform: scale(1);
}
.index-s4 .item.swiper-slide-active .box:before {
  opacity: 1;
}
.index-s4 .item.swiper-slide-active .box:after {
  opacity: 0;
}
.index-s4 .right-block {
  width: calc(50% + 0.6rem);
}
.index-s4 .right-block .block {
  width: 8.6rem;
  height: 100%;
  position: relative;
}
.index-s4 .top-box {
  position: absolute;
  bottom: calc(50% + 0.3rem);
  left: 0;
  width: 100%;
}
.index-s4 .top-box .label {
  font-size: 0.46rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.index-s4 .top-box .para {
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 1.8;
  margin-top: 0.3rem;
}
.index-s4 .top-box .btns {
  margin-top: 0.4rem;
  display: flex;
}
.index-s4 .top-box .btns a {
  min-width: 2.1rem;
  padding: 0 0.24rem;
  height: 0.7rem;
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all .3s ease;
}
.index-s4 .top-box .btns a span {
  font-size: max(15px, 0.2rem);
  color: #0e213c;
}
.index-s4 .top-box .btns a:after {
  content: '';
  width: 0.22rem;
  height: 0.16rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-1-1.svg");
}
@media (any-hover: hover) {
  .index-s4 .top-box .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}
.index-s4 .tab-cont {
  width: 100%;
  padding: 0 2.2rem 0 0.3rem;
  position: absolute;
  top: calc(50% + 2rem);
  left: 0;
}
.index-s4 .tab-cont .child {
  display: none;
}
.index-s4 .tab-cont .child.active {
  display: block;
}
.index-s4 .tab-cont .child.active .tit, .index-s4 .tab-cont .child.active .s-para {
  animation: o-upfade-top 0.7s 0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s4 .tab-cont .child.active .s-para {
  animation-delay: .1s;
}
.index-s4 .tab-cont .tit {
  font-size: 0.6rem;
  color: rgba(6, 46, 101, 0.6);
  font-family: 'Outfit-SemiBold';
  opacity: 0;
}
.index-s4 .tab-cont .s-para {
  margin-top: 0.15rem;
  position: relative;
  padding-left: 0.24rem;
  font-size: max(13px, 0.16rem);
  color: rgba(6, 46, 101, 0.6);
  line-height: 1.5;
  opacity: 0;
}
.index-s4 .tab-cont .s-para:before {
  content: '';
  width: 0.04rem;
  height: 100%;
  background-color: #062d65;
  position: absolute;
  top: 0;
  left: 0;
}
.index-s4 .buttons {
  position: absolute;
  right: 0;
  top: calc(50% + 2.75rem);
  display: flex;
  grid-gap: 0.16rem;
}
.index-s4 .button {
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  border: 1px solid rgba(6, 45, 101, 0.3);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/next-1.svg");
  background-size: auto max(12px, 0.16rem);
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s4 .button:hover {
    background-color: #cadb00;
    border-color: #cadb00;
    box-shadow: 0 0.06rem 0.24rem rgba(215, 233, 5, 0.48);
    background-image: url("../images/index/next-2.svg");
  }
}
.index-s4 .prev {
  transform: rotate(180deg);
}
.index-s4 .m-block {
  display: none;
  margin-top: 0.4rem;
}
.index-s4 .m-block .m-item {
  width: calc((100% - 0.2rem) / 2);
  height: auto;
  margin-right: 0.2rem;
}
.index-s4 .m-block .m-item:last-of-type {
  margin-right: 0;
}
.index-s4 .m-block .m-item .inner {
  border-radius: 0.4rem;
  background-color: #f9f9f9;
}
.index-s4 .m-block .m-item .img-box {
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.index-s4 .m-block .m-item .img-box img {
  max-width: 70%;
  max-height: 60%;
}
.index-s4 .m-block .m-item .txt-box {
  padding: 20px;
}
.index-s4 .m-block .m-item .tit {
  font-size: 16px;
  color: #062d65;
  text-align: center;
}
.index-s4 .m-block .m-item .para {
  font-size: 13px;
  color: #0e213c;
  opacity: 0.6;
  margin-top: 0.15rem;
}
.index-s4 .m-block .pagination {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.1rem;
  justify-content: center;
}
.index-s4 .m-block .pagination span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #062d65;
  opacity: 0.3;
  transition: opacity .3s ease;
}
.index-s4 .m-block .pagination span.active {
  opacity: 1;
}

.index-s5 {
  padding: 1.6rem 0;
  background-color: #f5f7f9;
}
.index-s5 .img-box {
  width: 5.4rem;
  margin: 0 auto;
}
.index-s5 .img-box img {
  display: block;
  width: 100%;
}
.index-s5 .txt-box {
  margin-top: 0.6rem;
}
.index-s5 .label {
  font-size: 0.46rem;
  color: #062d65;
  text-align: center;
  font-family: 'Outfit-SemiBold';
}
.index-s5 .para {
  font-size: max(16px, 0.22rem);
  color: #0e213c;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.2rem;
}

.index-s6 {
  padding: 1.6rem 0;
}
.index-s6 .label {
  font-size: 0.46rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.index-s6 .cont-block {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.8rem;
}
.index-s6 .cont-block .left-box {
  width: 43.75%;
}
.index-s6 .cont-block .left-box .inner {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}
.index-s6 .cont-block .left-box .img-box {
  aspect-ratio: 700 / 726;
}
.index-s6 .cont-block .left-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s6 .cont-block .left-box .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 18, 39, 0.7);
  padding: 0 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  z-index: 2;
}
.index-s6 .cont-block .left-box .date {
  font-size: max(14px, 0.18rem);
  color: #fff;
}
.index-s6 .cont-block .left-box .tit {
  font-size: 0.28rem;
  color: #fff;
  font-family: 'Outfit-SemiBold';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.index-s6 .cont-block .left-box p {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s6 .cont-block .left-box .more {
  position: absolute;
  bottom: 1rem;
  left: 0.9rem;
}
.index-s6 .cont-block .left-box .more span {
  min-width: 1.4rem;
  padding: 0 0.24rem;
  height: max(40px, 0.46rem);
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s6 .cont-block .left-box .more span:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}
@media (any-hover: hover) {
  .index-s6 .cont-block .left-box:hover .img-box img {
    transform: scale(1.05);
  }
}
.index-s6 .cont-block .right-box {
  width: calc(56.25% - 0.8rem);
  display: flex;
  gap: 0.4rem;
}
.index-s6 .cont-block .item {
  width: calc(50% - 0.2rem);
  height: 100%;
}
.index-s6 .cont-block .item .inner {
  display: block;
  height: 100%;
  position: relative;
  padding-top: 1.6rem;
}
.index-s6 .cont-block .item .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: max(16px, 0.22rem);
  color: #062d65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s6 .cont-block .item .bot-box {
  height: 100%;
  position: relative;
}
.index-s6 .cont-block .item .bot-box:before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0.6rem;
  left: 0;
  bottom: 0;
  border: 1px solid #e6eaef;
  border-radius: 0 0 0.4rem 0.4rem;
  box-sizing: border-box;
  pointer-events: none;
}
.index-s6 .cont-block .item .img-box {
  aspect-ratio: 390 / 218;
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.index-s6 .cont-block .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s6 .cont-block .item .txt-box {
  padding: 0.4rem;
}
.index-s6 .cont-block .item p {
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s6 .cont-block .item .more {
  position: absolute;
  bottom: 0.6rem;
  left: 0.4rem;
}
.index-s6 .cont-block .item .more span {
  min-width: 1.4rem;
  padding: 0 0.24rem;
  height: max(40px, 0.46rem);
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s6 .cont-block .item .more span:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}
@media (any-hover: hover) {
  .index-s6 .cont-block .item:hover .img-box img {
    transform: scale(1.05);
  }
}
.index-s6 .m-block {
  display: none;
  margin-top: 0.4rem;
}
.index-s6 .m-block .item {
  width: calc((100% - 0.2rem) / 2);
  margin-right: 0.2rem;
  height: auto;
}
.index-s6 .m-block .item:last-of-type {
  margin-right: 0;
}
.index-s6 .m-block .item a.inner {
  display: block;
  padding: 0.4rem;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 20px;
}
.index-s6 .m-block .item .img-box {
  aspect-ratio: 390 / 218;
  border-radius: 4px;
  overflow: hidden;
}
.index-s6 .m-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.index-s6 .m-block .item .date {
  font-size: max(12px, 0.14rem);
  color: #062d65;
  font-family: 'Outfit-Medium';
  margin-top: 0.3rem;
}
.index-s6 .m-block .item .tit {
  font-size: 16px;
  color: #062d65;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.2rem;
}
.index-s6 .m-block .item p {
  font-size: 13px;
  color: #0e213c;
  opacity: 0.6;
  line-height: 1.5;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}
.index-s6 .m-block .item .more {
  display: inline-flex;
  margin-top: 20px;
}
.index-s6 .m-block .item .more span {
  min-width: 1.4rem;
  padding: 0 0.24rem;
  height: max(36px, 0.46rem);
  border-radius: 9000px;
  background-color: #cadb00;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  transition: all .3s ease;
}
.index-s6 .m-block .pagination {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.1rem;
  justify-content: center;
}
.index-s6 .m-block .pagination span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #062d65;
  opacity: 0.3;
  transition: opacity .3s ease;
}
.index-s6 .m-block .pagination span.active {
  opacity: 1;
}

.inner-s1 {
  padding: 1.5rem 0 1.2rem;
  background: url("../images/news/img-1.jpg") center top no-repeat;
  background-size: 100% auto;
}
.inner-s1 .label {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  font-family: 'Outfit-SemiBold';
}
.inner-s1 .top-block {
  margin-top: 0.9rem;
  padding: 0.7rem 0.3rem 0.7rem 0.7rem;
  border-radius: 0.4rem;
  background-color: #fff;
  box-shadow: 0 0.18rem 0.43rem rgba(52, 60, 67, 0.06);
  display: flex;
}
.inner-s1 .left-box {
  position: relative;
  width: 60%;
  border-radius: 0.4rem;
  overflow: hidden;
}
.inner-s1 .left-box:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), #0c1c32);
  z-index: 2;
}
.inner-s1 .left-box .img-box {
  aspect-ratio: 800 / 449;
}
.inner-s1 .left-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s1 .left-box .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem;
  z-index: 3;
}
.inner-s1 .left-box .tit {
  font-size: 0.32rem;
  color: #fff;
  font-family: 'Outfit-SemiBold';
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s1 .left-box .more {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s1 .left-box .more span {
  font-size: max(13px, 0.16rem);
  color: #cadb00;
}
.inner-s1 .left-box .more:after {
  content: '';
  width: 0.15rem;
  height: 0.12rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-1-1.svg");
}
@media (any-hover: hover) {
  .inner-s1 .left-box:hover img {
    transform: scale(1.05);
  }
}
.inner-s1 .right-box {
  width: 40%;
  padding-left: 0.4rem;
}
.inner-s1 .right-box .item {
  height: 33.33%;
  position: relative;
  margin-top: -2px;
}
.inner-s1 .right-box .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.2rem;
  right: 0.2rem;
  height: 1px;
  background-color: #e5e5e5;
  transition: all .3s ease;
}
.inner-s1 .right-box .item:last-of-type:after {
  display: none;
}
.inner-s1 .right-box .item .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 0 0.4rem;
  border-radius: 0.3rem;
  transition: all .3s ease;
}
.inner-s1 .right-box .item .date {
  font-size: max(13px, 0.16rem);
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.inner-s1 .right-box .item .tit {
  font-size: max(14px, 0.18rem);
  color: #0e213c;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .inner-s1 .right-box .item:hover {
    z-index: 2;
  }
  .inner-s1 .right-box .item:hover:after {
    background-color: #f3f5f6;
  }
  .inner-s1 .right-box .item:hover .inner {
    background-color: #f3f5f6;
  }
}
.inner-s1 .bot-block {
  margin-top: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #062d65;
}
.inner-s1 .bot-block .items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}
.inner-s1 .bot-block .item {
  width: 33.33%;
  border-radius: 0.4rem;
  position: relative;
  transition: all .3s ease;
}
.inner-s1 .bot-block .item:nth-of-type(3n):after {
  display: none;
}
.inner-s1 .bot-block .item:after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #efefef;
  position: absolute;
  right: 0;
  top: 0;
}
.inner-s1 .bot-block .item .inner {
  display: block;
  height: 100%;
  padding: 0.5rem 0.5rem 0.8rem;
  position: relative;
}
.inner-s1 .bot-block .item .img-box {
  border-radius: 0.2rem;
  aspect-ratio: 330 / 185;
  overflow: hidden;
}
.inner-s1 .bot-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s1 .bot-block .item .txt-box {
  margin-top: 0.3rem;
}
.inner-s1 .bot-block .item .date {
  font-size: max(13px, 0.16rem);
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  transition: color .3s ease;
}
.inner-s1 .bot-block .item .tit {
  font-size: max(14px, 0.18rem);
  color: #0e213c;
  margin-top: 0.15rem;
  transition: color .3s ease;
}
.inner-s1 .bot-block .item .more {
  position: absolute;
  left: 0.5rem;
  bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s1 .bot-block .item .more span {
  font-size: max(13px, 0.16rem);
  color: #cadb00;
}
.inner-s1 .bot-block .item .more:after {
  content: '';
  width: 0.15rem;
  height: 0.12rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-1-1.svg");
}
@media (any-hover: hover) {
  .inner-s1 .bot-block .item:hover {
    background-color: #062d65;
  }
  .inner-s1 .bot-block .item:hover img {
    transform: scale(1.1);
  }
  .inner-s1 .bot-block .item:hover .date, .inner-s1 .bot-block .item:hover .tit {
    color: #fff;
  }
  .inner-s1 .bot-block .item:hover .more {
    opacity: 1;
  }
}

.inner-s2 {
  padding: 1.2rem 0;
  background: #fff url("../images/news/img-4.png") center top no-repeat;
  background-size: 100% auto;
}
.inner-s2 .block {
  width: 78%;
  margin: 0 auto;
}
.inner-s2 .inner {
  background-color: #fff;
  border-radius: 0.2rem;
  padding: 1rem 0.6rem 0;
}
.inner-s2 .label {
  font-size: 0.4rem;
  color: #0e213c;
  font-family: 'Outfit-Medium';
}
.inner-s2 .date {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.3rem;
}
.inner-s2 .date:before {
  content: '';
  width: max(14px, 0.16rem);
  height: max(14px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon-2.svg");
}
.inner-s2 .date span {
  font-size: max(12px, 0.14rem);
  color: #7a8799;
}
.inner-s2 .edit-para {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #dadfe7;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 2;
}
.inner-s2 .edit-para p {
  margin-top: 0.2rem;
}
.inner-s2 .edit-para p:nth-of-type(1) {
  margin-top: 0;
}
.inner-s2 .edit-para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s2 .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s2 .page-box {
  margin-top: 1.2rem;
  padding-top: 0.4rem;
  border-top: 2px solid #062d65;
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
}
.inner-s2 .page-box a {
  width: calc(50% - 0.1rem);
  height: 0.6rem;
  border-radius: 9000px;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  font-size: max(12px, 0.14rem);
}
.inner-s2 .page-box a p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s2 .page-box a span {
  font-size: max(12px, 0.14rem);
  font-family: 'Outfit-SemiBold';
}
.inner-s2 .page-box a:nth-of-type(1) {
  background-color: #062d65;
  color: #fff;
}
.inner-s2 .page-box a:nth-of-type(2) {
  background-color: #cadb00;
  color: #062d65;
}

.inner-s3 {
  height: calc(100vh - 2.24rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-s3 .img-box {
  width: 66%;
  height: 100%;
  border-radius: 1.2rem 0 0 1rem;
  transform: skewX(-10deg);
  transform-origin: bottom left;
  overflow: hidden;
  order: 2;
}
.inner-s3 .img-box .inner {
  height: 100%;
  transform: skewX(10deg);
  transform-origin: bottom left;
}
.inner-s3 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: index-1 12s linear infinite;
}
.inner-s3 .txt-box {
  width: 34%;
  padding-left: 1.6rem;
}
.inner-s3 .txt-box .inner {
  width: calc(100% + 0.6rem);
}
.inner-s3 .label {
  font-size: 0.8rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}

.inner-s4 {
  padding: 1.2rem 0;
}
.inner-s4 .block {
  margin-top: 0.4rem;
  padding: 0 0.5rem;
  background-color: #fbfbfb;
  border-radius: 0.4rem;
}
.inner-s4 .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s4 .label {
  font-size: 0.32rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  padding: 0.5rem 0;
}
.inner-s4 .info-box {
  padding: 0.3rem 0;
  border-top: 1px solid #cccfd5;
  border-bottom: 1px solid #cccfd5;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.inner-s4 .info-box .info {
  flex: 1;
  position: relative;
}
.inner-s4 .info-box .info:before {
  content: '';
  width: 0.16rem;
  height: max(16px, 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
}
.inner-s4 .info-box .info p {
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  padding-left: 0.24rem;
}
.inner-s4 .info-box .info.tel:before {
  background-image: url("../images/contact/icon-1.svg");
}
.inner-s4 .info-box .info.mail:before {
  background-image: url("../images/contact/icon-2.svg");
}
.inner-s4 .info-box .info.addr:before {
  background-image: url("../images/contact/icon-3.svg");
}
.inner-s4 .share {
  padding: 0.3rem 0;
  display: flex;
  gap: 0.3rem;
}
.inner-s4 .share .box {
  width: 0.16rem;
  height: 0.16rem;
}
.inner-s4 .share .box .show {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s4 .share .box .show img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s4 .form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-s4 .form .box {
  position: relative;
  width: calc((100% - 20px) / 3);
}
.inner-s4 .form .box:nth-of-type(7) {
  width: 100%;
}
.inner-s4 .form input {
  display: block;
  width: 100%;
  height: max(46px, 0.6rem);
  font-size: max(12px, 0.14rem);
  color: #767d86;
  background-color: #f2f2f4;
  padding: 0 0.2rem;
  border: 1px solid #f2f2f4;
  border-radius: 0.2rem;
  transition: all .3s ease;
}
.inner-s4 .form textarea {
  display: block;
  width: 100%;
  height: 2.8rem;
  font-size: max(12px, 0.14rem);
  color: #767d86;
  background-color: #f2f2f4;
  padding: 0.15rem 2rem calc(20px + 0.46rem) 0.2rem;
  border: 1px solid #f2f2f4;
  border-radius: 0.2rem;
  resize: none;
  transition: all .3s ease;
}
.inner-s4 .form .upload {
  width: 1.75rem;
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: calc(20px + 0.46rem);
  border: 1px dashed #c3cbd7;
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}
.inner-s4 .form .upload:before {
  content: '';
  width: 0.35rem;
  height: 0.3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/contact/icon-4.svg");
}
.inner-s4 .form .upload span {
  font-size: max(12px, 0.14rem);
  color: rgba(14, 33, 60, 0.3);
}
.inner-s4 .form button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: block;
  height: 0.46rem;
  background-color: #cadb00;
  border-radius: 9000px;
  font-size: max(13px, 0.16rem);
  color: #062d65;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s4 .form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.1rem 0.3rem rgba(215, 233, 5, 0.3);
  }
}
.inner-s4 .layui-input:hover, .inner-s4 .layui-textarea:hover,
.inner-s4 .layui-input:focus, .inner-s4 .layui-textarea:focus {
  border-color: #cadb00 !important;
}
.inner-s4 .layui-input:focus, .inner-s4 .layui-textarea:focus {
  box-shadow: none;
}
.inner-s4 .layui-form-select dl {
  top: 100%;
}
.inner-s4 .layui-form-select dl dd, .inner-s4 .layui-form-select dl dt {
  padding: 0 0.2rem;
  font-size: max(12px, 0.14rem);
}
.inner-s4 .layui-form-select dl dd.layui-this {
  color: #062d65;
}
.inner-s4 .tips {
  padding: 0.3rem 0;
  font-size: max(12px, 0.14rem);
  color: rgba(14, 33, 60, 0.3);
  text-align: center;
}

.inner-s5 {
  padding: 1.6rem 0;
}
.inner-s5 .wrap-s {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.inner-s5 .para {
  width: calc(50% - 0.6rem);
  background-color: #062d65;
  border-radius: 0.4rem;
  padding: 0.7rem;
  font-size: max(18px, 0.24rem);
  line-height: 1.5;
  color: #fff;
  font-family: 'Outfit-Medium';
  order: 2;
  position: sticky;
  top: 1.2rem;
}
.inner-s5 .items {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.inner-s5 .item {
  width: calc((100% - 0.2rem) / 2);
  border-radius: 0.3rem;
  background-color: #f9f9f9;
  background-image: url("../images/certifications/img-2.png");
  background-position: left 2rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.inner-s5 .item .img-box {
  height: 2.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.inner-s5 .item .img-box img {
  max-width: 70%;
  max-height: 70%;
}
.inner-s5 .item .txt-box {
  height: 0.8rem;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-s5 .item .txt-box:before, .inner-s5 .item .txt-box:after {
  content: '';
  width: 0.17rem;
  height: 0.33rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/certifications/img-3.png");
}
.inner-s5 .item .txt-box:after {
  transform: rotate(180deg);
}
.inner-s5 .item .tit {
  width: calc(100% - 0.34rem);
  padding: 0 0.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s5 .item .tit span {
  font-size: max(14px, 0.18rem);
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  text-align: center;
}

.inner-s6 {
  padding: 0 0 1.6rem;
}
.inner-s6 .top-block {
  padding: 1rem 0;
  display: flex;
  justify-content: flex-end;
}
.inner-s6 .top-block .num {
  font-size: 1.8rem;
  color: #cadb00;
  font-family: 'Outfit-Medium';
}
.inner-s6 .bot-block {
  border-top: 1px solid #cfd3d8;
  padding-top: 1rem;
  display: flex;
  align-items: flex-start;
}
.inner-s6 .bot-block .left-box {
  width: 37.5%;
  position: sticky;
  top: 1.2rem;
}
.inner-s6 .bot-block .left-box .num {
  font-size: 1.8rem;
  color: #062d65;
  font-family: 'Outfit-Medium';
}
.inner-s6 .bot-block .left-box p {
  font-size: 0.64rem;
  color: #062d65;
  font-family: 'Outfit-Medium';
  line-height: 1.1;
  text-transform: uppercase;
}
.inner-s6 .bot-block .right-box {
  width: 62.5%;
}
.inner-s6 .bot-block .items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-s6 .bot-block .item {
  width: calc((100% - 10px) / 2);
}
.inner-s6 .bot-block .item .inner {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.4rem;
  background-color: #f9f9f9;
  padding-bottom: 0.4rem;
  overflow: hidden;
  transition: all .3s ease;
}
.inner-s6 .bot-block .item .inner:after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #cadb00;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1.svg");
  background-size: auto 0.12rem;
  box-shadow: 0 0.06rem 0.24rem rgba(202, 219, 0, 0.48);
  opacity: 0;
  transform: translateY(0.6rem);
  transition: all .3s ease;
}
.inner-s6 .bot-block .item .img-box {
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.inner-s6 .bot-block .item .img-box img {
  max-width: 70%;
  max-height: 60%;
}
.inner-s6 .bot-block .item .tit {
  font-size: max(15px, 0.2rem);
  color: #000000;
  text-align: center;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s6 .bot-block .item:hover .inner {
    background-color: #fff;
    box-shadow: 0 0.13rem 1rem rgba(0, 0, 0, 0.04);
  }
  .inner-s6 .bot-block .item:hover .inner:after {
    opacity: 1;
    transform: translateY(0);
  }
  .inner-s6 .bot-block .item:hover .img-box {
    transform: translateY(-0.3rem);
  }
  .inner-s6 .bot-block .item:hover .tit {
    transform: translateY(-0.6rem);
    font-family: 'Outfit-SemiBold';
  }
}

.inner-s7 {
  padding: 1.6rem 0;
}
.inner-s7 .wrap-s {
  display: flex;
  align-items: flex-start;
}
.inner-s7 .left-box {
  width: 37.5%;
  position: sticky;
  top: 1.2rem;
  padding-left: 1.2rem;
  order: 2;
}
.inner-s7 .left-box .box {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #cdd5e0;
}
.inner-s7 .left-box .box:nth-of-type(1) {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
.inner-s7 .left-box .box p {
  font-size: max(18px, 0.24rem);
  color: #0e213c;
  text-transform: uppercase;
}
.inner-s7 .left-box .box .num {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.inner-s7 .left-box .box .num span {
  font-size: 1.4rem;
  color: #cadb00;
  font-family: 'Outfit-Medium';
}
.inner-s7 .left-box .box .num i {
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  font-style: normal;
  text-transform: uppercase;
}
.inner-s7 .right-box {
  width: 62.5%;
}
.inner-s7 .items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-s7 .item {
  width: calc((100% - 10px) / 2);
}
.inner-s7 .item .inner {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 0.4rem;
  background-color: #f9f9f9;
  padding-bottom: 0.4rem;
  overflow: hidden;
  transition: all .3s ease;
}
.inner-s7 .item .inner:after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #cadb00;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/product/icon-1.svg");
  background-size: auto 0.12rem;
  box-shadow: 0 0.06rem 0.24rem rgba(202, 219, 0, 0.48);
  opacity: 0;
  transform: translateY(0.6rem);
  transition: all .3s ease;
}
.inner-s7 .item .img-box {
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.inner-s7 .item .img-box img {
  max-width: 70%;
  max-height: 60%;
}
.inner-s7 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #000000;
  text-align: center;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s7 .item:hover .inner {
    background-color: #fff;
    box-shadow: 0 0.13rem 1rem rgba(0, 0, 0, 0.04);
  }
  .inner-s7 .item:hover .inner:after {
    opacity: 1;
    transform: translateY(0);
  }
  .inner-s7 .item:hover .img-box {
    transform: translateY(-0.3rem);
  }
  .inner-s7 .item:hover .tit {
    transform: translateY(-0.6rem);
    font-family: 'Outfit-SemiBold';
  }
}

.inner-s8 {
  padding: 1.2rem 0;
  position: relative;
}
.inner-s8:before {
  content: '';
  width: 100%;
  position: absolute;
  top: -2.24rem;
  bottom: -2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/product/img-5.jpg");
  pointer-events: none;
  mask: linear-gradient(180deg, #fff 80%, rgba(255, 255, 255, 0) 95%);
}
.inner-s8 .tab-cont .child {
  display: none;
}
.inner-s8 .tab-cont .child.active {
  display: block;
}
.inner-s8 .tab-cont .child.active .label, .inner-s8 .tab-cont .child.active .img-box {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s8 .tab-cont .child.active .img-box {
  animation-delay: .1s;
}
.inner-s8 .tab-cont .inner {
  display: block;
}
.inner-s8 .tab-cont .label {
  font-size: 0.9rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  text-align: center;
  opacity: 0;
}
.inner-s8 .tab-cont .img-box {
  max-width: 10rem;
  height: 4.2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.inner-s8 .tab-cont .img-box img {
  max-width: 80%;
  max-height: 80%;
}
.inner-s8 .tab-tit {
  display: flex;
  justify-content: center;
}
.inner-s8 .tab-tit .items {
  background-color: #f5f7f9;
  border-radius: 0.2rem;
  padding: 5px 10px;
  display: flex;
  gap: 0.1rem;
}
.inner-s8 .tab-tit .item {
  min-width: 2rem;
  padding: 0 0.2rem;
  height: max(40px, 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s8 .tab-tit .item span {
  font-size: max(14px, 0.18rem);
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  transition: color .3s ease;
}
.inner-s8 .tab-tit .item.active {
  background-color: #062d65;
}
.inner-s8 .tab-tit .item.active span {
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s8 .tab-tit .item:hover {
    background-color: #062d65;
  }
  .inner-s8 .tab-tit .item:hover span {
    color: #fff;
  }
}

.inner-s9 {
  padding: 1.2rem 0;
  background: #fff url("../images/product/img-6.png") center top no-repeat;
  background-size: 100% 5.6rem;
}
.inner-s9 .block {
  width: 78%;
  margin: 0 auto;
}
.inner-s9 .inner {
  background-color: #fff;
  border-radius: 0.2rem;
  padding: 1rem 0;
}
.inner-s9 .top-block {
  display: flex;
  align-items: flex-start;
}
.inner-s9 .top-block .txt-box {
  width: 50%;
  padding-right: 0.8rem;
  order: 2;
}
.inner-s9 .top-block .label {
  font-size: 0.4rem;
  color: #0e213c;
  font-family: 'Outfit-Medium';
}
.inner-s9 .top-block .info {
  margin-top: 0.2rem;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  font-family: 'Outfit-Medium';
}
.inner-s9 .top-block .para {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #dadfe7;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 1.5;
}
.inner-s9 .top-block .img-box {
  width: 50%;
  text-align: center;
  padding-left: 0.4rem;
}
.inner-s9 .top-block .img-box img {
  width: 85%;
}

.inner-s10 {
  padding: 1.4rem 0 1rem;
}
.inner-s10 .label {
  font-size: 0.42rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.inner-s10 .para {
  margin-top: 0.2rem;
  font-size: max(13px, 0.16rem);
  color: #6e7a8b;
  line-height: 1.5;
}
.inner-s10 .items {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.inner-s10 .item {
  width: calc((100% - 0.2rem) / 2);
  background-color: #ebeef2;
  border-radius: 0.4rem;
  padding: 0.6rem 0.6rem 1.2rem;
}
.inner-s10 .item .tit {
  font-size: 0.28rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.inner-s10 .item .box {
  margin-top: 0.5rem;
  border-top: 1px solid #bfc5ce;
  padding-top: 1.2rem;
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
}
.inner-s10 .item .spara {
  width: calc(100% - 1.3rem);
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  line-height: 1.5;
}
.inner-s10 .item .icon {
  width: 1rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s10 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}

.inner-s11 {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-s11 .pic-block {
  width: 39%;
  height: 48.5vw;
  position: relative;
}
.inner-s11 .pic-block .img-box {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.inner-s11 .pic-block .img-box img {
  display: block;
  height: 100%;
}
.inner-s11 .pic-block .svg-box {
  width: 79.6%;
  position: absolute;
  top: 14.5%;
  left: 15%;
}
.inner-s11 .pic-block .svg-box svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke-dasharray: 1690;
  stroke-dashoffset: 1690;
}
.inner-s11 .pic-block .svg-box.animating svg {
  animation: about-1 3s linear forwards;
}
.inner-s11 .txt-block {
  width: 61%;
  padding-left: 0.9rem;
  order: 2;
}
.inner-s11 .txt-block .block {
  width: 90%;
  max-width: 9.2rem;
}
.inner-s11 .txt-block .label {
  font-size: 0.42rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
}
.inner-s11 .txt-block .para {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #6e7a8b;
  line-height: 1.5;
}
.inner-s11 .txt-block .para span {
  color: #0e213c;
}

.inner-s12 {
  margin-top: -0.4rem;
  position: relative;
  z-index: 3;
}
.inner-s12 .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  border-radius: 0.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-3.jpg");
  background-attachment: fixed;
  z-index: 1;
}
.inner-s12 .txt-block {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.inner-s12 .label {
  font-size: 0.42rem;
  color: #fff;
  font-family: 'Outfit-SemiBold';
}
.inner-s12 .para {
  max-width: 7.8rem;
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.inner-s13 {
  padding: 3rem 0 2rem;
}
.inner-s13 .img-box {
  width: 4rem;
  margin: 0 auto;
  border-radius: 0.4rem;
  aspect-ratio: 400 / 224;
  overflow: hidden;
}
.inner-s13 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s13 .label {
  font-size: 1.6rem;
  color: #062d65;
  text-align: center;
  font-family: 'Outfit-SemiBold';
  margin-top: 0.8rem;
}
.inner-s13 .para {
  font-size: max(16px, 0.22rem);
  color: #6e7a8b;
  line-height: 1.5;
  text-align: center;
  margin: 0.3rem auto 0;
}

.inner-s14 {
  padding-bottom: 0.4rem;
  position: relative;
}
.inner-s14 .bg {
  position: absolute;
  top: 0;
  bottom: 0.4rem;
  left: 0.6rem;
  right: 0.6rem;
  border-radius: 0.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-5.jpg");
  background-attachment: fixed;
  z-index: 1;
}
.inner-s14 .txt-block {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
.inner-s14 .label {
  font-size: 0.42rem;
  color: #cadb00;
  font-family: 'Outfit-SemiBold';
  text-align: center;
}
.inner-s14 .para {
  margin-top: 0.3rem;
  font-size: max(13px, 0.16rem);
  color: #fff;
  text-align: center;
  line-height: 1.5;
}

.inner-s15 {
  padding: 2rem 0 0;
}
.inner-s15 .inner {
  width: 88.88%;
  margin: 0 auto;
  position: relative;
}
.inner-s15 .img-box {
  aspect-ratio: 1280 / 719;
  border-radius: 0.4rem;
  overflow: hidden;
}
.inner-s15 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s15 .para {
  position: absolute;
  top: 1.2rem;
  right: 0.6rem;
  width: 64%;
  font-size: 0.28rem;
  color: #fff;
  line-height: 1.5;
  font-family: 'Outfit-Medium';
}

.inner-s16 {
  padding: 1.2rem 0;
  position: relative;
}
.inner-s16 .bg {
  position: absolute;
  top: 2.76rem;
  right: 0;
  bottom: 0;
  width: 100vw;
  background-color: #062d65;
  border-radius: 0 0.4rem 0.4rem 0;
  z-index: 1;
}
.inner-s16 .label {
  font-size: 1.3rem;
  color: #062d65;
  font-family: 'Outfit-SemiBold';
  text-align: center;
  text-transform: uppercase;
}
.inner-s16 .cont-block {
  margin-top: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.1rem 0.1rem 0.1rem 0;
  position: relative;
  z-index: 2;
}
.inner-s16 .left-box {
  width: 33.75%;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
  padding: 0.6rem 0.3rem;
  position: sticky;
  top: 1.2rem;
}
.inner-s16 .left-box .tit {
  font-size: 0.26rem;
  color: #0e213c;
  font-family: 'Outfit-SemiBold';
}
.inner-s16 .tab-tit {
  margin-top: 0.24rem;
}
.inner-s16 .tab-tit .item {
  margin-top: 4px;
  padding: 0.15rem 0.3rem;
  border-radius: 0.12rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s16 .tab-tit .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s16 .tab-tit .item span {
  font-size: max(13px, 0.16rem);
  color: rgba(14, 33, 60, 0.6);
  transition: color .3s ease;
}
.inner-s16 .tab-tit .item.active {
  background-color: #cadb00;
}
.inner-s16 .tab-tit .item.active span {
  color: #062d65;
}
@media (any-hover: hover) {
  .inner-s16 .tab-tit .item:hover span {
    color: #062d65;
  }
}
.inner-s16 .right-box {
  width: calc(66.25% - 0.1rem);
  padding: 1.1rem 0.6rem;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
}
.inner-s16 .right-box .child {
  display: none;
}
.inner-s16 .right-box .child.active {
  display: block;
}
.inner-s16 .right-box .table-box {
  overflow: auto;
}
.inner-s16 .right-box table {
  width: 100%;
  border: 1px solid #dee0e4;
  border-top: none;
}
.inner-s16 .right-box table tr {
  display: flex;
  border-top: 1px solid #dee0e4;
}
.inner-s16 .right-box table th {
  padding: 0.2rem;
  font-size: max(13px, 0.16rem);
  color: #0e213c;
  width: 50%;
  border-right: 1px solid #dee0e4;
}
.inner-s16 .right-box table th:last-of-type {
  border: none;
}
.inner-s16 .right-box table td {
  width: 25% !important;
  padding: 0.2rem;
  font-size: max(10px, 0.12rem);
  color: #0e213c;
  text-align: center;
  border-right: 1px solid #dee0e4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s16 .right-box table td:last-of-type {
  border: none;
}
.inner-s16 .right-box table td:nth-of-type(3) {
  width: 50% !important;
}

.other-s1 .flex {
  display: flex;
}
.other-s1 .left-box {
  width: 3.8rem;
  padding: 1.6rem 0.9rem 1.2rem 0;
}
.other-s1 .sticky {
  position: sticky;
  top: 1.2rem;
}
.other-s1 .position span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #88909a;
  border-radius: 6px;
  padding: 0.16rem 0.2rem;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}
.other-s1 .position span.active {
  background-color: #cadb00;
  color: #062d65;
}
.other-s1 .right-box {
  width: calc(100% - 3.8rem);
  padding: 1.6rem 0 1.2rem 1.8rem;
  border-left: 1px solid #e7e9eb;
}
.other-s1 .right-box .block {
  margin-top: 0.8rem;
}
.other-s1 .right-box .label {
  position: relative;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #cfd3d7;
  font-size: max(16px, 0.18rem);
  color: #0e213c;
  font-family: 'Outfit-SemiBold';
}
.other-s1 .right-box .label:after {
  content: '';
  width: 1.2rem;
  height: 1px;
  background-color: #cadb00;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.other-s1 .right-box .para {
  font-size: max(13px, 0.16rem);
  color: #88909a;
  line-height: 1.625;
}
.other-s1 .right-box .para a {
  color: #062d65;
}

.search-s1 {
  padding: 1.2rem 0;
  background-color: #f2f2f2;
}
.search-s1 .form {
  position: relative;
  width: 100%;
  max-width: 7.2rem;
  margin: 0 auto;
  background-color: #fff;
  height: 0.8rem;
  border-radius: 10px;
  overflow: hidden;
}
.search-s1 .form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  font-size: max(14px, 0.18rem);
  color: #3e4247;
}
.search-s1 .form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-1.svg");
  background-size: auto 0.24rem;
  background-color: transparent;
  cursor: pointer;
}

.search-s2 {
  padding: 1.2rem 0;
  background-color: #fff;
}
.search-s2 .tips {
  text-align: center;
  font-size: 0.4rem;
  font-weight: 600;
  color: #353844;
}
.search-s2 .tips span {
  color: #000;
}
.search-s2 .items {
  margin: 0.24rem 0 0.4rem;
}
.search-s2 .item {
  position: relative;
}
.search-s2 .item:before, .search-s2 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.04rem;
}
.search-s2 .item:before {
  background-color: #f2f2f2;
}
.search-s2 .item:after {
  background-color: #062d65;
  transform: scaleX(0);
  transform-origin: left top;
}
.search-s2 .item a {
  position: relative;
  display: block;
  padding: 0.4rem 0;
}
.search-s2 .item p {
  font-size: max(14px, 0.16rem);
  color: #666666;
  line-height: 1.5;
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-s2 .item .date {
  font-size: max(14px, 0.16rem);
  color: #062d65;
  font-weight: 400;
}
.search-s2 .item .tit {
  font-size: max(16px, 0.24rem);
  color: #000;
}
@media (any-hover: hover) {
  .search-s2 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
}

@media only screen and (max-width: 2560px) {
  html {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1700px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1685px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1670px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1655px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1625px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1610px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1595px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1565px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1550px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1535px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1505px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1490px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1475px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1445px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1430px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1415px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1385px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1355px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1325px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1310px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1295px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1265px) {
  html {
    font-size: 69px;
  }
}
@media only screen and (max-width: 1250px) {
  html {
    font-size: 68px;
  }
}
@media only screen and (max-width: 1235px) {
  html {
    font-size: 67px;
  }
}
@media only screen and (max-width: 1220px) {
  html {
    font-size: 66px;
  }
}
@media only screen and (max-width: 1205px) {
  html {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1190px) {
  html {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1175px) {
  html {
    font-size: 63px;
  }
}
@media only screen and (max-width: 1160px) {
  html {
    font-size: 62px;
  }
}
@media only screen and (max-width: 1145px) {
  html {
    font-size: 61px;
  }
}
@media only screen and (max-width: 1130px) {
  html {
    font-size: 60px;
  }
}
@media screen and (max-width: 1281px) {
  .header ul {
    gap: 0.4rem;
  }
}
@media screen and (max-width: 1025px) {
  body {
    padding-top: 60px;
  }

  .topheader {
    display: none;
  }

  .header {
    height: 60px;
    position: fixed;
    background-color: #fff;
    padding: 0 7vw;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .header .logo {
    width: 160px;
  }
  .header .right-box {
    margin-right: 45px;
  }
  .header ul {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    padding: 70px 30px;
    text-align: left;
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header ul.active {
    left: 0;
  }
  .header li {
    border-bottom: 1px solid #e6e6e6;
  }
  .header li a.single {
    display: inline-block;
    line-height: 50px;
    color: #2a2b35;
    font-size: 15px;
    z-index: 2;
    padding: 0;
  }
  .header li a.single:after {
    display: none;
  }
  .header li i {
    width: 100%;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-image: url("../images/drop.svg");
    background-size: auto 6px;
    z-index: 1;
  }
  .header li .subnav-1 {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
  }
  .header li .subnav-1 .box {
    transform: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 20px 20px;
  }
  .header li .subnav-1 a {
    padding: 10px 0;
    text-align: left;
    margin-top: 0;
  }
  .header .ope {
    gap: 10px;
  }
  .header .ope i {
    height: 12px;
  }
  .header .lang .show:before {
    width: 18px;
    height: 18px;
  }
  .header .search-btn {
    width: 18px;
    height: 18px;
  }
  .header .mNavBtn {
    display: block;
    width: 20px;
    height: 16px;
    right: 8%;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .header .mNavBtn span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #062d65;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .mNavBtn span.line1 {
    top: 0;
  }
  .header .mNavBtn span.line2 {
    top: 7px;
  }
  .header .mNavBtn span.line3 {
    bottom: 0;
  }
  .header .mNavBtn.active .line2 {
    display: none;
  }
  .header .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .header .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
  }

  .fixed-search .top-box .close {
    right: 4vw;
  }

  .footer .top-block .right-box {
    display: none;
  }

  .footer .top-block .totop {
    display: none;
  }

  .footer .top-block .wrap-s {
    justify-content: center;
  }

  .footer .top-block .left-box .img-box {
    margin: 0 auto;
  }

  .footer .top-block .left-box .share {
    justify-content: center;
  }

  .footer .top-block .left-box .info {
    max-width: 400px;
  }

  .footer .top-block:before,
  .footer .bot-block:before {
    left: 3.5vw;
    right: 3.5vw;
  }

  .footer .bot-block .wrap-s {
    display: block;
  }

  .footer .bot-block .copyright {
    text-align: center;
  }

  .footer .bot-block .link {
    justify-content: center;
  }

  .fixed-cookie .main {
    left: 7vw;
    right: 7vw;
  }

  .fixed-cookie .box {
    display: block;
  }

  .fixed-cookie .para {
    width: 100%;
  }

  .fixed-cookie .btns {
    margin-top: 20px;
  }

  .c-crumbs {
    display: none;
  }

  .wrap-s {
    width: 86%;
  }

  .inner-wrap-s {
    width: 86%;
  }

  .index-s1 {
    display: block;
    height: auto;
    position: relative;
    padding: 0;
  }
  .index-s1:after {
    content: '';
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(6, 45, 101, 0.8));
    z-index: 2;
  }

  .index-s1 .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1357 / 850;
    transform: none;
    border-radius: 0;
  }

  .index-s1 .img-box .inner {
    transform: none;
  }

  .index-s1 .img-box img {
    animation: none;
  }

  .index-s1 .txt-box {
    width: 100%;
    padding: 0 7vw;
    position: absolute;
    left: 0;
    bottom: 0.6rem;
    z-index: 3;
  }

  .index-s1 .txt-box .inner {
    width: 100%;
  }

  .index-s1 .label {
    color: #fff;
  }

  .index-s3 {
    display: block;
  }

  .index-s3 .txt-block {
    position: static;
  }

  .index-s3 .block {
    width: 100%;
  }

  .index-s3 .pic-block {
    display: none;
  }

  .index-s3 .m-block {
    display: block;
  }

  .index-s4 {
    padding: 1.2rem 0;
  }

  .index-s4 .cont-block {
    display: block;
    padding: 0 7vw;
  }

  .index-s4 .left-block {
    display: none;
  }

  .index-s4 .right-block {
    width: 100%;
  }

  .index-s4 .right-block .block {
    width: 100%;
  }

  .index-s4 .top-box {
    position: static;
  }

  .index-s4 .tab-cont {
    display: none;
  }

  .index-s4 .buttons {
    display: none;
  }

  .index-s4 .m-block {
    display: block;
  }

  .index-s6 .cont-block {
    display: none;
  }

  .index-s6 .m-block {
    display: block;
  }

  .inner-s1 {
    background-size: auto 6rem;
  }

  .inner-s1 .top-block {
    display: block;
    padding: 0.4rem;
  }

  .inner-s1 .left-box {
    width: 100%;
  }

  .inner-s1 .right-box {
    width: 100%;
    padding: 0;
  }

  .inner-s1 .right-box .item {
    height: auto;
    padding: 20px 0;
  }

  .inner-s1 .bot-block .items {
    gap: 30px 0.4rem;
  }

  .inner-s1 .bot-block .item {
    width: calc(50% - 0.2rem);
  }

  .inner-s1 .bot-block .item:after {
    display: none;
  }

  .inner-s1 .bot-block .item .inner {
    padding: 0;
  }

  .inner-s1 .bot-block .item .more {
    display: none;
  }

  .inner-s2 .block {
    width: 100%;
  }

  .inner-s2 .inner {
    padding: 0.6rem;
  }

  .inner-s2 .page-box {
    flex-wrap: wrap;
  }

  .inner-s2 .page-box a {
    width: 100%;
  }

  .inner-s3 {
    display: block;
    height: auto;
    position: relative;
  }
  .inner-s3:after {
    content: '';
    width: 100%;
    height: 40%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(6, 45, 101, 0.8));
    z-index: 2;
  }

  .inner-s3 .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1357 / 850;
    transform: none;
    border-radius: 0;
  }

  .inner-s3 .img-box .inner {
    transform: none;
  }

  .inner-s3 .img-box img {
    animation: none;
  }

  .inner-s3 .txt-box {
    width: 100%;
    padding: 0 7vw;
    position: absolute;
    left: 0;
    bottom: 0.6rem;
    z-index: 3;
  }

  .inner-s3 .txt-box .inner {
    width: 100%;
  }

  .inner-s3 .label {
    color: #fff;
  }

  .inner-s3 .label br {
    display: none;
  }

  .inner-s4 .info-box {
    display: block;
  }

  .inner-s4 .info-box .info {
    margin-top: 0.2rem;
  }
  .inner-s4 .info-box .info:nth-of-type(1) {
    margin-top: 0;
  }

  .inner-s4 .form .box {
    width: 100%;
  }

  .inner-s4 .form textarea {
    padding: 0.15rem 0.2rem;
  }

  .inner-s4 .form .upload {
    width: 100%;
    position: static;
    margin-top: 10px;
    padding: 20px 0;
    gap: 10px;
  }

  .inner-s4 .form button {
    position: static;
    width: 100%;
  }

  .inner-s5 .wrap-s {
    display: block;
  }

  .inner-s5 .para {
    width: 100%;
    position: static;
  }

  .inner-s5 .items {
    width: 100%;
    margin-top: 0.6rem;
  }

  .inner-s5 .item {
    background-position: left 160px;
  }

  .inner-s5 .item .img-box {
    height: 180px;
  }

  .inner-s6 .bot-block {
    display: block;
  }

  .inner-s6 .bot-block .left-box {
    width: 100%;
    position: static;
  }

  .inner-s6 .bot-block .right-box {
    width: 100%;
    margin-top: 0.6rem;
  }

  .inner-s7 .wrap-s {
    display: block;
  }

  .inner-s7 .left-box {
    width: 100%;
    padding-left: 0;
    position: static;
  }

  .inner-s7 .right-box {
    width: 100%;
    margin-top: 0.6rem;
  }

  .inner-s9 .block {
    width: 100%;
  }

  .inner-s9 .inner {
    padding: 0.6rem;
  }

  .inner-s9 .top-block {
    display: block;
  }

  .inner-s9 .top-block .txt-box {
    width: 100%;
    padding: 0;
  }

  .inner-s9 .top-block .img-box {
    width: 100%;
    padding: 0;
    margin-top: 0.4rem;
  }

  .inner-s10 .item {
    width: 100%;
  }

  .inner-s10 .item .box {
    padding-top: 0.6rem;
  }

  .inner-s11 {
    display: block;
    padding: 0 7vw 1.2rem;
  }

  .inner-s11 .txt-block {
    width: 100%;
    padding: 0;
  }

  .inner-s11 .txt-block .block {
    max-width: 100%;
    width: 100%;
  }

  .inner-s11 .pic-block {
    width: 100%;
    max-width: 600px;
    margin: 0.6rem auto 0;
    height: auto;
  }

  .inner-s11 .pic-block .img-box {
    position: relative;
  }

  .inner-s11 .pic-block .img-box img {
    width: 100%;
    height: auto;
  }

  .inner-s12 {
    margin-top: 0;
  }

  .inner-s12 .bg {
    background-attachment: inherit;
    left: 3.5vw;
    right: 3.5vw;
  }

  .inner-s12 .txt-block {
    min-height: auto;
    padding: 1.2rem 0;
  }

  .inner-s14 .bg {
    left: 3.5vw;
    right: 3.5vw;
    background-attachment: inherit;
  }

  .inner-s15 .inner {
    width: 100%;
  }

  .inner-s15 .para {
    position: static;
    color: #0e213c;
    width: 100%;
    margin-top: 20px;
  }

  .inner-s16 .bg {
    display: none;
  }

  .inner-s16 .cont-block {
    padding: 0.1rem;
    background-color: #062d65;
    border-radius: 0.4rem;
    display: block;
  }

  .inner-s16 .left-box {
    width: 100%;
    position: static;
  }

  .inner-s16 .tab-tit .item {
    width: auto;
    transition: none;
    margin: 0 0 0 5px;
  }

  .inner-s16 .right-box {
    width: 100%;
    margin-top: 0.1rem;
  }

  .other-s1 .flex {
    display: block;
  }

  .other-s1 .left-box {
    display: none;
  }

  .other-s1 .right-box {
    width: 100%;
    padding: 1.2rem 0;
    border: none;
  }
}
@media screen and (max-width: 640px) {
  .fixed-cookie .main {
    padding: 20px;
  }

  .index-s1 .label {
    font-size: 20px;
  }

  .index-s1 .btns {
    margin-top: 15px;
  }

  .index-s1:after {
    height: 80%;
  }

  .index-s2 {
    padding: 60px 0;
  }

  .index-s2 .logo-box {
    width: 200px;
  }

  .index-s2 .img-box {
    margin-top: 30px;
  }

  .index-s3 {
    padding: 60px 0 0;
  }

  .index-s3 .label {
    font-size: 20px;
  }

  .index-s3 .btns {
    margin-top: 30px;
  }

  .index-s3 .m-block .m-item {
    width: 100%;
  }

  .index-s4 {
    padding: 60px 0;
  }

  .index-s4 .top-box .label {
    font-size: 20px;
  }

  .index-s4 .m-block .m-item {
    width: 100%;
  }

  .index-s5 {
    padding: 60px 0;
  }

  .index-s5 .img-box {
    width: 200px;
  }

  .index-s5 .label {
    font-size: 20px;
  }

  .index-s5 .para {
    font-size: 13px;
  }

  .index-s6 {
    padding: 60px 0;
  }

  .index-s6 .label {
    font-size: 20px;
  }

  .index-s6 .m-block .item {
    width: 100%;
  }

  .inner-s1 {
    padding: 60px 0;
  }

  .inner-s1 .label {
    font-size: 24px;
  }

  .inner-s1 .top-block {
    margin-top: 30px;
    padding: 20px;
  }

  .inner-s1 .left-box .txt-box {
    padding: 15px;
  }

  .inner-s1 .left-box .tit {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .inner-s1 .left-box .more {
    margin-top: 10px;
  }

  .inner-s1 .bot-block {
    margin-top: 30px;
  }

  .inner-s1 .bot-block .item {
    width: 100%;
  }

  .inner-s2 {
    padding: 60px 0;
  }

  .inner-s2 .inner {
    padding: 20px;
  }

  .inner-s2 .label {
    font-size: 20px;
  }

  .inner-s2 .date {
    margin-top: 10px;
  }

  .inner-s2 .edit-para {
    margin-top: 20px;
    padding-top: 20px;
  }

  .inner-s3 .label {
    font-size: 24px;
  }

  .inner-s4 {
    padding: 60px 0;
  }

  .inner-s4 .block {
    padding: 20px;
  }

  .inner-s4 .label {
    padding: 0;
    font-size: 20px;
  }

  .inner-s4 .info-box {
    margin-top: 15px;
  }

  .inner-s4 .form {
    margin-top: 15px;
  }

  .inner-s5 {
    padding: 60px 0;
  }

  .inner-s5 .para {
    padding: 20px;
    font-size: 14px;
  }

  .inner-s5 .items {
    margin-top: 30px;
  }

  .inner-s5 .item {
    width: 100%;
  }

  .inner-s6 {
    padding: 0 0 60px;
  }

  .inner-s6 .top-block {
    padding: 30px 0;
  }

  .inner-s6 .top-block .num {
    font-size: 50px;
  }

  .inner-s6 .bot-block {
    padding-top: 30px;
  }

  .inner-s6 .bot-block .left-box .num {
    font-size: 50px;
  }

  .inner-s6 .bot-block .left-box p {
    font-size: 20px;
  }

  .inner-s6 .bot-block .right-box {
    margin-top: 30px;
  }

  .inner-s6 .bot-block .item {
    width: 100%;
  }

  .inner-s6 .bot-block .item .inner:after {
    display: none;
  }

  .inner-s7 {
    padding: 60px 0;
  }

  .inner-s7 .left-box .box p {
    font-size: 16px;
  }

  .inner-s7 .left-box .box .num span {
    font-size: 50px;
  }

  .inner-s7 .left-box .box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .inner-s7 .right-box {
    margin-top: 30px;
  }

  .inner-s7 .item {
    width: 100%;
  }

  .inner-s7 .item .inner:after {
    display: none;
  }

  .inner-s8 {
    padding: 60px 0;
  }

  .inner-s8 .tab-cont .label {
    font-size: 24px;
  }

  .inner-s8 .tab-cont .img-box img {
    max-width: 100%;
  }

  .inner-s8 .tab-tit .item span {
    font-size: 13px;
  }

  .inner-s9 {
    padding: 60px 0;
  }

  .inner-s9 .inner {
    padding: 20px;
  }

  .inner-s9 .top-block .label {
    font-size: 20px;
  }

  .inner-s9 .top-block .img-box img {
    width: 100%;
  }

  .inner-s10 {
    padding: 60px 0;
  }

  .inner-s10 .label {
    font-size: 20px;
  }

  .inner-s10 .items {
    margin-top: 30px;
  }

  .inner-s10 .item {
    padding: 20px;
  }

  .inner-s10 .item .box {
    margin-top: 20px;
    padding-top: 20px;
  }

  .inner-s11 {
    padding: 0 7vw 60px;
  }

  .inner-s11 .txt-block .label {
    font-size: 20px;
  }

  .inner-s12 .txt-block {
    padding: 60px 0;
  }

  .inner-s12 .label {
    font-size: 20px;
  }

  .inner-s13 {
    padding: 60px 0;
  }

  .inner-s13 .label {
    font-size: 20px;
    margin-top: 20px;
  }

  .inner-s13 .para {
    margin-top: 20px;
    font-size: 13px;
  }

  .inner-s14 .txt-block {
    padding: 60px 0;
  }

  .inner-s14 .label {
    font-size: 20px;
  }

  .inner-s15 {
    padding: 60px 0 0;
  }

  .inner-s15 .para {
    font-size: 13px;
  }

  .inner-s16 {
    padding: 60px 0;
  }

  .inner-s16 .label {
    font-size: 24px;
  }

  .inner-s16 .cont-block {
    margin-top: 60px;
  }

  .inner-s16 .left-box {
    padding: 20px;
  }

  .inner-s16 .right-box {
    padding: 20px;
  }

  .other-s1 .right-box {
    padding: 60px 0;
  }

  .search-s1 {
    padding: 60px 0;
  }

  .search-s2 {
    padding: 60px 0;
  }

  .search-s2 .tips {
    font-size: 16px;
  }

  .search-s2 .item:before, .search-s2 .item:after {
    height: 4px;
  }
}

/*# sourceMappingURL=bundle.css.map */
