.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes load {
  0% {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Firefox */
@-moz-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Safari and Chrome */
@-webkit-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Opera */
@-o-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Firefox */
@-moz-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Safari and Chrome */
@-webkit-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Opera */
@-o-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@-webkit-keyframes slideIndUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -moz-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes slideIndUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -moz-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes Move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100vw);
  }
}
@-webkit-keyframes Move {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100vw);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.page .swiper-pagination {
  width: 10px;
  left: 0.3rem !important;
  margin-left: 0;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto!important;
  z-index: 2;
}
.page .swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #babfc3;
  border: none;
  border-radius: 50%;
  margin: 20px 0!important;
  overflow: hidden;
}
.page .swiper-pagination-bullet:last-child {
  display: none;
}
.page .swiper-pagination-bullet-active {
  background: #26a661;
}
@media screen and (min-width: 1004px) {
  #page {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  .pageSlide {
    height: 100vh;
    overflow: hidden;
  }
  .pageSlide.footBox {
    height: 6.4rem;
  }
}
.pageSlide.swiper-slide-active .slideUp {
  -webkit-animation-name: slideIndUp;
  animation-name: slideIndUp;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.pageSlide.swiper-slide-active .slideDelay2 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.pageSlide.swiper-slide-active .slideDelay3 {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.pageSlide.swiper-slide-active .slideDelay4 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.pageSlide.swiper-slide-active .slideDelay5 {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}
.pageSlide.swiper-slide-active .slideDelay6 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.pageSlide.swiper-slide-active .slideDelay7 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 2.1s;
}
.pageSlide.swiper-slide-active .slideDelay8 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 2.4s;
}
.pageSlide.swiper-slide-active .slideDelay9 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 2.7s;
}
/*banner*/
.indexP0 {
  position: relative;
  overflow: hidden;
}
.indexP0 .mouse {
  position: absolute;
  left: 50%;
  margin-left: -1.5rem;
  bottom: 0.4rem;
  z-index: 3;
  width: 3rem;
}
.indexP0 .mouse p {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  text-align: center;
  font-weight: 100;
  margin-bottom: 8px;
}
.indexP0 .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 22px;
  height: 36px;
  border-radius: 0.48rem;
  border: 2px solid #fff;
}
.indexP0 .mouse .kuang span {
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 18px;
  width: 2px;
  height: 5px;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1.3rem;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  background-blend-mode: normal, normal;
  z-index: 1;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 100vh;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 20%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.ind-banner .onebox .baozhe {
  overflow: hidden;
  width: 0;
}
.ind-banner .onebox .cn {
  font-size: var(--fs72);
  line-height: 0.86rem;
  color: #fff;
  margin-bottom: 0.1rem;
  font-weight: bold;
}
.ind-banner .onebox .wen {
  font-size: var(--fs18);
  text-transform: uppercase;
  line-height: 0.32rem;
  color: #fff;
  font-family: 'Mont-L';
}
.ind-banner .onebox .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.92rem;
  height: 0.6rem;
  margin-top: 0.4rem;
  background: #0c46a6;
}
.ind-banner .onebox .more em {
  position: relative;
  z-index: 2;
}
.ind-banner .onebox .more i {
  position: relative;
  z-index: 2;
  margin-left: 0.1rem;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .cn,
.ind-banner .wen,
.ind-banner .more {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .baozhe {
  width: 100%;
}
.ind-banner .swiper-slide-active .cn,
.ind-banner .swiper-slide-active .wen,
.ind-banner .swiper-slide-active .more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .se {
  position: absolute;
  bottom: 0.4rem;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border: rgba(255, 255, 255, 0.5) solid 2px;
  border-radius: 50%;
  outline: none;
  z-index: 3;
}
.ind-banner .se:hover {
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.ind-banner .prev {
  right: 1.2rem;
}
.ind-banner .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 13px;
  margin-top: -6px;
  background: url(../images/nimg7_left.png) no-repeat;
}
.ind-banner .next {
  right: 0.5rem;
}
.ind-banner .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 13px;
  margin-top: -6px;
  background: url(../images/nimg7_right.png) no-repeat;
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .ind-banner .onebox .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .se {
    width: 0.86rem;
    height: 0.86rem;
    border: rgba(255, 255, 255, 0.5) solid 1px;
  }
  .ind-banner .prev {
    right: 1.64rem;
  }
  .ind-banner .prev::before {
    content: '';
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    width: 7px;
    height: 13px;
    margin-top: -6px;
    background: url(../images/nimg7_left.png) no-repeat;
  }
  .ind-banner .next {
    right: 0.5rem;
  }
  .ind-banner .next::before {
    content: '';
    z-index: 1;
    position: absolute;
    right: 50%;
    top: 50%;
    margin-right: -4px;
    width: 7px;
    height: 13px;
    margin-top: -6px;
    background: url(../images/nimg7_right.png) no-repeat;
  }
}
.indMore {
  width: 1.86rem;
}
.indMore a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 0.56rem;
  line-height: 0.56rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #26a661;
  padding-left: 0.24rem;
  padding-right: 5px;
  background: rgba(255, 255, 255, 0.85);
}
.indMore a span {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  border-radius: 50%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.15rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  width: 0.48rem;
  height: 0.48rem;
  position: relative;
  overflow: hidden;
}
.indMore a i::before,
.indMore a i::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background: url(../images/ico2.png) center no-repeat;
  background-size: 0.14rem;
}
.indMore a i::before {
  left: auto;
  right: 150%;
}
.indMore a:hover {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indMore a:hover span {
  background: rgba(255, 255, 255, 0.1);
  transform: translate(3px);
}
.indMore a:hover i::before,
.indMore a:hover i::after {
  transform: translate(150%);
}
.indexP1 {
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP1 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100vh;
}
.indexP1 .name {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.indexP1 .content {
  width: 7.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #fff;
  text-align: justify;
}
.indexP1 .indMore {
  margin-top: 1.1rem;
}
.indexP2 {
  position: relative;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP2 .swiper-slide {
  position: relative;
}
.indexP2 .swiper-slide .mxfDiv {
  padding-top: 7%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP2 .swiper-slide .info {
  width: 5.4rem;
  transform: translateX(1rem);
  -webkit-transform: translateX(1rem);
  -moz-transform: translateX(1rem);
  -ms-transform: translateX(1rem);
  -o-transform: translateX(1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.indexP2 .swiper-slide .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.indexP2 .swiper-slide .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: var(--fs18);
  line-height: 0.3rem;
  max-height: 0.9rem;
  overflow: hidden;
}
.indexP2 .swiper-slide .zi {
  margin: 0.3rem 0 0.25rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  padding-left: 12px;
}
.indexP2 .swiper-slide .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  width: 3px;
  height: 22px;
  border-radius: 4px;
  background-image: linear-gradient(180deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
}
.indexP2 .swiper-slide .lie ul {
  display: flex;
}
.indexP2 .swiper-slide .lie li {
  margin-right: 0.4rem;
  text-align: center;
}
.indexP2 .swiper-slide .lie li:last-child {
  margin-right: 0;
}
.indexP2 .swiper-slide .lie li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
}
.indexP2 .swiper-slide .lie li .ico img {
  max-width: 0.4rem;
}
.indexP2 .swiper-slide .lie li .cn {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.indexP2 .swiper-slide .indMore {
  margin-top: 1.2rem;
}
.indexP2 .swiper-slide .indMore a {
  background: none;
  background: linear-gradient(#f3f5f9, #f3f5f9) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
}
.indexP2 .swiper-slide .indMore a:hover {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indexP2 .swiper-slide .indMore a:hover span {
  background: rgba(255, 255, 255, 0.1);
  transform: translate(3px);
}
.indexP2 .swiper-slide .indMore a:hover i::before,
.indexP2 .swiper-slide .indMore a:hover i::after {
  transform: translate(150%);
}
.indexP2 .swiper-slide .rightDiv {
  order: 1;
  width: 50%;
  position: relative;
}
.indexP2 .swiper-slide .kuang {
  position: absolute;
  left: -0.6rem;
  top: 50%;
  margin-top: -1.95rem;
  width: 100%;
  height: 3.9rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.16rem;
  box-shadow: 0 0 0.6rem rgba(0, 54, 145, 0.1);
  transform: translateX(-1rem);
  -webkit-transform: translateX(-1rem);
  -moz-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.indexP2 .swiper-slide .kuang2 {
  position: absolute;
  left: -0.3rem;
  top: 50%;
  margin-top: -2.3rem;
  width: 100%;
  height: 4.6rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.16rem;
  box-shadow: 0 0 0.6rem rgba(0, 54, 145, 0.1);
  z-index: 1;
  transform: translateX(-1rem);
  -webkit-transform: translateX(-1rem);
  -moz-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.indexP2 .swiper-slide .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 2;
  height: 5.4rem;
  background: #fff;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.6rem rgba(0, 54, 145, 0.1);
  transform: translateX(-1rem);
  -webkit-transform: translateX(-1rem);
  -moz-transform: translateX(-1rem);
  -ms-transform: translateX(-1rem);
  -o-transform: translateX(-1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.indexP2 .swiper-slide .imgDiv::after {
  content: 'EVPS';
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.08);
  font-family: 'Mont-R';
  line-height: 2.4rem;
}
.indexP2 .swiper-slide .imgDiv img {
  position: relative;
  z-index: 1;
  max-width: 6rem;
  max-height: 4.5rem;
}
.indexP2 .swiper-slide-active .info,
.indexP2 .swiper-slide-active .imgDiv,
.indexP2 .swiper-slide-active .kuang,
.indexP2 .swiper-slide-active .kuang2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.indexP2 .swiper-slide-active .kuang2 {
  transition-delay: 0.3s;
}
.indexP2 .swiper-slide-active .imgDiv {
  transition-delay: 0.6s;
}
.indexP2 .tab-box {
  display: flex;
  position: absolute;
  left: 0;
  bottom: 7.3%;
  width: 100%;
}
.indexP2 .tab-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 100%;
  height: 1px;
  background: #dddfe3;
}
.indexP2 .tab-box a {
  position: relative;
  z-index: 1;
  display: block;
  width: 33.33%;
  text-align: center;
}
.indexP2 .tab-box a .inner {
  width: 1.2rem;
  margin: 0 auto;
  background: #f3f5f9;
}
.indexP2 .tab-box a .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  width: 0.8rem;
  height: 0.8rem;
}
.indexP2 .tab-box a .ico img {
  max-width: 0.4rem;
}
.indexP2 .tab-box a .name {
  padding-top: 0.16rem;
  line-height: 0.24rem;
  font-size: var(--fs16);
  color: #333;
}
.indexP2 .tab-box a.on .ico {
  background: #fff;
}
.indexP2 .tab-box a.on .name {
  color: #26a661;
}
.indexP3 {
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP3 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100vh;
}
.indexP3 .name {
  width: 10.24rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 0.8rem;
}
.indexP3 .numList {
  width: 10.24rem;
  margin: 0 auto;
}
.indexP3 .numList ul {
  display: flex;
}
.indexP3 .numList li {
  width: 25%;
  color: #fff;
  text-align: center;
}
.indexP3 .numList li .num {
  font-size: var(--fs60);
  line-height: 0.64rem;
  font-family: 'Poppins-M';
}
.indexP3 .numList li .wen {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.26rem;
}
.indexP3 .indMore {
  margin: 1.1rem auto 0;
}
.indexP4 {
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP4 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100vh;
}
.indexP4 .toptop {
  position: relative;
  padding-bottom: 0.5rem;
}
.indexP4 .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0;
}
.indexP4 .indMore {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.indexP4 .indMore a {
  background: none;
  background: linear-gradient(#eff3f9, #eff3f9) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
}
.indexP4 .indMore a:hover {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indexP4 .indMore a:hover span {
  background: rgba(255, 255, 255, 0.1);
  transform: translate(3px);
}
.indexP4 .indMore a:hover i::before,
.indexP4 .indMore a:hover i::after {
  transform: translate(150%);
}
.indexP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP4 .list li {
  width: calc((100% - 1.08rem) / 3);
  margin-right: 0.54rem;
}
.indexP4 .list li:nth-child(3n) {
  margin-right: 0;
}
.indexP4 .list li a {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 0.16rem;
  min-height: 5.14rem;
  padding: 0.4rem 0.3rem 0.3rem;
  box-shadow: 0 0 0.3rem rgba(0, 54, 145, 0.1);
}
.indexP4 .list li a::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.6rem;
  height: 3.66rem;
  background: url(../images/nimg360Bg.png) no-repeat;
  background-size: 3.6rem;
  transition: All 0.5s ease;
}
.indexP4 .list li a .time {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #666;
  font-family: 'Poppins-L';
}
.indexP4 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  height: 0.6rem;
  transition: All 0.5s ease;
}
.indexP4 .list li a .more {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #26a661;
  padding-right: 18px;
  background: url(../images/ico3.png) right center no-repeat;
  background-size: 8px;
  position: relative;
  bottom: 0;
  transition: All 0.5s ease;
}
.indexP4 .list li a .content {
  height: 0;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  overflow: hidden;
  transition: All 0.5s ease;
}
.indexP4 .list li a .imgDiv {
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  width: calc(100% - 0.6rem);
  height: 2.34rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.indexP4 .list li a .imgDiv img {
  width: 100%;
  height: 2.34rem;
  max-height: 2.34rem;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: All 0.5s ease;
  left: 0;
  z-index: 1;
}
.indexP4 .list li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.indexP4 .list li a:hover .name {
  color: #26a661;
}
.indexP4 .list li a:hover .more {
  position: absolute;
  bottom: 0.4rem;
}
.indexP4 .list li a:hover .imgDiv img {
  height: 0;
}
.indexP4 .list li a:hover .content {
  height: 1.5rem;
}
@media (max-width: 1004px) {
  .indMore {
    width: 2.65rem;
  }
  .indMore a {
    height: 0.82rem;
    line-height: 0.8rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .indMore a span {
    width: 0.56rem;
    height: 0.56rem;
  }
  .indexP1 .wrap {
    height: 80vh;
  }
  .indexP1 .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.5rem;
  }
  .indexP1 .content {
    width: 80%;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .indMore {
    margin-top: 0.5rem;
  }
  .indexP2 {
    padding: 0.9rem 0;
  }
  .indexP2 .swiper-slide .mxfDiv {
    padding-top: 0;
    display: block;
  }
  .indexP2 .swiper-slide .info {
    margin-top: 0.5rem;
    width: auto;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
  }
  .indexP2 .swiper-slide .name {
    font-size: var(--fs24);
    margin-bottom: 0.25rem;
  }
  .indexP2 .swiper-slide .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .indexP2 .swiper-slide .zi {
    display: none;
  }
  .indexP2 .swiper-slide .lie {
    display: none;
  }
  .indexP2 .swiper-slide .indMore {
    margin-top: 0.5rem;
  }
  .indexP2 .swiper-slide .rightDiv {
    width: auto;
  }
  .indexP2 .swiper-slide .kuang,
  .indexP2 .swiper-slide .kuang2 {
    display: none;
  }
  .indexP2 .swiper-slide .imgDiv {
    height: 3.8rem;
    border-radius: 0.24rem;
    transform: translateY(1rem);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
  }
  .indexP2 .swiper-slide .imgDiv::after {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .indexP2 .swiper-slide .imgDiv img {
    max-width: 5rem;
    max-height: 3rem;
  }
  .indexP2 .swiper-slide-active .info,
  .indexP2 .swiper-slide-active .imgDiv,
  .indexP2 .swiper-slide-active .kuang,
  .indexP2 .swiper-slide-active .kuang2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .indexP2 .tab-box {
    position: relative;
    bottom: 0;
    padding-bottom: 0.5rem;
  }
  .indexP2 .tab-box::before {
    top: 0.6rem;
  }
  .indexP2 .tab-box a .inner {
    width: 1.6rem;
    background: none;
  }
  .indexP2 .tab-box a .ico {
    width: 1.2rem;
    height: 1.2rem;
  }
  .indexP2 .tab-box a .ico img {
    max-width: 0.48rem;
  }
  .indexP2 .tab-box a .name {
    padding-top: 0.16rem;
    line-height: 0.42rem;
    font-size: var(--fs15);
    color: #333;
  }
  .indexP2 .tab-box a.on .ico {
    background: #fff;
  }
  .indexP2 .tab-box a.on .name {
    color: #26a661;
  }
  .indexP3 .wrap {
    padding: 0;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    height: 80vh;
  }
  .indexP3 .name {
    width: auto;
    font-size: var(--fs24);
    margin: 0 var(--offset) 0.5rem;
  }
  .indexP3 .numList {
    width: 100%;
  }
  .indexP3 .numList li {
    padding-bottom: 0.5rem;
  }
  .indexP3 .numList li .num {
    font-size: var(--fs28);
    line-height: 0.72rem;
  }
  .indexP3 .numList li .wen {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP3 .indMore {
    margin: 0.3rem auto 0;
  }
  .indexP4 {
    padding: 0.9rem 0;
  }
  .indexP4 .wrap {
    display: block;
    height: auto;
  }
  .indexP4 .toptop {
    padding-bottom: 0.65rem;
  }
  .indexP4 .title {
    font-size: var(--fs24);
    line-height: 0.82rem;
  }
  .indexP4 .list ul {
    display: block;
  }
  .indexP4 .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .indexP4 .list li:last-child {
    margin-bottom: 0;
  }
  .indexP4 .list li a {
    border-radius: 0.24rem;
    min-height: 2rem;
    padding: 0.3rem;
  }
  .indexP4 .list li a::after {
    display: none;
  }
  .indexP4 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP4 .list li a .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP4 .list li a .more {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-right: 0.24rem;
    background-size: 6px;
  }
  .indexP4 .list li a .content,
  .indexP4 .list li a .imgDiv {
    display: none;
  }
  .indexP4 .list li a:hover .more {
    position: relative;
    bottom: 0;
  }
}
.navBarrier {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.navBarrier li {
  font-size: 14px;
  line-height: 0.18rem;
  position: relative;
  padding: 0.1rem 0 0.1rem 0.34rem;
  overflow: hidden;
  color: #fff;
  transition: All 0.5s ease;
}
.navBarrier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.24rem;
  height: 1px;
  background: #fff;
  transition: All 0.5s ease;
}
.navBarrier li em {
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
}
.navBarrier li.on {
  padding: 0.1rem 0 0.1rem 0.52rem;
}
.navBarrier li.on::before {
  width: 0.46rem;
}
.navBarrier li.on em {
  opacity: 1;
  visibility: visible;
}
.navBarrier.other li {
  color: #26a661;
}
.navBarrier.other li::before {
  background: #26a661;
}
.integrityP1 {
  overflow: hidden;
  padding: 1.8rem 0;
  position: relative;
}
.integrityP1 .leftR {
  position: absolute;
  left: -4.52rem;
  top: 50%;
  margin-top: -3.27rem;
  width: 6.54rem;
  height: 6.54rem;
  overflow: hidden;
}
.integrityP1 .leftR .shapes-wrapper {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/nimg654Bg2.png) no-repeat;
  background-size: 6.54rem;
}
.integrityP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 2;
}
.integrityP1 .imgDiv {
  order: 1;
  width: 50%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.integrityP1 .imgDiv img {
  width: 100%;
}
.integrityP1 .conDiv {
  width: 50%;
  padding-right: 1.8rem;
}
.integrityP1 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.integrityP1 .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #697380;
  font-weight: 100;
}
.integrityP2 {
  position: relative;
  overflow: hidden;
  padding-top: 1.2rem;
  height: 8.5rem;
}
.integrityP2 .parallax-bg {
  position: absolute;
  top: -65%;
  left: 0;
  width: 100%;
  height: 110%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.integrityP2 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.64rem;
  text-align: center;
  color: #fff;
  margin-bottom: 0.3rem;
}
.integrityP2 .content {
  margin: 0 auto;
  width: 8.2rem;
  font-size: var(--fs20);
  line-height: 0.38rem;
  text-align: center;
  color: #fff;
}
.integrityP3 {
  overflow: hidden;
  padding: 1.8rem 0;
  position: relative;
}
.integrityP3 .rightR {
  position: absolute;
  right: -4.32rem;
  top: 50%;
  margin-top: -3.27rem;
  width: 6.54rem;
  height: 6.54rem;
  overflow: hidden;
}
.integrityP3 .rightR .shapes-wrapper {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/nimg654Bg2.png) no-repeat;
  background-size: 6.54rem;
}
.integrityP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 2;
}
.integrityP3 .imgDiv {
  width: 50%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.integrityP3 .imgDiv img {
  width: 100%;
}
.integrityP3 .conDiv {
  width: 50%;
  padding-left: 1.8rem;
}
.integrityP3 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.integrityP3 .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #697380;
  font-weight: 100;
}
.shape-1 {
  filter: blur(60px);
  width: 4.54rem;
  height: 4.54rem;
  background-color: #e8f2f2;
  border-radius: 50%;
  position: absolute;
  top: 24%;
  left: 20%;
  animation: myfirst 5s linear 0s infinite normal;
}
@media (max-width: 1004px) {
  .integrityP1 {
    padding: 1rem 0;
  }
  .integrityP1 .mxfDiv {
    display: block;
  }
  .integrityP1 .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .integrityP1 .conDiv {
    width: auto;
    padding-top: 0.65rem;
    padding-right: 0;
  }
  .integrityP1 .conDiv .title {
    font-size: var(--fs24);
  }
  .integrityP1 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .integrityP2 {
    padding: 0.9rem var(--offset);
    height: 6.5rem;
  }
  .integrityP2 .parallax-bg {
    top: -65%;
    height: 130%;
  }
  .integrityP2 .title {
    font-size: var(--fs24);
    margin-bottom: 0.3rem;
  }
  .integrityP2 .content {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .integrityP3 {
    padding: 1rem 0;
  }
  .integrityP3 .mxfDiv {
    display: block;
  }
  .integrityP3 .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .integrityP3 .conDiv {
    width: auto;
    padding-left: 0;
    padding-top: 0.65rem;
  }
  .integrityP3 .conDiv .title {
    font-size: var(--fs24);
  }
  .integrityP3 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
.contactP1 {
  padding: 1.4rem 0 1.7rem;
}
.contactP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  width: calc((100% - 0.6rem) / 2);
  margin-right: 0.6rem;
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
  overflow: hidden;
  padding: 0.75rem 0.65rem 0.4rem;
  min-height: 3.6rem;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.contactP1 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(90deg, #26a661 0%, #1f807f 100%);
  background-blend-mode: normal, normal;
}
.contactP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.contactP1 .list li .cn {
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
}
.contactP1 .list li .en {
  margin-top: 0.12rem;
  height: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: rgba(105, 115, 128, 0.35);
  position: relative;
  font-family: 'Mont-R';
}
.contactP1 .list li .en::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background-image: linear-gradient(90deg, #26a661 0%, #1f807f 100%);
  background-blend-mode: normal, normal;
}
.contactP1 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.36rem;
  margin-top: 0.3rem;
  color: #4e5763;
  font-weight: 100;
}
.contactP1 .list li .ico {
  position: absolute;
  right: 0.65rem;
  top: 0.75rem;
  z-index: 1;
}
.contactP1 .list li .ico img {
  width: 0.78rem;
}
.contactP2 {
  padding: 1.5rem 0 1.6rem;
  background: url(../images/contactP2.jpg) center no-repeat;
  background-size: cover;
}
.contactP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.contactP2 .zi {
  font-size: var(--fs24);
  text-align: center;
  color: #697380;
  line-height: 0.36rem;
}
.contactP2 .form {
  margin-top: 0.5rem;
}
.contactP2 .form ul {
  margin-right: -0.2rem;
}
.contactP2 .form ul::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .form li {
  float: left;
  width: 50%;
  padding-bottom: 0.2rem;
}
.contactP2 .form li .box {
  margin-right: 0.2rem;
  position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.contactP2 .form li .input1 {
  padding-left: 0.3rem;
  width: 100%;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: rgba(105, 115, 128, 0.6);
}
.contactP2 .form li .input1::-webkit-input-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li .input1:-moz-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li .input1::-moz-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li .input1:-ms-input-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li textarea {
  display: block;
  width: 100%;
  font-size: var(--fs16);
  line-height: 0.32rem;
  height: 2rem;
  padding: 0.12rem 0.3rem;
  font-family: inherit;
  color: rgba(105, 115, 128, 0.6);
}
.contactP2 .form li textarea::-webkit-input-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li textarea:-moz-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li textarea::-moz-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form li textarea:-ms-input-placeholder {
  color: rgba(105, 115, 128, 0.6);
  opacity: 1;
}
.contactP2 .form .li01 {
  width: 100%;
}
.contactP2 .btnDiv {
  width: 1.6rem;
  margin: 0.1rem auto 0;
}
.contactP2 .btnDiv a {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  overflow: hidden;
  font-size: var(--fs16);
  color: #fff;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.9rem 0 1rem;
  }
  .contactP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .contactP1 .list ul {
    display: block;
  }
  .contactP1 .list li {
    width: 100%;
    margin-right: 0;
    border-radius: 0.2rem;
    padding: 0.6rem 0.3rem 0.5rem;
    min-height: 2rem;
    margin-bottom: 0.4rem;
  }
  .contactP1 .list li:last-child {
    margin-bottom: 0;
  }
  .contactP1 .list li::before {
    height: 2px;
  }
  .contactP1 .list li .cn {
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .contactP1 .list li .en {
    height: 0.6rem;
    font-size: var(--fs15);
    line-height: 0.32rem;
  }
  .contactP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP1 .list li .ico {
    right: 0.3rem;
    top: 0.6rem;
  }
  .contactP2 {
    padding: 0.9rem 0;
    height: auto;
  }
  .contactP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .contactP2 .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .contactP2 .form {
    margin-top: 0.7rem;
  }
  .contactP2 .form ul {
    margin-right: 0;
  }
  .contactP2 .form li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .contactP2 .form li .box {
    margin-right: 0;
  }
  .contactP2 .form li .input1 {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs14);
  }
  .contactP2 .form li textarea {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.35rem;
    padding: 0.25rem 0.3rem;
  }
  .contactP2 .btnDiv {
    width: 2.68rem;
  }
  .contactP2 .btnDiv a {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs15);
  }
}
.partner {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 1.8rem;
}
.partner .pageTitle {
  margin-bottom: 0.65rem;
}
.partner .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.partner .list li {
  width: calc((100% - 1.2rem) / 6);
  margin-right: 0.24rem;
  margin-top: 0.24rem;
}
.partner .list li:nth-child(-n+6) {
  margin-top: 0;
}
.partner .list li:nth-child(6n) {
  margin-right: 0;
}
.partner .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.24rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0.1rem 0.22rem rgba(0, 0, 0, 0.1);
}
.partner .list li .limg img {
  max-width: 2.2rem;
  max-height: 0.8rem;
  transition: All 1s ease;
}
.partner .list li .limg:hover img {
  transform: scale(1.1);
}
.ultra-gradient-wrapper {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  font-size: 1vw;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}
.main-shapes-wrapper {
  filter: blur(120px);
  width: 100%;
  height: 100%;
}
.blending-group-wrapper {
  z-index: 1;
  filter: blur(120px);
  mix-blend-mode: overlay;
}
.main-shapes-wrapper div,
.blending-group-wrapper div {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.shape-2 {
  width: 30em;
  height: 30em;
  background-color: #9ec3ee;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  top: -5em;
  right: -10em;
}
.shape-3 {
  width: 30em;
  height: 30em;
  background-color: #9ec3ee;
  border-radius: 999em;
  position: absolute;
  bottom: -5em;
  left: -10em;
  transform: rotate(-28deg);
}
.shape-4 {
  width: 30em;
  height: 30em;
  background-color: #9ec3ee;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  top: -5em;
  left: -10em;
}
.shape-3,
.shape-5 {
  animation: myfirst 10s linear 0s infinite normal;
  -moz-animation: myfirst 10s linear 0s infinite normal;
  -webkit-animation: myfirst 10s linear 0s infinite normal;
  -o-animation: myfirst 10s linear 0s infinite normal;
}
.shape-2,
.shape-4 {
  animation: myfirst2 10s linear 0s infinite normal;
  -moz-animation: myfirst2 10s linear 0s infinite normal;
  -webkit-animation: myfirst2 10s linear 0s infinite normal;
  -o-animation: myfirst2 10s linear 0s infinite normal;
}
@media (max-width: 1004px) {
  .partner {
    padding: 0.9rem 0 1.1rem;
  }
  .partner .pageTitle {
    margin-bottom: 0.65rem;
  }
  .partner .list li {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-top: 0.2rem;
  }
  .partner .list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .partner .list li:nth-child(4),
  .partner .list li:nth-child(5),
  .partner .list li:nth-child(6) {
    margin-top: 0.2rem;
  }
  .partner .list li:nth-child(6n) {
    margin-right: 0.2rem;
  }
  .partner .list li:nth-child(3n) {
    margin-right: 0;
  }
  .partner .list li .limg {
    height: 1.2rem;
    border-radius: 0.24rem;
  }
  .partner .list li .limg img {
    max-width: 1.5rem;
  }
  .main-shapes-wrapper {
    filter: blur(40px);
  }
  .blending-group-wrapper {
    filter: blur(40px);
  }
  .shape-3 {
    width: 50em;
    height: 50em;
    bottom: -5em;
    left: -5em;
  }
  .shape-2 {
    width: 42em;
    height: 42em;
    top: -5em;
    right: -5em;
  }
}
.news {
  padding: 1.5rem 0 1.6rem;
}
.news .pageTitle {
  margin-bottom: 0.7rem;
}
.news .list {
  padding-bottom: 1rem;
}
.news .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.news .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-top: 0.6rem;
}
.news .list li:nth-child(-n+3) {
  margin-top: 0;
}
.news .list li:nth-child(3n) {
  margin-right: 0;
}
.news .list li .imgDiv {
  height: 3.1rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.news .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.24rem;
  font-size: var(--fs22);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #081729;
  transition: All 0.5s ease;
}
.news .list li .time {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #838da2;
  font-family: 'Mont-L';
}
.news .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.news .list li:hover .name {
  color: #26a661;
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0;
  }
  .news .pageTitle {
    margin-bottom: 0.6rem;
  }
  .news .list {
    padding-bottom: 0.7rem;
  }
  .news .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.45rem;
  }
  .news .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .news .list li:nth-child(3) {
    margin-top: 0.45rem;
  }
  .news .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .news .list li:nth-child(2n) {
    margin-right: 0;
  }
  .news .list li .imgDiv {
    height: 2.1rem;
    border-radius: 0.2rem;
  }
  .news .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
}
.download {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 1.8rem;
}
.download .pageTitle {
  margin-bottom: 0.65rem;
}
.download .list {
  padding-bottom: 1rem;
}
.download .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.download .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-top: 0.45rem;
  padding: 0.32rem 0.9rem 0.3rem 0.4rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.12rem;
  min-height: 2.9rem;
  transition: All 0.5s ease;
}
.download .list li:nth-child(-n+3) {
  margin-top: 0;
}
.download .list li:nth-child(3n) {
  margin-right: 0;
}
.download .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs30);
  line-height: var(--lh36);
  height: calc(var(--lh36)*2);
  color: #000;
}
.download .list li .sizes {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0.08rem 0 0.7rem;
  line-height: var(--lh24);
  font-size: var(--fs14);
}
.download .list li .btns dl {
  display: flex;
}
.download .list li .btns dd {
  margin-right: 0.15rem;
}
.download .list li .btns dd a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #000;
  font-weight: 100;
  border-radius: 0.48rem;
  padding: 0 0.2rem;
  min-width: 1rem;
  height: 0.42rem;
  background: #f3f3f3;
}
.download .list li .btns dd a:hover {
  color: #fff;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.download .list li:hover {
  box-shadow: 0 0 0.1rem rgba(16, 39, 62, 0.1);
  background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #a8dbc0, #a2bbd9) border-box;
  border: 1px solid transparent;
}
@media (max-width: 1004px) {
  .download {
    padding: 1rem 0;
  }
  .download .pageTitle {
    margin-bottom: 0.6rem;
  }
  .download .list {
    padding-bottom: 0.7rem;
  }
  .download .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
    padding: 0.4rem 0.3rem;
    border-radius: 0.24rem;
    min-height: 2.9rem;
  }
  .download .list li:nth-child(1) {
    margin-top: 0;
  }
  .download .list li:nth-child(2),
  .download .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .download .list li .name {
    font-size: var(--fs17);
    line-height: var(--lh26);
    max-height: calc(var(--lh26)*2);
    height: auto;
  }
  .download .list li .sizes {
    margin: 0.12rem 0 0.35rem;
    font-size: var(--fs13);
  }
  .download .list li .btns dd {
    margin-right: 0.25rem;
  }
  .download .list li .btns dd a {
    font-size: var(--fs14);
    min-width: 1.8rem;
    height: 0.8rem;
  }
}
.newsBox {
  padding: 1.2rem 0;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .w368 {
  position: sticky;
  top: 1.2rem;
  width: 3.68rem;
}
.newShow {
  width: 10.36rem;
}
.newShow .name {
  margin-bottom: 0;
  font-size: var(--fs36);
  color: #333;
  line-height: 0.48rem;
}
.newShow .time {
  padding: 0.25rem 0 0.4rem;
  border-bottom: #d6d6d6 solid 1px;
  overflow: hidden;
}
.newShow .time li {
  float: left;
  padding-left: 0.28rem;
  margin-right: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #ccc;
  position: relative;
}
.newShow .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.newShow .content {
  padding-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
}
.newShow .imgDiv {
  text-align: center;
}
.newShow .imgDiv img {
  max-width: 100%;
}
.newShow .share {
  margin-top: 0.6rem;
  position: relative;
  padding-left: 0.85rem;
}
.newShow .share em {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.44rem;
}
.newShow .share ul {
  display: flex;
}
.newShow .share li {
  margin-right: 0.1rem;
}
.newShow .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  border: #e5e5e5 solid 1px;
}
.newShow .share li a img {
  width: 0.16rem;
}
.newShow .share li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.newShow .share li a:hover img {
  filter: brightness(0) invert(1);
}
.pageDown {
  padding-top: 0.35rem;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs16);
  padding: 0.3rem 0 0.3rem 1.24rem;
  line-height: 0.3rem;
}
.pageDown li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.pageDown li em {
  position: absolute;
  left: 0;
  top: 0.3rem;
  display: block;
  color: #333;
}
.pageDown li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  color: #333;
}
.pageDown li a:hover::after {
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.pageDown li a:hover em {
  color: #26a661;
}
.sideNews .detail a .imgDiv {
  overflow: hidden;
  border-radius: 0.12rem;
}
.sideNews .detail a .imgDiv img {
  width: 100%;
}
.sideNews .detail a .time {
  margin: 0.25rem 0 0.15rem;
  font-size: var(--fs18);
  color: #d6d6d6;
  line-height: 0.2rem;
  transition: All 0.5s ease;
}
.sideNews .detail a .name {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  transition: All 0.5s ease;
}
.sideNews .detail a:hover .name {
  color: #26a661;
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.42rem;
  color: #333;
}
.sideNews .list {
  margin-top: 0.42rem;
  border-top: #ebebeb solid 1px;
}
.sideNews .list ul {
  margin-bottom: 0;
}
.sideNews .list li {
  font-size: var(--fs14);
  border-bottom: #ebebeb solid 1px;
}
.sideNews .list li a {
  display: block;
  padding: 0.2rem 0;
  color: #333;
  line-height: 0.24rem;
}
.sideNews .list li a:hover {
  color: #26a661;
}
.sideNews .backBtn {
  margin-top: 0.38rem;
}
.sideNews .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs18);
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.sideNews .backBtn a em {
  margin-left: 0.24rem;
  width: 0.27rem;
  height: 0.22rem;
  background: url(../images/nimg27_1.png) no-repeat;
  background-size: 0.27rem;
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.9rem 0;
  }
  .newsBox .w368 {
    position: relative;
    top: 0;
    width: 100%;
  }
  .newShow {
    float: none;
    width: auto;
  }
  .newShow .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .newShow .time {
    padding: 0.25rem 0 0.35rem;
  }
  .newShow .time li {
    padding-left: 0.36rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newShow .time li img {
    margin-top: -0.14rem;
    width: 0.3rem;
  }
  .newShow .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newShow .share {
    padding-left: 0.9rem;
  }
  .newShow .share em {
    font-size: var(--fs14);
    line-height: 0.74rem;
  }
  .newShow .share li {
    margin-right: 0.15rem;
  }
  .newShow .share li a {
    width: 0.74rem;
    height: 0.74rem;
  }
  .newShow .share li a img {
    width: 0.32rem;
  }
  .pageDown {
    padding-top: 0.35rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .pageDown li p {
    height: 0.42rem;
  }
  .sideNews {
    padding-top: 0.6rem;
  }
  .sideNews .detail {
    display: none;
  }
  .sideNews .list {
    margin-top: 0.35rem;
  }
  .sideNews .list ul {
    margin-bottom: 0;
  }
  .sideNews .list li a {
    line-height: 0.42rem;
  }
  .sideNews .backBtn {
    margin-top: 0.5rem;
  }
  .sideNews .backBtn a {
    font-size: var(--fs15);
    width: 2.4rem;
    height: 0.82rem;
  }
}
.certificate {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 1.8rem;
}
.certificate .pageTitle {
  margin-bottom: 0.65rem;
}
.certificate .links {
  text-align: center;
  padding-bottom: 0.8rem;
}
.certificate .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.certificate .links li {
  margin: 0 0.15rem;
}
.certificate .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #26a661;
  min-width: 1.78rem;
  padding: 0 0.2rem;
  height: 0.58rem;
  border-radius: 0.48rem;
  border: #cdd1d6 solid 1px;
}
.certificate .links li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.certificate .links li .on {
  border: none;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.certificate .list {
  padding-bottom: 1rem;
}
.certificate .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.certificate .list li {
  width: calc((100% - 0.6rem) / 4);
  margin-right: 0.2rem;
  margin-top: 0.2rem;
  cursor: pointer;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 0.3rem rgba(23, 86, 160, 0.1);
}
.certificate .list li:nth-child(-n+4) {
  margin-top: 0;
}
.certificate .list li:nth-child(4n) {
  margin-right: 0;
}
.certificate .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.12rem;
  border-bottom: #f7f7f7 solid 1px;
  position: relative;
  overflow: hidden;
}
.certificate .list li .imgDiv img {
  max-width: 3rem;
  max-height: 3.6rem;
  transition: All 1s ease;
}
.certificate .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  font-size: var(--fs16);
  color: #333;
  padding: 0 0.3rem;
  height: 0.75rem;
  overflow: hidden;
  transition: All 0.5s ease;
}
.certificate .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.certificate .list li:hover .name {
  color: #26a661;
}
@media (max-width: 1004px) {
  .certificate {
    padding: 1rem 0;
  }
  .certificate .pageTitle {
    margin-bottom: 0.6rem;
  }
  .certificate .links {
    padding-bottom: 0.8rem;
  }
  .certificate .links ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
  }
  .certificate .links li {
    width: calc((100% - 0.2rem) / 2);
    margin-left: 0;
    margin-right: 0.2rem;
    margin-top: 0.2rem;
  }
  .certificate .links li:nth-child(-n+2) {
    margin-top: 0;
  }
  .certificate .links li:nth-child(2n) {
    margin-right: 0;
  }
  .certificate .links li a {
    font-size: var(--fs15);
    height: 0.8rem;
  }
  .certificate .list {
    padding-bottom: 0.7rem;
  }
  .certificate .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .certificate .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.2rem;
    border-radius: 0.15rem;
  }
  .certificate .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .certificate .list li:nth-child(3),
  .certificate .list li:nth-child(4) {
    margin-top: 0.2rem;
  }
  .certificate .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .certificate .list li:nth-child(2n) {
    margin-right: 0;
  }
  .certificate .list li .imgDiv {
    height: 3.6rem;
  }
  .certificate .list li .imgDiv img {
    max-width: 2.6rem;
    max-height: 3.2rem;
  }
  .certificate .list li .name {
    font-size: var(--fs14);
    padding: 0 0.2rem;
    height: 1rem;
  }
}
.qualityP1 {
  overflow: hidden;
  padding: 1.5rem 0 1.8rem;
}
.qualityP1 .pageTitle {
  margin-bottom: 0.65rem;
}
.fieldPic {
  position: relative;
  z-index: 1;
}
.fieldPic .swiper-container {
  width: 20.4rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
  position: static;
}
.fieldPic .swiper-slide {
  width: auto;
}
.fieldPic .swiper-slide .mxfDiv {
  width: 4.82rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.16rem;
}
.fieldPic .swiper-slide .imgDiv {
  position: relative;
  height: 6.07rem;
}
.fieldPic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.fieldPic .swiper-slide .num {
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  font-size: var(--fs36);
  line-height: var(--lh36);
  color: #fff;
  font-family: 'Poppins-M';
}
.fieldPic .swiper-slide .beforeDiv {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  color: #fff;
  font-size: var(--fs30);
  line-height: var(--lh30);
  z-index: 1;
  transition: All 0.5s ease;
}
.fieldPic .swiper-slide .afterDiv {
  position: absolute;
  width: 100%;
  padding: 0 0.4rem;
  left: 0;
  bottom: 0.4rem;
  z-index: 1;
  color: #fff;
  transition: All 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.fieldPic .swiper-slide .afterDiv .name {
  font-size: var(--fs30);
  line-height: var(--lh30);
  font-weight: bold;
}
.fieldPic .swiper-slide .afterDiv .msg {
  margin-top: 0.24rem;
  font-size: var(--fs16);
  line-height: var(--lh24);
  text-align: justify;
}
.fieldPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
}
.fieldPic .swiper-slide:hover .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.fieldPic .swiper-slide:hover .afterDiv {
  opacity: 1;
  visibility: visible;
}
.fieldPic .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.fieldPic .swiper-pagination {
  position: relative;
  width: calc(100% - 1.8rem) !important;
  height: 2px!important;
  background-color: #e1e1e1;
}
.fieldPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.fieldPic .arrowDiv {
  font-size: 0;
}
.fieldPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: #e9e9e9 solid 1px;
}
.fieldPic .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.fieldPic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.fieldPic .arrowDiv .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  margin-left: -5px;
  margin-top: -9px;
  background: url(../images/nimg10_left.png) center no-repeat;
}
.fieldPic .arrowDiv .prev:hover::after {
  background: url(../images/nimg10_lefton.png) center no-repeat;
}
.fieldPic .arrowDiv .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  margin-left: -5px;
  margin-top: -9px;
  background: url(../images/nimg10_right.png) center no-repeat;
}
.fieldPic .arrowDiv .next:hover::after {
  background: url(../images/nimg10_righton.png) center no-repeat;
}
.qualityP2 {
  background: #f8f9fb;
  padding: 1.5rem 0 1.8rem;
  position: relative;
  overflow: hidden;
}
.qualityP2 .pageTitle {
  margin-bottom: 0.65rem;
}
.qualityP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.qualityP2 .list li {
  position: relative;
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  padding: 0 0.5rem 0 0.65rem;
  background: #fff;
  border-radius: 0.08rem;
  min-height: 1.6rem;
  box-shadow: 0 0 0.1rem rgba(23, 86, 160, 0.1);
  overflow: hidden;
  transition: All 0.5s ease;
}
.qualityP2 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.08rem;
  height: 100%;
  background-image: linear-gradient(180deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.qualityP2 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.qualityP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.qualityP2 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100%;
  font-size: var(--fs30);
  line-height: var(--lh42);
  color: #081729;
}
@media (max-width: 1004px) {
  .qualityP1 {
    padding: 1rem 0;
  }
  .qualityP1 .wrap {
    padding: 0 0 0 var(--offset);
  }
  .qualityP1 .pageTitle {
    padding-right: 0.3rem;
    margin-bottom: 0.6rem;
  }
  .fieldPic .swiper-container {
    width: 100%;
  }
  .fieldPic .swiper-slide .mxfDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .fieldPic .swiper-slide .imgDiv {
    height: 6.8rem;
  }
  .fieldPic .swiper-slide .num {
    left: 0.3rem;
    top: 0.3rem;
    font-size: var(--fs20);
    line-height: var(--lh26);
  }
  .fieldPic .swiper-slide .beforeDiv {
    opacity: 0;
    visibility: hidden;
  }
  .fieldPic .swiper-slide .afterDiv {
    padding: 0 0.3rem;
    bottom: 0.3rem;
    opacity: 1;
    visibility: visible;
  }
  .fieldPic .swiper-slide .afterDiv .name {
    font-size: var(--fs17);
    line-height: var(--lh26);
  }
  .fieldPic .swiper-slide .afterDiv .msg {
    margin-top: 0.2rem;
    font-size: var(--fs13);
    line-height: var(--lh20);
  }
  .fieldPic .bottom {
    padding-right: 0.3rem;
  }
  .fieldPic .swiper-pagination {
    width: calc(100% - 2.36rem) !important;
  }
  .fieldPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .fieldPic .arrowDiv .prev::after {
    background-size: 6px;
  }
  .fieldPic .arrowDiv .prev:hover::after {
    background-size: 6px;
  }
  .fieldPic .arrowDiv .next::after {
    background-size: 6px;
  }
  .fieldPic .arrowDiv .next:hover::after {
    background-size: 6px;
  }
  .qualityP2 {
    padding: 1rem 0;
  }
  .qualityP2 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .qualityP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
    padding: 0 0.3rem 0 0.35rem;
    border-radius: 0.16rem;
  }
  .qualityP2 .list li::before {
    width: 4px;
  }
  .qualityP2 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .qualityP2 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .qualityP2 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .qualityP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .qualityP2 .list li .name {
    font-size: var(--fs17);
    line-height: var(--lh24);
  }
}
.make {
  background: #f8f9fb;
  padding: 1.5rem 0 1.8rem;
  position: relative;
  overflow: hidden;
}
.make .pageTitle {
  margin-bottom: 0.45rem;
}
.make .videobox {
  margin-top: 1.2rem;
  width: 100%;
  height: 6.4rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.12rem;
}
.make .videobox .imgDiv {
  position: relative;
  height: 6.4rem;
}
.make .videobox .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.make .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.make .videobox video {
  max-width: 100%;
  max-height: 6.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.make .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  border: #fff solid 2px;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 50%;
  z-index: 1;
}
.make .videobox.cur {
  background: #000;
}
.make .videobox.cur .imgDiv,
.make .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.make .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.makePic {
  position: relative;
  z-index: 1;
}
.makePic .imgList {
  padding-top: 0.2rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.makePic .swiper-slide {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
}
.makePic .swiper-slide .mxfDiv {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.08);
  padding: 0.65rem 0.6rem 0;
  height: 4.6rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.makePic .swiper-slide .mxfDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
}
.makePic .swiper-slide .mxfDiv:hover::after {
  width: 100%;
}
.makePic .swiper-slide .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: bold;
}
.makePic .swiper-slide .name em {
  color: #081729;
}
.makePic .swiper-slide .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #697380;
  line-height: 0.3rem;
  text-align: justify;
}
.makePic .swiper-slide .ico {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
  transition: All 0.5s ease;
}
.makePic .swiper-slide .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #26a661;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.makePic .swiper-slide .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #26a661;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.makePic .swiper-slide:hover .name em {
  background-image: linear-gradient(left, #2ba865, #1c5ca1);
  background-image: linear-gradient(to right, #2ba865, #1c5ca1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.makePic .swiper-slide:hover .ico {
  opacity: 0;
  visibility: hidden;
}
.makePic .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.makePic .swiper-pagination {
  position: relative;
  width: calc(100% - 1.8rem) !important;
  height: 2px!important;
  background-color: #e1e1e1;
}
.makePic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.makePic .arrowDiv {
  font-size: 0;
}
.makePic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: #e9e9e9 solid 1px;
}
.makePic .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.makePic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.makePic .arrowDiv .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  margin-left: -5px;
  margin-top: -9px;
  background: url(../images/nimg10_left.png) center no-repeat;
}
.makePic .arrowDiv .prev:hover::after {
  background: url(../images/nimg10_lefton.png) center no-repeat;
}
.makePic .arrowDiv .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 18px;
  margin-left: -5px;
  margin-top: -9px;
  background: url(../images/nimg10_right.png) center no-repeat;
}
.makePic .arrowDiv .next:hover::after {
  background: url(../images/nimg10_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .make {
    padding: 1rem 0;
  }
  .make .videobox {
    margin-top: 0.7rem;
    width: 100%;
    height: 3.8rem;
  }
  .make .videobox .imgDiv {
    height: 3.8rem;
  }
  .make .videobox video {
    max-height: 3.8rem;
  }
  .make .videobox .playbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
  }
  .make .videobox .playbox img {
    width: 0.26rem;
  }
  .makePic .swiper-slide {
    width: 100%;
    margin-right: 0;
  }
  .makePic .swiper-slide .mxfDiv {
    padding: 0.5rem 0.3rem;
    height: auto;
    border-radius: 0.24rem;
  }
  .makePic .swiper-slide .mxfDiv::after {
    height: 3px;
  }
  .makePic .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .makePic .swiper-slide .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .makePic .swiper-slide .ico {
    display: none;
  }
  .makePic .swiper-pagination {
    width: calc(100% - 2.36rem) !important;
  }
  .makePic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .makePic .arrowDiv .prev::after {
    background-size: 6px;
  }
  .makePic .arrowDiv .prev:hover::after {
    background-size: 6px;
  }
  .makePic .arrowDiv .next::after {
    background-size: 6px;
  }
  .makePic .arrowDiv .next:hover::after {
    background-size: 6px;
  }
}
.job {
  padding: 1.5rem 0 1.6rem;
}
.job .pageTitle {
  margin-bottom: 0.3rem;
}
.job .msg {
  width: 10.7rem;
  margin: 0 auto 0.9rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #697380;
  text-align: center;
  font-weight: 100;
}
.job .list {
  padding-bottom: 1rem;
}
.job .list ul {
  margin-bottom: 0;
}
.job .list li {
  margin-top: 0.3rem;
}
.job .list li:first-child {
  margin-top: 0;
}
.job .list li .msgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  padding: 0 1rem 0 0.5rem;
  height: 0.9rem;
  background: #f9fafc;
  overflow: hidden;
  cursor: pointer;
}
.job .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 23%;
  padding-right: 0.5rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #081729;
  font-weight: bold;
  height: 0.9rem;
}
.job .list li .inner {
  width: 77%;
}
.job .list li .inner dl {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.job .list li .inner dd {
  font-size: var(--fs16);
  color: #4e5763;
  width: 25%;
}
.job .list li .ico {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background: #fff;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
}
.job .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -1px;
  width: 9px;
  height: 1px;
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -5px;
  width: 1px;
  height: 9px;
  background: #20847c;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.job .list li .hideDiv {
  display: none;
  background: #f9fafc;
  padding-bottom: 0.7rem;
}
.job .list li .conDiv {
  padding: 0.4rem 0.5rem 0.5rem;
  border-top: #edeef1 solid 1px;
}
.job .list li .conDiv .caption {
  font-size: var(--fs16);
  color: #081729;
  font-weight: bold;
  line-height: 0.2rem;
  margin-bottom: 0.2rem;
}
.job .list li .conDiv .content {
  font-size: var(--fs16);
  color: #697380;
  line-height: 0.36rem;
}
.job .list li .btnDiv {
  padding: 0 0.5rem;
}
.job .list li .btnDiv a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 1.65rem;
  height: 0.52rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #26a661;
  padding-left: 0.24rem;
  padding-right: 5px;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
}
.job .list li .btnDiv a span {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  border-radius: 50%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.15rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  width: 0.42rem;
  height: 0.42rem;
  position: relative;
  overflow: hidden;
}
.job .list li .btnDiv a i::before,
.job .list li .btnDiv a i::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background: url(../images/ico2.png) center no-repeat;
  background-size: 0.14rem;
}
.job .list li .btnDiv a i::before {
  left: auto;
  right: 150%;
}
.job .list li .btnDiv a:hover {
  color: #0c46a6;
}
.job .list li .btnDiv a:hover span {
  transform: translate(3px);
}
.job .list li .btnDiv a:hover i::before,
.job .list li .btnDiv a:hover i::after {
  transform: translate(150%);
}
.job .list li.on .ico {
  background-image: linear-gradient(90deg, #2ba865 0%, #1c5ca1 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.job .list li.on .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
@media (max-width: 1004px) {
  .job {
    padding: 1rem 0;
  }
  .job .pageTitle {
    margin-bottom: 0.45rem;
  }
  .job .msg {
    width: auto;
    margin: 0 auto 0.6rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list {
    padding-bottom: 0.7rem;
  }
  .job .list li .msgDiv {
    display: block;
    padding: 0.3rem 1rem 0.3rem 0.3rem;
    height: auto;
  }
  .job .list li .name {
    display: block;
    width: auto;
    padding-right: 0;
    padding-bottom: 0.1rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: auto;
  }
  .job .list li .inner {
    width: auto;
  }
  .job .list li .inner dl {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .job .list li .inner dd {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: 50%;
  }
  .job .list li .ico {
    right: 0.3rem;
  }
  .job .list li .hideDiv {
    padding-bottom: 0.8rem;
  }
  .job .list li .conDiv {
    padding: 0.3rem 0.3rem 0.4rem;
  }
  .job .list li .conDiv .caption {
    line-height: 0.48rem;
  }
  .job .list li .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .job .list li .btnDiv {
    padding: 0 0.3rem;
  }
  .job .list li .btnDiv a {
    width: 2.45rem;
    height: 0.82rem;
    line-height: 0.8rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .job .list li .btnDiv a span {
    width: 0.56rem;
    height: 0.56rem;
  }
}
.proNav {
  position: sticky;
  top: 1rem;
}
.productP1 {
  padding: 1.3rem 0 0.7rem;
  background: #f4f6fa;
}
.productP1 .zi {
  text-align: center;
  padding: 0.2rem 0 1rem;
  font-size: var(--fs18);
  color: #6b727b;
}
.productP1 .imgDiv {
  text-align: center;
}
.productP1 .imgDiv img {
  max-width: 100%;
}
.productP1:first-child {
  background-image: linear-gradient(180deg, #fff 0%, #f4f6fa 100%);
  background-blend-mode: normal, normal;
}
.productP2 {
  padding: 1.2rem 0;
}
.productP2 .title {
  text-align: center;
  font-size: var(--fs36);
  color: #081729;
  line-height: 0.4rem;
  font-weight: bold;
}
.productP2 .list {
  padding: 0.7rem 0 1.2rem;
}
.productP2 .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP2 .list li {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  min-height: 2.52rem;
  border: #eff0f4 solid 2px;
  border-radius: 0.1rem;
  position: relative;
  padding: 0.2rem 0.6rem 0.2rem 1.6rem;
  margin-top: 0.5rem;
  overflow: hidden;
  transition: All 0.5s ease;
}
.productP2 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background-image: linear-gradient(90deg, #26a661 0%, #1756a0 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
}
.productP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.productP2 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.productP2 .list li .ico {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  margin-top: -0.37rem;
  width: 0.74rem;
  height: 0.74rem;
}
.productP2 .list li .ico img {
  max-width: 0.74rem;
  max-height: 0.74rem;
}
.productP2 .list li .name {
  color: #081729;
  font-size: var(--fs26);
  line-height: 0.36rem;
}
.productP2 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #697380;
  font-weight: 100;
}
.productP2 .list li:hover {
  box-shadow: 0 0 0.38rem rgba(0, 0, 0, 0.1);
  border: transparent solid 2px;
  border-top: none;
}
.productP2 .list li:hover::before {
  width: 100%;
}
.productP2 .list2 {
  padding-top: 0.7rem;
}
.productP2 .list2 ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP2 .list2 li {
  width: 16.66%;
  padding: 0 0.2rem;
  margin-top: 0.5rem;
}
.productP2 .list2 li:nth-child(-n+6) {
  margin-top: 0;
}
.productP2 .list2 li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 1.48rem;
  height: 1.48rem;
  border-radius: 50%;
  margin: 0 auto;
}
.productP2 .list2 li .ico::after {
  content: '';
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
  transition: All 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.productP2 .list2 li .ico img {
  position: relative;
  z-index: 1;
  max-width: 0.8rem;
  max-height: 0.8rem;
}
.productP2 .list2 li .name {
  padding-top: 0.25rem;
  text-align: center;
  color: #081729;
  font-size: var(--fs24);
  line-height: 0.3rem;
}
.productP2 .list2 li:hover .ico::after {
  opacity: 1;
  visibility: visible;
  animation: rotate 2s infinite linear;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 1rem 0 0.8rem;
  }
  .productP1 .zi {
    padding: 0.2rem 0 0.6rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .productP2 {
    padding: 0.85rem 0;
  }
  .productP2 .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .productP2 .list {
    padding: 0.6rem 0 0.7rem;
  }
  .productP2 .list li {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: auto;
    margin-right: 0;
    min-height: 2.52rem;
    border: #eff0f4 solid 1px;
    border-radius: 0.16rem;
    padding: 0.2rem 0.3rem 0.2rem 1.65rem;
    margin-top: 0.3rem;
  }
  .productP2 .list li::before {
    height: 2px;
  }
  .productP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .productP2 .list li:nth-child(2),
  .productP2 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .productP2 .list li .ico {
    left: 0.45rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .productP2 .list li .ico img {
    max-width: 0.9rem;
    max-height: 0.9rem;
  }
  .productP2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .productP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP2 .list li:hover {
    border: transparent solid 1px;
  }
  .productP2 .list2 {
    padding-top: 0.6rem;
  }
  .productP2 .list2 li {
    width: 50%;
    padding: 0 0.1rem;
    margin-top: 0.4rem;
  }
  .productP2 .list2 li:nth-child(-n+2) {
    margin-top: 0;
  }
  .productP2 .list2 li:nth-child(3),
  .productP2 .list2 li:nth-child(4),
  .productP2 .list2 li:nth-child(5),
  .productP2 .list2 li:nth-child(6) {
    margin-top: 0.4rem;
  }
  .productP2 .list2 li .ico {
    width: 1.56rem;
    height: 1.56rem;
  }
  .productP2 .list2 li .ico img {
    max-width: 0.78rem;
    max-height: 0.78rem;
  }
  .productP2 .list2 li .name {
    padding-top: 0.3rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
}
.solutionP1 {
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
}
.solutionP1 .leftR {
  position: absolute;
  left: -4.52rem;
  top: 50%;
  margin-top: -3.27rem;
  width: 6.54rem;
  height: 6.54rem;
  overflow: hidden;
}
.solutionP1 .leftR .shapes-wrapper {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/nimg654Bg2.png) no-repeat;
  background-size: 6.54rem;
}
.solutionP1 .mxfDiv {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.solutionP1 .imgDiv {
  order: 1;
  width: 50%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.solutionP1 .imgDiv img {
  width: 100%;
}
.solutionP1 .conDiv {
  width: 5.9rem;
}
.solutionP1 .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.solutionP1 .conDiv .msg {
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #697380;
  font-weight: 100;
}
.solutionP2 {
  position: relative;
  overflow: hidden;
  background: #f8f9fb url(../images/solutionP2.jpg) center bottom no-repeat;
  background-size: 100%;
  padding: 1.5rem 0 1.8rem;
}
.solutionP2 .pageTitle {
  margin-bottom: 0.7rem;
}
.scenePic {
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.scenePic .swiper-container {
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.scenePic .swiper-slide {
  width: auto;
}
.scenePic .swiper-slide .mxfDiv {
  width: 5.4rem;
}
.scenePic .swiper-slide .imgDiv {
  overflow: hidden;
  border-radius: 0.1rem;
  height: 3.6rem;
}
.scenePic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.scenePic .swiper-slide .name {
  margin-top: 0.35rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #081729;
}
.scenePic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.scenePic .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.45rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.scenePic .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.scenePic .swiper-pagination-bullet-active {
  background: #26a661;
}
.advantagePic {
  position: relative;
  z-index: 1;
}
.advantagePic .swiper-container {
  padding: 0.2rem 0;
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.advantagePic .swiper-slide {
  width: auto;
}
.advantagePic .swiper-slide .mxfDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  border-radius: 0.12rem;
  width: 3.9rem;
  height: 1.8rem;
  padding: 0.1rem 0.5rem 0.1rem 1.3rem;
  overflow: hidden;
  transition: All 0.5s ease;
}
.advantagePic .swiper-slide .mxfDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-image: linear-gradient(180deg, #26a462 0%, #17579f 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
}
.advantagePic .swiper-slide .mxfDiv .ico {
  position: absolute;
  left: 0.4rem;
  top: 50%;
  margin-top: -0.37rem;
  width: 0.74rem;
  height: 0.74rem;
}
.advantagePic .swiper-slide .mxfDiv .ico img {
  max-width: 0.74rem;
  max-height: 0.74rem;
}
.advantagePic .swiper-slide .mxfDiv .name {
  font-size: var(--fs22);
  line-height: 0.32rem;
  color: #697380;
  font-weight: 100;
}
.advantagePic .swiper-slide .mxfDiv:hover {
  box-shadow: 0 0 0.2rem rgba(23, 86, 160, 0.1);
}
.advantagePic .swiper-slide .mxfDiv:hover::before {
  width: 0.08rem;
}
.advantagePic .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.45rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.advantagePic .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.advantagePic .swiper-pagination-bullet-active {
  background: #26a661;
}
.solutionP3 {
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
}
.solutionP3 .rightR {
  position: absolute;
  right: -4.52rem;
  top: 50%;
  margin-top: -3.27rem;
  width: 6.54rem;
  height: 6.54rem;
  overflow: hidden;
}
.solutionP3 .rightR .shapes-wrapper {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../images/nimg654Bg2.png) no-repeat;
  background-size: 6.54rem;
}
.solutionP3 .mxfDiv {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.solutionP3 .imgDiv {
  order: 1;
  width: 50%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.solutionP3 .imgDiv img {
  width: 100%;
}
.solutionP3 .conDiv {
  width: 5.9rem;
}
.solutionP3 .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.solutionP3 .conDiv .msg {
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #697380;
  font-weight: 100;
}
.solutionP4 {
  position: relative;
  overflow: hidden;
  background: #f8f9fb url(../images/solutionP2-2.jpg) center bottom no-repeat;
  background-size: 100%;
  padding: 1.5rem 0 1.8rem;
}
.solutionP4 .pageTitle {
  margin-bottom: 0.7rem;
}
.soluNav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.soluNav li {
  padding: 0.15rem 0;
  font-size: var(--fs17);
  line-height: 0.18rem;
}
.soluNav li a {
  position: relative;
  padding-left: 0.46rem;
  color: #4e5763;
}
.soluNav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.28rem;
  height: 1px;
  background: #26a661;
  transition: All 0.5s ease;
}
.soluNav li .aNow {
  padding-left: 0.65rem;
  color: #26a661;
}
.soluNav li .aNow::before {
  width: 0.46rem;
}
@media (max-width: 1004px) {
  .solutionP1 {
    padding: 1rem 0;
  }
  .solutionP1 .mxfDiv {
    display: block;
  }
  .solutionP1 .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .solutionP1 .conDiv {
    padding-top: 0.6rem;
    width: auto;
  }
  .solutionP1 .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .solutionP1 .conDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .solutionP2 {
    padding: 1rem 0 1.2rem;
  }
  .solutionP2 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .scenePic {
    padding-bottom: 0.7rem;
  }
  .scenePic .swiper-container {
    width: 100%;
    overflow: hidden;
  }
  .scenePic .swiper-slide .mxfDiv {
    width: 100%;
  }
  .scenePic .swiper-slide .imgDiv {
    border-radius: 0.2rem;
  }
  .scenePic .swiper-slide .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .scenePic .swiper-pagination {
    display: block;
  }
  .advantagePic .swiper-container {
    padding: 0.2rem 0;
    width: 100%;
  }
  .advantagePic .swiper-slide {
    width: auto;
  }
  .advantagePic .swiper-slide .mxfDiv {
    border-radius: 0.24rem;
    width: 100%;
    height: 2.5rem;
    border: #d6d6d6 solid 1px;
    padding: 0.15rem 0.3rem 0.15rem 1.45rem;
  }
  .advantagePic .swiper-slide .mxfDiv .ico {
    left: 0.3rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .advantagePic .swiper-slide .mxfDiv .ico img {
    max-width: 0.9rem;
    max-height: 0.9rem;
  }
  .advantagePic .swiper-slide .mxfDiv .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .advantagePic .swiper-slide .mxfDiv:hover::before {
    width: 0.1rem;
  }
  .advantagePic .swiper-pagination {
    display: block;
  }
  .solutionP3 {
    padding: 1rem 0;
  }
  .solutionP3 .mxfDiv {
    display: block;
  }
  .solutionP3 .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .solutionP3 .conDiv {
    padding-top: 0.6rem;
    width: auto;
  }
  .solutionP3 .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .solutionP3 .conDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .solutionP4 {
    padding: 1rem 0 1.2rem;
  }
  .solutionP4 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .soluNav {
    display: none;
  }
}
.case {
  position: relative;
  padding-bottom: 1.8rem;
}
.case .mxfDiv {
  padding: 1.5rem 0 0.58rem;
  position: sticky;
  top: 0;
}
.case .item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1;
  will-change: top;
  transform: translateZ(0);
}
.case .item .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 100%;
  min-height: 6rem;
  padding: 0.6rem;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}
.case .item .baozhe .imgDiv {
  width: 7.08rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
.case .item .baozhe .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.case .item .baozhe .imgDiv:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.case .item .baozhe .conDiv {
  width: calc(100% - 8rem);
}
.case .item .baozhe .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #081729;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.case .item .baozhe .conDiv .list li {
  font-size: var(--fs18);
  color: #697380;
  line-height: 0.36rem;
  font-weight: 100;
}
.case .item .baozhe .conDiv .list li em {
  color: #081729;
  font-weight: 400;
}
.case .item .baozhe .conDiv .zi {
  margin: 0.35rem 0 0.3rem;
  color: #081729;
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.case .item .baozhe .conDiv .icolist ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.case .item .baozhe .conDiv .icolist li {
  width: 25%;
}
.case .item .baozhe .conDiv .icolist li .ico {
  position: relative;
  margin: 0 auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: #dfe3ee solid 1px;
}
.case .item .baozhe .conDiv .icolist li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.17rem;
  margin-top: -0.17rem;
  width: 0.35rem;
  transition: All 0.5s ease;
}
.case .item .baozhe .conDiv .icolist li .ico .img1 {
  opacity: 0;
  visibility: hidden;
}
.case .item .baozhe .conDiv .icolist li .wen {
  padding: 0 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  margin-top: 0.2rem;
  text-align: center;
  color: #697380;
}
.case .item .baozhe .conDiv .icolist li:hover .ico {
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #2ba865, #1c5ca1) border-box;
  border: 1px solid transparent;
}
.case .item .baozhe .conDiv .icolist li:hover .ico img {
  opacity: 0;
  visibility: hidden;
}
.case .item .baozhe .conDiv .icolist li:hover .ico .img1 {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1004px) {
  .case {
    padding-bottom: 1rem;
  }
  .case .mxfDiv {
    padding: 0.9rem 0 0.6rem;
    position: relative;
    top: auto;
  }
  .case .item {
    position: relative;
    padding: 0;
    height: auto;
    top: 0!important;
    margin-bottom: 0.3rem;
  }
  .case .item .baozhe {
    display: block;
    min-height: 2rem;
    padding: 0.3rem 0.35rem 0.5rem;
    border-radius: 0.24rem;
  }
  .case .item .baozhe .imgDiv {
    width: auto;
  }
  .case .item .baozhe .conDiv {
    padding-top: 0.6rem;
    width: auto;
  }
  .case .item .baozhe .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .case .item .baozhe .conDiv .list li {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .case .item .baozhe .conDiv .zi {
    margin: 0.35rem 0 0.4rem;
    font-size: var(--fs15);
    line-height: 0.32rem;
  }
  .case .item .baozhe .conDiv .icolist ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .case .item .baozhe .conDiv .icolist li {
    width: 33.33%;
  }
  .case .item .baozhe .conDiv .icolist li .ico {
    width: 1rem;
    height: 1rem;
  }
  .case .item .baozhe .conDiv .icolist li .ico img {
    margin-left: -0.23rem;
    margin-top: -0.23rem;
    width: 0.46rem;
  }
  .case .item .baozhe .conDiv .icolist li .wen {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.touDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 0.5rem;
  height: 1rem;
  z-index: 5;
  transition: All 1s ease;
}
.touDiv .headDiv-logo {
  z-index: 1;
}
.touDiv .headDiv-logo a {
  position: relative;
  display: block;
  width: 1.47rem;
  height: 0.62rem;
}
.touDiv .headDiv-logo img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.47rem;
  transition: All 0.5s ease;
}
.weiDiv {
  background: #f5f5f5;
  padding: 0.8rem 0 0.9rem;
}
.weiDiv .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.weiDiv .footDiv-logo img {
  width: 1.22rem;
}
.weiDiv .msgList {
  padding-top: 0.25rem;
}
.weiDiv .msgList ul {
  margin-bottom: 0;
}
.weiDiv .msgList ul::after {
  content: '';
  display: block;
  clear: both;
}
.weiDiv .msgList li {
  float: left;
  position: relative;
  margin-right: 0.3rem;
  line-height: 0.3rem;
  font-size: var(--fs16);
  color: #666;
}
.weiDiv .msgList li:last-child {
  width: 100%;
}
.weiDiv .copyright {
  clear: both;
  float: right;
  margin-top: 0.24rem;
  font-family: 'Poppins-R';
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  text-align: right;
}
.weiDiv .copyright a {
  padding-left: 5px;
  color: #666;
}
.weiDiv .copyright a:hover {
  color: #26a661;
}
.weiDiv .share {
  float: right;
}
.weiDiv .share ul::after {
  content: '';
  display: block;
  clear: both;
}
.weiDiv .share li {
  float: left;
  margin-left: 0.15rem;
  position: relative;
}
.weiDiv .share li a {
  display: block;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background: #dedede;
  border-radius: 50%;
}
.weiDiv .share li a img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.1rem;
  margin-top: -0.1rem;
  width: 0.2rem;
  transition: All 0.5s ease;
}
.weiDiv .share li a:hover {
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.weiDiv .share li a:hover img {
  filter: brightness(0) invert(1);
}
.weiDiv .share li .ewmLayer {
  position: absolute;
  text-align: center;
  left: 50%;
  margin-left: -0.8rem;
  bottom: 0.35rem;
  width: 1.6rem;
  padding-bottom: 5px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  z-index: 5;
  transition: All 0.5s ease;
}
.weiDiv .share li .ewmLayer::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}
.weiDiv .share li .ewmLayer .imgDiv {
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}
.weiDiv .share li .ewmLayer .imgDiv img {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  width: 1.4rem;
}
.weiDiv .share li:hover .ewmLayer {
  opacity: 1;
  filter: alpha(opacity=1);
  visibility: visible;
  bottom: 0.45rem;
}
@media (max-width: 1004px) {
  .touDiv {
    padding: 0 1.2rem 0 var(--offset);
    height: 1.2rem;
  }
  .touDiv .headDiv-logo a {
    width: 1.66rem;
    height: 0.7rem;
  }
  .touDiv .headDiv-logo img {
    width: 1.66rem;
  }
  .weiDiv {
    padding: 0.8rem 0 0.6rem;
  }
  .weiDiv .wrap {
    display: block;
  }
  .weiDiv .footDiv-logo img {
    width: 1.86rem;
  }
  .weiDiv .msgList li {
    float: none;
    margin-right: 0;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .weiDiv .rightDiv {
    padding-top: 0.5rem;
  }
  .weiDiv .copyright {
    float: none;
    margin-top: 0;
    font-size: var(--fs13);
    line-height: 0.48rem;
    text-align: left;
  }
  .weiDiv .copyright a {
    padding-left: 0;
    padding-right: 5px;
  }
  .weiDiv .share {
    float: none;
    padding-bottom: 0.4rem;
  }
  .weiDiv .share ul {
    display: flex;
  }
  .weiDiv .share li {
    float: none;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .weiDiv .share li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 0.86rem;
    height: 0.86rem;
  }
  .weiDiv .share li a img {
    margin-left: -0.16rem;
    margin-top: -0.16rem;
    width: 0.32rem;
  }
  .weiDiv .share li .ewmLayer {
    left: 0;
    margin-left: 0;
    bottom: 0.9rem;
    width: 2.2rem;
  }
  .weiDiv .share li .ewmLayer::after {
    left: 0.3rem;
    margin-left: 0;
  }
  .weiDiv .share li .ewmLayer .imgDiv {
    padding: 0.2rem;
  }
  .weiDiv .share li .ewmLayer .imgDiv img {
    width: 1.8rem;
  }
  .weiDiv .share li:hover .ewmLayer {
    bottom: 1rem;
  }
}
.guidepageP1 {
  padding: 1.4rem 0;
  overflow: hidden;
}
.guidepageP1 .conDiv {
  width: 54.6875%;
}
.guidepageP1 .conDiv .year {
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-family: 'Poppins-SB';
}
.guidepageP1 .conDiv .year em {
  background-image: linear-gradient(left, #26a661, #1756a0);
  background-image: linear-gradient(to right, #26a661, #1756a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.guidepageP1 .conDiv .zi {
  font-size: var(--fs18);
  color: #999;
  line-height: 0.32rem;
}
.guidepageP1 .conDiv .content {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  text-align: justify;
  color: #333;
}
.guidepageP1 .imgDiv {
  width: 33.33%;
  overflow: hidden;
  border-radius: 0.12rem;
}
.guidepageP1 .imgDiv img {
  width: 100%;
}
.guidepageP2 {
  padding: 1.3rem 0;
  background: url(../images/guidepageP2.jpg) center no-repeat;
  background-size: cover;
}
.guidepageP2 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.5rem;
}
.guidepageP2 .leftScroll .list li,
.guidepageP2 .rightScroll .list li {
  float: left;
  padding: 0.12rem 0;
  cursor: pointer;
}
.guidepageP2 .leftScroll .list li .box,
.guidepageP2 .rightScroll .list li .box {
  margin: 0 0.12rem;
  position: relative;
}
.guidepageP2 .leftScroll .list li .box .limg,
.guidepageP2 .rightScroll .list li .box .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 1.22rem;
  width: 2.36rem;
  border-radius: 0.12rem;
  transition: All 0.5s ease;
}
.guidepageP2 .leftScroll .list li .box .limg img,
.guidepageP2 .rightScroll .list li .box .limg img {
  max-width: 1.8rem;
  max-height: 0.7rem;
}
.guidepageP2 .leftScroll .list li .box:hover .limg,
.guidepageP2 .rightScroll .list li .box:hover .limg {
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.15);
}
.tempWrap {
  width: 100%!important;
}
.guidepageP3 {
  position: relative;
  overflow: hidden;
  height: 8rem;
}
.guidepageP3 .parallax-bg {
  position: absolute;
  top: -65%;
  left: 0;
  width: 100%;
  height: 110%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.guidepageP3 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.guidepageP3 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.guidepageP3 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #fff;
}
.guidepageP4 {
  padding: 1.6rem 0 3.9rem;
  background: url(../images/guidepageP4.jpg) center bottom no-repeat;
  background-size: 100%;
}
.guidepageP4 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  text-align: center;
  color: #000;
  margin-bottom: 1.4rem;
}
.guidepageP4 .lunbo {
  position: relative;
}
.guidepageP4 .lunbo ul {
  width: auto;
  display: block;
  margin-right: -0.6rem;
}
.guidepageP4 .lunbo ul::after {
  content: '';
  display: block;
  clear: both;
}
.guidepageP4 .lunbo li {
  float: left;
  width: 33.33%;
}
.guidepageP4 .lunbo li .box {
  margin-right: 0.6rem;
  position: relative;
  top: 0;
  height: 4.5rem;
  background: #fff;
  padding: 0.6rem 0.6rem 0;
  overflow: hidden;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.3rem rgba(102, 102, 102, 0.2);
  transition: All 0.5s ease;
}
.guidepageP4 .lunbo li .box:hover {
  top: -0.6rem;
}
.guidepageP4 .lunbo li .ico {
  height: 1.5rem;
}
.guidepageP4 .lunbo li .ico img {
  width: 0.72rem;
}
.guidepageP4 .lunbo li .name {
  font-weight: bold;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #000;
}
.guidepageP4 .lunbo li .content {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  font-weight: 100;
}
.guidepageP4 .lunbo .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.6rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.guidepageP4 .lunbo .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.guidepageP4 .lunbo .swiper-pagination-bullet-active {
  background: #26a661;
}
.guidepageP5 {
  padding: 1.4rem 0;
}
.guidepageP5 .toptop {
  margin-bottom: 1.2rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.guidepageP5 .toptop .imgDiv {
  order: 1;
  width: 9.12rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.guidepageP5 .toptop .imgDiv img {
  width: 100%;
}
.guidepageP5 .toptop .conDiv {
  width: calc(100% - 10.62rem);
}
.guidepageP5 .toptop .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.guidepageP5 .toptop .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
  font-weight: 100;
}
.guidepageP5 .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.guidepageP5 .botbot .imgDiv {
  width: 7.26rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.guidepageP5 .botbot .imgDiv img {
  width: 100%;
}
.guidepageP5 .botbot .conDiv {
  width: calc(100% - 8.46rem);
}
.guidepageP5 .botbot .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.guidepageP5 .botbot .list li {
  padding: 0.25rem 0;
  border-bottom: #e7e7e7 solid 1px;
}
.guidepageP5 .botbot .list li .msgDiv {
  padding-left: 0.4rem;
  position: relative;
  cursor: pointer;
}
.guidepageP5 .botbot .list li .msgDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.14rem;
  height: 0.25rem;
  background: url(../images/ico3.png) no-repeat;
  background-size: 0.14rem;
  transition: All 0.5s ease;
}
.guidepageP5 .botbot .list li .zi {
  color: #333;
  line-height: 0.5rem;
  font-size: var(--fs30);
}
.guidepageP5 .botbot .list li .box {
  display: none;
  padding-top: 0.1rem;
}
.guidepageP5 .botbot .list li .msgDiv.aNow::before {
  transform: rotate(90deg);
}
.guidepageP5 .botbot .list li .msgDiv.aNow .zi {
  color: #26a661;
}
.guidepageP5 .botbot .list li .content {
  padding-left: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.guidepageP6 {
  padding-bottom: 5px;
}
.guidepageP6 .list ul {
  gap: 5px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  overflow: hidden;
}
.guidepageP6 .list li {
  position: relative;
  width: 50%;
  height: 7rem;
  overflow: hidden;
  background-size: 10.8rem;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.guidepageP6 .list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.guidepageP6 .list li:hover {
  width: 60%;
}
@media (max-width: 1004px) {
  .guidepageP1 {
    padding: 1rem 0;
  }
  .guidepageP1 .conDiv {
    width: auto;
  }
  .guidepageP1 .conDiv .year {
    font-size: var(--fs30);
    line-height: 0.86rem;
  }
  .guidepageP1 .conDiv .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .guidepageP1 .conDiv .content {
    margin-top: 0.4rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .guidepageP1 .imgDiv {
    margin-top: 0.6rem;
    width: auto;
    border-radius: 0.24rem;
  }
  .guidepageP2 {
    padding: 1rem 0;
  }
  .guidepageP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .guidepageP2 .leftScroll .list li .box .limg,
  .guidepageP2 .rightScroll .list li .box .limg {
    height: 1.2rem;
    width: 2.4rem;
  }
  .guidepageP2 .leftScroll .list li .box .limg img,
  .guidepageP2 .rightScroll .list li .box .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
  .guidepageP2 .leftScroll .list li .box .border-svg,
  .guidepageP2 .rightScroll .list li .box .border-svg {
    display: none;
  }
  .guidepageP3 {
    height: 7rem;
  }
  .guidepageP3 .parallax-bg {
    top: -55%;
    height: 130%;
    /* 比容器高，便于移动 */
  }
  .guidepageP3 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .guidepageP3 .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .guidepageP4 {
    padding: 1rem 0 1.2rem;
    overflow: hidden;
  }
  .guidepageP4 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .guidepageP4 .lunbo ul {
    width: 100%;
    display: flex;
    margin-right: 0;
  }
  .guidepageP4 .lunbo li {
    float: none;
    width: 100%;
  }
  .guidepageP4 .lunbo li .box {
    margin-right: 0;
    height: 4.8rem;
    padding: 0.6rem 0.3rem 0;
    border-radius: 0.2rem;
  }
  .guidepageP4 .lunbo li .box:hover {
    top: 0;
  }
  .guidepageP4 .lunbo li .ico {
    height: 1.25rem;
  }
  .guidepageP4 .lunbo li .ico img {
    width: 0.86rem;
  }
  .guidepageP4 .lunbo li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .guidepageP4 .lunbo li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .guidepageP4 .lunbo .swiper-pagination {
    display: block;
  }
  .guidepageP5 {
    padding: 1rem 0;
  }
  .guidepageP5 .toptop {
    margin-bottom: 0.6rem;
    display: block;
  }
  .guidepageP5 .toptop .imgDiv {
    width: auto;
    border-radius: 0.2rem;
  }
  .guidepageP5 .toptop .conDiv {
    width: auto;
    padding-top: 0.6rem;
  }
  .guidepageP5 .toptop .conDiv .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .guidepageP5 .toptop .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .guidepageP5 .botbot {
    display: block;
  }
  .guidepageP5 .botbot .imgDiv {
    width: auto;
    border-radius: 0.2rem;
  }
  .guidepageP5 .botbot .conDiv {
    width: auto;
    padding-top: 0.6rem;
  }
  .guidepageP5 .botbot .conDiv .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .guidepageP5 .botbot .list li {
    padding: 0.2rem 0;
  }
  .guidepageP5 .botbot .list li .zi {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .guidepageP5 .botbot .list li .box {
    padding-top: 0.2rem;
  }
  .guidepageP5 .botbot .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .guidepageP6 .list ul {
    height: 3.2rem;
  }
  .guidepageP6 .list li {
    height: 3.2rem;
    background-size: 4.5rem;
  }
}
.aboutP1 {
  padding: 1.4rem 0 2rem;
  overflow: hidden;
}
.aboutP1 .titleDiv {
  padding: 0.45rem 0 0.2rem;
  position: relative;
}
.aboutP1 .titleDiv .cn {
  margin: 0;
  letter-spacing: 3px;
  color: #081729;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.aboutP1 .titleDiv .en {
  position: absolute;
  left: 0;
  top: 0;
}
.aboutP1 .titleDiv .en img {
  height: 1.16rem;
}
.aboutP1 .leftDiv {
  width: 9.6rem;
}
.aboutP1 .leftDiv .content {
  padding-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: justify;
  color: #697380;
  font-weight: 100;
}
.aboutP1 .leftDiv .imgDiv {
  margin-top: 1.1rem;
}
.aboutP1 .leftDiv .imgDiv img {
  width: 100%;
}
.aboutP1 .rightDiv {
  width: 4.2rem;
  padding-top: 0.4rem;
}
.aboutP1 .numList {
  border-top: rgba(0, 0, 0, 0.08) solid 1px;
}
.aboutP1 .numList li {
  padding: 0.35rem 0;
  border-bottom: rgba(0, 0, 0, 0.08) solid 1px;
  position: relative;
}
.aboutP1 .numList li .ico {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.35rem;
}
.aboutP1 .numList li .ico img {
  width: 0.7rem;
}
.aboutP1 .numList li .pj {
  height: 0.85rem;
}
.aboutP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .baozhe {
  display: inline-block;
  background-image: linear-gradient(left, #26a661, #1756a0);
  background-image: linear-gradient(to right, #26a661, #1756a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutP1 .numList li em {
  font-family: 'Poppins-M';
  font-size: var(--fs60);
  line-height: 0.56rem;
}
.aboutP1 .numList li p {
  padding-left: 0.1rem;
  font-size: var(--fs18);
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .wen {
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.aboutP2 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  height: 9.6rem;
  background: url(../images/aboutP2.jpg) center no-repeat;
  background-size: cover;
  /* 左侧年份导航样式 */
  /* 右侧内容区域样式 */
}
.aboutP2 .status-indicator,
.aboutP2 .display-info,
.aboutP2 .display-count {
  display: none;
}
.aboutP2 .swiper-container {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 7.5rem;
}
.aboutP2 .swiper-container::after {
  content: "";
  width: 5.43rem;
  height: 5.43rem;
  position: absolute;
  left: 1.8rem;
  top: 50%;
  margin-top: -2.72rem;
  z-index: 0;
  background: url(../images/nimg543Bg.png) no-repeat center center;
  background-size: cover;
  animation: rotate 10s linear infinite;
}
.aboutP2 .years-swiper {
  width: 6.1rem;
  position: relative;
  padding-left: 3rem;
}
.aboutP2 .years-swiper .fixnum {
  position: absolute;
  right: 2.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  line-height: 2.6rem;
  font-family: "Din-SB";
  font-weight: 700;
  color: #fff;
}
.aboutP2 .year-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  line-height: 2.6rem;
  font-family: "Din-SB";
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(204, 204, 204, 0.1);
  background-color: transparent;
}
.aboutP2 .year-slide:hover {
  color: rgba(204, 204, 204, 0.3);
}
.aboutP2 .year-slide.active {
  background-image: linear-gradient(left, #19e075, #26a661);
  background-image: linear-gradient(to right, #19e075, #26a661);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutP2 .content-swiper {
  width: 6.3rem;
  min-height: 7.5rem;
  overflow: hidden;
}
.aboutP2 .content-slide {
  position: relative;
  height: auto;
  padding: 0.28rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.aboutP2 .content-slide::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.aboutP2 .content-title {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  margin-bottom: 0;
}
.aboutP2 .content-text {
  line-height: 0.32rem;
  font-size: var(--fs18);
  color: #fff;
}
.aboutP3 {
  position: relative;
  overflow: hidden;
  padding: 1.8rem 0;
}
.aboutP3::before {
  content: '';
  position: absolute;
  left: -1rem;
  bottom: -4rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 1.5rem 1rem rgba(23, 86, 160, 0.08);
}
.aboutP3 .pageTitle {
  margin-bottom: 0.3rem;
}
.aboutP3 .zi {
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #697380;
  font-weight: 100;
}
.aboutP3 .main-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 0.85rem;
}
.aboutP3 .main-cont .cont-lump {
  position: relative;
  width: 2.8rem;
  height: auto;
  padding: 0.15rem 0;
}
.aboutP3 .main-cont .cont-lump .lump-shu {
  position: absolute;
  top: 0;
  left: 0.06rem;
  width: 2px;
  height: 100%;
  background: #f2f2f2;
}
.aboutP3 .main-cont .cont-lump .lump-shu::before {
  content: '';
  position: absolute;
  bottom: -0.14rem;
  left: 50%;
  width: 0.14rem;
  height: 0.14rem;
  margin-left: -0.07rem;
  border: solid 2px #e5e5e5;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
.aboutP3 .main-cont .cont-lump .lump-shu::after {
  content: '';
  position: absolute;
  top: -0.14rem;
  left: 50%;
  width: 0.14rem;
  height: 0.14rem;
  margin-left: -0.07rem;
  border: solid 2px #e5e5e5;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
.aboutP3 .main-cont .cont-lump .lump-swiper {
  position: relative;
  width: 100%;
  height: 3.3rem;
  z-index: 9;
  overflow: hidden;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide {
  width: 100%;
  height: 0.55rem;
  line-height: 0.55rem;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-left: 0.04rem;
  cursor: pointer;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box .box-drop {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e5e5e5;
  transition: all 0.5s;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box .box-title {
  padding-left: 0.2rem;
  font-size: var(--fs18);
  color: #4e5763;
  transition: all 0.5s;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box:hover .box-drop {
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box:hover .box-title {
  color: #26a661;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide-on .slide-box .box-drop {
  background-image: linear-gradient(90deg, #26a661 0%, #17579f 100%);
  background-blend-mode: normal, normal;
}
.aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide-on .slide-box .box-title {
  color: #26a661;
}
.aboutP3 .main-cont .cont-box {
  position: relative;
  width: 12.2rem;
  height: auto;
}
.aboutP3 .main-cont .cont-box .box-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.aboutP3 .main-cont .cont-box .box-item .item-pic {
  position: relative;
  width: 5.82rem;
  height: 5.82rem;
  opacity: 0;
  transform: translateX(-0.3rem);
  -o-transform: translateX(-0.3rem);
  -moz-transform: translateX(-0.3rem);
  -webkit-transform: translateX(-0.3rem);
}
.aboutP3 .main-cont .cont-box .box-item .item-pic::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.2rem;
  height: 6.24rem;
  margin: -3.05rem 0 0 -3rem;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1756a0, #26a661) border-box;
  border: 1px solid transparent;
  opacity: 0.3;
  border-radius: 50%;
  animation: load 5s linear infinite;
}
.aboutP3 .main-cont .cont-box .box-item .item-pic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.23rem;
  height: 6.2rem;
  margin: -3.12rem 0 0 -3.115rem;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #1756a0, #26a661) border-box;
  border: 1px solid transparent;
  opacity: 0.3;
  border-radius: 50%;
  animation: load 4s linear infinite;
}
.aboutP3 .main-cont .cont-box .box-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.aboutP3 .main-cont .cont-box .box-item .item-cent {
  width: 5.32rem;
  height: auto;
  opacity: 0;
  transform: translateX(0.3rem);
  -o-transform: translateX(0.3rem);
  -moz-transform: translateX(0.3rem);
  -webkit-transform: translateX(0.3rem);
}
.aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  border-bottom: solid 1px #ebebeb;
}
.aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top em {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  font-family: 'Mont-B';
  font-size: 0.72rem;
  line-height: 0.64rem;
  background-image: linear-gradient(left, #26a661, #1756a0);
  background-image: linear-gradient(to right, #26a661, #1756a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top .top-title {
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-weight: bold;
  color: #081729;
}
.aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top .top-English {
  margin-top: 0.1rem;
  font-family: 'Poppins-L';
  font-size: var(--fs18);
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.6);
}
.aboutP3 .main-cont .cont-box .box-item .item-cent .cent-lump {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  font-size: var(--fs16);
  font-weight: 100;
  line-height: 0.32rem;
  color: #697380;
}
.aboutP3 .main-cont .cont-box .box-item-on {
  position: relative;
}
.aboutP3 .main-cont .cont-box .box-item-on .item-pic,
.aboutP3 .main-cont .cont-box .box-item-on .item-cent {
  opacity: 1;
  transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}
.aboutP4 {
  padding: 1.5rem 0 1.8rem;
  background: url(../images/aboutP4.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP4 .pageTitle {
  margin-bottom: 0.7rem;
}
.aboutP4 .list {
  margin-right: -0.24rem;
}
.aboutP4 .list ul {
  display: flex;
  width: auto;
}
.aboutP4 .list li {
  flex: 1 1 33.33%;
  height: 5.2rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.aboutP4 .list li .box {
  margin-right: 0.24rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.12rem;
  border: rgba(255, 255, 255, 0.8) solid 2px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.aboutP4 .list li .bg {
  opacity: 0;
  visibility: hidden;
  position: relative;
  height: 5.2rem;
  background: center no-repeat;
  background-size: cover;
  transition: All 0.5s ease;
}
.aboutP4 .list li .bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 26, 52, 0.3);
  transition: All 0.5s ease;
}
.aboutP4 .list li .beforeDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0 0.4rem;
  z-index: 1;
  transition: All 0.5s ease;
}
.aboutP4 .list li .beforeDiv .ico {
  margin-bottom: 1rem;
}
.aboutP4 .list li .beforeDiv .ico img {
  width: 0.58rem;
}
.aboutP4 .list li .beforeDiv .cn {
  font-size: var(--fs30);
  font-weight: bold;
  line-height: 0.4rem;
  color: #333;
}
.aboutP4 .list li .beforeDiv .en {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: rgba(105, 115, 128, 0.6);
  text-transform: uppercase;
}
.aboutP4 .list li .afterDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 0.8rem;
  left: 0;
  top: 0;
  z-index: 1;
  color: #fff;
  transition: All 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.aboutP4 .list li .afterDiv .ico {
  margin-bottom: 1rem;
}
.aboutP4 .list li .afterDiv .ico img {
  width: 0.58rem;
  filter: brightness(0) invert(1);
}
.aboutP4 .list li .afterDiv .cn {
  font-size: var(--fs30);
  font-weight: bold;
  line-height: 0.4rem;
}
.aboutP4 .list li .afterDiv .en {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.aboutP4 .list li .afterDiv .msg {
  margin-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.aboutP4 .list li.on {
  flex: 0 0 47%;
}
.aboutP4 .list li.on .box {
  border: transparent solid 2px;
}
.aboutP4 .list li.on .bg {
  opacity: 1;
  visibility: visible;
}
.aboutP4 .list li.on .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.aboutP4 .list li.on .afterDiv {
  opacity: 1;
  visibility: visible;
}
.aboutP4 .swiper-pagination {
  display: none;
  bottom: 0;
  position: relative;
  padding-top: 0.45rem;
}
.aboutP4 .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: none;
  margin-left: 5px!important;
  margin-right: 5px!important;
  border: #26a661 solid 1px;
}
.aboutP4 .swiper-pagination-bullet-active {
  background: #26a661;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 1rem 0 1.2rem;
  }
  .aboutP1 .titleDiv {
    padding: 0.45rem 0 0.2rem;
  }
  .aboutP1 .titleDiv .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP1 .titleDiv .en img {
    height: 0.76rem;
  }
  .aboutP1 .leftDiv {
    float: none;
    width: auto;
  }
  .aboutP1 .leftDiv .content {
    padding-top: 0.25rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .aboutP1 .leftDiv .imgDiv {
    margin-top: 0.7rem;
  }
  .aboutP1 .rightDiv {
    float: none;
    width: auto;
    padding-top: 0.65rem;
  }
  .aboutP1 .numList {
    border-top: rgba(0, 0, 0, 0.08) solid 1px;
  }
  .aboutP1 .numList li {
    padding: 0.3rem 0 0.3rem 1.2rem;
  }
  .aboutP1 .numList li .ico {
    right: auto;
    left: 0;
    top: 0.3rem;
    margin-top: 0;
  }
  .aboutP1 .numList li .ico img {
    width: 0.76rem;
  }
  .aboutP1 .numList li .pj {
    height: 0.75rem;
  }
  .aboutP1 .numList li em {
    font-size: var(--fs32);
    line-height: 0.6rem;
  }
  .aboutP1 .numList li p {
    font-size: var(--fs13);
    height: 0.6rem;
  }
  .aboutP1 .numList li .wen {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .aboutP2 {
    height: 80vh;
    background: url(../images/aboutP2.jpg) center no-repeat;
    background-size: cover;
    /* 左侧年份导航样式 */
    /* 右侧内容区域样式 */
  }
  .aboutP2 .status-indicator,
  .aboutP2 .display-info,
  .aboutP2 .display-count {
    display: none;
  }
  .aboutP2 .swiper-container {
    height: 65vh;
  }
  .aboutP2 .swiper-container::after {
    display: none;
  }
  .aboutP2 .years-swiper {
    width: 20%;
    padding-left: 0.65rem;
  }
  .aboutP2 .years-swiper .fixnum {
    right: 55%;
    font-size: var(--fs30);
    line-height: 0.48rem;
  }
  .aboutP2 .year-slide {
    justify-content: left;
    font-size: var(--fs30);
    line-height: 0.48rem;
  }
  .aboutP2 .content-swiper {
    width: 70%;
    min-height: 65vh;
  }
  .aboutP2 .content-slide {
    padding: 0.18rem 0;
  }
  .aboutP2 .content-title {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .aboutP2 .content-text {
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .aboutP3 {
    padding: 1.2rem 0;
  }
  .aboutP3::before {
    content: '';
    position: absolute;
    left: -1rem;
    bottom: -4rem;
    width: 5.9rem;
    height: 5.9rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 1.5rem 1rem rgba(23, 86, 160, 0.08);
  }
  .aboutP3 .pageTitle {
    margin-bottom: 0.45rem;
  }
  .aboutP3 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .main-cont {
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }
  .aboutP3 .main-cont .cont-lump {
    width: 100%;
    padding: 0.3rem 0;
  }
  .aboutP3 .main-cont .cont-lump .lump-shu {
    display: none;
  }
  .aboutP3 .main-cont .cont-lump .lump-swiper {
    height: auto;
  }
  .aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide {
    width: 33.33%;
    height: auto;
    line-height: 0.48rem;
  }
  .aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box {
    flex-wrap: wrap;
    padding-left: 0;
  }
  .aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box .box-drop {
    display: none;
  }
  .aboutP3 .main-cont .cont-lump .lump-swiper .swiper-slide .slide-box .box-title {
    width: 100%;
    padding-left: 0;
    font-size: var(--fs14);
    text-align: center;
  }
  .aboutP3 .main-cont .cont-box {
    width: 100%;
    margin-top: 0.3rem;
  }
  .aboutP3 .main-cont .cont-box .box-item {
    flex-wrap: wrap;
  }
  .aboutP3 .main-cont .cont-box .box-item .item-pic {
    margin: 0 auto;
    transform: translateY(0.3rem);
    -o-transform: translateY(0.3rem);
    -moz-transform: translateY(0.3rem);
    -webkit-transform: translateY(0.3rem);
  }
  .aboutP3 .main-cont .cont-box .box-item .item-cent {
    margin-top: 0.5rem;
    width: 100%;
    height: auto;
    transform: translateY(0.3rem);
    -o-transform: translateY(0.3rem);
    -moz-transform: translateY(0.3rem);
    -webkit-transform: translateY(0.3rem);
  }
  .aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top .top-title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .aboutP3 .main-cont .cont-box .box-item .item-cent .cent-top .top-English {
    margin-top: 0.15rem;
    font-size: var(--fs15);
  }
  .aboutP3 .main-cont .cont-box .box-item .item-cent .cent-lump {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .main-cont .cont-box .box-item-on .item-pic,
  .aboutP3 .main-cont .cont-box .box-item-on .item-cent {
    transform: translateY(0);
    -o-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .aboutP4 {
    padding: 1rem 0 1.2rem;
  }
  .aboutP4 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .aboutP4 .list {
    margin-right: 0;
    overflow: hidden;
  }
  .aboutP4 .list ul {
    width: 100%;
  }
  .aboutP4 .list li {
    flex: 0 0 100%;
  }
  .aboutP4 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
    border: #fff solid 1px;
  }
  .aboutP4 .list li .bg {
    opacity: 1;
    visibility: visible;
  }
  .aboutP4 .list li .beforeDiv {
    display: none;
  }
  .aboutP4 .list li .afterDiv {
    padding: 0 0.4rem;
    opacity: 1;
    visibility: visible;
  }
  .aboutP4 .list li .afterDiv .ico {
    margin-bottom: 1rem;
  }
  .aboutP4 .list li .afterDiv .ico img {
    width: 0.58rem;
    filter: brightness(0) invert(1);
  }
  .aboutP4 .list li .afterDiv .cn {
    font-size: var(--fs30);
    font-weight: bold;
    line-height: 0.4rem;
  }
  .aboutP4 .list li .afterDiv .en {
    font-size: var(--fs24);
    line-height: 0.36rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
  }
  .aboutP4 .list li .afterDiv .msg {
    margin-top: 0.35rem;
    font-size: var(--fs16);
    line-height: 0.3rem;
  }
  .aboutP4 .list li.on {
    flex: 0 0 100%;
  }
  .aboutP4 .list li.on .box {
    border: transparent solid 1px;
  }
  .aboutP4 .swiper-pagination {
    display: block;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
