@font-face {
  font-family: 'Gotham-Bold';
  src: url("../fonts/Gotham-Bold.otf");
}
@font-face {
  font-family: 'Gotham-Book';
  src: url("../fonts/Gotham-Book.otf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale-bg {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pagination-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes indexsvg {
  0% {
    stroke-dashoffset: 1100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media screen and (min-width: 1025px) {
  .dom-loaded .header {
    transition: all .3s ease;
  }
  .dom-loaded .header .logo {
    transition: all .3s ease;
  }
  .dom-loaded .header .logo img {
    transition: all .3s ease;
  }
  .dom-loaded .header li a.single {
    transition: all .3s ease;
  }
  .dom-loaded .header li a.single:after {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show span {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show:before {
    transition: all .3s ease;
  }
  .dom-loaded .header .global .show:after {
    transition: all .3s ease;
  }
  .dom-loaded .header .search-btn {
    transition: all .3s ease;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 1200px;
  width: 100%;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .header:hover, .header.hover, .header.down {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  .header:hover .logo img.show, .header.hover .logo img.show, .header.down .logo img.show {
    opacity: 0;
  }
  .header:hover .logo img.hide, .header.hover .logo img.hide, .header.down .logo img.hide {
    opacity: 1;
  }
  .header:hover li a.single, .header.hover li a.single, .header.down li a.single {
    color: #041b4c;
  }
  .header:hover li a.single:after, .header.hover li a.single:after, .header.down li a.single:after {
    background-color: #004988;
  }
  .header:hover .search-btn, .header.hover .search-btn, .header.down .search-btn {
    background-image: url("../images/search-2.svg");
  }
  .header:hover .global .show span, .header.hover .global .show span, .header.down .global .show span {
    color: #041b4c;
  }
  .header:hover .global .show:before, .header.hover .global .show:before, .header.down .global .show:before {
    background-image: url("../images/global-2.svg");
  }
  .header:hover .global .show:after, .header.hover .global .show:after, .header.down .global .show:after {
    background-image: url("../images/drop-2.svg");
  }
  .header.hover {
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
  }
  .header.hover li a.single {
    line-height: 1rem;
  }
  .header.down {
    box-shadow: none;
  }
  .header.down li a.single {
    line-height: 0.8rem;
  }
  .header:hover {
    background-color: #fff;
  }
  .header.translate {
    transform: translateY(-100%);
  }
}
.header .logo {
  position: relative;
  width: 2rem;
}
.header .logo img {
  display: block;
  width: 100%;
  transition: opacity .3s ease;
}
.header .logo img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header .ope {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.header ul {
  display: flex;
  gap: 0.3rem;
}
.header li a.single {
  display: block;
  font-size: 16px;
  line-height: 1.2rem;
  color: #ffffff;
  position: relative;
}
.header li a.single:after {
  content: '';
  width: 100%;
  height: 0.04rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}
.header li .subnav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #e6e6e6;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.header li .subnav .wrap-s {
  padding: 0.7rem 0;
}
.header li .subnav .left-box {
  opacity: 0;
  transform: translateY(-4px);
}
.header li .subnav .left-box .tit {
  font-size: 0.32rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.header li .subnav .left-box .links {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-height: calc(1.6rem + 180px);
}
.header li .subnav .left-box .links a {
  font-size: 16px;
  line-height: 20px;
  color: #041b4c;
  position: relative;
  padding-bottom: 0.02rem;
}
.header li .subnav .left-box .links a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #004988;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .header li .subnav .left-box .links a:hover:before {
    transform: scaleX(1);
  }
}
.header li .subnav .right-box {
  width: 7.89rem;
  height: 100%;
  position: absolute;
  right: -1.5rem;
  top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
}
.header li .subnav .right-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header li.active a.single:after {
  transform: scaleX(1);
}
@media (any-hover: hover) {
  .header li:hover a.single:after {
    transform: scaleX(1);
  }
  .header li:hover .subnav {
    opacity: 1;
    visibility: visible;
  }
  .header li:hover .subnav .left-box, .header li:hover .subnav .right-box {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
  }
  .header li:hover .subnav .right-box {
    transition-delay: .1s;
  }
}
.header .global {
  position: relative;
  left: auto;
}
.header .global .show {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header .global .show span {
  font-size: 12px;
  color: #fff;
  padding: 0 0.1rem;
}
.header .global .show:before {
  content: '';
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/global-1.svg");
  will-change: transform;
}
.header .global .show:after {
  content: '';
  width: 7px;
  height: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/drop-1.svg");
}
.header .global .hide {
  width: 120px;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.header .global .hide:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 20px;
  top: 11px;
}
.header .global .box {
  padding: 0.1rem 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.header .global .box a {
  font-size: max(12px, 0.14rem);
  line-height: 2;
  color: #041b4c;
  position: relative;
  transition: color .3s ease;
}
.header .global .box a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #041b4c;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all .5s;
}
@media (any-hover: hover) {
  .header .global .box a:hover {
    color: #041b4c;
  }
  .header .global .box a:hover:before {
    transform: scaleX(1);
  }
}
.header .global:hover .hide {
  opacity: 1;
  visibility: visible;
}
.header .search-btn {
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search-1.svg");
  cursor: pointer;
  will-change: transform;
}
.header .mNavBtn {
  display: none;
}

.head-null {
  height: 1rem;
}

.fixed-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0.6rem 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.fixed-search.active {
  opacity: 1;
  pointer-events: auto;
}
.fixed-search .block {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}
.fixed-search .close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close.svg");
  cursor: pointer;
  z-index: 2;
}
.fixed-search .inner {
  max-width: 9.6rem;
  margin: 0 auto;
}
.fixed-search .form {
  position: relative;
  height: max(50px, 0.6rem);
  padding: 0 max(50px, 0.6rem);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.fixed-search .form:before {
  content: '';
  width: max(50px, 0.6rem);
  height: max(50px, 0.6rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/search-3.svg");
  background-size: auto 0.2rem;
  position: absolute;
  top: 0;
  left: 0;
}
.fixed-search .form:after {
  content: '';
  width: 1px;
  height: 0.24rem;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: max(50px, 0.6rem);
  top: calc(50% - 0.12rem);
}
.fixed-search .form input {
  width: 100%;
  height: 100%;
  font-size: max(15px, 0.2rem);
  color: #041b4c;
  background-color: transparent;
}
.fixed-search .form button {
  width: max(50px, 0.6rem);
  height: max(50px, 0.6rem);
  position: absolute;
  top: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1.svg");
  background-size: auto 0.2rem;
  background-color: transparent;
  cursor: pointer;
}
.fixed-search .form .line {
  width: 100%;
  height: 2px;
  background-color: #004988;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.fixed-search .form.active .line {
  transform: scaleX(1);
}
.fixed-search .hot {
  margin-top: 0.3rem;
  display: flex;
  gap: 10px;
}
.fixed-search .hot span {
  font-size: max(12px, 0.14rem);
  color: #808080;
  white-space: nowrap;
}
.fixed-search .hot .links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0.5rem;
}
.fixed-search .hot .links a {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  position: relative;
  padding-bottom: 0.02rem;
}
.fixed-search .hot .links a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #004988;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
@media (any-hover: hover) {
  .fixed-search .hot .links a:hover:before {
    transform: scaleX(1);
  }
}

.footer {
  background-color: #142841;
}
.footer .top-block {
  padding: 1.2rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .top-block .left-box {
  width: 4rem;
}
.footer .top-block .img-box {
  width: 2rem;
}
.footer .top-block .img-box img {
  display: block;
  width: 100%;
}
.footer .top-block .para {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
}
.footer .top-block .bot-box {
  margin-top: 1.5rem;
}
.footer .top-block .bot-box .tit {
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
.footer .top-block .share {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.1rem;
}
.footer .top-block .share .box {
  position: relative;
}
.footer .top-block .share .box .show {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.footer .top-block .share .box .show img {
  height: 14px;
}
.footer .top-block .share .box .hide {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  padding-top: 30px;
  display: none;
}
.footer .top-block .share .box .hide:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  left: 9px;
  top: 25px;
}
.footer .top-block .share .box .hide img {
  display: block;
  width: 100%;
}
.footer .top-block .share .box:hover .show {
  border-color: #fff;
}
.footer .top-block .share .box:hover .hide {
  display: block;
}
.footer .top-block .right-box {
  display: flex;
  gap: 0.5rem;
}
.footer .top-block .right-box .box {
  margin-top: 0.8rem;
}
.footer .top-block .right-box .box:nth-of-type(1) {
  margin-top: 0;
}
.footer .top-block .right-box .box .tit {
  font-size: max(15px, 0.2rem);
  color: #fff;
  font-family: 'Gotham-Bold';
  white-space: nowrap;
}
.footer .top-block .right-box .box .links {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}
.footer .top-block .right-box .box .links a {
  font-size: max(12px, 0.14rem);
  color: #fff;
  position: relative;
  padding-bottom: 0.02rem;
}
.footer .top-block .right-box .box .links a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  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 .links a:hover:before {
    transform: scaleX(1);
  }
}
.footer .bot-block {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .bot-block .copyright {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.footer .bot-block .links {
  display: flex;
  gap: 0.8rem;
  order: 2;
}
.footer .bot-block .links a {
  font-size: max(13px, 0.16rem);
  color: #fff;
  position: relative;
  padding-bottom: 0.02rem;
}
.footer .bot-block .links a:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  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 .bot-block .links a:hover:before {
    transform: scaleX(1);
  }
}
.footer .totop {
  width: 0.9rem;
  height: 0.9rem;
  position: fixed;
  right: 0.2rem;
  bottom: 0.2rem;
  background: #004988 url("../images/totop.svg") center center no-repeat;
  background-size: auto 12px;
  border-radius: 50%;
  z-index: 6;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.footer .totop svg {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
  stroke-dasharray: 268;
  stroke-dashoffset: 268;
  transform: rotate(-90deg);
}
.footer .totop.active {
  opacity: 1;
  visibility: visible;
}

.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;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.3rem 0.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/cookie-1.jpg");
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fixed-cookie .txt-box {
  width: calc(100% - 4.4rem);
  max-width: 1200px;
}
.fixed-cookie .tit {
  font-size: max(16px, 0.2rem);
  color: #ffffff;
  font-family: 'Gotham-Bold';
}
.fixed-cookie .para {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.67;
  margin-top: 0.1rem;
}
.fixed-cookie .para .cookie-btn {
  display: inline-block;
  color: #009dd9;
  border-bottom: 1px solid #009dd9;
  cursor: pointer;
}
.fixed-cookie .btns {
  display: flex;
  gap: 0.1rem;
}
.fixed-cookie .btn {
  width: max(140px, 1.8rem);
  line-height: max(30px, 0.4rem);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: max(10px, 0.12rem);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}
.fixed-cookie .btn:nth-of-type(1) {
  background-color: #009dd9;
  border-color: #009dd9;
}
@media (any-hover: hover) {
  .fixed-cookie .btn:hover {
    background-color: #009dd9;
    border-color: #009dd9;
  }
}

.fixed-cookieset {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  display: none;
}
.fixed-cookieset .main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  max-width: max(500px, 6.4rem);
  background-color: #fff;
  padding: 0.4rem 0.2rem;
}
.fixed-cookieset .block {
  padding: 0 0.2rem;
  height: calc(100vh - 2rem);
  overflow: auto;
}
.fixed-cookieset .tit {
  font-size: max(20px, 0.32rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.fixed-cookieset .para {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #808080;
  margin-top: 0.2rem;
}
.fixed-cookieset .para a {
  color: #041b4c;
}
.fixed-cookieset .box {
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e5e5e5;
}
.fixed-cookieset .s-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fixed-cookieset .s-tit span {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
}
.fixed-cookieset .icon {
  width: max(66px, 0.9rem);
  height: max(24px, 0.32rem);
  border-radius: max(12px, 0.16rem);
  background-color: #041b4c;
  position: relative;
  cursor: pointer;
}
.fixed-cookieset .icon:before {
  content: '';
  width: 0.4rem;
  height: max(18px, 0.24rem);
  background-color: #fff;
  border-radius: max(9px, 0.12rem);
  position: absolute;
  right: 0.04rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}
.fixed-cookieset .icon i {
  font-size: max(12px, 0.14rem);
  line-height: max(24px, 0.32rem);
  color: #fff;
  font-style: normal;
  position: absolute;
  top: 0;
}
.fixed-cookieset .icon i:nth-of-type(1) {
  left: 0.12rem;
}
.fixed-cookieset .icon i:nth-of-type(2) {
  right: 0.12rem;
  opacity: 0;
}
.fixed-cookieset .icon.off {
  filter: grayscale(1);
  opacity: 0.4;
}
.fixed-cookieset .icon.off:before {
  left: 0.04rem;
}
.fixed-cookieset .icon.off i:nth-of-type(1) {
  opacity: 0;
}
.fixed-cookieset .icon.off i:nth-of-type(2) {
  opacity: 1;
}
.fixed-cookieset .btns {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  line-height: max(40px, 0.48rem);
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  text-align: center;
  border: 1px solid #041b4c;
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .fixed-cookieset .btns:hover {
    background-color: #041b4c;
    color: #fff;
  }
}

@media screen and (min-width: 1025px) {
  .ani-box.animating {
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  }

  .trans-1 {
    opacity: 0;
    transform: translateY(1rem);
  }
  .trans-1.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-1.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-1.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-1.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-2 {
    opacity: 0;
    transform: translateX(-1rem);
  }
  .trans-2.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-2.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-2.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-2.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-3 {
    opacity: 0;
    transform: translateX(1rem);
  }
  .trans-3.animating {
    opacity: 1;
    transform: translateX(0);
  }
  .trans-3.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-3.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-3.animating.delay-3 {
    transition-delay: .3s;
  }

  .trans-4 {
    opacity: 0;
    transform: translateY(-1rem);
  }
  .trans-4.animating {
    opacity: 1;
    transform: translateY(0);
  }
  .trans-4.animating.delay-1 {
    transition-delay: .1s;
  }
  .trans-4.animating.delay-2 {
    transition-delay: .2s;
  }
  .trans-4.animating.delay-3 {
    transition-delay: .3s;
  }

  .scale-1 {
    transform: scale(1.3);
  }
  .scale-1.animating {
    transform: scale(1);
  }
}
body {
  min-width: 1200px;
}

.breadcrumb {
  opacity: 0;
  height: 0px;
  position: fixed;
  visibility: hidden;
  z-index: 0;
  overflow: hidden;
}

.swiper-pagination-lock {
  display: none !important;
}

.wrap-s {
  width: 14.4rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.c-pages {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
}
.c-pages ul {
  display: flex;
  grid-gap: 0.1rem;
}
.c-pages ul li {
  position: relative;
}
.c-pages ul li a {
  position: relative;
  display: block;
  width: max(30px, 0.48rem);
  height: max(30px, 0.48rem);
  line-height: max(30px, 0.48rem);
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  text-align: center;
  z-index: 2;
  transition: all .3s ease;
}
.c-pages ul li.prev a, .c-pages ul li.next a {
  width: auto;
  padding: 0 0.1rem;
}
.c-pages ul li.active a {
  color: #fff;
  background-color: #004988;
}
@media (any-hover: hover) {
  .c-pages ul li:hover a {
    color: #fff;
    background-color: #004988;
  }
}

.video-pop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
}
.video-pop .bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.video-pop .close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 20px;
  background: url("../images/close-1.svg") center no-repeat;
  transition: all .3s ease;
  cursor: pointer;
  z-index: 2;
}
@media (any-hover: hover) {
  .video-pop .close:hover {
    transform: rotate(180deg);
  }
}
.video-pop video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: 86%;
  max-width: 86%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.index-label span {
  display: block;
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
.index-label .label {
  font-size: 0.6rem;
  line-height: 1;
  color: #fff;
  font-family: 'Gotham-Bold';
  margin-top: 0.2rem;
}

.c-banner {
  position: relative;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}
.c-banner:after {
  content: '';
  width: 100%;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, #142841, rgba(255, 255, 255, 0));
  z-index: 2;
}
.c-banner .img-box {
  height: 100%;
  overflow: hidden;
}
.c-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-banner .txt-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.c-banner .stit {
  padding-top: 0.6rem;
  background-color: #fff;
}
.c-banner .stit span {
  display: block;
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  text-align: center;
}
.c-banner .label {
  padding: 0.1rem 0;
  background-color: #fff;
  mix-blend-mode: screen;
}
.c-banner .label.style-1 {
  padding: 0.6rem 0 0.1rem;
}
.c-banner .label .b-label {
  display: block;
  font-size: 0.8rem;
  line-height: 1.1;
  font-family: 'Gotham-Bold';
  color: #000000;
  text-align: center;
}
.c-banner .para {
  padding: 0.1rem 0 0.6rem;
  background-color: #fff;
}
.c-banner .para .inner {
  font-size: max(15px, 0.2rem);
  color: #041b4c;
  text-align: center;
}

.inner-label .label {
  font-size: 0.6rem;
  color: #fff;
  text-align: center;
}
.inner-label .slabel {
  font-size: 0.48rem;
  font-family: 'Gotham-Bold';
  color: #fff;
  text-align: center;
}
.inner-label p {
  font-size: max(18px, 0.24rem);
  color: #fff;
  text-align: center;
}
.inner-label h1 {
  font-weight: normal;
}

.c-crumbs {
  padding: 0 0.6rem;
  position: relative;
  z-index: 5;
}
.c-crumbs .flex {
  display: flex;
  align-items: center;
  grid-gap: 45px;
}
.c-crumbs a.home {
  position: relative;
  width: 0.18rem;
  height: 0.18rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/home.svg");
  opacity: 0.5;
}
.c-crumbs a.home:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs a.link {
  position: relative;
  font-size: max(12px, 0.16rem);
  color: #041b4c;
  line-height: 0.8rem;
  opacity: 0.5;
}
.c-crumbs a.link:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-1.svg");
  position: absolute;
  right: -22px;
  top: 50%;
  margin-top: -5px;
}
.c-crumbs span {
  font-size: max(12px, 0.16rem);
  color: #041b4c;
  line-height: 0.8rem;
}
.c-crumbs.white a.home {
  background-image: url("../images/home-1.svg");
}
.c-crumbs.white a.home:after {
  background-image: url("../images/crumbs-2-2.svg");
}
.c-crumbs.white a.link {
  color: #fff;
}
.c-crumbs.white a.link:after {
  background-image: url("../images/crumbs-2-2.svg");
}
.c-crumbs.white span {
  color: #fff;
}

.c-items-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.c-items-1 .c-item-1 {
  width: calc((100% - 0.24rem) / 2);
  min-height: 1.2rem;
}
.c-items-1 .c-item-1 .inner {
  height: 100%;
  padding: 0.2rem 0.4rem;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all .3s ease;
}
.c-items-1 .c-item-1 .inner:before {
  content: '';
  width: 0.37rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/careers/img-1.png");
  position: absolute;
  right: 1.4rem;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.c-items-1 .c-item-1 .inner:after {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/resource/icon-3-1.svg");
  transition: all .3s ease;
}
.c-items-1 .c-item-1 .icon {
  width: 0.33rem;
  height: 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/resource/icon-2-1.png");
  transition: all .3s ease;
}
.c-items-1 .c-item-1 .tit {
  width: calc(100% - 1.4rem);
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  position: relative;
  z-index: 2;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .c-items-1 .c-item-1:hover .inner {
    border-color: #004988;
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
  }
  .c-items-1 .c-item-1:hover .inner:before {
    opacity: 1;
  }
  .c-items-1 .c-item-1:hover .inner:after {
    background-image: url("../images/resource/icon-3-2.svg");
  }
  .c-items-1 .c-item-1:hover .icon {
    background-image: url("../images/resource/icon-2-2.png");
  }
  .c-items-1 .c-item-1:hover .tit {
    color: #fff;
  }
}

.c-items-2 .c-item-2 .inner {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.1rem 0.1rem 0.5rem;
  transition: all .3s ease;
}
.c-items-2 .c-item-2 .inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/resource/img-4.png");
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  display: none;
}
.c-items-2 .c-item-2 .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.c-items-2 .c-item-2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.c-items-2 .c-item-2 .txt-box {
  padding: 0.3rem 0.2rem;
  position: relative;
  z-index: 2;
}
.c-items-2 .c-item-2 .tit {
  font-size: max(15px, 0.2rem);
  font-family: 'Gotham-Bold';
  line-height: 1.5;
  transition: color .3s ease;
}
.c-items-2 .c-item-2 .btn {
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  display: flex;
  gap: 0.1rem;
  align-items: center;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 3;
}
.c-items-2 .c-item-2 .btn span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  text-transform: uppercase;
  font-family: 'Gotham-Bold';
}
.c-items-2 .c-item-2 .btn:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-2.svg");
  transition: transform .3s ease;
}

.c-items-3 .c-item-3 {
  width: calc((100% - 0.48rem) / 3);
}
.c-items-3 .c-item-3 .inner {
  display: block;
  height: 100%;
}
.c-items-3 .c-item-3 .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.c-items-3 .c-item-3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.c-items-3 .c-item-3 .txt-box {
  padding: 0.3rem 0.4rem 0;
}
.c-items-3 .c-item-3 .date {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
}
.c-items-3 .c-item-3 .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .c-items-3 .c-item-3:hover img {
    transform: scale(1.1);
  }
}

.index-s1 {
  position: relative;
  z-index: 2;
}
.index-s1 .items {
  position: relative;
  z-index: 1;
}
.index-s1 .item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.index-s1 .item .img-box, .index-s1 .item .video-box {
  height: 100%;
  position: relative;
}
.index-s1 .item .img-box:before, .index-s1 .item .video-box:before {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0));
  z-index: 2;
}
.index-s1 .item .img-box {
  z-index: 1;
}
.index-s1 .item .video-box {
  z-index: 2;
}
.index-s1 .item .video-box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.index-s1 .item video, .index-s1 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s1 .item img {
  transform: scale(1.05);
}
.index-s1 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
}
.index-s1 .item .tit {
  font-size: 0.6rem;
  color: #fff;
  font-family: 'Gotham-Bold';
  opacity: 0;
}
.index-s1 .item .btns {
  margin-top: 0.5rem;
  display: flex;
  opacity: 0;
}
.index-s1 .item .btns.video-btn a {
  gap: 0.2rem;
}
.index-s1 .item .btns.video-btn a:after {
  content: '';
  width: max(10px, 0.16rem);
  height: max(10px, 0.16rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-3.svg");
}
.index-s1 .item .btns a {
  width: 2.4rem;
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s1 .item .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
@media (any-hover: hover) {
  .index-s1 .item .btns a:hover {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
}
.index-s1 .item.swiper-slide-active img {
  animation: scale-bg 6s linear forwards;
}
.index-s1 .item.swiper-slide-active .tit, .index-s1 .item.swiper-slide-active .btns {
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.index-s1 .item.swiper-slide-active .btns {
  animation-delay: .1s;
}
.index-s1 .pagination {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 3;
}
.index-s1 .pagination span {
  position: relative;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all .3s ease;
}
.index-s1 .pagination span:before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: calc(50% - 0.2rem);
  left: calc(50% - 0.2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/icon-2.svg");
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s1 .pagination span.active {
  background-color: transparent;
}
.index-s1 .pagination span.active:before {
  opacity: 1;
}
.index-s1 .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  opacity: 0;
  z-index: 3;
  transition: opacity .3s ease;
}
.index-s1 .button .btn {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/icon-1-2.svg");
  background-size: auto max(8px, 0.13rem);
  opacity: 0.5;
  transition: opacity .3s ease;
}
@media (any-hover: hover) {
  .index-s1 .button .btn:hover {
    opacity: 1;
  }
}
.index-s1 .button.show {
  opacity: 1;
}
.index-s1 .prev {
  left: 0.5rem;
}
.index-s1 .prev .btn {
  transform: rotateY(180deg);
}
.index-s1 .next {
  right: 0.5rem;
}

.index-s2 {
  padding: 1.2rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.index-s2 .index-label span {
  color: #041b4c;
  text-align: center;
}
.index-s2 .index-label .label {
  font-size: 0.9rem;
  color: #041b4c;
  text-align: center;
}
.index-s2 .top-block {
  position: relative;
  z-index: 2;
}
.index-s2 .para {
  margin-top: 0.6rem;
}
.index-s2 .para .inner {
  text-align: center;
}
.index-s2 .para .inner span {
  display: block;
  font-size: 0.3rem;
  line-height: 1.5;
  text-fill: rgba(4, 27, 76, 0.2);
  -webkit-text-fill-color: rgba(4, 27, 76, 0.2);
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #041b4c, #041b4c);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 0 auto;
  transition: background-size .75s ease-out;
}
.index-s2 .para .inner.active span {
  background-size: 100% auto;
}
.index-s2 .para .inner.active span:nth-of-type(1) {
  transition-delay: 0s;
}
.index-s2 .para .inner.active span:nth-of-type(2) {
  transition-delay: 0.75s;
}
.index-s2 .para .inner.active span:nth-of-type(3) {
  transition-delay: 1.5s;
}
.index-s2 .para .inner.active span:nth-of-type(4) {
  transition-delay: 2.25s;
}
.index-s2 .para .inner.active span:nth-of-type(5) {
  transition-delay: 3s;
}
.index-s2 .para .inner.active span:nth-of-type(6) {
  transition-delay: 3.75s;
}
.index-s2 .para .inner.active span:nth-of-type(7) {
  transition-delay: 4.5s;
}
.index-s2 .btns {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}
.index-s2 .btns a {
  min-width: 2.4rem;
  padding: 0 0.15rem;
  height: max(40px, 0.54rem);
  border: 2px solid #004988;
  background-color: #004988;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.index-s2 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
@media (any-hover: hover) {
  .index-s2 .btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
  }
}
.index-s2 .bot-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.index-s2 .bot-block .bg-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}
.index-s2 .bot-block .bg-box-1 {
  z-index: 1;
}
.index-s2 .bot-block .bg-box-1:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url("../images/index/img-6.png") center top no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(1rem);
  opacity: 0;
}
.index-s2 .bot-block .bg-box-1.animating:before {
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  transform: translateY(0);
}
.index-s2 .bot-block .bg-box-1.animating:before {
  transition-delay: .1s;
}
.index-s2 .bot-block .bg-box-2 {
  z-index: 3;
}
.index-s2 .bot-block .bg-box-2:after {
  content: '';
  width: 2.63rem;
  aspect-ratio: 263 / 207;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/index/img-7.png");
  position: absolute;
  bottom: -0.28rem;
  right: calc(50% + 2.2rem);
  transform: translateY(1rem);
  opacity: 0;
}
.index-s2 .bot-block .bg-box-2.animating:after {
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  transform: translateY(0);
}
.index-s2 .bot-block .bg-box-2.animating:after {
  transition-delay: .2s;
}
.index-s2 .bot-block .svg-box {
  width: 8.53rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: url("../images/index/img-4-1.png") center top no-repeat;
  background-size: 100% auto;
  transform: translateX(0.8rem);
}
.index-s2 .bot-block .svg-box .img-box {
  aspect-ratio: 853 / 712;
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s2 .bot-block .svg-box .img-box img {
  display: block;
  width: 100%;
}
.index-s2 .bot-block .svg-box svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.3;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
}
.index-s2 .bot-block .svg-box.animating svg {
  animation: indexsvg 5s linear forwards;
}
.index-s2 .bot-block .svg-box.animating .img-box {
  opacity: 1;
  transition-delay: 2s;
}

.index-s3 {
  height: 250vh;
  position: relative;
  background-image: linear-gradient(180deg, #004988, #0d2943);
}
.index-s3 .top-block {
  height: 100vh;
  position: sticky;
  top: 0;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  overflow: hidden;
  z-index: 2;
}
.index-s3 .top-block .item {
  display: flex;
}
.index-s3 .top-block .item .data {
  position: relative;
  z-index: 1;
}
.index-s3 .top-block .item .data .tit {
  font-family: 'Gotham-Bold';
  white-space: nowrap;
}
.index-s3 .top-block .item:nth-of-type(1) {
  justify-content: flex-end;
}
.index-s3 .top-block .item:nth-of-type(1) .data {
  transform: translateX(100%);
}
.index-s3 .top-block .item:nth-of-type(1) .data .tit {
  font-size: 1.2rem;
  color: #009dd9;
}
.index-s3 .top-block .item:nth-of-type(2) .data {
  transform: translateX(-100%);
}
.index-s3 .top-block .item:nth-of-type(2) .data .tit {
  font-size: 1rem;
  color: #0066b2;
}
.index-s3 .top-block .item:nth-of-type(3) {
  justify-content: flex-end;
}
.index-s3 .top-block .item:nth-of-type(3) .data {
  transform: translateX(100%);
}
.index-s3 .top-block .item:nth-of-type(3) .data .tit {
  font-size: 0.8rem;
  color: #0e77a3;
}
.index-s3 .top-block .item:nth-of-type(4) .data {
  transform: translateX(-100%);
}
.index-s3 .top-block .item:nth-of-type(4) .data .tit {
  font-size: 1rem;
  color: #2154a1;
}
.index-s3 .top-block .item:nth-of-type(5) {
  justify-content: flex-end;
}
.index-s3 .top-block .item:nth-of-type(5) .data {
  transform: translateX(100%);
}
.index-s3 .top-block .item:nth-of-type(5) .data .tit {
  font-size: 0.8rem;
  color: #1a72a4;
}
.index-s3 .top-block .item:nth-of-type(6) .data {
  transform: translateX(-100%);
}
.index-s3 .top-block .item:nth-of-type(6) .data .tit {
  font-size: 1rem;
  color: #1aa1a4;
}
.index-s3 .bot-block {
  height: 100vh;
  position: sticky;
  top: 0;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  z-index: 1;
}
.index-s3 .bot-block .wrap-s {
  padding: 1.5rem 0.8rem;
}
.index-s3 .bot-block .item {
  display: flex;
}
.index-s3 .bot-block .item .img-box {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.index-s3 .bot-block .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s3 .bot-block .item:nth-of-type(1) {
  justify-content: flex-end;
}
.index-s3 .bot-block .item:nth-of-type(1) .img-box {
  width: 4.8rem;
}
.index-s3 .bot-block .item:nth-of-type(2) {
  margin-top: 0.9rem;
}
.index-s3 .bot-block .item:nth-of-type(2) .img-box {
  width: 4rem;
}
.index-s3 .bot-block .item:nth-of-type(3) {
  justify-content: flex-end;
  margin-top: -0.4rem;
  padding-right: 3rem;
}
.index-s3 .bot-block .item:nth-of-type(3) .img-box {
  width: 3.2rem;
}
.index-s3 .img-items {
  height: 100vh;
  margin-top: -100vh;
  position: sticky;
  top: 0;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.index-s3 .img-items.animating .item {
  opacity: 1;
  transition-duration: 1.2s;
}
.index-s3 .img-items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.index-s3 .img-items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.index-s3 .img-items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.index-s3 .img-items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.index-s3 .img-items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.index-s3 .img-items.animating .txt-block {
  opacity: 1;
  transition-delay: .8s;
}
.index-s3 .img-items .items {
  width: min(90vh, 11rem);
  height: min(90vh, 11rem);
  position: relative;
}
.index-s3 .img-items .img-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-s3 .img-items .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .img-items .item img {
  display: block;
  width: 100%;
}
.index-s3 .img-items .txt-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.index-s3 .img-items .txt-block .tit {
  font-size: 0.28rem;
  color: #fff;
  text-align: center;
  font-family: 'Gotham-Bold';
}
.index-s3 .img-items .txt-block p {
  font-size: max(12px, 0.14rem);
  color: #fff;
  text-align: center;
  width: max(160px, 2.4rem);
}
.index-s3 .svg-items {
  height: 100vh;
  margin-top: -100vh;
  position: sticky;
  top: 0;
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.index-s3 .svg-items.animating .item {
  opacity: 1;
  transition-duration: 1.2s;
}
.index-s3 .svg-items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.index-s3 .svg-items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.index-s3 .svg-items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.index-s3 .svg-items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.index-s3 .svg-items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.index-s3 .svg-items.animating .txt-block {
  opacity: 1;
  transition-delay: .8s;
}
.index-s3 .svg-items .block {
  width: 9.82rem;
  height: 8.56rem;
  position: absolute;
  top: calc(50% - 3.88rem);
  left: calc(50% - 4.91rem);
}
.index-s3 .svg-items .items {
  width: 100%;
  height: 100%;
  position: relative;
}
.index-s3 .svg-items .item {
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  transform-origin: center bottom;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .svg-items .item:nth-of-type(2) {
  transform: rotate(60deg);
}
.index-s3 .svg-items .item:nth-of-type(2) .iconbox {
  transform: rotate(-60deg);
}
.index-s3 .svg-items .item:nth-of-type(3) {
  transform: rotate(120deg);
}
.index-s3 .svg-items .item:nth-of-type(3) .iconbox {
  transform: rotate(-120deg);
}
.index-s3 .svg-items .item:nth-of-type(3) .info {
  transform: rotate(-180deg);
}
.index-s3 .svg-items .item:nth-of-type(4) {
  transform: rotate(180deg);
}
.index-s3 .svg-items .item:nth-of-type(4) .iconbox {
  transform: rotate(-180deg);
}
.index-s3 .svg-items .item:nth-of-type(4) .info {
  transform: rotate(-180deg);
}
.index-s3 .svg-items .item:nth-of-type(5) {
  transform: rotate(240deg);
}
.index-s3 .svg-items .item:nth-of-type(5) .iconbox {
  transform: rotate(-240deg);
}
.index-s3 .svg-items .item:nth-of-type(5) .info {
  transform: rotate(-180deg);
}
.index-s3 .svg-items .item:nth-of-type(6) {
  transform: rotate(300deg);
}
.index-s3 .svg-items .item:nth-of-type(6) .iconbox {
  transform: rotate(-300deg);
}
.index-s3 .svg-items .item .inner {
  width: 4.8rem;
  height: 2.7rem;
  position: absolute;
  top: 0;
  left: calc(50% - 2.4rem);
  will-change: transform;
  transition: transform .3s ease;
}
.index-s3 .svg-items .item .svg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-s3 .svg-items .item svg {
  display: block;
  width: 100%;
  height: 100%;
}
.index-s3 .svg-items .item polygon.st0 {
  opacity: 0.1;
  fill: #FFFFFF;
}
.index-s3 .svg-items .item polygon.st1 {
  fill: #FFFFFF;
  pointer-events: auto;
  cursor: pointer;
}
.index-s3 .svg-items .item polygon.st2 {
  fill: #C1CDDA;
}
.index-s3 .svg-items .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 0.4rem;
  z-index: 2;
  pointer-events: none;
}
.index-s3 .svg-items .item .info {
  width: 100%;
  height: calc(100% - 0.76rem);
  position: relative;
}
.index-s3 .svg-items .item .info .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
}
.index-s3 .svg-items .item .info .tit span {
  font-size: 0.24rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
  text-align: center;
}
.index-s3 .svg-items .item .info .para {
  width: 100%;
  font-size: 0.14rem;
  color: #041b4c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem;
  text-align: center;
  opacity: 0;
  will-change: transform;
  transition: opacity .3s ease;
}
.index-s3 .svg-items .item .iconbox {
  width: 100%;
  height: 0.76rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-s3 .svg-items .item .icon {
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-s3 .svg-items .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.index-s3 .svg-items .item.active .inner {
  transform: scale(1.02);
}
.index-s3 .svg-items .item.active .info .tit {
  opacity: 0;
}
.index-s3 .svg-items .item.active .info .para {
  opacity: 1;
}
.index-s3 .svg-items .txt-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.index-s3 .svg-items .txt-block .tit {
  font-size: 0.28rem;
  color: #fff;
  text-align: center;
  font-family: 'Gotham-Bold';
}
.index-s3 .svg-items .txt-block p {
  font-size: max(12px, 0.14rem);
  color: #fff;
  text-align: center;
  width: max(160px, 2.4rem);
}
.index-s3 .m-items {
  height: 100vh;
  margin-top: -100vh;
  position: sticky;
  top: 0;
  padding-top: 60px;
  align-items: center;
  justify-content: center;
  z-index: 3;
  display: none;
}
.index-s3 .m-items .img-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
.index-s3 .m-items .img-box img {
  max-width: 86vw;
}
.index-s3 .m-items .img-box p {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.index-s3 .m-items.animating .img-box {
  opacity: 1;
  transition-duration: 1.2s;
}

.index-s4 {
  height: 400vh;
}
.index-s4 .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.index-s4 .index-label span {
  color: #041b4c;
  text-align: center;
}
.index-s4 .index-label .label {
  font-size: 0.9rem;
  color: #041b4c;
  text-align: center;
}
.index-s4 .b-para {
  margin-top: 0.3rem;
  font-size: max(15px, 0.2rem);
  color: #041b4c;
  text-align: center;
}
.index-s4 .cont-block {
  position: relative;
  margin-top: 0.4rem;
}
.index-s4 .items .sw {
  position: relative;
}
.index-s4 .item {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(1.2);
  transform-origin: center top;
}
.index-s4 .item:nth-of-type(1) {
  position: relative;
  top: auto !important;
  transform: scale(1);
  opacity: 1;
}
.index-s4 .item .img-box {
  aspect-ratio: 1440 / 600;
}
.index-s4 .item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s4 .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-10.png");
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.index-s4 .item .inner {
  width: 50%;
  padding: 0 1rem;
}
.index-s4 .item .tit {
  font-size: 0.4rem;
  color: #fff;
  font-family: 'Gotham-Bold';
}
.index-s4 .item .para {
  font-size: max(15px, 0.2rem);
  color: #fff;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-s4 .item .btns {
  margin-top: 0.4rem;
  display: flex;
}
.index-s4 .item .btns a {
  width: 2.4rem;
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.index-s4 .item .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
@media (any-hover: hover) {
  .index-s4 .item .btns a:hover {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
}
.index-s4 .dot-box {
  position: absolute;
  left: calc(100% + 0.4rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  z-index: 2;
}
.index-s4 .dot-box .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #004988;
  transition: all .3s ease;
  cursor: pointer;
}
.index-s4 .dot-box .dot.active {
  background-color: #004988;
}

.index-s5 {
  padding: 1rem 0 1.4rem;
  overflow: hidden;
}
.index-s5 .index-label span {
  color: #041b4c;
}
.index-s5 .index-label .label {
  color: #041b4c;
}
.index-s5 .items {
  position: relative;
}
.index-s5 .items.animating .item {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.index-s5 .items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.index-s5 .items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.index-s5 .items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.index-s5 .items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.index-s5 .swiper {
  margin: 0 calc(-50vw + 7.2rem);
  padding: 0.5rem calc(50vw - 7.2rem) 1.2rem;
}
.index-s5 .item {
  width: 4rem;
  height: auto;
  margin-right: 0.4rem;
  opacity: 0;
  transform: translateX(1rem);
}
.index-s5 .item:last-of-type {
  margin-right: 0;
}
.index-s5 .item a {
  display: block;
  height: 100%;
  background-color: #f2f5fa;
  transition: transform .3s ease;
  will-change: transform;
}
.index-s5 .item .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.index-s5 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-s5 .item .txt-box {
  padding: 0.4rem 0.5rem 0.5rem;
}
.index-s5 .item .date {
  font-size: max(13px, 0.16rem);
  color: #004988;
  font-family: 'Gotham-Bold';
}
.index-s5 .item .tit {
  font-size: max(15px, 0.2rem);
  color: #041b4c;
  line-height: 1.5;
  margin-top: 0.2rem;
}
@media (any-hover: hover) {
  .index-s5 .item:hover a {
    transform: scale(1.1);
  }
}
.index-s5 .buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.1rem;
  z-index: 2;
}
.index-s5 .button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 73, 136, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/index/icon-1-1.svg");
  background-size: auto max(8px, 0.13rem);
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .index-s5 .button:hover {
    background-color: #004988;
    background-image: url("../images/index/icon-1-2.svg");
  }
}
.index-s5 .prev {
  transform: rotateY(180deg);
}

.index-s6 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-1.jpg");
  background-attachment: fixed;
  padding: 2.8rem 0 4rem;
}
.index-s6:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-2.png");
}
.index-s6 .wrap-s {
  display: flex;
  justify-content: flex-end;
}
.index-s6 .inner {
  width: 50%;
}
.index-s6 .para {
  font-size: max(15px, 0.2rem);
  color: #fff;
  margin-top: 0.2rem;
}
.index-s6 .btns {
  margin-top: 0.5rem;
  display: flex;
}
.index-s6 .btns a {
  width: 2.4rem;
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.index-s6 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Gotham-Bold';
}
@media (any-hover: hover) {
  .index-s6 .btns a:hover {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
}

.inner-s1 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
  background-attachment: fixed;
}
.inner-s1 .edit-para {
  margin-top: 0.3rem;
  font-size: max(14px, 0.18rem);
  line-height: 1.7;
  color: #fff;
}
.inner-s1 .edit-para a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.inner-s1 .info-box {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.24rem;
}
.inner-s1 .info-box .item {
  width: calc((100% - 0.24rem) / 2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.inner-s1 .info-box .item .icon {
  width: 0.64rem;
  height: 0.64rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s1 .info-box .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s1 .info-box .item .txt-box {
  width: calc(100% - 1.24rem);
  min-height: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.6rem;
  display: flex;
  align-items: center;
}
.inner-s1 .info-box .item p {
  font-size: max(14px, 0.18rem);
  color: #fff;
  line-height: 1.8;
}
.inner-s1 .info-box .item span {
  display: block;
  font-size: max(18px, 0.24rem);
  color: #fff;
}

.inner-s2 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
  background-attachment: fixed;
}
.inner-s2 .edit-para {
  margin-top: 0.5rem;
  font-size: max(15px, 0.2rem);
  color: #fff;
}
.inner-s2 .edit-para h4 {
  font-weight: normal;
  font-size: max(18px, 0.24rem);
  font-family: 'Gotham-Bold';
}
.inner-s2 .edit-para img {
  max-width: 10.8rem;
  height: auto !important;
}

.inner-s3 {
  padding: 1.2rem 0;
}
.inner-s3 .inner-label .label {
  color: #041b4c;
}
.inner-s3 .top-items {
  position: relative;
  width: min(90vh, 11rem);
  height: min(90vh, 11rem);
  margin: -0.8rem auto 0;
}
.inner-s3 .top-items.animating .item {
  opacity: 1;
}
.inner-s3 .top-items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s3 .top-items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s3 .top-items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s3 .top-items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s3 .top-items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s3 .top-items.animating .txt-block {
  opacity: 1;
  transition-delay: .8s;
}
.inner-s3 .top-items .img-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-s3 .top-items .item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s3 .top-items .item img {
  display: block;
  width: 100%;
}
.inner-s3 .top-items .txt-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s3 .top-items .tit {
  font-size: 0.28rem;
  color: #041b4c;
  text-align: center;
  font-family: 'Gotham-Bold';
  width: max(160px, 2.4rem);
}
.inner-s3 .svg-items {
  margin-top: 0.5rem;
}
.inner-s3 .svg-items.animating .item {
  opacity: 1;
  transition-duration: 1.2s;
}
.inner-s3 .svg-items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s3 .svg-items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s3 .svg-items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s3 .svg-items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s3 .svg-items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s3 .svg-items.animating .txt-block {
  opacity: 1;
  transition-delay: .8s;
}
.inner-s3 .svg-items .block {
  width: 9.82rem;
  height: 8.56rem;
  margin: 0 auto;
  position: relative;
}
.inner-s3 .svg-items .items {
  width: 100%;
  height: 100%;
  position: relative;
}
.inner-s3 .svg-items .item {
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  transform-origin: center bottom;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s3 .svg-items .item:nth-of-type(2) {
  transform: rotate(60deg);
}
.inner-s3 .svg-items .item:nth-of-type(2) .iconbox {
  transform: rotate(-60deg);
}
.inner-s3 .svg-items .item:nth-of-type(3) {
  transform: rotate(120deg);
}
.inner-s3 .svg-items .item:nth-of-type(3) .iconbox {
  transform: rotate(-120deg);
}
.inner-s3 .svg-items .item:nth-of-type(3) .info {
  transform: rotate(-180deg);
}
.inner-s3 .svg-items .item:nth-of-type(4) {
  transform: rotate(180deg);
}
.inner-s3 .svg-items .item:nth-of-type(4) .iconbox {
  transform: rotate(-180deg);
}
.inner-s3 .svg-items .item:nth-of-type(4) .info {
  transform: rotate(-180deg);
}
.inner-s3 .svg-items .item:nth-of-type(5) {
  transform: rotate(240deg);
}
.inner-s3 .svg-items .item:nth-of-type(5) .iconbox {
  transform: rotate(-240deg);
}
.inner-s3 .svg-items .item:nth-of-type(5) .info {
  transform: rotate(-180deg);
}
.inner-s3 .svg-items .item:nth-of-type(6) {
  transform: rotate(300deg);
}
.inner-s3 .svg-items .item:nth-of-type(6) .iconbox {
  transform: rotate(-300deg);
}
.inner-s3 .svg-items .item .inner {
  width: 4.8rem;
  height: 2.7rem;
  position: absolute;
  top: 0;
  left: calc(50% - 2.4rem);
  will-change: transform;
  transition: transform .3s ease;
}
.inner-s3 .svg-items .item .svg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.inner-s3 .svg-items .item svg {
  display: block;
  width: 100%;
  height: 100%;
}
.inner-s3 .svg-items .item polygon.st0 {
  fill: #f5f7fa;
}
.inner-s3 .svg-items .item polygon.st1 {
  fill: #ebeff5;
  pointer-events: auto;
  cursor: pointer;
}
.inner-s3 .svg-items .item polygon.st2 {
  fill: #c1cdda;
}
.inner-s3 .svg-items .item .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 0.4rem;
  z-index: 2;
  pointer-events: none;
}
.inner-s3 .svg-items .item .info {
  width: 100%;
  height: calc(100% - 0.76rem);
  position: relative;
}
.inner-s3 .svg-items .item .info .tit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
}
.inner-s3 .svg-items .item .info .tit span {
  font-size: 0.2rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
  text-align: center;
}
.inner-s3 .svg-items .item .iconbox {
  width: 100%;
  height: 0.76rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s3 .svg-items .item .icon {
  width: 0.3rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s3 .svg-items .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s3 .svg-items .item.active .inner {
  transform: scale(1.02);
}
.inner-s3 .svg-items .item.active .info .tit {
  opacity: 0;
}
.inner-s3 .svg-items .item.active .info .para {
  opacity: 1;
}
.inner-s3 .svg-items .txt-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s3 .svg-items .txt-block .tit {
  font-size: 0.28rem;
  color: #041b4c;
  text-align: center;
  font-family: 'Gotham-Bold';
  width: max(160px, 2.4rem);
}
.inner-s3 .m-items {
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  z-index: 3;
  display: none;
}
.inner-s3 .m-items .img-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.inner-s3 .m-items .img-box img {
  max-width: 86vw;
}
.inner-s3 .m-items .img-box p {
  font-size: 12px;
  color: #041b4c;
  text-align: center;
}

.inner-s4 {
  padding: 1.2rem 0;
  background-color: #f2f5fa;
}
.inner-s4 .inner-label .label {
  color: #041b4c;
}
.inner-s4 .inner-label p {
  color: #041b4c;
}
.inner-s4 .items {
  margin-top: 0.4rem;
}
.inner-s4 .items .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s4 .items.animating .item {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s4 .items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s4 .items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s4 .items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s4 .item {
  width: calc((100% - 0.72rem) / 4);
  padding: 0.2rem;
  background-color: rgba(4, 27, 76, 0.05);
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s4 .item .inner {
  background-color: #041b4c;
  aspect-ratio: 1 / 1;
  padding-top: 0.8rem;
}
.inner-s4 .item .icon {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner-s4 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s4 .item span {
  display: block;
  margin-top: 0.5rem;
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Gotham-Bold';
  text-align: center;
}
@media (any-hover: hover) {
  .inner-s4 .item:hover .icon {
    transform: rotateY(360deg);
    transition: transform .5s linear;
  }
}

.inner-s5 {
  padding: 1.2rem 0;
}
.inner-s5 .inner-label .label {
  color: #041b4c;
}
.inner-s5 .inner-label p {
  color: #041b4c;
}
.inner-s5 .items {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.inner-s5 .item {
  width: calc((100% - 4.5rem) / 4);
}
.inner-s5 .item .img-box {
  aspect-ratio: 240 / 320;
  overflow: hidden;
}
.inner-s5 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s5 .item .txt-box {
  margin-top: 0.2rem;
}
.inner-s5 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s5 .item p {
  font-size: max(15px, 0.2rem);
  color: #041b4c;
  margin-top: 0.1rem;
}
.inner-s5 .item.animating:nth-of-type(4n-2) {
  transition-delay: .1s;
}
.inner-s5 .item.animating:nth-of-type(4n-1) {
  transition-delay: .2s;
}
.inner-s5 .item.animating:nth-of-type(4n) {
  transition-delay: .3s;
}

.inner-s6 {
  padding: 0.1rem 0 1.2rem;
}
.inner-s6 .inner {
  width: 100%;
  max-width: 9.6rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.inner-s6 .inner:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.inner-s6 .img-box {
  aspect-ratio: 960 / 540;
}
.inner-s6 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s6 .btns {
  width: 0.8rem;
  height: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/process/icon-1.svg");
  position: absolute;
  top: calc(50% - 0.4rem);
  left: calc(50% - 0.4rem);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}

.inner-s7 {
  padding: 0 0 1.8rem;
}
.inner-s7 .inner-label .label {
  color: #041b4c;
}
.inner-s7 .top-block .item {
  margin-top: 0.6rem;
}
.inner-s7 .top-block .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s7 .top-block .item:nth-of-type(even) .img-box {
  order: 1;
}
.inner-s7 .top-block .item .inner {
  display: flex;
  align-items: center;
}
.inner-s7 .top-block .item .img-box {
  width: 50%;
  aspect-ratio: 720 / 405;
  overflow: hidden;
}
.inner-s7 .top-block .item .imginner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.inner-s7 .top-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s7 .top-block .item .txt-box {
  width: 50%;
  padding: 0 0.6rem;
}
.inner-s7 .top-block .item .tit {
  font-size: 0.32rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s7 .top-block .item p {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 1.5;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s7 .top-block .item .btns {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.2rem;
}
.inner-s7 .top-block .item .btninner {
  width: 1.8rem;
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.inner-s7 .top-block .item .btninner span {
  font-size: max(12px, 0.14rem);
  color: #24355c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s7 .top-block .item:hover img {
    transform: scale(1.1);
  }
  .inner-s7 .top-block .item:hover .btninner:nth-of-type(1) {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
  .inner-s7 .top-block .item:hover .btninner:nth-of-type(1) span {
    color: #fff;
  }
}
.inner-s7 .bot-block {
  padding-top: 2.4rem;
  position: relative;
}
.inner-s7 .bot-block:before {
  content: '';
  width: 1px;
  height: 1.2rem;
  background-color: #e5e8ed;
  position: absolute;
  top: 0.6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner-s7 .bot-block .items {
  margin-top: 0.4rem;
}
.inner-s7 .bot-block .items.animating .item .inner {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s7 .bot-block .items.animating .item:nth-of-type(2) .inner {
  transition-delay: .1s;
}
.inner-s7 .bot-block .items.animating .item:nth-of-type(3) .inner {
  transition-delay: .2s;
}
.inner-s7 .bot-block .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s7 .bot-block .item {
  width: calc((100% - 0.48rem) / 3);
}
.inner-s7 .bot-block .item .inner {
  display: block;
  height: 100%;
  padding: 0.4rem 0.4rem 0.8rem;
  background-color: #f2f5fa;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s7 .bot-block .item .tit {
  font-size: 0.32rem;
  font-family: 'Gotham-Bold';
  color: #004988;
}
.inner-s7 .bot-block .item .para {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s7 .bot-block .item .btns {
  width: max(20px, 0.24rem);
  height: max(10px, 0.14rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background-image: url("../images/process/icon-2.svg");
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .inner-s7 .bot-block .item:hover .btns {
    transform: translateX(0.1rem);
  }
}

.inner-s8 {
  padding: 1.2rem 0;
}
.inner-s8 .inner-label .slabel {
  color: #041b4c;
}
.inner-s8 .form {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s8 .form .item {
  position: relative;
  width: calc((100% - 0.24rem) / 2);
}
.inner-s8 .form .item:nth-of-type(1), .inner-s8 .form .item:nth-of-type(11), .inner-s8 .form .item:nth-of-type(16) {
  width: 100%;
}
.inner-s8 .form .item:nth-of-type(2), .inner-s8 .form .item:nth-of-type(3), .inner-s8 .form .item:nth-of-type(4) {
  width: calc((100% - 0.48rem) / 3);
}
.inner-s8 .form .code {
  width: 1.6rem;
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  bottom: 0.1rem;
  overflow: hidden;
  cursor: pointer;
}
.inner-s8 .form .code img {
  display: block;
  width: 100%;
  height: 100%;
}
.inner-s8 .form .agree {
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  display: flex;
  align-items: center;
  padding: 0.1rem 0.3rem;
}
.inner-s8 .form .agree a {
  display: inline-block;
  color: #004988;
  text-decoration: underline;
}
.inner-s8 .form input {
  width: 100%;
  height: 0.8rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: all .3s ease;
}
.inner-s8 .form input::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s8 .form input:-moz-placeholder {
  color: #041b4c;
}
.inner-s8 .form input::-moz-placeholder {
  color: #041b4c;
}
.inner-s8 .form input:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s8 .form textarea {
  display: block;
  width: 100%;
  height: 1.5rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0.15rem 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  resize: none;
  transition: all .3s ease;
}
.inner-s8 .form textarea::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s8 .form textarea:-moz-placeholder {
  color: #041b4c;
}
.inner-s8 .form textarea::-moz-placeholder {
  color: #041b4c;
}
.inner-s8 .form textarea:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s8 .form button {
  display: block;
  width: 100%;
  height: 0.8rem;
  background-color: #004988;
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Gotham-Bold' !important;
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s8 .form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
  }
}
.inner-s8 .layui-input:hover, .inner-s8 .layui-textarea:hover,
.inner-s8 .layui-input:focus, .inner-s8 .layui-textarea:focus {
  border-color: #004988 !important;
}
.inner-s8 .layui-input:focus, .inner-s8 .layui-textarea:focus {
  box-shadow: none;
}
.inner-s8 .layui-form-checkbox[lay-skin=primary] > i {
  color: transparent;
  background-color: transparent;
  border-color: #004988;
}
.inner-s8 .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: #004988 !important;
}
.inner-s8 .layui-form-checked[lay-skin=primary] > i {
  border-color: #004988 !important;
  background-color: #004988 !important;
  color: #fff !important;
}
.inner-s8 .layui-form-checkbox > div {
  font-size: max(13px, 0.16rem);
  color: #fff;
  padding-right: 0.3rem;
  white-space: normal;
  margin-bottom: 10px;
}
.inner-s8 .layui-form-select {
  color: #333;
  height: 100%;
}
.inner-s8 .layui-select-title {
  height: 100%;
}
.inner-s8 .layui-form-select dl {
  width: 100%;
  top: 100%;
}
.inner-s8 .layui-form-selectup dl {
  top: auto;
  bottom: 100%;
}
.inner-s8 .layui-form-select dl dd, .inner-s8 .layui-form-select dl dt {
  padding: 0 0.3rem !important;
  font-size: max(13px, 0.16rem);
}
.inner-s8 .layui-form-select dl dd.layui-this {
  color: #004988;
}

.inner-s9 {
  padding: 0 0 1.2rem;
}
.inner-s9 .form {
  display: flex;
  justify-content: center;
  gap: 0.24rem;
  position: relative;
  z-index: 2;
}
.inner-s9 .form .box {
  position: relative;
}
.inner-s9 .form .box:nth-of-type(1) {
  width: max(240px, 3.6rem);
}
.inner-s9 .form .box:nth-of-type(2) {
  width: max(480px, 7.2rem);
}
.inner-s9 .form input {
  width: 100%;
  height: 0.8rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: all .3s ease;
}
.inner-s9 .form input::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s9 .form input:-moz-placeholder {
  color: #041b4c;
}
.inner-s9 .form input::-moz-placeholder {
  color: #041b4c;
}
.inner-s9 .form input:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s9 .form button {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-2.svg");
  background-size: auto 0.24rem;
  cursor: pointer;
}
.inner-s9 .items {
  margin-top: 0.6rem;
  border-top: 1px solid #cfcfcf;
}
.inner-s9 .item {
  padding: 0.1rem;
  border-bottom: 1px solid #cfcfcf;
}
.inner-s9 .item .inner {
  display: flex;
  align-items: center;
  min-height: 1.2rem;
  padding: 0 0.3rem;
  position: relative;
  transition: all .3s ease;
}
.inner-s9 .item .inner:before {
  content: '';
  width: 0.37rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/careers/img-1.png");
  position: absolute;
  right: 2.1rem;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.inner-s9 .item .tit {
  width: calc(100% - 6rem);
  padding-right: 0.2rem;
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
.inner-s9 .item .info {
  width: 4.2rem;
}
.inner-s9 .item .info span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #009dd9;
  font-family: 'Gotham-Bold';
}
.inner-s9 .item .info p {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  transition: color .3s ease;
}
.inner-s9 .item .btns {
  width: 1.8rem;
  display: flex;
  gap: 0.1rem;
  justify-content: flex-end;
}
.inner-s9 .item .btns span {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
.inner-s9 .item .btns:after {
  content: '';
  width: 6px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-2.svg");
}
@media (any-hover: hover) {
  .inner-s9 .item:hover .inner {
    background-color: #004988;
  }
  .inner-s9 .item:hover .inner:before {
    opacity: 1;
  }
  .inner-s9 .item:hover .tit {
    color: #fff;
  }
  .inner-s9 .item:hover .info p {
    color: #fff;
  }
  .inner-s9 .item:hover .btns span {
    color: #fff;
  }
}
.inner-s9 .layui-input:hover, .inner-s9 .layui-input:focus {
  border-color: #004988 !important;
}
.inner-s9 .layui-input:focus {
  box-shadow: none;
}
.inner-s9 .layui-form-select {
  color: #333;
  height: 100%;
}
.inner-s9 .layui-select-title {
  height: 100%;
}
.inner-s9 .layui-form-select dl {
  width: 100%;
  top: 100%;
}
.inner-s9 .layui-form-selectup dl {
  top: auto;
  bottom: 100%;
}
.inner-s9 .layui-form-select dl dd, .inner-s9 .layui-form-select dl dt {
  padding: 0 0.2rem !important;
  font-size: max(13px, 0.16rem);
}
.inner-s9 .layui-form-select dl dd.layui-this {
  color: #004988;
}

.inner-s10 {
  padding: 1rem 0 1.2rem;
}
.inner-s10 .inner-label .label {
  color: #041b4c;
}
.inner-s10 .b-label {
  font-size: 0.48rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s10 .info-box {
  margin-top: 0.3rem;
  background-color: #f2f6f9;
  padding: 0.3rem 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.inner-s10 .info-box .info {
  width: calc((100% - 0.6rem) / 3);
}
.inner-s10 .info-box .info span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #009dd9;
  font-family: 'Gotham-Bold';
}
.inner-s10 .info-box .info p {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  transition: color .3s ease;
}
.inner-s10 .block {
  margin-top: 0.4rem;
}
.inner-s10 .block .tit {
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Gotham-Bold';
  background-color: #182f4d;
  padding: 0.1rem 0.4rem;
}
.inner-s10 .block .para {
  padding: 0.2rem 0.4rem;
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 2;
}
.inner-s10 .btns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
.inner-s10 .btns a {
  width: 2.4rem;
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.inner-s10 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s10 .btns a:hover {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
  .inner-s10 .btns a:hover span {
    color: #fff;
  }
}
.inner-s10 .bot-block {
  margin-top: 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e5e5e5;
}
.inner-s10 .items {
  margin-top: 0.4rem;
}
.inner-s10 .items .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s10 .items.animating .item {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s10 .items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s10 .items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s10 .item {
  width: calc((100% - 0.48rem) / 3);
  border: 1px solid #e6e6e6;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s10 .item .inner {
  position: relative;
  display: block;
  height: 3.6rem;
  padding: 0.4rem 0.4rem 1.2rem;
}
.inner-s10 .item .tit {
  font-size: 0.32rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s10 .item .info {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  right: 0.4rem;
}
.inner-s10 .item .info span {
  display: block;
  font-size: max(12px, 0.14rem);
  color: #009dd9;
  font-family: 'Gotham-Bold';
}
.inner-s10 .item .info p {
  font-size: max(15px, 0.2rem);
  color: #041b4c;
}
.inner-s10 .share {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 2.4rem;
  bottom: 0;
}
.inner-s10 .share .sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
.inner-s10 .share span {
  display: block;
  width: max(40px, 0.6rem);
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  text-align: center;
}
.inner-s10 .share a {
  display: block;
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f5;
  margin-top: 0.1rem;
  transition: all .3s ease;
}
.inner-s10 .share a.fb {
  background-image: url("../images/careers/share-1-2.png");
}
@media (any-hover: hover) {
  .inner-s10 .share a.fb:hover {
    background-image: url("../images/careers/share-1-2-on.png");
  }
}
.inner-s10 .share a.tw {
  background-image: url("../images/careers/share-1-3.png");
}
@media (any-hover: hover) {
  .inner-s10 .share a.tw:hover {
    background-image: url("../images/careers/share-1-3-on.png");
  }
}
.inner-s10 .share a.in {
  background-image: url("../images/careers/share-1-4.png");
}
@media (any-hover: hover) {
  .inner-s10 .share a.in:hover {
    background-image: url("../images/careers/share-1-4-on.png");
  }
}
.inner-s10 .share a.mail {
  background-image: url("../images/careers/share-1-5.png");
}
@media (any-hover: hover) {
  .inner-s10 .share a.mail:hover {
    background-image: url("../images/careers/share-1-5-on.png");
  }
}
@media (any-hover: hover) {
  .inner-s10 .share a:hover {
    background-color: #041b4c;
  }
}

.inner-s11 {
  padding: 1.2rem 0;
}
.inner-s11 .inner-label .label {
  color: #041b4c;
}
.inner-s11 .single-box {
  margin-top: 0.3rem;
}
.inner-s11 .single-box .inner {
  display: flex;
}
.inner-s11 .single-box .img-box {
  width: calc((100% - 0.48rem) / 3 * 2 + 0.24rem);
  aspect-ratio: 952 / 536;
  overflow: hidden;
}
.inner-s11 .single-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s11 .single-box .txt-box {
  width: calc((100% - 0.48rem) / 3 + 0.24rem);
  position: relative;
  padding: 0.6rem 0 0 0.4rem;
}
.inner-s11 .single-box .date {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
}
.inner-s11 .single-box .tit {
  font-size: 0.32rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s11 .single-box .btn {
  position: absolute;
  bottom: 0.6rem;
  left: 0.4rem;
  width: max(140px, 1.8rem);
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.inner-s11 .single-box .btn span {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s11 .single-box:hover img {
    transform: scale(1.05);
  }
  .inner-s11 .single-box:hover .btn {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
  .inner-s11 .single-box:hover .btn span {
    color: #fff;
  }
}
.inner-s11 .c-items-3 {
  margin-top: 0.4rem;
}
.inner-s11 .c-items-3 .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s11 .c-items-3.animating .c-item-3 {
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s11 .c-items-3.animating .c-item-3:nth-of-type(1) {
  transition-delay: .1s;
}
.inner-s11 .c-items-3.animating .c-item-3:nth-of-type(2) {
  transition-delay: .2s;
}
.inner-s11 .c-items-3.animating .c-item-3:nth-of-type(3) {
  transition-delay: .3s;
}
.inner-s11 .c-item-3 {
  height: auto;
  opacity: 0;
  transform: translateY(1rem);
}
.inner-s11 .btns {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.inner-s11 .btns a {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s11 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  text-transform: uppercase;
  font-family: 'Gotham-Bold';
}
.inner-s11 .btns a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-2.svg");
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .inner-s11 .btns a:hover:after {
    transform: translateX(2px);
  }
}

.inner-s12 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
  background-attachment: fixed;
}
.inner-s12 .c-items-2 {
  position: relative;
}
.inner-s12 .c-items-2.animating .c-item-2 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s12 .c-items-2.animating .c-item-2:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s12 .c-items-2.animating .c-item-2:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s12 .c-items-2.animating .c-item-2:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s12 .c-items-2.animating .c-item-2:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s12 .c-items-2.animating .c-item-2:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s12 .swiper {
  margin: 0 calc(-50vw + 7.2rem);
  padding: 0.5rem calc(50vw - 7.2rem) 0.9rem;
}
.inner-s12 .c-item-2 {
  width: 3.4rem;
  height: auto;
  margin-right: 0.24rem;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s12 .c-item-2:last-of-type {
  margin-right: 0;
}
.inner-s12 .c-item-2 .tit {
  color: #fff;
}
@media (any-hover: hover) {
  .inner-s12 .c-item-2:hover .inner {
    border-color: #009dd9;
    transform: translateY(-3px);
  }
  .inner-s12 .c-item-2:hover .inner:before {
    opacity: 1;
  }
  .inner-s12 .c-item-2:hover img {
    transform: scale(1.1);
  }
  .inner-s12 .c-item-2:hover .tit {
    color: #fff;
  }
  .inner-s12 .c-item-2:hover .btn {
    opacity: 1;
  }
}
.inner-s12 .buttons {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 0.1rem;
  z-index: 2;
}
.inner-s12 .button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/resource/icon-1-1.svg");
  background-size: auto max(8px, 0.13rem);
  cursor: pointer;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s12 .button:hover {
    background-color: #004988;
    border-color: #004988;
    background-image: url("../images/resource/icon-1-2.svg");
  }
}
.inner-s12 .prev {
  transform: rotateY(180deg);
}
.inner-s12 .swiper-horizontal > .swiper-scrollbar {
  bottom: 0.3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 6rem;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}
.inner-s12 .swiper-scrollbar-drag {
  background-color: #009dd9;
  cursor: pointer;
}
.inner-s12 .btns {
  position: absolute;
  bottom: 0.2rem;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.inner-s12 .btns a {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s12 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  text-transform: uppercase;
  font-family: 'Gotham-Bold';
}
.inner-s12 .btns a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-2.svg");
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .inner-s12 .btns a:hover:after {
    transform: translateX(2px);
  }
}

.inner-s13 {
  padding: 1.2rem 0;
}
.inner-s13 .inner-label .label {
  color: #041b4c;
}
.inner-s13 .c-items-1 {
  margin-top: 0.3rem;
}
.inner-s13 .btns {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.inner-s13 .btns a {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.inner-s13 .btns a span {
  font-size: max(12px, 0.14rem);
  color: #041b4c;
  text-transform: uppercase;
  font-family: 'Gotham-Bold';
}
.inner-s13 .btns a:after {
  content: '';
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-2.svg");
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .inner-s13 .btns a:hover:after {
    transform: translateX(2px);
  }
}

.inner-s14 {
  padding: 0.4rem 0 1.2rem;
}
.inner-s14 .inner-label .label {
  color: #041b4c;
}
.inner-s14 .form {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.inner-s14 .form .box {
  width: 9.6rem;
  position: relative;
}
.inner-s14 .form input {
  width: 100%;
  height: 0.8rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: all .3s ease;
}
.inner-s14 .form input::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s14 .form input:-moz-placeholder {
  color: #041b4c;
}
.inner-s14 .form input::-moz-placeholder {
  color: #041b4c;
}
.inner-s14 .form input:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s14 .form input:focus {
  border-color: #041b4c;
}
.inner-s14 .form button {
  width: 0.8rem;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-2.svg");
  background-size: auto 0.24rem;
  cursor: pointer;
}
.inner-s14 .form .layui-input:hover,
.inner-s14 .form .layui-input:focus {
  border-color: #004988 !important;
}
.inner-s14 .form .layui-input:focus {
  box-shadow: none;
}
.inner-s14 .c-items-1 {
  margin-top: 0.6rem;
}

.inner-s15 {
  padding: 0.4rem 0 1.2rem;
}
.inner-s15 .inner-label .label {
  color: #041b4c;
}
.inner-s15 .form {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.inner-s15 .form .box {
  width: 9.6rem;
  position: relative;
}
.inner-s15 .form input {
  width: 100%;
  height: 0.8rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: all .3s ease;
}
.inner-s15 .form input::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s15 .form input:-moz-placeholder {
  color: #041b4c;
}
.inner-s15 .form input::-moz-placeholder {
  color: #041b4c;
}
.inner-s15 .form input:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s15 .form input:focus {
  border-color: #041b4c;
}
.inner-s15 .form button {
  width: 0.8rem;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-2.svg");
  background-size: auto 0.24rem;
  cursor: pointer;
}
.inner-s15 .form .layui-input:hover,
.inner-s15 .form .layui-input:focus {
  border-color: #004988 !important;
}
.inner-s15 .form .layui-input:focus {
  box-shadow: none;
}
.inner-s15 .c-items-2 {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s15 .c-item-2 {
  width: calc((100% - 0.72rem) / 4);
}
.inner-s15 .c-item-2 .inner {
  border-color: #e6e6e6;
}
.inner-s15 .c-item-2 .tit {
  color: #041b4c;
}
@media (any-hover: hover) {
  .inner-s15 .c-item-2:hover .inner {
    background-color: #0d2943;
    border-color: #0d2943;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.1);
  }
  .inner-s15 .c-item-2:hover .inner:before {
    opacity: 1;
  }
  .inner-s15 .c-item-2:hover img {
    transform: scale(1.1);
  }
  .inner-s15 .c-item-2:hover .tit {
    color: #fff;
  }
  .inner-s15 .c-item-2:hover .btn {
    opacity: 1;
  }
}

.inner-s16 {
  padding: 0.4rem 0 1.2rem;
}
.inner-s16 .inner-label .label {
  color: #041b4c;
}
.inner-s16 .form {
  margin-top: 0.6rem;
  display: flex;
  justify-content: center;
}
.inner-s16 .form .box {
  width: 9.6rem;
  position: relative;
}
.inner-s16 .form input {
  width: 100%;
  height: 0.8rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  padding: 0 0.3rem;
  background-color: transparent;
  border: 1px solid #e6e6e6;
  transition: all .3s ease;
}
.inner-s16 .form input::-webkit-input-placeholder {
  color: #041b4c;
}
.inner-s16 .form input:-moz-placeholder {
  color: #041b4c;
}
.inner-s16 .form input::-moz-placeholder {
  color: #041b4c;
}
.inner-s16 .form input:-ms-input-placeholder {
  color: #041b4c;
}
.inner-s16 .form input:focus {
  border-color: #041b4c;
}
.inner-s16 .form button {
  width: 0.8rem;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/search-2.svg");
  background-size: auto 0.24rem;
  cursor: pointer;
}
.inner-s16 .form .layui-input:hover,
.inner-s16 .form .layui-input:focus {
  border-color: #004988 !important;
}
.inner-s16 .form .layui-input:focus {
  box-shadow: none;
}
.inner-s16 .single-block {
  margin-top: 0.6rem;
}
.inner-s16 .single-block .swiper {
  background-color: #142841;
}
.inner-s16 .single-block .item {
  height: auto;
}
.inner-s16 .single-block .item .inner {
  display: flex;
}
.inner-s16 .single-block .item .img-box {
  width: calc((100% - 0.48rem) / 3 * 2 + 0.24rem);
  aspect-ratio: 952 / 536;
  overflow: hidden;
}
.inner-s16 .single-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s16 .single-block .item .txt-box {
  width: calc((100% - 0.48rem) / 3 + 0.24rem);
  position: relative;
  padding: 0.6rem 0.4rem;
}
.inner-s16 .single-block .item .date {
  font-size: max(13px, 0.16rem);
  color: #fff;
}
.inner-s16 .single-block .item .tit {
  font-size: 0.32rem;
  color: #fff;
  font-family: 'Gotham-Bold';
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s16 .single-block .item .btn {
  position: absolute;
  bottom: 0.6rem;
  left: 0.4rem;
  width: max(140px, 1.8rem);
  height: max(40px, 0.54rem);
  border: 2px solid #009dd9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.inner-s16 .single-block .item .btn span {
  font-size: max(12px, 0.14rem);
  color: #ffffff;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
.inner-s16 .single-block .item .date, .inner-s16 .single-block .item .tit, .inner-s16 .single-block .item .btn {
  opacity: 0;
}
.inner-s16 .single-block .item.swiper-slide-active .date, .inner-s16 .single-block .item.swiper-slide-active .tit, .inner-s16 .single-block .item.swiper-slide-active .btn {
  animation: o-upfade-top 0.7s 0s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.inner-s16 .single-block .item.swiper-slide-active .tit {
  animation-delay: .1s;
}
.inner-s16 .single-block .item.swiper-slide-active .btn {
  animation-delay: .2s;
}
@media (any-hover: hover) {
  .inner-s16 .single-block .item:hover img {
    transform: scale(1.05);
  }
  .inner-s16 .single-block .item:hover .btn {
    background-color: #004988;
    transform: translateY(-3px);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 73, 136, 0.3);
    border-color: #004988;
  }
  .inner-s16 .single-block .item:hover .btn span {
    color: #fff;
  }
}
.inner-s16 .single-block .pagination {
  margin-top: 0.3rem;
  display: flex;
  justify-content: center;
  grid-gap: 0.1rem;
}
.inner-s16 .single-block .pagination span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #bcc1c9;
  transition: all .3s ease;
  cursor: pointer;
}
.inner-s16 .single-block .pagination span.active {
  border-color: #004988;
  background-color: #004988;
}
.inner-s16 .c-items-3 {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.24rem;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 0.6rem;
}

.inner-s17 {
  margin-top: -0.8rem;
  background-color: #142841;
  position: relative;
  overflow: hidden;
}
.inner-s17 .txt-box {
  padding: 1.2rem 0 1rem;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
}
.inner-s17 .date {
  font-size: max(13px, 0.16rem);
  color: #fff;
  margin-bottom: 0.2rem;
}
.inner-s17 .tit {
  width: 8.8rem;
  font-size: 0.36rem;
  color: #fff;
  font-family: 'Gotham-Bold';
}
.inner-s17 .tit-1 {
  width: 8.8rem;
  font-size: 0.48rem;
  color: #fff;
  font-family: 'Gotham-Bold';
}
.inner-s17 .para {
  width: 8.6rem;
  font-size: max(13px, 0.16rem);
  color: #fff;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s17 .img-box {
  width: 7.4rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.inner-s17 .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s17 .img-box:after {
  content: '';
  width: 102%;
  height: 102%;
  position: absolute;
  top: -1%;
  right: -1%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/resource/img-5.png");
  background-position: left center;
}

.inner-s18 {
  padding: 1.2rem 0;
}
.inner-s18 .inner-label .label {
  color: #041b4c;
}
.inner-s18 .top-block .edit-para {
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  line-height: 2;
}
.inner-s18 .top-block .edit-para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s18 .top-block .bot-box {
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e5e5e5;
}
.inner-s18 .top-block .bot-box a {
  display: block;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  line-height: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s18 .top-block .bot-box a:hover {
    color: #009dd9;
  }
}
.inner-s18 .bot-block {
  margin-top: 1.6rem;
}
.inner-s18 .share {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 2.4rem;
  bottom: 0;
}
.inner-s18 .share .sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
.inner-s18 .share span {
  display: block;
  width: max(40px, 0.6rem);
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  text-align: center;
}
.inner-s18 .share a {
  display: block;
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f5;
  margin-top: 0.1rem;
  transition: all .3s ease;
}
.inner-s18 .share a.fb {
  background-image: url("../images/careers/share-1-2.png");
}
@media (any-hover: hover) {
  .inner-s18 .share a.fb:hover {
    background-image: url("../images/careers/share-1-2-on.png");
  }
}
.inner-s18 .share a.tw {
  background-image: url("../images/careers/share-1-3.png");
}
@media (any-hover: hover) {
  .inner-s18 .share a.tw:hover {
    background-image: url("../images/careers/share-1-3-on.png");
  }
}
.inner-s18 .share a.in {
  background-image: url("../images/careers/share-1-4.png");
}
@media (any-hover: hover) {
  .inner-s18 .share a.in:hover {
    background-image: url("../images/careers/share-1-4-on.png");
  }
}
.inner-s18 .share a.mail {
  background-image: url("../images/careers/share-1-5.png");
}
@media (any-hover: hover) {
  .inner-s18 .share a.mail:hover {
    background-image: url("../images/careers/share-1-5-on.png");
  }
}
@media (any-hover: hover) {
  .inner-s18 .share a:hover {
    background-color: #041b4c;
  }
}
.inner-s18 .c-items-3 {
  margin-top: 0.4rem;
}
.inner-s18 .c-items-3 .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s18 .c-items-3.animating .c-item-3 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s18 .c-items-3.animating .c-item-3:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s18 .c-items-3.animating .c-item-3:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s18 .c-items-3.animating .c-item-3:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s18 .c-items-3.animating .c-item-3:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s18 .c-items-3.animating .c-item-3:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s18 .c-item-3 {
  height: auto;
  opacity: 0;
  transform: translateX(1rem);
}

.inner-s19 {
  padding: 1.2rem 0;
}
.inner-s19 .inner-label .label {
  color: #041b4c;
}
.inner-s19 .top-block .top-box {
  position: relative;
  margin-bottom: 1rem;
}
.inner-s19 .top-block .top-box .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.inner-s19 .top-block .top-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s19 .top-block .top-box .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/index/img-10.png");
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
}
.inner-s19 .top-block .top-box .txt-box:before {
  content: '';
  width: 2rem;
  height: 0.4rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/logo-1.svg");
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
}
.inner-s19 .top-block .top-box .inner {
  width: 50%;
  padding: 0 1rem;
}
.inner-s19 .top-block .top-box .tit {
  font-size: 0.4rem;
  color: #fff;
  font-family: 'Gotham-Bold';
}
.inner-s19 .top-block .mid-box .tit {
  font-size: 0.48rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s19 .top-block .edit-para {
  margin-top: 0.4rem;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  line-height: 2;
}
.inner-s19 .top-block .edit-para .list-paddingleft-2 {
  padding-left: 0.4rem;
}
.inner-s19 .top-block .edit-para ul li {
  list-style: inherit;
}
.inner-s19 .top-block .edit-para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s19 .top-block .edit-para p.tit-1 {
  font-size: 0.32rem;
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s19 .top-block .edit-para p.tit-2 {
  font-size: max(18px, 0.24rem);
  line-height: 1.2;
  color: #fff;
  font-family: 'Gotham-Bold';
  background-color: #182f4d;
  padding: 0.1rem 0.4rem;
}
.inner-s19 .top-block .bot-box {
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e5e5e5;
}
.inner-s19 .top-block .bot-box a {
  display: block;
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  line-height: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s19 .top-block .bot-box a:hover {
    color: #009dd9;
  }
}
.inner-s19 .bot-block {
  margin-top: 1.6rem;
}
.inner-s19 .share {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 2.4rem;
  bottom: 0;
}
.inner-s19 .share .sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
.inner-s19 .share span {
  display: block;
  width: max(40px, 0.6rem);
  font-size: max(14px, 0.18rem);
  color: #041b4c;
  text-align: center;
}
.inner-s19 .share a {
  display: block;
  width: max(40px, 0.6rem);
  height: max(40px, 0.6rem);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f3f4f5;
  margin-top: 0.1rem;
  transition: all .3s ease;
}
.inner-s19 .share a.fb {
  background-image: url("../images/careers/share-1-2.png");
}
@media (any-hover: hover) {
  .inner-s19 .share a.fb:hover {
    background-image: url("../images/careers/share-1-2-on.png");
  }
}
.inner-s19 .share a.tw {
  background-image: url("../images/careers/share-1-3.png");
}
@media (any-hover: hover) {
  .inner-s19 .share a.tw:hover {
    background-image: url("../images/careers/share-1-3-on.png");
  }
}
.inner-s19 .share a.in {
  background-image: url("../images/careers/share-1-4.png");
}
@media (any-hover: hover) {
  .inner-s19 .share a.in:hover {
    background-image: url("../images/careers/share-1-4-on.png");
  }
}
.inner-s19 .share a.mail {
  background-image: url("../images/careers/share-1-5.png");
}
@media (any-hover: hover) {
  .inner-s19 .share a.mail:hover {
    background-image: url("../images/careers/share-1-5-on.png");
  }
}
@media (any-hover: hover) {
  .inner-s19 .share a:hover {
    background-color: #041b4c;
  }
}
.inner-s19 .c-items-2 {
  margin-top: 0.4rem;
}
.inner-s19 .c-items-2 .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s19 .c-items-2.animating .c-item-2 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s19 .c-items-2.animating .c-item-2:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s19 .c-items-2.animating .c-item-2:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s19 .c-items-2.animating .c-item-2:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s19 .c-items-2.animating .c-item-2:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s19 .c-items-2.animating .c-item-2:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s19 .c-item-2 {
  width: calc((100% - 0.72rem) / 4);
  height: auto;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s19 .c-item-2 .inner {
  border-color: #e6e6e6;
}
.inner-s19 .c-item-2 .tit {
  color: #041b4c;
}

.inner-s20 {
  padding: 0 0 1.2rem;
  overflow: hidden;
}
.inner-s20 .top-box {
  position: relative;
}
.inner-s20 .line {
  width: 1.6rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.inner-s20 .line .line-1 {
  width: 0.6rem;
  height: calc(100% - 0.7rem);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 3%, #e7e9ec, #e7e9ec);
  margin: 0 auto;
  z-index: 1;
}
.inner-s20 .line .line-2 {
  width: 0.3rem;
  height: calc(100% - 0.7rem);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 3%, #3e4f63, #3e4f63);
  margin: 0 auto;
  z-index: 2;
}
.inner-s20 .line:before {
  content: '';
  width: 100%;
  height: calc(100% - 0.7rem);
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/process/img-5-1.png") center top repeat-y;
  background-size: 100% auto;
  z-index: 3;
}
.inner-s20 .line:after {
  content: '';
  width: 100%;
  height: 0.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/process/img-5-2.png");
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.inner-s20 .items {
  padding: 1.2rem 0 1rem 2.2rem;
  position: relative;
  z-index: 2;
}
.inner-s20 .item {
  position: relative;
  margin-top: 0.7rem;
}
.inner-s20 .item:nth-of-type(1) {
  margin-top: 0;
}
.inner-s20 .item .tit-box {
  position: relative;
  z-index: 2;
}
.inner-s20 .item .num {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: #142841;
  border: 0.2rem solid #fff;
  position: absolute;
  left: -1.95rem;
  top: calc(50% - 0.55rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s20 .item .num span {
  font-size: 0.32rem;
  color: #fff;
  font-family: 'Gotham-Bold';
}
.inner-s20 .item .tit {
  font-size: 0.32rem;
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s20 .item .para {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 2;
  margin-top: 0.1rem;
}
.inner-s20 .item ul {
  padding-left: 0.2rem;
}
.inner-s20 .item ul li {
  list-style: inherit;
}
.inner-s20 .item .s-line {
  width: 0.93rem;
  height: calc(100% + 1rem);
  position: absolute;
  left: -1.2rem;
  top: 0.2rem;
  z-index: 1;
}
.inner-s20 .item .s-line:before {
  content: '';
  width: 0.74rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: -0.14rem;
  background: url("../images/process/img-9.png") center center no-repeat;
  background-size: 100% 100%;
}
.inner-s20 .item .s-line:after {
  content: '';
  width: 0.48rem;
  height: 0.96rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/process/img-10.png");
  position: absolute;
  left: 0;
  top: -0.48rem;
}
.inner-s20 .tips {
  margin-top: 0.4rem;
  background-color: #142841;
  font-size: 0.32rem;
  color: #fff;
  text-align: center;
  font-family: 'Gotham-Bold';
  padding: 0.2rem;
  box-shadow: 0 0.3rem 0.4rem rgba(20, 40, 65, 0.3);
}

.inner-s21 {
  padding: 0 0 1.8rem;
  overflow: hidden;
}
.inner-s21 .inner-label .label {
  color: #041b4c;
}
.inner-s21 .top-block .items {
  position: relative;
}
.inner-s21 .top-block .items.animating .item {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s21 .top-block .items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s21 .top-block .items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s21 .top-block .items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s21 .top-block .items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s21 .top-block .items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s21 .top-block .swiper {
  margin: 0 calc(-50vw + 7.2rem);
  padding: 0.3rem calc(50vw - 7.2rem) 0.8rem;
}
.inner-s21 .top-block .item {
  width: 5.4rem;
  height: auto;
  margin-right: 0.4rem;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s21 .top-block .item:last-of-type {
  margin-right: 0;
}
.inner-s21 .top-block .item .inner {
  display: block;
  height: 100%;
}
.inner-s21 .top-block .item .img-box {
  aspect-ratio: 540 / 304;
  overflow: hidden;
}
.inner-s21 .top-block .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s21 .top-block .item .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  padding: 0.3rem 0.4rem 0;
}
@media (any-hover: hover) {
  .inner-s21 .top-block .item:hover img {
    transform: scale(1.1);
  }
}
.inner-s21 .top-block .swiper-control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.inner-s21 .top-block .swiper-scrollbar {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  width: 4rem;
  height: 5px;
  background-color: #e5e5e5;
}
.inner-s21 .top-block .swiper-scrollbar-drag {
  background-color: #004988;
  cursor: pointer;
}
.inner-s21 .top-block .button {
  width: 7px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  transition: transform .3s ease;
  will-change: transform;
}
.inner-s21 .top-block .prev {
  background-image: url("../images/process/prev.svg");
}
@media (any-hover: hover) {
  .inner-s21 .top-block .prev:hover {
    transform: translateX(-2px);
  }
}
.inner-s21 .top-block .next {
  background-image: url("../images/process/next.svg");
}
@media (any-hover: hover) {
  .inner-s21 .top-block .next:hover {
    transform: translateX(2px);
  }
}
.inner-s21 .mid-block {
  padding-top: 2.4rem;
  position: relative;
}
.inner-s21 .mid-block:before {
  content: '';
  width: 1px;
  height: 1.2rem;
  background-color: #e5e8ed;
  position: absolute;
  top: 0.6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner-s21 .mid-block .cont-box {
  margin-top: 0.3rem;
  position: relative;
}
.inner-s21 .mid-block .single-box {
  width: calc(50% - 0.12rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.inner-s21 .mid-block .single-box .inner {
  position: relative;
  display: block;
  height: 100%;
}
.inner-s21 .mid-block .single-box .inner:after {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #142841 90%);
  z-index: 2;
}
.inner-s21 .mid-block .single-box .img-box {
  height: 100%;
}
.inner-s21 .mid-block .single-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.inner-s21 .mid-block .single-box .tit {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  padding: 0 0.4rem;
  font-size: max(18px, 0.24rem);
  color: #fff;
  font-family: 'Gotham-Bold';
  z-index: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .inner-s21 .mid-block .single-box:hover img {
    transform: scale(1.05);
  }
}
.inner-s21 .mid-block .items {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(50% - 0.12rem);
  height: 100%;
}
.inner-s21 .mid-block .items .sw {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s21 .mid-block .item {
  width: calc(50% - 0.12rem);
  height: calc(50% - 0.12rem);
  position: relative;
  background-color: #f2f5fa;
}
.inner-s21 .mid-block .item:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/process/img-7.jpg");
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s21 .mid-block .item .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 0.4rem 0;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}
.inner-s21 .mid-block .item .date {
  font-size: max(13px, 0.16rem);
  color: #004988;
  font-family: 'Gotham-Bold';
}
.inner-s21 .mid-block .item .tit {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
@media (any-hover: hover) {
  .inner-s21 .mid-block .item:hover:before {
    opacity: 1;
  }
  .inner-s21 .mid-block .item:hover .inner {
    box-shadow: 0 0.2rem 0.4rem rgba(20, 40, 65, 0.3);
  }
  .inner-s21 .mid-block .item:hover .tit {
    color: #fff;
  }
}
.inner-s21 .bot-block {
  padding-top: 2.4rem;
  position: relative;
}
.inner-s21 .bot-block:before {
  content: '';
  width: 1px;
  height: 1.2rem;
  background-color: #e5e8ed;
  position: absolute;
  top: 0.6rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner-s21 .bot-block .items {
  margin-top: 0.4rem;
}
.inner-s21 .bot-block .items.animating .item .inner {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s21 .bot-block .items.animating .item:nth-of-type(2) .inner {
  transition-delay: .1s;
}
.inner-s21 .bot-block .items.animating .item:nth-of-type(3) .inner {
  transition-delay: .2s;
}
.inner-s21 .bot-block .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s21 .bot-block .item {
  width: calc((100% - 0.48rem) / 3);
}
.inner-s21 .bot-block .item .inner {
  display: block;
  height: 100%;
  padding: 0.4rem 0.4rem 0.8rem;
  background-color: #f2f5fa;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s21 .bot-block .item .tit {
  font-size: 0.32rem;
  font-family: 'Gotham-Bold';
  color: #004988;
}
.inner-s21 .bot-block .item .para {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 1.5;
  margin-top: 0.2rem;
}
.inner-s21 .bot-block .item .btns {
  width: max(20px, 0.24rem);
  height: max(10px, 0.14rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  background-image: url("../images/process/icon-2.svg");
  transition: transform .3s ease;
}
@media (any-hover: hover) {
  .inner-s21 .bot-block .item:hover .btns {
    transform: translateX(0.1rem);
  }
}

.inner-s22 {
  padding: 1.2rem 0;
}
.inner-s22 .edit-para {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 2;
}
.inner-s22 .edit-para ul li {
  list-style: inherit;
}
.inner-s22 .edit-para ul.pl04 {
  padding-left: 0.4rem;
}
.inner-s22 .edit-para ul.pl06 {
  padding-left: 0.6rem;
}
.inner-s22 .edit-para ul.pl08 {
  padding-left: 0.8rem;
}
.inner-s22 .edit-para ul.pl1 {
  padding-left: 1rem;
}
.inner-s22 .edit-para img {
  max-width: 100%;
  height: auto !important;
}
.inner-s22 .edit-para p.tit-1 {
  font-size: 0.32rem;
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s22 .edit-para p.tit-2 {
  font-size: max(18px, 0.24rem);
  line-height: 1.2;
  color: #fff;
  font-family: 'Gotham-Bold';
  background-color: #182f4d;
  padding: 0.1rem 0.4rem;
}
.inner-s22 .edit-para p.tit-3 {
  font-size: max(15px, 0.2rem);
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s22 .edit-para p.tit-4 {
  font-size: max(18px, 0.24rem);
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s22 .edit-para video {
  max-width: 100%;
  height: auto !important;
}
.inner-s22 .edit-para hr {
  margin: 0;
}
.inner-s22 .edit-para a {
  color: #004988;
  text-decoration: underline;
}
.inner-s22 .edit-para .txtbox-inner {
  display: flex;
  align-items: flex-start;
}
.inner-s22 .edit-para .txtbox-inner .txt {
  width: 50%;
}
.inner-s22 .edit-para .txtbox-inner .img {
  width: 50%;
}
.inner-s22 .edit-para .txtbox-inner.style-1 .txt {
  padding-right: 0.6rem;
}
.inner-s22 .edit-para .txtbox-inner.style-2 .txt {
  padding-left: 0.6rem;
  order: 2;
}

.inner-s23 {
  padding: 1.2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/about/img-2.jpg");
  background-attachment: fixed;
}
.inner-s23 .items {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.inner-s23 .item {
  width: calc((100% - 0.24rem) / 2);
  padding: 0.2rem;
  background-color: rgba(255, 255, 255, 0.1);
}
.inner-s23 .item .inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0.46rem;
  background-color: #fff;
}
.inner-s23 .item .icon {
  width: 0.9rem;
  height: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-s23 .item .icon img {
  max-width: 100%;
  max-height: 100%;
}
.inner-s23 .item .txt {
  width: calc(100% - 0.9rem);
  padding-left: 0.4rem;
}
.inner-s23 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s23 .item p {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #041b4c;
  margin-top: 0.1rem;
}
@media (any-hover: hover) {
  .inner-s23 .item:hover .icon {
    transform: rotateY(360deg);
    transition: transform .5s linear;
  }
}

.inner-s24 {
  padding: 1.2rem 0 1.8rem;
}
.inner-s24 .inner-label .label {
  color: #041b4c;
}
.inner-s24 .inner-label p {
  color: #041b4c;
}
.inner-s24 .items {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.24rem;
}
.inner-s24 .items.animating .item .inner {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s24 .items.animating .item:nth-of-type(2) .inner {
  transition-delay: .1s;
}
.inner-s24 .items.animating .item:nth-of-type(3) .inner {
  transition-delay: .2s;
}
.inner-s24 .item {
  width: calc((100% - 0.24rem) / 3);
}
.inner-s24 .item .inner {
  display: block;
  height: 100%;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s24 .item .top-box {
  position: relative;
}
.inner-s24 .item .img-box {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.inner-s24 .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-s24 .item .bot-box {
  padding: 0.3rem 0.4rem 0;
}
.inner-s24 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s24 .item p {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #041b4c;
  margin-top: 0.1rem;
}
.inner-s24 .item .pagination {
  position: absolute;
  bottom: 0;
  padding: 0.2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(13, 41, 67, 0.8));
  gap: 0.1rem;
  z-index: 2;
}
.inner-s24 .item .pagination span {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 0.04rem;
  background-color: #fff;
  transition: all .3s ease;
}
.inner-s24 .item .pagination span.active {
  width: 0.24rem;
}

.inner-s25 {
  padding: 0 0 1.2rem;
}
.inner-s25 .inner-label .label {
  color: #041b4c;
}
.inner-s25 .items {
  margin-top: 0.4rem;
}
.inner-s25 .items .sw {
  display: flex;
  gap: 0.24rem;
}
.inner-s25 .items.animating .item {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}
.inner-s25 .items.animating .item:nth-of-type(2) {
  transition-delay: .1s;
}
.inner-s25 .items.animating .item:nth-of-type(3) {
  transition-delay: .2s;
}
.inner-s25 .items.animating .item:nth-of-type(4) {
  transition-delay: .3s;
}
.inner-s25 .items.animating .item:nth-of-type(5) {
  transition-delay: .4s;
}
.inner-s25 .items.animating .item:nth-of-type(6) {
  transition-delay: .5s;
}
.inner-s25 .item {
  width: calc((100% - 0.72rem) / 4);
  height: auto;
  background-color: #f2f5fa;
  padding: 0.4rem;
  opacity: 0;
  transform: translateX(1rem);
}
.inner-s25 .item .tips {
  display: flex;
}
.inner-s25 .item .tips span {
  font-size: max(12px, 0.14rem);
  color: #fff;
  font-family: 'Gotham-Bold';
  background-color: #004988;
  line-height: 24px;
  padding: 0 10px;
}
.inner-s25 .item .tit {
  margin-top: 0.8rem;
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s25 .item .para {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #041b4c;
  margin-top: 0.4rem;
}
.inner-s25 .item .para a {
  color: #004988;
  text-decoration: underline;
}

.inner-s26 {
  padding: 0 0 1.2rem 0;
}
.inner-s26 .inner-label .label {
  color: #041b4c;
}
.inner-s26 .items {
  margin-top: 0.6rem;
  border-top: 1px solid #cfcfcf;
}
.inner-s26 .item {
  padding: 0.1rem;
  border-bottom: 1px solid #cfcfcf;
  cursor: pointer;
}
.inner-s26 .item .inner {
  padding: 0.4rem;
  position: relative;
  transition: all .3s ease;
}
.inner-s26 .item .inner:before {
  content: '';
  width: 0.37rem;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/careers/img-1.png");
  position: absolute;
  right: 2.1rem;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.inner-s26 .item .inner:after {
  content: '';
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-6.svg");
  position: absolute;
  right: 0.3rem;
  top: calc(50% - 6px);
  transition: transform .3s ease;
}
.inner-s26 .item .show {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  position: relative;
  z-index: 2;
}
.inner-s26 .item .show:before {
  content: '';
  width: 0.24rem;
  height: 0.24rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/careers/icon-5.svg");
  transform: translateY(0.04rem);
}
.inner-s26 .item .show span {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
  transition: color .3s ease;
}
.inner-s26 .item .hide {
  margin-top: 0.1rem;
  position: relative;
  z-index: 2;
  display: none;
  opacity: 0;
}
.inner-s26 .item .para {
  font-size: max(13px, 0.16rem);
  line-height: 1.5;
  color: #041b4c;
}
.inner-s26 .item.active .inner {
  background-color: #004988;
}
.inner-s26 .item.active .inner:before {
  display: none;
}
.inner-s26 .item.active .inner:after {
  transform: rotate(180deg);
}
.inner-s26 .item.active .show span {
  color: #fff;
}
.inner-s26 .item.active .para {
  color: #fff;
}
.inner-s26 .item.active .hide {
  display: block;
  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media (any-hover: hover) {
  .inner-s26 .item:not(.active):hover .inner {
    background-color: #004988;
  }
  .inner-s26 .item:not(.active):hover .inner:before {
    opacity: 1;
  }
  .inner-s26 .item:not(.active):hover .show span {
    color: #fff;
  }
  .inner-s26 .item:not(.active):hover .para {
    color: #fff;
  }
}

.inner-s27 {
  padding: 1.2rem 0;
}
.inner-s27 .inner-label .slabel {
  color: #041b4c;
  text-align: left;
}
.inner-s27 .blocks {
  margin-top: 0.6rem;
}
.inner-s27 .block {
  margin-top: 0.6rem;
}
.inner-s27 .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s27 .edit-para {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 2;
}
.inner-s27 .edit-para.mt-1 {
  margin-top: 0.3rem;
}
.inner-s27 .edit-para ul li {
  list-style: inherit;
}
.inner-s27 .edit-para ul.pl04 {
  padding-left: 0.4rem;
}
.inner-s27 .edit-para ul.pl06 {
  padding-left: 0.6rem;
}
.inner-s27 .edit-para ul.pl08 {
  padding-left: 0.8rem;
}
.inner-s27 .edit-para ul.pl1 {
  padding-left: 1rem;
}
.inner-s27 .edit-para ul.style-1 li {
  cursor: pointer;
}
@media (any-hover: hover) {
  .inner-s27 .edit-para ul.style-1 li:hover {
    text-decoration: underline;
  }
}
.inner-s27 .edit-para p.tit-1 {
  font-size: 0.32rem;
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s27 .edit-para p.tit-2 {
  font-size: max(18px, 0.24rem);
  line-height: 1.2;
  color: #fff;
  font-family: 'Gotham-Bold';
  background-color: #182f4d;
  padding: 0.1rem 0.4rem;
}
.inner-s27 .edit-para p.tit-3 {
  font-size: max(15px, 0.2rem);
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s27 .edit-para p.tit-4 {
  font-size: max(18px, 0.24rem);
  line-height: 1.2;
  font-family: 'Gotham-Bold';
}
.inner-s27 .edit-para hr {
  margin: 0;
}
.inner-s27 .edit-para a {
  color: #004988;
  text-decoration: underline;
}

.inner-s28 {
  padding: 1.2rem 0;
}
.inner-s28 .inner-label .slabel {
  color: #041b4c;
  text-align: left;
}
.inner-s28 .blocks {
  margin-top: 0.6rem;
}
.inner-s28 .block {
  margin-top: 0.6rem;
}
.inner-s28 .block:nth-of-type(1) {
  margin-top: 0;
}
.inner-s28 .block .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s28 .block .link {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-s28 .block .link a {
  position: relative;
  min-width: 2rem;
}
.inner-s28 .block .link a:before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #041b4c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}
.inner-s28 .block .link a span {
  display: block;
  font-size: max(14px, 0.18rem);
  color: #1a1a1a;
  padding: 0.15rem 0.3rem 0.15rem 0.15rem;
  border: 1px solid #e6e6e6;
  position: relative;
  z-index: 2;
  transition: all .3s ease;
}
.inner-s28 .block .link a span:after {
  content: '';
  width: 5px;
  height: 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/crumbs-2-1.svg");
  position: absolute;
  right: 0.15rem;
  top: 50%;
  margin-top: -5px;
  transition: all .3s ease;
}
@media (any-hover: hover) {
  .inner-s28 .block .link a:hover:before {
    opacity: 1;
  }
  .inner-s28 .block .link a:hover span {
    color: #fff;
    border-color: transparent;
  }
  .inner-s28 .block .link a:hover span:after {
    background-image: url("../images/crumbs-2-2.svg");
  }
}

.inner-s29 {
  padding: 1.2rem 0;
}
.inner-s29 .form {
  width: 100%;
  position: relative;
  height: 0.6rem;
  padding-right: max(50px, 0.6rem);
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.inner-s29 .form input {
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  font-size: max(16px, 0.24rem);
  color: #808080;
}
.inner-s29 .form button {
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  background-image: url("../images/search-2.svg");
  background-size: auto 18px;
}
.inner-s29 .links {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.inner-s29 .links a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.inner-s29 .links a:before {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  border: 0.04rem solid #e6e6e6;
  border-radius: 50%;
  background-color: #ffffff;
  box-sizing: border-box;
}
.inner-s29 .links a span {
  font-size: max(15px, 0.18rem);
  padding-left: 0.1rem;
  color: #041b4c;
}
.inner-s29 .links a.active:before {
  border-color: #041b4c;
}
.inner-s29 .links a.active span {
  color: #041b4c;
}
.inner-s29 .tips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  position: relative;
  z-index: 4;
}
.inner-s29 .tips .left-box {
  font-size: max(18px, 0.24rem);
  color: #353844;
}
.inner-s29 .tips .left-box span {
  color: #000;
}
.inner-s29 .items {
  margin: 0.24rem 0 0.4rem;
}
.inner-s29 .item {
  position: relative;
}
.inner-s29 .item:before, .inner-s29 .item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.06rem;
}
.inner-s29 .item:before {
  background-color: #f2f2f2;
}
.inner-s29 .item:after {
  background-color: #041b4c;
  transform: scaleX(0);
  transform-origin: left top;
}
.inner-s29 .item a {
  position: relative;
  display: block;
  padding: 0.4rem 0;
}
.inner-s29 .item .date {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  margin-bottom: 0.1rem;
}
.inner-s29 .item .tit {
  font-size: max(18px, 0.24rem);
  color: #041b4c;
  font-family: 'Gotham-Bold';
}
.inner-s29 .item .tit span {
  color: #004988;
}
.inner-s29 .item p {
  font-size: max(13px, 0.16rem);
  color: #041b4c;
  line-height: 1.5;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner-s29 .item p span {
  color: #041b4c;
}
@media (any-hover: hover) {
  .inner-s29 .item:hover:after {
    transform: scaleX(1);
    transition: transform .5s linear;
  }
}

@media only screen and (max-width: 1700px) {
  html {
    font-size: 99px;
  }
}
@media only screen and (max-width: 1685px) {
  html {
    font-size: 98px;
  }
}
@media only screen and (max-width: 1670px) {
  html {
    font-size: 97px;
  }
}
@media only screen and (max-width: 1655px) {
  html {
    font-size: 96px;
  }
}
@media only screen and (max-width: 1640px) {
  html {
    font-size: 95px;
  }
}
@media only screen and (max-width: 1625px) {
  html {
    font-size: 94px;
  }
}
@media only screen and (max-width: 1610px) {
  html {
    font-size: 93px;
  }
}
@media only screen and (max-width: 1595px) {
  html {
    font-size: 92px;
  }
}
@media only screen and (max-width: 1580px) {
  html {
    font-size: 91px;
  }
}
@media only screen and (max-width: 1565px) {
  html {
    font-size: 90px;
  }
}
@media only screen and (max-width: 1550px) {
  html {
    font-size: 89px;
  }
}
@media only screen and (max-width: 1535px) {
  html {
    font-size: 88px;
  }
}
@media only screen and (max-width: 1520px) {
  html {
    font-size: 87px;
  }
}
@media only screen and (max-width: 1505px) {
  html {
    font-size: 86px;
  }
}
@media only screen and (max-width: 1490px) {
  html {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1475px) {
  html {
    font-size: 84px;
  }
}
@media only screen and (max-width: 1460px) {
  html {
    font-size: 83px;
  }
}
@media only screen and (max-width: 1445px) {
  html {
    font-size: 82px;
  }
}
@media only screen and (max-width: 1430px) {
  html {
    font-size: 81px;
  }
}
@media only screen and (max-width: 1415px) {
  html {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 79px;
  }
}
@media only screen and (max-width: 1385px) {
  html {
    font-size: 78px;
  }
}
@media only screen and (max-width: 1370px) {
  html {
    font-size: 77px;
  }
}
@media only screen and (max-width: 1355px) {
  html {
    font-size: 76px;
  }
}
@media only screen and (max-width: 1340px) {
  html {
    font-size: 75px;
  }
}
@media only screen and (max-width: 1325px) {
  html {
    font-size: 74px;
  }
}
@media only screen and (max-width: 1310px) {
  html {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1295px) {
  html {
    font-size: 71px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 70px;
  }
}
@media screen and (max-width: 1920px) {
  .index-s3 .svg-items .block {
    transform: scale(0.8);
  }

  .index-s4 .index-label .label {
    font-size: 0.6rem;
  }

  .index-s4 .b-para {
    margin-top: 0.2rem;
  }

  .index-s4 .cont-block {
    width: 80%;
    margin: 0.4rem auto 0;
  }

  .index-s4 .item .tit {
    font-size: 0.36rem;
  }

  .index-s4 .item .para {
    font-size: max(13px, 0.16rem);
  }
}
@media screen and (max-width: 1800px) {
  .header li a.single {
    font-size: 15px;
  }

  .header li .subnav .left-box .links a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1540px) {
  .header li a.single {
    font-size: 14px;
  }

  .header li .subnav .left-box .links a {
    font-size: 14px;
  }

  .header .global .show span {
    font-size: 10px;
  }
}
@media screen and (max-width: 1441px) {
  .header li a.single {
    font-size: 13px;
  }

  .header li .subnav .left-box .links a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1281px) {
  .header ul {
    gap: 15px;
  }
}
@media screen and (max-width: 1025px) {
  body {
    min-width: 100%;
  }

  .wrap-s {
    width: 86%;
  }

  .header {
    min-width: 100%;
    height: 60px;
    padding: 0 7vw;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  .header .logo img.show {
    opacity: 0;
  }
  .header .logo img.hide {
    opacity: 1;
  }
  .header ul {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    padding: 70px 30px;
    text-align: left;
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
    transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
  }
  .header ul.active {
    left: 0;
  }
  .header li {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
  }
  .header li a.single {
    display: inline-block;
    font-size: 14px;
    line-height: 50px;
    color: #041b4c;
    z-index: 2;
  }
  .header li a.single:after {
    display: none;
  }
  .header li i {
    width: 100%;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-image: url("../images/drop-2.svg");
    background-size: auto 6px;
    z-index: 1;
  }
  .header li .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none !important;
    display: none;
    box-shadow: none;
  }
  .header li .subnav .wrap-s {
    width: 100%;
    padding: 20px;
  }
  .header li .subnav .left-box {
    width: 100%;
    padding: 0;
    opacity: 1;
    transform: none;
    border: none;
  }
  .header li .subnav .left-box .tit {
    display: none;
  }
  .header li .subnav .left-box .links {
    margin-top: 0;
    min-height: auto;
  }
  .header li .subnav .right-box {
    display: none;
  }
  .header .ope {
    margin-right: 50px;
  }
  .header .search-btn {
    background-image: url("../images/search-2.svg");
  }
  .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: #041b4c;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .mNavBtn span.line1 {
    top: 0;
  }
  .header .mNavBtn span.line2 {
    top: 7px;
  }
  .header .mNavBtn span.line3 {
    bottom: 0;
  }
  .header .mNavBtn.active .line2 {
    display: none;
  }
  .header .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }
  .header .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
  }

  .head-null {
    height: 60px;
  }

  .fixed-search {
    padding: 80px 7vw 0;
  }

  .fixed-search .block {
    padding: 20px;
  }

  .fixed-search .hot {
    flex-wrap: wrap;
  }

  .fixed-search .hot span {
    width: 100%;
  }

  .fixed-search .hot .links {
    width: 100%;
    flex-direction: column;
  }

  .fixed-search .form input {
    font-size: 12px;
  }

  .fixed-search .close {
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
  }

  .c-crumbs {
    display: none;
  }

  .footer .top-block .left-box {
    width: 100%;
  }

  .footer .top-block .img-box {
    margin: 0 auto;
  }

  .footer .top-block .right-box {
    display: none;
  }

  .footer .top-block .bot-box {
    margin-top: 0.6rem;
  }

  .footer .bot-block {
    display: block;
  }

  .footer .top-block .bot-box .tit {
    text-align: center;
  }

  .footer .top-block .share {
    justify-content: center;
  }

  .footer .bot-block .copyright {
    text-align: center;
  }

  .footer .bot-block .links {
    justify-content: center;
    margin-bottom: 20px;
  }

  .fixed-cookie .main {
    display: block;
  }

  .fixed-cookie .txt-box {
    width: 100%;
  }

  .fixed-cookie .btns {
    width: 100%;
    margin-top: 15px;
  }

  .fixed-cookieset .block {
    height: calc(86svh - 100px);
  }

  .c-banner {
    margin-top: 60px;
    height: auto;
  }

  .c-banner:after {
    display: none;
  }

  .c-banner .img-box {
    height: 60vw;
  }

  .c-banner .txt-box {
    position: static;
  }

  .c-banner .label .b-label {
    color: #041b4c;
    font-size: 0.6rem;
  }

  .c-items-1 .c-item-1 {
    width: 100%;
  }

  .c-items-1 .c-item-1 .inner:before {
    display: none;
  }

  .c-items-2 .c-item-2 .inner {
    padding: 0.1rem;
  }

  .c-items-2 .c-item-2 .btn {
    display: none;
  }

  .c-items-3 .c-item-3 {
    width: calc((100% - 40px) / 3);
  }

  .c-items-3 .c-item-3 .txt-box {
    padding: 15px 10px 0;
  }

  .c-items-3 .c-item-3 .tit {
    font-size: 15px;
  }

  .index-page {
    padding-top: 60px;
  }

  .index-s1 .item {
    height: 60vw;
  }

  .index-s1 .item .txt-box {
    background-color: rgba(13, 41, 67, 0.3);
  }

  .index-s1 .item .tit {
    font-size: 0.48rem;
  }

  .index-s2 {
    padding: 1.2rem 0 0;
  }

  .index-s2 .index-label .label {
    font-size: 0.6rem;
  }

  .index-s2 .para .inner span {
    color: #041b4c;
    -webkit-text-fill-color: #041b4c;
    background: none;
    font-size: 15px;
    display: inline;
  }

  .index-s2 .btns {
    margin-top: 0.6rem;
  }

  .index-s2 .bot-block {
    position: relative;
    margin-top: 20px;
  }

  .index-s2 .bot-block .svg-box {
    width: 60vw;
    transform: none;
  }

  .index-s2 .bot-block .bg-box {
    height: 16vw;
  }

  .index-s2 .bot-block .bg-box-2:after {
    width: 20vw;
    bottom: -10px;
    right: 70%;
  }

  .index-s3 .svg-items {
    display: none;
  }

  .index-s3 .m-items {
    display: flex;
  }

  .index-s4 {
    height: auto;
    padding: 1.2rem 0 0.2rem;
  }

  .index-s4 .sticky {
    height: auto;
  }

  .index-s4 .cont-block {
    width: 100%;
  }

  .index-s4 .dot-box {
    display: none;
  }

  .index-s4 .items .sw {
    display: flex;
  }

  .index-s4 .item {
    width: 100%;
    height: auto;
    background-color: #041b4c;
    margin-right: 20px;
    transform: none;
    opacity: 1;
    position: relative;
  }
  .index-s4 .item:last-of-type {
    margin-right: 0;
  }

  .index-s4 .item .txt-box {
    height: auto;
    position: static;
    padding: 20px 20px 30px;
    background-image: none;
  }

  .index-s4 .item .inner {
    width: 100%;
    padding: 0;
  }

  .index-s4 .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .index-s4 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .index-s4 .pagination span.active {
    opacity: 1;
  }

  .index-s5 .swiper {
    margin: 0 -7vw;
    padding: 20px 7vw 0;
  }

  .index-s5 .item {
    opacity: 1;
    transform: none;
  }

  .index-s5 .buttons {
    display: none;
  }

  .index-s5 .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .index-s5 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .index-s5 .pagination span.active {
    opacity: 1;
  }

  .index-s6 {
    background-attachment: inherit;
    padding: 1.2rem 0;
  }

  .index-s6:before {
    background-image: linear-gradient(180deg, rgba(13, 41, 67, 0.8), rgba(13, 41, 67, 0.1));
  }

  .index-s6 .inner {
    width: 100%;
  }

  .inner-s1 .info-box {
    flex-wrap: wrap;
  }

  .inner-s1 .info-box .item {
    width: 100%;
  }

  .inner-s2 .edit-para img {
    max-width: 100%;
  }

  .inner-s3 .svg-items {
    display: none;
  }

  .inner-s3 .m-items {
    display: flex;
  }

  .inner-s4 .item {
    opacity: 1;
    transform: none;
  }

  .inner-s4 .item .inner {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .inner-s4 .item span {
    margin-top: 0;
    font-size: 16px;
  }

  .inner-s5 .item {
    width: calc((100% - 3rem) / 3);
  }

  .inner-s7 .bot-block .sw {
    gap: 0;
  }

  .inner-s7 .bot-block .item {
    height: auto;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .inner-s7 .bot-block .item:last-of-type {
    margin-right: 0;
  }

  .inner-s7 .bot-block .item .inner {
    opacity: 1;
    transform: none;
  }

  .inner-s7 .bot-block .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s7 .bot-block .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s7 .bot-block .pagination span.active {
    opacity: 1;
  }

  .inner-s8 .form .item:nth-of-type(14),
  .inner-s8 .form .item:nth-of-type(15) {
    width: 100%;
  }

  .inner-s8 .form .agree {
    padding: 0;
  }

  .inner-s9 .form {
    flex-wrap: wrap;
    gap: 10px;
  }

  .inner-s9 .form .box:nth-of-type(1) {
    width: 100%;
  }

  .inner-s9 .form .box:nth-of-type(2) {
    width: 100%;
  }

  .inner-s9 .item .inner {
    display: block;
    padding: 20px;
  }

  .inner-s9 .item .inner:before {
    display: none;
  }

  .inner-s9 .item .tit {
    width: 100%;
    padding-right: 0;
  }

  .inner-s9 .item .info {
    width: 100%;
    margin-top: 15px;
  }

  .inner-s9 .item .btns {
    width: 100%;
    justify-content: flex-start;
    margin-top: 15px;
  }

  .inner-s10 .info-box {
    gap: 20px 40px;
  }

  .inner-s10 .info-box .info {
    width: auto;
  }

  .inner-s10 .share .sticky {
    display: none;
  }

  .inner-s10 .items .sw {
    gap: 0;
  }

  .inner-s10 .item {
    opacity: 1;
    transform: none;
    width: calc((100% - 40px) / 3);
    height: auto;
    margin-right: 20px;
  }
  .inner-s10 .item:last-of-type {
    margin-right: 0;
  }

  .inner-s10 .item .inner {
    height: 100%;
  }

  .inner-s10 .item .tit {
    font-size: 20px;
  }

  .inner-s10 .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s10 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s10 .pagination span.active {
    opacity: 1;
  }

  .inner-s11 .single-box .tit {
    font-size: 20px;
    -webkit-line-clamp: 5;
  }

  .inner-s11 .c-items-3 {
    margin-top: 20px;
  }

  .inner-s11 .c-items-3 .sw {
    gap: 0;
  }

  .inner-s11 .c-item-3 {
    opacity: 1;
    transform: none;
    margin-right: 20px;
  }
  .inner-s11 .c-item-3:last-of-type {
    margin-right: 0;
  }

  .inner-s11 .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s11 .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s11 .pagination span.active {
    opacity: 1;
  }

  .inner-s12 .swiper {
    margin: 0 -7vw;
    padding: 20px 7vw 30px;
  }

  .inner-s12 .c-item-2 {
    opacity: 1;
    transform: none;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }

  .inner-s12 .swiper-horizontal > .swiper-scrollbar {
    bottom: 2px;
  }

  .inner-s12 .buttons {
    display: none;
  }

  .inner-s12 .btns {
    position: static;
    margin-top: 0.6rem;
  }

  .inner-s14 {
    padding: 1.2rem 0;
  }

  .inner-s15 {
    padding: 1.2rem 0;
  }

  .inner-s15 .c-items-2 {
    gap: 20px;
  }

  .inner-s15 .c-item-2 {
    width: calc((100% - 40px) / 3);
  }

  .inner-s16 {
    padding: 1.2rem 0;
  }

  .inner-s16 .c-items-3 {
    gap: 40px 20px;
  }

  .inner-s16 .single-block .item .inner {
    height: 100%;
  }

  .inner-s16 .single-block .item .tit {
    font-size: 20px;
    -webkit-line-clamp: 5;
  }

  .inner-s17 {
    margin-top: 0;
  }

  .inner-s17 .txt-box {
    min-height: auto;
  }

  .inner-s17 .tit {
    width: 100%;
  }

  .inner-s17 .tit-1 {
    width: 100%;
  }

  .inner-s17 .para {
    width: 100%;
  }

  .inner-s17 .img-box {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 740 / 480;
  }

  .inner-s17 .img-box:after {
    display: none;
  }

  .inner-s18 .c-items-3 .sw {
    gap: 0;
  }

  .inner-s18 .c-item-3 {
    opacity: 1;
    transform: none;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .inner-s18 .c-item-3:last-of-type {
    margin-right: 0;
  }

  .inner-s18 .bot-block .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s18 .bot-block .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s18 .bot-block .pagination span.active {
    opacity: 1;
  }

  .inner-s18 .share {
    display: none;
  }

  .inner-s19 .top-block .top-box .txt-box {
    display: none;
  }

  .inner-s19 .c-items-2 .sw {
    gap: 0;
  }

  .inner-s19 .c-item-2 {
    opacity: 1;
    transform: none;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .inner-s19 .c-item-2:last-of-type {
    margin-right: 0;
  }

  .inner-s19 .bot-block .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s19 .bot-block .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s19 .bot-block .pagination span.active {
    opacity: 1;
  }

  .inner-s19 .share {
    display: none;
  }

  .inner-s20 .item .s-line {
    display: none;
  }

  .inner-s20 .tips {
    font-size: 20px;
  }

  .inner-s21 .top-block .swiper {
    margin: 0 -7vw;
    padding: 20px 7vw 30px;
  }

  .inner-s21 .top-block .item {
    opacity: 1;
    transform: none;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }

  .inner-s21 .top-block .swiper-control {
    width: 90%;
    max-width: 500px;
  }

  .inner-s21 .mid-block .single-box {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .inner-s21 .mid-block .items {
    position: static;
    margin-top: 20px;
    width: 100%;
    height: auto;
  }

  .inner-s21 .mid-block .items .sw {
    flex-wrap: nowrap;
    gap: 0;
  }

  .inner-s21 .mid-block .item {
    width: calc((100% - 40px) / 3);
    height: auto;
    margin-right: 20px;
  }
  .inner-s21 .mid-block .item:last-of-type {
    margin-right: 0;
  }

  .inner-s21 .mid-block .item .inner {
    padding: 0.4rem;
  }

  .inner-s21 .mid-block .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s21 .mid-block .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s21 .mid-block .pagination span.active {
    opacity: 1;
  }

  .inner-s21 .bot-block .sw {
    gap: 0;
  }

  .inner-s21 .bot-block .item {
    height: auto;
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .inner-s21 .bot-block .item:last-of-type {
    margin-right: 0;
  }

  .inner-s21 .bot-block .item .inner {
    opacity: 1;
    transform: none;
  }

  .inner-s21 .bot-block .pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .inner-s21 .bot-block .pagination span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #004988;
    opacity: 0.3;
    transition: opacity .3s ease;
  }
  .inner-s21 .bot-block .pagination span.active {
    opacity: 1;
  }

  .inner-s22 .edit-para .txtbox-inner {
    display: block;
  }

  .inner-s22 .edit-para .txtbox-inner .txt {
    width: 100%;
    padding: 0 !important;
  }

  .inner-s22 .edit-para .txtbox-inner .img {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .inner-s24 .item .inner {
    opacity: 1;
    transform: none;
  }

  .inner-s25 .items .sw {
    flex-wrap: wrap;
  }

  .inner-s25 .item {
    width: calc((100% - 0.24rem) / 2);
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 900px) {
  .c-items-3 .c-item-3 {
    width: calc((100% - 20px) / 2);
  }

  .inner-s4 .items .sw {
    flex-wrap: wrap;
    gap: 20px;
  }

  .inner-s4 .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s5 .item {
    width: calc((100% - 1.5rem) / 2);
  }

  .inner-s7 .top-block .item .inner {
    display: block;
  }

  .inner-s7 .top-block .item .img-box {
    width: 100%;
  }

  .inner-s7 .top-block .item .txt-box {
    width: 100%;
    padding: 20px 0 0;
  }

  .inner-s7 .top-block .item .btns {
    margin-top: 20px;
  }

  .inner-s7 .bot-block .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s10 .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s11 .single-box .inner {
    display: block;
    position: relative;
    padding-bottom: 80px;
  }

  .inner-s11 .single-box .img-box {
    width: 100%;
  }

  .inner-s11 .single-box .txt-box {
    width: 100%;
    padding: 20px 20px 0;
    position: static;
  }

  .inner-s11 .single-box .btn {
    bottom: 20px;
    left: 20px;
  }

  .inner-s12 .c-item-2 {
    width: calc((100% - 20px) / 2);
  }

  .inner-s15 .c-item-2 {
    width: calc((100% - 20px) / 2);
  }

  .inner-s16 .single-block .item .inner {
    position: relative;
    display: block;
    padding-bottom: 80px;
  }

  .inner-s16 .single-block .item .img-box {
    width: 100%;
  }

  .inner-s16 .single-block .item .txt-box {
    width: 100%;
    padding: 20px 20px 0;
    position: static;
  }

  .inner-s16 .single-block .item .btn {
    bottom: 20px;
    left: 20px;
  }

  .inner-s18 .c-item-3 {
    width: calc((100% - 20px) / 2);
  }

  .inner-s19 .c-item-2 {
    width: calc((100% - 20px) / 2);
  }

  .inner-s21 .top-block .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s21 .mid-block .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s21 .bot-block .item {
    width: calc((100% - 20px) / 2);
  }

  .inner-s23 .item {
    width: 100%;
  }

  .inner-s24 .items {
    flex-wrap: wrap;
    gap: 40px;
  }

  .inner-s24 .item {
    width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .inner-s8 .form .item {
    width: 100% !important;
  }
}
@media screen and (max-width: 640px) {
  .footer .top-block {
    padding: 40px 0;
  }

  .footer .bot-block {
    padding: 30px 0;
  }

  .footer .bot-block .links {
    gap: 10px 0;
    flex-wrap: wrap;
  }

  .footer .bot-block .links a {
    font-size: 12px;
    width: 50%;
    text-align: center;
  }

  .c-banner .stit {
    padding-top: 60px;
  }

  .c-banner .stit span {
    font-size: 16px;
  }

  .c-banner .label .wrap-s {
    width: 100%;
  }

  .c-banner .label .b-label {
    font-size: 30px;
  }

  .c-banner .para {
    padding: 0 0 60px;
  }

  .c-banner .para .inner {
    font-size: 14px;
  }

  .inner-label .label {
    font-size: 24px;
  }

  .inner-label .slabel {
    font-size: 24px;
  }

  .inner-label p {
    font-size: 14px;
    margin-top: 10px;
  }

  .c-items-1 .c-item-1 {
    min-height: auto;
  }

  .c-items-1 .c-item-1 .inner {
    padding: 15px;
    gap: 15px;
  }

  .c-items-1 .c-item-1 .tit {
    width: calc(100% - 0.53rem - 30px);
    font-size: 14px;
  }

  .c-items-2 .c-item-2 .txt-box {
    padding: 10px;
  }

  .c-items-3 .c-item-3 {
    width: 100%;
  }

  .index-label .label {
    font-size: 24px;
  }

  .index-s1 .item .tit {
    font-size: 20px;
  }

  .index-s1 .item .btns {
    margin-top: 15px;
  }

  .index-s2 {
    padding: 60px 0 0;
  }

  .index-label span {
    font-size: 16px;
  }

  .index-s2 .index-label .label {
    font-size: 24px;
  }

  .index-s2 .para {
    margin-top: 20px;
  }

  .index-s2 .para .inner span {
    font-size: 14px;
  }

  .index-s2 .btns {
    margin-top: 20px;
  }

  .index-s3 .top-block .item:nth-of-type(1) .data .tit {
    font-size: 60px;
  }

  .index-s3 .top-block .item:nth-of-type(2) .data .tit {
    font-size: 50px;
  }

  .index-s3 .top-block .item:nth-of-type(3) .data .tit {
    font-size: 40px;
  }

  .index-s3 .top-block .item:nth-of-type(4) .data .tit {
    font-size: 50px;
  }

  .index-s3 .top-block .item:nth-of-type(5) .data .tit {
    font-size: 40px;
  }

  .index-s3 .top-block .item:nth-of-type(6) .data .tit {
    font-size: 50px;
  }

  .index-s4 .index-label .label {
    font-size: 24px;
  }

  .index-s4 .b-para {
    font-size: 14px;
  }

  .index-s4 .item .tit {
    font-size: 18px;
  }

  .index-s5 {
    padding: 60px 0;
  }

  .index-s5 .item {
    width: 100%;
    max-width: 360px;
  }

  .index-s5 .item .txt-box {
    padding: 20px;
  }

  .index-s6 {
    padding: 60px 0;
  }

  .index-s6 .para {
    font-size: 14px;
  }

  .index-s6 .btns {
    margin-top: 20px;
  }

  .inner-s1 {
    padding: 60px 0;
  }

  .inner-s1 .info-box .item {
    padding: 20px;
    gap: 20px;
  }

  .inner-s1 .info-box .item .icon {
    width: 30px;
    height: 30px;
  }

  .inner-s1 .info-box .item .txt-box {
    width: calc(100% - 40px);
    padding-left: 20px;
    min-height: auto;
  }

  .inner-s1 .info-box .item span {
    font-size: 16px;
  }

  .inner-s1 .info-box .item p {
    font-size: 13px;
  }

  .inner-s2 {
    padding: 60px 0;
  }

  .inner-s2 .edit-para {
    margin-top: 20px;
  }

  .inner-s2 .edit-para {
    font-size: 14px;
  }

  .inner-s3 {
    padding: 60px 0;
  }

  .inner-s4 {
    padding: 60px 0;
  }

  .inner-s4 .item {
    padding: 10px;
  }

  .inner-s4 .item .inner {
    gap: 10px;
  }

  .inner-s4 .item .icon {
    width: 40px;
    height: 40px;
  }

  .inner-s4 .item span {
    font-size: 14px;
  }

  .inner-s5 {
    padding: 60px 0;
  }

  .inner-s5 .items {
    margin-top: 20px;
    gap: 30px 20px;
  }

  .inner-s5 .item {
    width: calc(50% - 10px);
  }

  .inner-s5 .item .tit {
    font-size: 16px;
  }

  .inner-s5 .item p {
    font-size: 12px;
  }

  .inner-s6 {
    padding: 0 0 60px;
  }

  .inner-s7 {
    padding: 0 0 60px;
  }

  .inner-s7 .top-block .item .tit {
    font-size: 18px;
  }

  .inner-s7 .bot-block .item {
    width: 100%;
  }

  .inner-s7 .bot-block .item .tit {
    font-size: 20px;
  }

  .inner-s8 {
    padding: 60px 0;
  }

  .inner-s8 .form {
    margin-top: 20px;
  }

  .inner-s8 .form button {
    font-size: 16px;
  }

  .inner-s9 {
    padding: 0 0 60px;
  }

  .inner-s9 .items {
    margin-top: 30px;
  }

  .inner-s9 .item {
    padding: 0;
  }

  .inner-s9 .item .inner {
    padding: 20px 0;
  }

  .inner-s9 .item .tit {
    font-size: 16px;
  }

  .inner-s9 .item .info p {
    font-size: 14px;
  }

  .inner-s10 {
    padding: 60px 0;
  }

  .inner-s10 .b-label {
    font-size: 24px;
  }

  .inner-s10 .info-box {
    padding: 20px;
  }

  .inner-s10 .info-box .info p {
    font-size: 14px;
  }

  .inner-s10 .block .tit {
    font-size: 16px;
  }

  .inner-s10 .btns {
    margin-top: 30px;
  }

  .inner-s10 .bot-block {
    margin-top: 30px;
    padding-top: 60px;
  }

  .inner-s10 .item {
    width: 100%;
  }

  .inner-s10 .item .inner {
    padding: 20px 20px 1.2rem;
  }

  .inner-s10 .item .info {
    left: 20px;
    bottom: 20px;
  }

  .inner-s10 .item .tit {
    font-size: 18px;
  }

  .inner-s11 {
    padding: 60px 0;
  }

  .inner-s11 .single-box .tit {
    font-size: 16px;
  }

  .inner-s11 .btns {
    margin-top: 30px;
  }

  .inner-s12 {
    padding: 60px 0;
  }

  .inner-s12 .c-item-2 {
    width: 100%;
  }

  .inner-s12 .btns {
    margin-top: 30px;
  }

  .inner-s13 {
    padding: 60px 0;
  }

  .inner-s13 .btns {
    margin-top: 30px;
  }

  .inner-s14 {
    padding: 60px 0;
  }

  .inner-s14 .form {
    margin-top: 20px;
  }

  .inner-s14 .c-items-1 {
    margin-top: 30px;
  }

  .inner-s15 {
    padding: 60px 0;
  }

  .inner-s15 .form {
    margin-top: 20px;
  }

  .inner-s15 .c-items-2 {
    margin-top: 30px;
  }

  .inner-s15 .c-item-2 {
    width: 100%;
  }

  .inner-s16 {
    padding: 60px 0;
  }

  .inner-s16 .form {
    margin-top: 20px;
  }

  .inner-s16 .single-block {
    margin-top: 30px;
  }

  .inner-s16 .single-block .item .tit {
    font-size: 16px;
  }

  .inner-s16 .c-items-3 {
    margin-top: 30px;
  }

  .inner-s17 .txt-box {
    padding: 60px 0;
  }

  .inner-s17 .tit-1 {
    font-size: 24px;
  }

  .inner-s17 .tit {
    font-size: 24px;
  }

  .inner-s18 {
    padding: 60px 0;
  }

  .inner-s18 .top-block .bot-box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .inner-s18 .bot-block {
    margin-top: 60px;
  }

  .inner-s18 .c-items-3 {
    margin-top: 20px;
  }

  .inner-s18 .c-item-3 {
    width: 100%;
  }

  .inner-s19 {
    padding: 60px 0;
  }

  .inner-s19 .top-block .top-box {
    margin-bottom: 20px;
  }

  .inner-s19 .top-block .mid-box .tit {
    font-size: 24px;
  }

  .inner-s19 .top-block .edit-para {
    margin-top: 20px;
  }

  .inner-s19 .top-block .edit-para p.tit-1 {
    font-size: 20px;
  }

  .inner-s19 .top-block .edit-para p.tit-2 {
    font-size: 16px;
  }

  .inner-s19 .top-block .bot-box {
    margin-top: 30px;
    padding-top: 30px;
  }

  .inner-s19 .bot-block {
    margin-top: 60px;
  }

  .inner-s19 .c-items-2 {
    margin-top: 20px;
  }

  .inner-s19 .c-item-2 {
    width: 100%;
  }

  .inner-s20 {
    padding: 0 0 60px;
  }

  .inner-s20 .items {
    padding: 60px 0 40px 60px;
  }

  .inner-s20 .line {
    width: 40px;
  }

  .inner-s20 .line .line-1 {
    width: 20px;
    height: calc(100% - 18px);
    background-image: linear-gradient(180deg, #e7e9ec, #e7e9ec, #e7e9ec);
  }

  .inner-s20 .line .line-2 {
    width: 8px;
    height: calc(100% - 18px);
    background-image: linear-gradient(180deg, #3e4f63, #3e4f63, #3e4f63);
  }

  .inner-s20 .line:after {
    width: 100%;
    height: 20px;
  }

  .inner-s20 .item {
    margin-top: 30px;
  }

  .inner-s20 .item .num {
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: -60px;
    border: 4px solid #fff;
  }

  .inner-s20 .item .num span {
    font-size: 16px;
  }

  .inner-s20 .item .tit {
    font-size: 20px;
  }

  .inner-s20 .item .s-line {
    width: 30px;
    top: 12px;
    left: -30px;
  }

  .inner-s20 .item .s-line:after {
    width: 20px;
    height: 40px;
    top: -20px;
  }

  .inner-s20 .tips {
    font-size: 16px;
  }

  .inner-s21 {
    padding: 0 0 60px;
  }

  .inner-s21 .top-block .item {
    width: 100%;
  }

  .inner-s21 .top-block .item .tit {
    font-size: 16px;
    padding: 10px 0 0;
  }

  .inner-s21 .mid-block .item {
    width: 100%;
  }

  .inner-s21 .mid-block .single-box .tit {
    font-size: 14px;
  }

  .inner-s21 .bot-block .item {
    width: 100%;
  }

  .inner-s21 .bot-block .item .tit {
    font-size: 20px;
  }

  .inner-s22 {
    padding: 60px 0;
  }

  .inner-s22 .edit-para p.tit-1 {
    font-size: 20px;
  }

  .inner-s22 .edit-para p.tit-2 {
    font-size: 16px;
  }

  .inner-s23 {
    padding: 60px 0;
  }

  .inner-s23 .item {
    padding: 10px;
  }

  .inner-s23 .item .inner {
    padding: 20px;
    display: block;
  }

  .inner-s23 .item .icon {
    width: 40px;
    height: 40px;
  }

  .inner-s23 .item .txt {
    width: 100%;
    padding: 15px 0 0;
  }

  .inner-s23 .item .tit {
    font-size: 16px;
  }

  .inner-s24 {
    padding: 60px 0;
  }

  .inner-s24 .item .bot-box {
    padding: 20px 0 0;
  }

  .inner-s24 .item .tit {
    font-size: 16px;
  }

  .inner-s25 {
    padding: 0 0 60px;
  }

  .inner-s25 .items {
    margin-top: 20px;
  }

  .inner-s25 .item {
    width: 100%;
  }

  .inner-s26 {
    padding: 0 0 60px;
  }

  .inner-s26 .items {
    margin-top: 20px;
  }

  .inner-s26 .item {
    padding: 0;
  }

  .inner-s26 .item .inner {
    padding: 20px 30px 20px 20px;
  }

  .inner-s26 .item .inner:after {
    right: 10px;
  }

  .inner-s26 .item .inner:before {
    display: none;
  }

  .inner-s26 .item .show span {
    font-size: 16px;
  }

  .inner-s26 .item .show:before {
    width: 14px;
    height: 14px;
  }

  .inner-s27 {
    padding: 60px 0;
  }

  .inner-s27 .edit-para p.tit-1 {
    font-size: 20px;
  }

  .inner-s27 .edit-para p.tit-2 {
    font-size: 16px;
  }

  .inner-s28 {
    padding: 60px 0;
  }
}

/*# sourceMappingURL=bundle.css.map */
