.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.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);
  }
}
.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);
  }
}
.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;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs24);
  line-height: 0.42rem;
  font-family: 'Mont-EL';
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
  letter-spacing: 5px;
}
.ind-banner .onebox .cn {
  margin: 0;
  font-size: 0.52rem;
  line-height: 0.68rem;
  color: #fff;
  font-weight: bold;
}
.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: #29a4ff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.56rem;
  height: 0.52rem;
  margin-top: 1rem;
  background: #fff;
  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 .onebox .more em {
  margin-left: 0.15rem;
  display: block;
  width: 10px;
  height: 10px;
  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 .onebox .more:hover {
  background: #29a4ff;
  color: #fff;
}
.ind-banner .onebox .more:hover em {
  background: url(../img/ico2on.png) no-repeat;
}
.ind-banner .onebox {
  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 .onebox {
  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 .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #29a4ff;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    top: 18%;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .more {
    display: none;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
}
.indexP1 {
  padding-top: 1.3rem;
  overflow: hidden;
  position: relative;
}
.indexP1:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.indexP1 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #222;
  text-align: center;
  position: relative;
  z-index: 1;
}
.indexP1 .content {
  margin: 0.2rem 0 0.75rem;
  color: #555;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.46rem;
}
.indexP1 .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP1 .numList li {
  position: relative;
  padding-left: 0.66rem;
  color: #333;
  font-size: var(--fs16);
}
.indexP1 .numList li .ico {
  position: absolute;
  left: 0;
  top: 4px;
}
.indexP1 .numList li .ico img {
  width: 0.52rem;
}
.indexP1 .numList li .pj {
  height: 0.7rem;
}
.indexP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP1 .numList li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  background: url(../img/nimg11_1.png) no-repeat;
}
.indexP1 .numList li .numUp {
  font-size: var(--fs72);
  line-height: 0.56rem;
  padding-right: 0.12rem;
  color: #29a4ff;
  font-family: "Din-B";
}
.indexP1 .numList li .wen {
  line-height: 0.16rem;
}
.indexP1 .mxfDiv {
  padding-left: calc((100% - 15.36rem) / 2);
}
.indexP1 .videobox {
  margin-top: 1.1rem;
  width: 100%;
  height: 6.4rem;
  position: relative;
  overflow: hidden;
}
.indexP1 .videobox .imgDiv {
  height: 6.4rem;
}
.indexP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP1 .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;
}
.indexP1 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  z-index: 1;
}
.indexP1 .videobox.cur {
  background: #000;
}
.indexP1 .videobox.cur .imgDiv,
.indexP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.indexP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.indexP2 {
  padding: 1.8rem 0;
  position: relative;
  overflow: hidden;
}
.indexP2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.9rem;
  height: 3.37rem;
  background: url(../img/nimg590Bg.png) no-repeat;
  background-size: 5.9rem;
}
.indexP2 .mxfDiv {
  padding-left: calc((100% - 15.36rem) / 2);
  position: relative;
  z-index: 2;
}
.indexP2 .pjDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 12.5rem;
  height: 7.4rem;
}
.indexP2 .conDiv {
  width: 4.3rem;
  transform: translateX(0.5rem);
  -webkit-transform: translateX(0.5rem);
  -moz-transform: translateX(0.5rem);
  -ms-transform: translateX(0.5rem);
  -o-transform: translateX(0.5rem);
}
.indexP2 .bigImg {
  width: 7.4rem;
  overflow: hidden;
  transform: translateX(-0.5rem);
  -webkit-transform: translateX(-0.5rem);
  -moz-transform: translateX(-0.5rem);
  -ms-transform: translateX(-0.5rem);
  -o-transform: translateX(-0.5rem);
}
.indexP2 .bigImg img {
  width: 100%;
  border-radius: 50%;
}
.indexP2 .titleDiv {
  padding: 0.3rem 0;
  position: relative;
}
.indexP2 .titleDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #29a4ff;
  border-radius: 4px;
}
.indexP2 .titleDiv .en {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 43, 155, 0.05);
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-SB';
  text-transform: uppercase;
}
.indexP2 .titleDiv .cn {
  font-size: var(--fs48);
  line-height: 0.48rem;
  margin: 0;
  font-weight: bold;
  color: #222;
}
.indexP2 .msg {
  margin-top: 0.45rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  height: 1.8rem;
  overflow: hidden;
  color: #666;
}
.indexP2 .more {
  margin-top: 0.8rem;
}
.indexP2 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.56rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  overflow: hidden;
  position: relative;
  background: #29a4ff;
  font-size: var(--fs16);
  color: #fff;
}
.indexP2 .more a em {
  margin-left: 0.15rem;
  width: 10px;
  height: 10px;
  background: url(../img/ico2on.png) no-repeat;
}
.indexP2 .conDiv,
.indexP2 .bigImg {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition-delay: 0.3s;
}
.indexP2 .swiper-slide-active .conDiv,
.indexP2 .swiper-slide-active .bigImg {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.set {
  position: absolute;
  right: -420px;
  z-index: 10;
  margin-top: -325px;
  top: 50%;
  width: 640px;
  height: 640px;
}
.set:before {
  content: "";
  width: 94%;
  height: 94%;
  position: absolute;
  top: 3%;
  border: 1px solid #29a4ff;
  border-radius: 50%;
}
.set .se {
  position: absolute;
  left: 90px;
  display: block;
  font-size: var(--fs18);
  color: #999;
  height: auto;
  z-index: 6;
}
.set .se:hover {
  color: #29a4ff;
}
.set .se.swiper-button-prev {
  width: auto;
  top: 50%;
  bottom: auto;
  margin-top: -0.3rem;
}
.set .se.swiper-button-prev:after {
  display: none;
}
.set .se.swiper-button-next {
  right: auto;
  width: auto;
  bottom: 50%;
  top: auto;
  margin-top: 0;
  margin-bottom: -0.3rem;
}
.set .se.swiper-button-next:after {
  display: none;
}
.corona {
  position: absolute;
  left: 0;
  z-index: 5;
  top: 0;
  width: 640px;
  height: 640px;
  transition: transform 0.8s ease-out;
}
.corona li {
  position: absolute;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.corona li em {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #29a4ff;
  display: none;
}
.corona li .dot {
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  margin-left: -50px;
  margin-top: -50px;
  overflow: hidden;
  border-radius: 50%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.corona li .dot img {
  width: 100px;
}
.corona li .dot:after {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border: rgba(255, 255, 255, 0.15) solid 1px;
  border-radius: 50%;
}
.corona:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #29a4ff;
  border-radius: 50%;
}
.corona li.on .dot {
  opacity: 1;
  transform: none;
  width: 130px;
  height: 130px;
  margin-top: -65px;
  margin-left: -65px;
}
.corona li.on .dot img {
  width: 130px;
}
.indexP2Tel {
  padding: 0 0.3rem;
}
.indexP2Tel .pageTitle {
  margin-bottom: 0.65rem;
}
.indPro {
  position: relative;
}
.indPro .swiper-container {
  overflow: hidden;
}
.indPro .imgDiv {
  height: 3.8rem;
}
.indPro .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indPro .botDiv {
  background: #f6f6f6;
  padding: 0.45rem 0.3rem;
}
.indPro .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs17);
  line-height: 0.56rem;
  height: 0.56rem;
  color: #333;
}
.indPro .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs15);
  line-height: 0.48rem;
  height: 1.44rem;
  color: #999;
}
.indPro .se {
  position: absolute;
  display: block;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  z-index: 3;
  top: 30%;
  background: #fff;
  border: #eee solid 1px;
  margin-top: -0.4rem;
}
.indPro .se:hover {
  background: #29a4ff;
  border: #29a4ff solid 2px;
}
.indPro .prev {
  left: 0.2rem;
}
.indPro .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.indPro .prev:hover:after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.indPro .next {
  right: 0.2rem;
}
.indPro .next:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.indPro .next:hover:after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.indexP3 {
  position: relative;
  overflow: hidden;
}
.indexP3 .titleDiv {
  padding: 0.3rem 0;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.2rem;
  z-index: 1;
}
.indexP3 .titleDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #29a4ff;
  border-radius: 4px;
}
.indexP3 .titleDiv .en {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-SB';
  text-transform: uppercase;
}
.indexP3 .titleDiv .cn {
  font-size: var(--fs48);
  line-height: 0.48rem;
  margin: 0;
  font-weight: bold;
  color: #fff;
}
.indexP3 .detail-box {
  position: relative;
}
.indexP3 .detail-box .item {
  display: none;
  position: relative;
}
.indexP3 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.indexP3 .detail-box .limg img {
  width: 100%;
}
.indexP3 .box-container {
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  width: 18rem;
  margin-left: -7.68rem;
  z-index: 2;
  overflow: hidden;
}
.indexP3 .box-container .mxfDiv {
  height: 4rem;
  width: 100%;
  position: relative;
}
.indexP3 .box-container .pjDiv {
  border-radius: 0.16rem;
  background: #29a4ff;
  width: 100%;
  padding: 0 0.4rem;
  height: 1.6rem;
  cursor: pointer;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .ico {
  position: absolute;
  right: 0.35rem;
  top: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .ico img {
  width: 0.68rem;
  filter: brightness(0) invert(1);
}
.indexP3 .box-container .name {
  position: absolute;
  left: 0.4rem;
  bottom: 0.3rem;
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.36rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .more {
  position: absolute;
  right: 0.2rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.16rem;
  background: #29a4ff;
  box-shadow: 0 0 0.3rem 0 rgba(41, 164, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .more a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 0.5rem;
  color: #fff;
  font-size: var(--fs24);
  text-align: center;
}
.indexP3 .box-container .more a:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.12rem;
  top: 0.2rem;
  width: 0.23rem;
  height: 0.2rem;
  background: url(../img/nimg23_1.png) no-repeat;
  background-size: 0.23rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .more a:hover:after {
  animation: upDown 0.5s infinite alternate linear;
  -webkit-animation: upDown 0.5s infinite alternate linear;
}
.indexP3 .box-container .afterlie {
  padding-top: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .box-container .afterlie ul {
  margin-right: -0.1rem;
}
.indexP3 .box-container .afterlie li {
  float: left;
  width: 33.33%;
}
.indexP3 .box-container .afterlie li .lbox {
  margin-right: 0.1rem;
  border: #87c7f8 solid 1px;
  border-radius: 8px;
  padding-top: 0.2rem;
  height: 1.18rem;
  text-align: center;
}
.indexP3 .box-container .afterlie li .icon img {
  width: 0.42rem;
}
.indexP3 .box-container .afterlie li .wen {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.15rem;
  height: 0.24rem;
  line-height: 0.24rem;
  color: #333;
  font-size: var(--fs16);
}
.indexP3 .box-container .swiper-slide-active .pjDiv {
  background: rgba(255, 255, 255, 0.9);
  height: 3.9rem;
}
.indexP3 .box-container .swiper-slide-active .ico {
  right: auto;
  top: 0.45rem;
  left: 0.4rem;
}
.indexP3 .box-container .swiper-slide-active .ico img {
  filter: brightness(1) invert(0);
  width: 0.84rem;
}
.indexP3 .box-container .swiper-slide-active .name {
  color: #111;
  bottom: 2.1rem;
}
.indexP3 .box-container .swiper-slide-active .more {
  opacity: 1;
  visibility: visible;
}
.indexP3 .box-container .swiper-slide-active .afterlie {
  opacity: 1;
  visibility: visible;
}
.indexP4 {
  padding: 1.95rem 0 1.55rem;
  position: relative;
  overflow: hidden;
  background: url(../img/nimg590Bg.png) left bottom no-repeat;
  background-size: 5.9rem;
}
.indexP4:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.indexP4 .list {
  position: relative;
  z-index: 1;
}
.indexP4 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.indexP4 .list li:last-child {
  margin-bottom: 0;
}
.indexP4 .list li .conDiv {
  width: 4.2rem;
}
.indexP4 .list li .imgDiv {
  width: 9.8rem;
  border-radius: 6px;
  overflow: hidden;
  order: 1;
}
.indexP4 .list li .imgDiv img {
  width: 100%;
}
.indexP4 .list li .titleDiv {
  padding: 0.3rem 0;
  position: relative;
}
.indexP4 .list li .titleDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #29a4ff;
  border-radius: 4px;
}
.indexP4 .list li .titleDiv .en {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 43, 155, 0.05);
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-SB';
  text-transform: uppercase;
}
.indexP4 .list li .titleDiv .cn {
  font-size: var(--fs48);
  line-height: 0.48rem;
  margin: 0;
  font-weight: bold;
  color: #222;
}
.indexP4 .list li .content {
  margin-top: 0.4rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #666;
}
.indexP4 .list li .more {
  margin-top: 1.1rem;
}
.indexP4 .list li .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.56rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  overflow: hidden;
  position: relative;
  background: #29a4ff;
  font-size: var(--fs16);
  color: #fff;
}
.indexP4 .list li .more a em {
  margin-left: 0.15rem;
  width: 10px;
  height: 10px;
  background: url(../img/ico2on.png) no-repeat;
}
.indexP4 .list li:nth-child(even) .imgDiv {
  order: 0;
}
.indexP5 {
  padding-top: 1.1rem;
  height: 9.5rem;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
}
.indexP5 .list {
  padding-top: 0.6rem;
}
.indexP5 .list ul {
  margin-right: -0.28rem;
}
.indexP5 .list li {
  float: left;
  width: 25%;
}
.indexP5 .list li .box {
  margin-right: 0.28rem;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.3rem 0px rgba(3, 14, 33, 0.08);
}
.indexP5 .list li .imgDiv {
  height: 2.22rem;
}
.indexP5 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP5 .list li .botDiv {
  height: 3.1rem;
  background: #fff;
  position: relative;
  padding: 0.35rem 0.3rem 0;
}
.indexP5 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #222;
  font-size: var(--fs22);
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.18rem;
  color: rgba(11, 29, 52, 0.7);
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
}
.indexP5 .list li .time {
  position: absolute;
  left: 0.3rem;
  bottom: 0;
  width: calc(100% - 0.6rem);
  right: 0.3rem;
  background: url(../img/nimg17_1.png) left center no-repeat;
  font-family: 'Poppins-L';
  height: 0.66rem;
  line-height: 0.66rem;
  padding-left: 0.26rem;
  color: rgba(11, 29, 52, 0.35);
  font-size: var(--fs15);
}
.indexP5 .list li .time:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
}
.indexP5 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP5 .list li .box:hover .name {
  color: #29a4ff;
}
@media (max-width: 1600px) {
  .indexP1 .mxfDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .indexP2 .mxfDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .indexP3 .titleDiv {
    margin-left: -8rem;
  }
  .indexP3 .box-container {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .indexP1 {
    padding: 1rem 0 1.2rem;
  }
  .indexP1:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .indexP1 .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .indexP1 .name b {
    font-weight: bold;
  }
  .indexP1 .content {
    margin: 0.3rem 0 0.75rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP1 .numList {
    overflow: hidden;
  }
  .indexP1 .numList ul {
    display: block;
  }
  .indexP1 .numList li {
    float: left;
    width: 50%;
    margin-bottom: 0.45rem;
    padding-left: 0.76rem;
    font-size: var(--fs14);
  }
  .indexP1 .numList li .ico {
    top: 0;
  }
  .indexP1 .numList li .ico img {
    width: 0.56rem;
  }
  .indexP1 .numList li .pj {
    height: 0.8rem;
  }
  .indexP1 .numList li .num p {
    height: 0.6rem;
  }
  .indexP1 .numList li .num span {
    top: 0;
  }
  .indexP1 .numList li .numUp {
    font-size: var(--fs40);
    line-height: 0.6rem;
    padding-right: 0.1rem;
  }
  .indexP1 .numList li .wen {
    line-height: 0.26rem;
  }
  .indexP1 .mxfDiv {
    padding: 0 0.3rem;
  }
  .indexP1 .videobox {
    margin-top: 0.5rem;
    height: 4rem;
  }
  .indexP1 .videobox .imgDiv {
    height: 4rem;
  }
  .indexP1 .videobox video {
    max-height: 4rem;
  }
  .indexP1 .videobox .playbox {
    width: 1rem;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .indexP1 .videobox .playbox img {
    width: 1rem;
  }
  .indexP2 {
    padding: 1.15rem 0 0.2rem;
    background: #f2f6fb;
  }
  .indexP3 {
    padding-top: 1rem;
  }
  .indexP3 .titleDiv {
    position: relative;
    left: 0.3rem;
    margin-left: 0;
    top: 0;
    margin-bottom: 0.7rem;
  }
  .indexP3 .titleDiv:after {
    width: 0.5rem;
    height: 2px;
  }
  .indexP3 .titleDiv .en {
    font-size: var(--fs28);
    color: rgba(0, 0, 0, 0.1);
  }
  .indexP3 .titleDiv .cn {
    font-size: var(--fs22);
    line-height: 0.56rem;
    color: #333;
  }
  .indexP3 .box-container {
    position: relative;
    left: 2%;
    bottom: 0;
    width: 96%;
    margin-left: 0;
    margin-top: 0.3rem;
  }
  .indexP3 .box-container .mxfDiv {
    height: 2rem;
  }
  .indexP3 .box-container .pjDiv {
    border-radius: 0.2rem;
    padding: 0 0.3rem;
    height: 2rem;
    border: transparent solid 1px;
  }
  .indexP3 .box-container .ico {
    right: 0.3rem;
  }
  .indexP3 .box-container .name {
    left: 0.3rem;
    font-size: var(--fs17);
    line-height: 0.42rem;
  }
  .indexP3 .box-container .more {
    top: 0.2rem;
    border-radius: 0.2rem;
  }
  .indexP3 .box-container .more a {
    font-size: var(--fs15);
  }
  .indexP3 .box-container .afterlie {
    display: none;
  }
  .indexP3 .box-container .swiper-slide-active .pjDiv {
    height: 2rem;
    border: #eee solid 1px;
  }
  .indexP3 .box-container .swiper-slide-active .ico {
    right: auto;
    top: 0.4rem;
    left: 0.3rem;
  }
  .indexP3 .box-container .swiper-slide-active .ico img {
    width: 0.68rem;
  }
  .indexP3 .box-container .swiper-slide-active .name {
    bottom: 0.3rem;
  }
  .indexP4 {
    padding: 1.25rem 0 1rem;
    background: url(../img/nimg590Bg.png) left bottom no-repeat;
    background-size: 5.9rem;
  }
  .indexP4:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .indexP4 .list li {
    display: block;
    margin-bottom: 0.9rem;
  }
  .indexP4 .list li .conDiv {
    width: auto;
  }
  .indexP4 .list li .imgDiv {
    width: auto;
    border-radius: 0.12rem;
    margin-bottom: 0.6rem;
  }
  .indexP4 .list li .titleDiv:after {
    width: 0.5rem;
    height: 2px;
  }
  .indexP4 .list li .titleDiv .en {
    font-size: var(--fs28);
  }
  .indexP4 .list li .titleDiv .cn {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .indexP4 .list li .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP4 .list li .more {
    margin-top: 0.55rem;
  }
  .indexP4 .list li .more a {
    width: 2.46rem;
    height: 0.84rem;
    font-size: var(--fs15);
  }
  .indexP4 .list li .more a em {
    margin-left: 0.2rem;
  }
  .indexP5 {
    padding: 1.1rem 0;
    height: auto;
  }
  .indexP5 .list {
    padding-top: 0.75rem;
  }
  .indexP5 .list ul {
    margin-right: -0.2rem;
  }
  .indexP5 .list li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .indexP5 .list li .box {
    margin-right: 0.2rem;
  }
  .indexP5 .list li .imgDiv {
    height: 1.8rem;
  }
  .indexP5 .list li .botDiv {
    height: 2.4rem;
    padding: 0.3rem 0.2rem 0;
  }
  .indexP5 .list li .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP5 .list li .content {
    display: none;
  }
  .indexP5 .list li .time {
    height: 0.76rem;
    line-height: 0.76rem;
    padding-left: 0.4rem;
    font-size: var(--fs14);
    background-size: 0.28rem;
  }
}
.aboutP1 {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
  background: center bottom no-repeat;
  background-size: 100%;
}
.aboutP1:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 9.2rem;
  width: 5.3rem;
  height: 3.9rem;
  background: url(../img/nimg530Bg.png) no-repeat;
  background-size: 5.3rem;
  z-index: 0;
}
.aboutP1:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  background: #fff;
  z-index: 0;
  height: calc(100% - 7.5rem);
}
.aboutP1 .bg {
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  z-index: 2;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.aboutP1 .conDiv {
  padding-left: 1rem;
  position: relative;
  z-index: 1;
  padding-bottom: 1.35rem;
  background: #fff;
  border-bottom-left-radius: 0.64rem;
}
.aboutP1 .txtDiv {
  padding-top: 0.75rem;
  position: relative;
}
.aboutP1 .txtDiv:after {
  content: 'ALISON';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
  line-height: 1.5rem;
  font-family: 'Mont-R';
  background-image: -webkit-linear-gradient(top, #251457, #b6b0c7);
  background-image: linear-gradient(to bottom, #251457, #b6b0c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.05;
}
.aboutP1 .txtDiv .name {
  font-weight: bold;
  font-size: var(--fs36);
  color: #3f3f3f;
  line-height: 0.36rem;
  position: relative;
  z-index: 1;
}
.aboutP1 .txtDiv .year {
  padding-top: 0.25rem;
  font-family: 'Din-B';
  color: #29a4ff;
  font-size: var(--fs72);
  line-height: 0.6rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.aboutP1 .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  padding-top: 0.5rem;
}
.aboutP1 .numList {
  padding-top: 0.65rem;
}
.aboutP1 .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP1 .numList li {
  position: relative;
  padding-left: 0.66rem;
  color: #333;
  font-size: var(--fs16);
}
.aboutP1 .numList li .ico {
  position: absolute;
  left: 0;
  top: 4px;
}
.aboutP1 .numList li .ico img {
  width: 0.52rem;
}
.aboutP1 .numList li .pj {
  height: 0.7rem;
}
.aboutP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  background: url(../img/nimg11_1.png) no-repeat;
}
.aboutP1 .numList li .numUp {
  font-size: var(--fs72);
  line-height: 0.56rem;
  padding-right: 0.12rem;
  color: #29a4ff;
  font-family: "Din-B";
}
.aboutP1 .numList li .wen {
  line-height: 0.16rem;
}
.aboutP2 {
  height: 9.77rem;
  padding-top: 1.1rem;
  background: url(../img/aboutP2.jpg) center no-repeat;
  background-size: cover;
}
.aboutP2 .list {
  margin-top: 0.6rem;
  overflow: hidden;
  border-radius: 0.12rem;
  background: #fff;
  height: 5.4rem;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.aboutP2 .list li {
  float: left;
  width: 25%;
  cursor: pointer;
  position: relative;
  padding: 1.2rem 0 0 0.7rem;
  height: 5.4rem;
}
.aboutP2 .list li:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.84rem;
  height: 3.5rem;
  background: url(../img/nimg384Bg.png) no-repeat;
  background-size: 3.84rem;
  z-index: 0;
}
.aboutP2 .list li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #f3f3f3;
}
.aboutP2 .list li .ico {
  position: relative;
  z-index: 2;
  height: 0.52rem;
}
.aboutP2 .list li .ico img {
  width: 0.52rem;
}
.aboutP2 .list li .ico .img1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.aboutP2 .list li .cn {
  position: relative;
  z-index: 2;
  padding-top: 0.65rem;
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .en {
  position: relative;
  z-index: 2;
  margin-top: 0.15rem;
  font-size: var(--fs22);
  line-height: 0.22rem;
  color: rgba(51, 51, 51, 0.3);
  font-family: 'Barlow-R';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .msg {
  position: relative;
  z-index: 2;
  padding-top: 0.6rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  width: 2.45rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .bg {
  z-index: 1;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li:last-child:after {
  display: none;
}
.aboutP2 .list li:hover .ico img {
  opacity: 0;
}
.aboutP2 .list li:hover .ico .img1 {
  opacity: 1;
}
.aboutP2 .list li:hover .bg {
  opacity: 1;
}
.aboutP2 .list li:hover .cn,
.aboutP2 .list li:hover .en {
  color: #fff;
}
.aboutP2 .list li:hover .msg {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 0.5rem;
    background-image: none!important;
  }
  .aboutP1:before {
    display: none;
  }
  .aboutP1:after {
    display: none;
  }
  .aboutP1 .bg {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .aboutP1 .conDiv {
    padding-left: 0;
    padding-bottom: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .aboutP1 .txtDiv {
    padding-top: 0.5rem;
  }
  .aboutP1 .txtDiv:after {
    font-size: 1.2rem;
    line-height: 0.8rem;
    opacity: 0.2;
  }
  .aboutP1 .txtDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
    z-index: 1;
  }
  .aboutP1 .txtDiv .year {
    font-size: var(--fs36);
    line-height: 0.6rem;
  }
  .aboutP1 .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .aboutP1 .numList {
    overflow: hidden;
  }
  .aboutP1 .numList ul {
    display: block;
  }
  .aboutP1 .numList li {
    float: left;
    width: 50%;
    margin-bottom: 0.45rem;
    padding-left: 0.76rem;
    font-size: var(--fs14);
  }
  .aboutP1 .numList li .ico {
    top: 0;
  }
  .aboutP1 .numList li .ico img {
    width: 0.56rem;
  }
  .aboutP1 .numList li .pj {
    height: 0.8rem;
  }
  .aboutP1 .numList li .num p {
    height: 0.6rem;
  }
  .aboutP1 .numList li .num span {
    top: 0;
  }
  .aboutP1 .numList li .numUp {
    font-size: var(--fs40);
    line-height: 0.6rem;
    padding-right: 0.1rem;
  }
  .aboutP1 .numList li .wen {
    line-height: 0.26rem;
  }
  .aboutP2 {
    height: auto;
    padding: 1rem 0;
  }
  .aboutP2 .pageTitle .en {
    font-size: var(--fs22);
  }
  .aboutP2 .list {
    margin-top: 0.75rem;
    height: auto;
  }
  .aboutP2 .list li {
    width: 50%;
    padding: 0.6rem 0 0 0.4rem;
    height: 6.8rem;
  }
  .aboutP2 .list li:before {
    display: none;
  }
  .aboutP2 .list li:after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .aboutP2 .list li .ico {
    height: 0.72rem;
  }
  .aboutP2 .list li .ico img {
    width: 0.72rem;
  }
  .aboutP2 .list li .cn {
    padding-top: 0.2rem;
    font-size: var(--fs17);
    line-height: 0.42rem;
  }
  .aboutP2 .list li .en {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    height: 0.72rem;
    line-height: 0.36rem;
  }
  .aboutP2 .list li .msg {
    padding-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: 90%;
  }
}
.strategy {
  padding: 1.1rem 0 1.6rem;
}
.strategy .mxfDiv {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  border-radius: 12px;
  height: 7.2rem;
  padding-top: 1.6rem;
  margin-top: 0.6rem;
  z-index: 2;
  position: relative;
}
.strategy .mxfDiv .item {
  display: none;
}
.strategy .mxfDiv .item.on {
  display: block;
}
.strategy .mxfDiv .title {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.strategy .mxfDiv .description {
  font-size: var(--fs30);
  line-height: 0.56rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.15rem;
}
.strategy .mxfDiv .brief {
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Mont-EL';
  text-align: center;
}
.strategy .swiper-box {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.strategy .swiper-box .box-container {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
}
.strategy .swiper-box .swiper-container {
  width: 100%;
}
.strategy .swiper-slide {
  width: 20%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  cursor: pointer;
  height: 1.7rem;
  padding: 0.1rem 0.1rem 0.1rem 0.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.strategy .swiper-slide .icon {
  margin-right: 0.2rem;
  width: 0.64rem;
  height: 0.64rem;
  object-fit: cover;
}
.strategy .swiper-slide .info {
  flex: 1;
  overflow: hidden;
}
.strategy .swiper-slide .info .name {
  font-size: var(--fs26);
  line-height: 0.36rem;
  color: #fff;
}
.strategy .swiper-slide .info p {
  font-family: "Mont-EL";
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0.1rem;
}
.strategy .swiper-slide.on {
  background: #29a4ff;
}
.strategy .swiperbtn-box {
  display: none;
}
@media (max-width: 1004px) {
  .strategy {
    padding: 1rem 0 1.1rem;
  }
  .strategy .pageTitle .en {
    font-size: var(--fs22);
  }
  .strategy .mxfDiv {
    border-radius: 0.2rem;
    padding-top: 1rem;
    margin-top: 0.75rem;
  }
  .strategy .mxfDiv .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
    margin-bottom: 0.3rem;
  }
  .strategy .mxfDiv .description {
    font-size: var(--fs16);
    line-height: 0.52rem;
    padding: 0 0.3rem;
  }
  .strategy .mxfDiv .brief {
    font-size: var(--fs12);
    line-height: 0.42rem;
    padding: 0 0.8rem;
    display: none;
  }
  .strategy .swiper-box {
    bottom: -1px;
  }
  .strategy .swiper-slide {
    width: 50%;
    height: auto;
    padding: 0.2rem 0.1rem 0.2rem 0.2rem;
  }
  .strategy .swiper-slide .icon {
    width: 0.74rem;
    height: 0.74rem;
  }
  .strategy .swiper-slide .info .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .strategy .swiper-slide .info p {
    font-size: var(--fs13);
    line-height: 0.36rem;
    margin-top: 0;
  }
  .strategy .swiper-slide.on {
    background: none;
  }
  .strategy .swiper-slide.swiper-slide-active {
    background: #29a4ff;
  }
  .strategy .swiperbtn-box {
    display: block;
  }
  .strategy .swiperbtn-box a {
    width: 0.86rem;
    height: 0.86rem;
    position: absolute;
    background: #29a4ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .strategy .swiperbtn-box a.swiper-button-disabled {
    cursor: no-drop;
  }
  .strategy .swiperbtn-box .prev {
    left: 0;
  }
  .strategy .swiperbtn-box .prev:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -6px;
    width: 7px;
    height: 12px;
    background: url(../img/nimg7_left.png) no-repeat;
  }
  .strategy .swiperbtn-box .next {
    right: 0;
  }
  .strategy .swiperbtn-box .next:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    margin-right: -4px;
    margin-top: -6px;
    width: 7px;
    height: 12px;
    background: url(../img/nimg7_right.png) no-repeat;
  }
}
.news {
  padding: 1.1rem 0 1.4rem;
}
.news .list {
  padding: 1rem 0 0.4rem;
}
.news .list ul {
  margin-right: -0.28rem;
}
.news .list li {
  float: left;
  width: 25%;
  margin-bottom: 0.6rem;
}
.news .list li .box {
  margin-right: 0.28rem;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.3rem 0px rgba(3, 14, 33, 0.08);
}
.news .list li .imgDiv {
  height: 2.22rem;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .list li .botDiv {
  height: 3.1rem;
  background: #fff;
  position: relative;
  padding: 0.35rem 0.3rem 0;
}
.news .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #222;
  font-size: var(--fs22);
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 0.18rem;
  color: rgba(11, 29, 52, 0.7);
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  overflow: hidden;
}
.news .list li .time {
  position: absolute;
  left: 0.3rem;
  bottom: 0;
  width: calc(100% - 0.6rem);
  right: 0.3rem;
  background: url(../img/nimg17_1.png) left center no-repeat;
  font-family: 'Poppins-L';
  height: 0.66rem;
  line-height: 0.66rem;
  padding-left: 0.26rem;
  color: rgba(11, 29, 52, 0.35);
  font-size: var(--fs15);
}
.news .list li .time:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
}
.news .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li .box:hover .name {
  color: #29a4ff;
}
.newsPic {
  position: relative;
  margin-top: 0.6rem;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f6f8 url(../img/nimg240Bg.png) 7.68rem bottom no-repeat;
  background-size: 2.4rem;
}
.newsPic:after {
  content: '';
  position: absolute;
  right: -1.54rem;
  top: -1.54rem;
  width: 2.92rem;
  height: 2.92rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 2.92rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .imgDiv {
  width: 50%;
  height: 4.7rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.75rem 1.2rem 0 1rem;
}
.newsPic .time {
  font-size: var(--fs20);
  color: #29a4ff;
  line-height: 0.32rem;
  font-family: 'Mont-EL';
}
.newsPic .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  font-size: var(--fs26);
  line-height: 0.4rem;
  height: 0.4rem;
  font-weight: bold;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.1rem;
  color: rgba(11, 29, 52, 0.7);
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  text-align: justify;
}
.newsPic .mxfDiv:hover .name {
  color: #29a4ff;
}
.newsPic .arrowDiv {
  position: absolute;
  left: calc(50% + 1rem);
  bottom: 0.8rem;
  z-index: 1;
}
.newsPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #29a4ff;
  border: #29a4ff solid 2px;
  box-sizing: border-box;
}
.newsPic .arrowDiv .se:hover {
  background: #120049;
  border: #120049 solid 2px;
}
.newsPic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.newsPic .arrowDiv .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.newsPic .arrowDiv .prev:hover:after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.newsPic .arrowDiv .next:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_righton.png) no-repeat;
}
.newsPic .arrowDiv .next:hover:after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
@media (max-width: 1600px) {
  .newsPic {
    background: #f5f6f8 url(../img/nimg240Bg.png) 8rem bottom no-repeat;
  }
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0 1.1rem;
  }
  .news .list {
    padding-top: 0.65rem;
  }
  .news .list ul {
    margin-right: -0.2rem;
  }
  .news .list li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .news .list li .box {
    margin-right: 0.2rem;
  }
  .news .list li .imgDiv {
    height: 1.8rem;
  }
  .news .list li .botDiv {
    height: 2.4rem;
    padding: 0.3rem 0.2rem 0;
  }
  .news .list li .name {
    font-size: var(--fs15);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .news .list li .content {
    display: none;
  }
  .news .list li .time {
    height: 0.86rem;
    line-height: 0.86rem;
    padding-left: 0.4rem;
    font-size: var(--fs14);
    background-size: 0.28rem;
  }
  .newsPic {
    margin-top: 0.75rem;
    border-radius: 0.2rem;
    background: #f5f6f8 url(../img/nimg240Bg.png) left bottom no-repeat;
  }
  .newsPic:after {
    display: none;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 3.6rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 1.6rem;
  }
  .newsPic .time {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 0.52rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .newsPic .arrowDiv {
    left: 0.3rem;
    bottom: 0.4rem;
  }
  .newsPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
}
.newsTop {
  padding: 0.85rem 0 0.6rem;
  border-bottom: #29a4ff solid 1px;
}
.newsTop .name {
  width: 8.8rem;
  margin: 0 auto;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.6rem;
  padding-bottom: 0.4rem;
}
.newsTop .time {
  display: block;
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  font-family: 'Poppins-L';
}
.newsTop .time img {
  margin-right: 15px;
  position: relative;
  top: -3px;
}
.newsBot {
  background: #f8f8f8;
  padding-bottom: 1.8rem;
}
.newsBot .leftDiv {
  width: 11.96rem;
}
.newsBot .conDiv {
  background: #fff;
  padding: 0.8rem 1.36rem 0.56rem;
}
.newsBot .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.newsBot .backBtn {
  margin: 1rem auto 0;
  width: 1.8rem;
}
.newsBot .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border: #d2d2d2 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
}
.newsBot .backBtn em {
  margin-left: 0.15rem;
  width: 15px;
  height: 13px;
  background: url(../img/ico3on.png) no-repeat;
}
.newsBot .backBtn a:hover {
  border: #29a4ff solid 1px;
  background: #29a4ff;
  color: #fff;
}
.newsBot .backBtn a:hover em {
  background: url(../img/ico3.png) no-repeat;
}
.pageDown {
  margin-top: 0.95rem;
}
.pageDown ul {
  margin-right: -0.56rem;
}
.pageDown li {
  float: left;
  width: 50%;
  font-size: var(--fs16);
}
.pageDown li .box {
  margin-right: 0.56rem;
  height: 0.8rem;
  background: #fff;
  position: relative;
  padding-left: 0.95rem;
  padding-right: 0.85rem;
}
.pageDown li .box:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #29a4ff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.pageDown li em {
  position: absolute;
  left: 0.25rem;
  top: 50%;
  margin-top: -0.15rem;
  line-height: 0.3rem;
  color: #333;
}
.pageDown li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 0.8rem;
  line-height: 0.24rem;
  overflow: hidden;
  color: #333;
}
.pageDown li .box:hover {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.pageDown li .box:hover:after {
  width: 100%;
}
.pageDown li .box:hover a {
  color: #29a4ff;
}
.sideNews {
  width: 3.4rem;
  padding: 0.45rem 0.5rem 0;
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.18rem;
  font-weight: bold;
  margin: 0 0 0.16rem;
  color: #29a4ff;
}
.sideNews .list li {
  padding-bottom: 0.45rem;
}
.sideNews .list li .imgDiv img {
  width: 100%;
}
.sideNews .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  margin-top: 0.12rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li:hover .name {
  color: #29a4ff;
}
.sideNews .moreBtn {
  margin-top: 0.18rem;
}
.sideNews .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.68rem;
  height: 0.5rem;
  background: #29a4ff;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.sideNews .moreBtn em {
  margin-left: 0.2rem;
  width: 16px;
  height: 12px;
  background: url(../img/ico3.png) no-repeat;
}
@media (max-width: 1600px) {
  .newsBot .leftDiv {
    width: 12.28rem;
  }
  .sideNews {
    width: 3.72rem;
  }
}
@media (max-width: 1004px) {
  .newsTop .name {
    width: auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsTop .time {
    font-size: var(--fs15);
  }
  .newsTop .time img {
    margin-right: 0.2rem;
    width: 0.3rem;
    top: -1px;
  }
  .newsBot {
    padding-bottom: 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
  }
  .newsBot .conDiv {
    padding: 0.75rem 0.3rem 0.8rem;
  }
  .newsBot .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .newsBot .content video {
    width: 100%!important;
    height: auto!important;
  }
  .newsBot .backBtn {
    margin: 0.7rem auto 0;
    width: 2.4rem;
  }
  .newsBot .backBtn a {
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .newsBot .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsBot .backBtn a:hover em {
    background-size: 10px;
  }
  .pageDown {
    margin-top: 0.65rem;
  }
  .pageDown ul {
    margin-right: 0;
  }
  .pageDown li {
    float: none;
    width: auto;
    font-size: var(--fs15);
    margin-bottom: 0.25rem;
  }
  .pageDown li .box {
    margin-right: 0;
    height: 1.4rem;
    padding-left: 1.45rem;
    padding-right: 0.3rem;
  }
  .pageDown li em {
    margin-top: -0.2rem;
    line-height: 0.4rem;
  }
  .pageDown li a {
    height: 1.4rem;
    line-height: 0.42rem;
  }
  .sideNews {
    display: none;
  }
}
.honor {
  padding: 1.1rem 0 1.4rem;
}
.honor .secondTab {
  padding-top: 0.6rem;
  text-align: center;
}
.honor .secondTab ul {
  font-size: 0;
}
.honor .secondTab li {
  display: inline-block;
  margin: 0 0.15rem;
  font-size: var(--fs20);
}
.honor .secondTab li a {
  display: block;
  width: 2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.48rem;
  border: #e5e5e5 solid 1px;
  color: #222;
}
.honor .secondTab li a:hover {
  color: #29a4ff;
}
.honor .secondTab li a.aNow {
  background: #29a4ff;
  border: #29a4ff solid 1px;
  color: #fff;
}
.honor .list {
  padding: 0.8rem 0 0.6rem;
}
.honor .list ul {
  margin-right: -0.2rem;
}
.honor .list li {
  float: left;
  width: 25%;
  padding-bottom: 0.4rem;
}
.honor .list li .box {
  background: #f5f6f8;
  margin-right: 0.2rem;
  cursor: pointer;
  position: relative;
  border-radius: 6px;
}
.honor .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: #edeef0 solid 1px;
  position: relative;
  overflow: hidden;
}
.honor .list li .imgDiv img {
  max-width: 3rem;
  max-height: 3.6rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.honor .list li .botDiv {
  height: 1rem;
  padding: 0.2rem 0.2rem 0;
}
.honor .list li .name {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  color: #333;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.honor .list li .time {
  font-size: var(--fs14);
  color: #999;
  line-height: 0.24rem;
  text-align: center;
  font-family: 'Mont-EL';
}
.honor .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.honor .list li .box:hover .name {
  color: #29a4ff;
}
@media (max-width: 1004px) {
  .honor {
    padding: 1rem 0 1.1rem;
  }
  .honor .secondTab {
    padding-top: 0.7rem;
  }
  .honor .secondTab ul {
    font-size: 0;
  }
  .honor .secondTab li {
    margin: 0 0.1rem;
    font-size: var(--fs15);
  }
  .honor .secondTab li a {
    width: 1.86rem;
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .honor .list li {
    width: 50%;
  }
  .honor .list li .botDiv {
    height: 1.75rem;
  }
  .honor .list li .name {
    height: 0.96rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
    white-space: normal;
  }
  .honor .list li .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .detection .pageTitle .en {
    font-size: var(--fs24);
  }
}
.product {
  padding: 1.1rem 0 1.4rem;
  overflow: hidden;
}
.product .detail {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.6rem;
  position: relative;
  border-radius: 10px;
  background: #f5f6f8 url(../img/nimg240Bg.png) 9.32rem bottom no-repeat;
  background-size: 2.4rem;
  overflow: hidden;
}
.product .detail:after {
  content: '';
  position: absolute;
  right: -1.54rem;
  top: -1.54rem;
  width: 2.92rem;
  height: 2.92rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 2.92rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.product .detail .imgDiv {
  width: 9.32rem;
}
.product .detail .imgDiv img {
  width: 100%;
}
.product .detail .conDiv {
  position: relative;
  width: 6.04rem;
  padding: 0 1rem 0 1.2rem;
}
.product .detail .name {
  font-size: var(--fs40);
  line-height: 0.52rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.product .detail .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  max-height: 1.6rem;
  overflow: auto;
}
.product .detail .content::-webkit-scrollbar {
  width: 2px;
}
.product .detail .content::-webkit-scrollbar-track {
  background-color: #ddd;
}
.product .detail .content::-webkit-scrollbar-thumb {
  background-color: #29a4ff;
}
.product .detail .more {
  margin-top: 0.75rem;
}
.product .detail .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.56rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  background: #29a4ff;
  font-size: var(--fs16);
  color: #fff;
}
.product .detail .more a em {
  margin-left: 0.15rem;
  width: 10px;
  height: 10px;
  background: url(../img/ico2on.png) no-repeat;
}
.product .list {
  padding: 0.8rem 0 0.2rem;
}
.product .list ul {
  margin-right: -0.45rem;
}
.product .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.8rem;
}
.product .list li .box {
  margin-right: 0.45rem;
  border-radius: 6px;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .imgDiv {
  height: 3.1rem;
  overflow: hidden;
}
.product .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .list li .botDiv {
  padding: 0.35rem 0.4rem 0;
  height: 2.9rem;
  background: #f5f6f8;
  position: relative;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .botDiv:before {
  content: '';
  position: absolute;
  left: -2rem;
  bottom: -1.05rem;
  width: 2rem;
  height: 1.05rem;
  background: url(../img/nimg240Bg.png) no-repeat;
  background-size: 2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .botDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #29a4ff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .round {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -0.9rem;
  top: -0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 1.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  line-height: 0.32rem;
  font-size: var(--fs24);
  color: #222;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .msg {
  margin-top: 0.1rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: var(--fs16);
  color: #888;
  line-height: 0.3rem;
  height: 1.2rem;
  position: relative;
  z-index: 1;
}
.product .list li .ico {
  margin-top: 0.35rem;
  width: 42px;
  height: 26px;
  background: #29a4ff url(../img/ico2on.png) center no-repeat;
  background-size: 8px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.product .list li .box:hover {
  box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.1);
}
.product .list li .box:hover .botDiv {
  background: #fff;
}
.product .list li .box:hover .botDiv:before {
  left: 0;
  bottom: 0;
}
.product .list li .box:hover .botDiv:after {
  width: 100%;
}
.product .list li .box:hover .round {
  opacity: 1;
  visibility: visible;
}
.product .list li .box:hover .name {
  color: #29a4ff;
}
@media (max-width: 1600px) {
  .product .detail .conDiv {
    width: 6.68rem;
  }
  .product .list li .ico {
    margin-top: 0.25rem;
  }
}
@media (max-width: 1004px) {
  .product {
    padding: 1rem 0 1.1rem;
  }
  .product .pageTitle .en {
    font-size: var(--fs18);
  }
  .product .detail {
    display: block;
    margin-top: 0.75rem;
    border-radius: 0.2rem;
    background: #f5f6f8 url(../img/nimg240Bg.png) left bottom no-repeat;
  }
  .product .detail:after {
    display: none;
  }
  .product .detail .imgDiv {
    width: auto;
  }
  .product .detail .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem;
  }
  .product .detail .name {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .product .detail .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
    max-height: 100%;
  }
  .product .detail .more {
    margin-top: 0.5rem;
  }
  .product .detail .more a {
    width: 2.46rem;
    height: 0.84rem;
    font-size: var(--fs15);
    color: #fff;
  }
  .product .detail .more a em {
    margin-left: 0.2rem;
  }
  .product .list {
    padding: 0.7rem 0 0.4rem;
  }
  .product .list ul {
    margin-right: -0.2rem;
  }
  .product .list li {
    width: 50%;
    margin-bottom: 0.4rem;
  }
  .product .list li .box {
    margin-right: 0.2rem;
    border-radius: 0.1rem;
  }
  .product .list li .imgDiv {
    height: 2.1rem;
  }
  .product .list li .botDiv {
    padding: 0.3rem 0.2rem 0;
    height: 2.7rem;
  }
  .product .list li .botDiv:before {
    display: none;
  }
  .product .list li .botDiv:after {
    height: 2px;
  }
  .product .list li .round {
    display: none;
  }
  .product .list li .name {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .product .list li .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs15);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .product .list li .ico {
    margin-top: 0.15rem;
    width: 32px;
    height: 18px;
    background-size: 6px;
  }
}
.field {
  padding: 1.1rem 0 1.4rem;
}
.field .list {
  margin: 0.6rem 0 0.5rem;
}
.field .list li {
  margin-bottom: 0.5rem;
}
.field .list li a {
  display: block;
  padding-left: 1rem;
  height: 3.8rem;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  border-radius: 0.16rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.field .list li .limg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 9.04rem;
  height: 3.8rem;
}
.field .list li .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.field .list li .conDiv {
  padding-top: 0.6rem;
  width: 4.6rem;
  position: relative;
  z-index: 2;
}
.field .list li .name {
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #333;
  position: relative;
  height: 0.65rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.field .list li .name:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: #29a4ff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.field .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  height: 0.9rem;
  text-align: justify;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.field .list li .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 1rem;
  bottom: 0.4rem;
  opacity: 0;
  visibility: hidden;
  width: 1.56rem;
  height: 0.56rem;
  text-align: center;
  font-size: var(--fs16);
  color: #fff;
  border: #fff solid 2px;
  border-radius: 0.48rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.field .list li .more em {
  margin-left: 0.15rem;
  width: 10px;
  height: 10px;
  background: url(../img/ico2on.png) no-repeat;
}
.field .list li a:hover {
  background: #29a4ff;
}
.field .list li a:hover .name,
.field .list li a:hover .content {
  color: #fff;
}
.field .list li a:hover .name:after {
  background: #fff;
}
.field .list li a:hover .more {
  opacity: 1;
  visibility: visible;
  bottom: 0.45rem;
}
@media (max-width: 1004px) {
  .field {
    padding: 1rem 0 1.1rem;
  }
  .field .list {
    margin: 0.75rem 0 0.5rem;
  }
  .field .list li a {
    padding-left: 0;
    height: auto;
    border-radius: 0.2rem;
  }
  .field .list li .limg {
    position: relative;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 4rem;
  }
  .field .list li .conDiv {
    padding: 0.5rem 0.4rem;
    background: #29a4ff;
    width: auto;
  }
  .field .list li .name {
    font-size: var(--fs18);
    line-height: 0.36rem;
    color: #fff;
    height: 0.65rem;
  }
  .field .list li .name:after {
    width: 0.6rem;
    height: 2px;
    background: #fff;
  }
  .field .list li .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
    height: 2.08rem;
    color: #fff;
  }
  .field .list li .more {
    display: none;
  }
  .field .list li a:hover {
    background: #f1f5f9;
  }
}
.fieldshow {
  padding: 1.1rem 0 1.4rem;
  overflow: hidden;
  position: relative;
}
.fieldshow:before {
  content: '';
  position: absolute;
  left: 0;
  top: 54%;
  width: 5.3rem;
  height: 3.9rem;
  background: url(../img/nimg530Bg.png) no-repeat;
  background-size: 5.3rem;
}
.fieldshow:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.fieldshow .content {
  font-size: var(--fs24);
  text-align: center;
  line-height: 0.44rem;
  padding: 0.5rem 0 0.7rem;
  border-bottom: #e9e9e9 solid 1px;
}
.fieldshow .list {
  position: relative;
  z-index: 1;
}
.fieldshow .list li {
  padding: 0.7rem 0;
  border-bottom: #e9e9e9 solid 1px;
}
.fieldshow .list li .ico {
  position: absolute;
  right: 0.75rem;
  top: 0.6rem;
}
.fieldshow .list li .ico img {
  width: 0.7rem;
}
.fieldshow .list li .wen {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #222;
  font-weight: bold;
}
.fieldshow .list li .msg {
  margin-top: 0.18rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.fieldPic {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.fieldPic .swiper-container {
  width: 20.4rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
  position: static;
}
.fieldPic .swiper-slide {
  width: auto;
}
.fieldPic .swiper-slide .mxfDiv {
  width: 8.8rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.12rem;
}
.fieldPic .swiper-slide .mxfDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: url(../img/bg1.png) top repeat-x;
}
.fieldPic .swiper-slide .imgDiv {
  height: 5.5rem;
}
.fieldPic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fieldPic .swiper-slide .name {
  position: absolute;
  left: 0.4rem;
  bottom: 0.35rem;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.32rem;
  z-index: 1;
}
.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: flex-end;
}
.fieldPic .swiper-pagination {
  position: relative;
  width: calc(100% - 2.2rem);
  height: 2px;
  background-color: #e1e6e7;
}
.fieldPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #29a4ff;
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: #e2e7e8 solid 2px;
  box-sizing: border-box;
}
.fieldPic .arrowDiv .se:hover {
  background: #29a4ff;
  border: #29a4ff solid 2px;
}
.fieldPic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.fieldPic .arrowDiv .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.fieldPic .arrowDiv .prev:hover:after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.fieldPic .arrowDiv .next:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.fieldPic .arrowDiv .next:hover:after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.fieldPic .num {
  position: absolute;
  left: 0;
  top: 0.15rem;
  z-index: 1;
  font-size: var(--fs16);
  color: #999;
  font-family: 'Mont-EL';
}
@media (max-width: 1004px) {
  .fieldshow {
    padding: 1rem 0 1.1rem;
  }
  .fieldshow:before {
    display: none;
  }
  .fieldshow:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .fieldshow .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
    padding: 0.6rem 0 0.7rem;
  }
  .fieldshow .list li .ico {
    right: 0;
    top: 0.5rem;
  }
  .fieldshow .list li .ico img {
    width: 0.8rem;
  }
  .fieldshow .list li .wen {
    font-size: var(--fs20);
    padding-right: 1rem;
  }
  .fieldshow .list li .msg {
    margin-top: 0.35rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .fieldPic .swiper-container {
    width: 100%;
  }
  .fieldPic .swiper-slide .mxfDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .fieldPic .swiper-slide .mxfDiv:after {
    height: 2rem;
  }
  .fieldPic .swiper-slide .imgDiv {
    height: 3.8rem;
  }
  .fieldPic .swiper-slide .name {
    left: 0.3rem;
    bottom: 0.25rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .fieldPic .swiper-pagination {
    width: calc(100% - 2.36rem);
  }
  .fieldPic .arrowDiv {
    font-size: 0;
  }
  .fieldPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
    border: #e2e7e8 solid 1px;
  }
  .fieldPic .arrowDiv .se:hover {
    border: #29a4ff solid 1px;
  }
  .fieldPic .num {
    font-size: var(--fs15);
  }
}
.build {
  padding: 1.4rem 0;
}
.build .ico {
  text-align: center;
}
.build .ico img {
  width: 1.1rem;
}
.build .wen {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-weight: bold;
  color: #222;
  margin: 0.55rem 0 0.75rem;
}
.build .more {
  margin: 0 auto;
  width: 1.55rem;
}
.build .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.52rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.48rem;
  background: #29a4ff;
  font-size: var(--fs16);
  color: #fff;
}
.build .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/ico2on.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;
}
.build .more a:hover em {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
@media (max-width: 1004px) {
  .build {
    padding: 1.1rem 0;
  }
  .build .wen {
    font-size: var(--fs26);
    line-height: 0.56rem;
  }
  .build .more {
    width: 2.55rem;
  }
  .build .more a {
    height: 0.92rem;
    font-size: var(--fs15);
    color: #fff;
  }
  .build .more a em {
    margin-left: 0.2rem;
  }
}
.question {
  padding: 1.1rem 0 1.4rem;
}
.question .list {
  margin: 0.6rem 0 0.8rem;
  border-top: #eee solid 1px;
}
.question .list li {
  position: relative;
}
.question .list li .msgDiv {
  padding: 0 0.5rem 0 0.5rem;
  height: 0.96rem;
  border-bottom: #eee solid 1px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .ico {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -0.18rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
}
.question .list li .ico span {
  padding-right: 24px;
  background: url(../img/ico4.png) right center 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;
}
.question .list li .ico em {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 24px;
  color: #fff;
  background: url(../img/ico4on.png) right center 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;
}
.question .list li .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  color: #333;
  height: 0.96rem;
  line-height: 0.32rem;
  padding-left: 0.55rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .wen {
  position: absolute;
  color: #fff;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #29a4ff;
  border-radius: 50%;
  font-family: 'Mont-R';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .box {
  display: none;
  border: #29a4ff solid 2px;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.question .list li .msgDiv.aNow {
  background: #29a4ff;
  border-bottom: #29a4ff solid 1px;
}
.question .list li .msgDiv.aNow .name {
  color: #fff;
}
.question .list li .msgDiv.aNow .wen {
  color: #29a4ff;
  background: #fff;
}
.question .list li .msgDiv.aNow .ico span {
  opacity: 0;
  visibility: hidden;
}
.question .list li .msgDiv.aNow .ico em {
  opacity: 1;
  visibility: visible;
}
.question .list li .mxfDiv {
  position: relative;
  padding: 0.36rem 2.2rem 0.45rem 1rem;
}
.question .list li .zi {
  position: absolute;
  background: #29a4ff;
  text-transform: uppercase;
  left: 0.45rem;
  top: 0.38rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.question .list li .content {
  color: #333;
  line-height: 0.36rem;
  font-size: var(--fs16);
  text-align: justify;
}
@media (max-width: 1004px) {
  .question {
    padding: 1rem 0;
  }
  .question .pageTitle .en {
    font-size: var(--fs18);
  }
  .question .list {
    margin: 0.75rem 0 0.8rem;
  }
  .question .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .question .list li .ico {
    right: 0.3rem;
    font-size: 0;
  }
  .question .list li .ico span {
    display: block;
  }
  .question .list li .name {
    display: block;
    height: auto;
    min-height: 0.6rem;
    line-height: 0.6rem;
    padding-left: 0.8rem;
    padding-right: 0.4rem;
    font-size: var(--fs15);
  }
  .question .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs14);
  }
  .question .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .question .list li .zi {
    left: calc(0.3rem - 2px);
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs14);
  }
  .question .list li .content {
    line-height: 0.52rem;
    font-size: var(--fs14);
  }
}
.culture {
  padding: 1.1rem 0 1.4rem;
}
.culture .list {
  margin: 0.6rem 0 0.2rem;
}
.culture .list ul {
  margin-right: -0.45rem;
}
.culture .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.8rem;
}
.culture .list li .box {
  cursor: pointer;
  margin-right: 0.45rem;
  overflow: hidden;
  border-radius: 8px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.culture .list li .imgDiv {
  height: 3.1rem;
  overflow: hidden;
}
.culture .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.culture .list li .botDiv {
  height: 1.2rem;
  padding: 0.3rem 0.4rem 0;
  background: #f5f6f8;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.culture .list li .botDiv:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #29a4ff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.culture .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  height: 0.32rem;
  line-height: 0.32rem;
  color: #222;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.culture .list li .time {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  font-family: 'Mont-EL';
}
.culture .list li .box:hover {
  box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.1);
}
.culture .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.culture .list li .box:hover .botDiv {
  background: #fff;
}
.culture .list li .box:hover .botDiv:after {
  width: 100%;
}
.culture .list li .box:hover .name {
  color: #29a4ff;
}
@media (max-width: 1004px) {
  .culture {
    padding: 1rem 0 1.1rem;
  }
  .culture .pageTitle .en {
    font-size: var(--fs22);
  }
  .culture .list {
    margin: 0.75rem 0 0.4rem;
  }
  .culture .list ul {
    margin-right: -0.2rem;
  }
  .culture .list li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .culture .list li .box {
    margin-right: 0.2rem;
    border-radius: 0.12rem;
  }
  .culture .list li .imgDiv {
    height: 2rem;
  }
  .culture .list li .botDiv {
    height: 2rem;
    padding: 0.3rem 0.2rem 0;
  }
  .culture .list li .botDiv:after {
    height: 2px;
  }
  .culture .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    font-size: var(--fs16);
    height: 0.96rem;
    line-height: 0.48rem;
    color: #222;
    font-weight: bold;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .culture .list li .time {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.contactP1 {
  padding: 1.1rem 0 1.4rem;
  overflow: hidden;
  position: relative;
  background: url(../img/nimg510Bg.png) left bottom no-repeat;
  background-size: 5.1rem;
}
.contactP1:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.contactP1 .list {
  margin-top: 0.6rem;
}
.contactP1 .list ul {
  margin-right: -0.5rem;
}
.contactP1 .list li {
  float: left;
  width: 33.33%;
}
.contactP1 .list li .box {
  margin-right: 0.5rem;
  height: 3.6rem;
  background: #fff;
  padding: 0.55rem 0.45rem 0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.contactP1 .list li .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #29a4ff;
}
.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);
  color: rgba(51, 51, 51, 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: #29a4ff;
}
.contactP1 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.36rem;
  margin-top: 0.3rem;
}
.contactP1 .list li .ico {
  position: absolute;
  right: 0.45rem;
  top: 0.55rem;
  z-index: 1;
}
.contactP2 {
  padding: 1.1rem 0;
  background: url(../img/contactBg.jpg) center no-repeat;
  background-size: cover;
}
.contactP2 .form {
  margin-top: 0.6rem;
}
.contactP2 .form ul {
  margin-right: -0.2rem;
}
.contactP2 .form li {
  float: left;
  width: 50%;
  padding-bottom: 0.2rem;
}
.contactP2 .form li .box {
  margin-right: 0.2rem;
  position: relative;
  padding-left: 1.1rem;
  background: #fff;
  border: #ededed solid 1px;
  border-radius: 4px;
}
.contactP2 .form li .txt {
  position: absolute;
  left: 0.3rem;
  top: 0;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.54rem;
}
.contactP2 .form li .input1 {
  width: 100%;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
}
.contactP2 .form li textarea {
  width: 100%;
  font-size: var(--fs16);
  line-height: 0.32rem;
  height: 2rem;
  padding-top: 0.12rem;
  font-family: inherit;
}
.contactP2 .form .li01 {
  width: 100%;
}
.contactP2 .btnDiv {
  width: 1.68rem;
  margin: 0.3rem auto 0;
}
.contactP2 .btnDiv a {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  height: 0.56rem;
  line-height: 0.56rem;
  border-radius: 0.48rem;
  overflow: hidden;
  font-size: var(--fs16);
  color: #fff;
  background: #29a4ff;
}
.contactP2 .bigImg {
  margin-top: 0.8rem;
}
.contactP2 .bigImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 1rem 0 1.1rem;
    background: url(../img/nimg510Bg.png) left bottom no-repeat;
    background-size: 5.1rem;
  }
  .contactP1:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .contactP1 .pageTitle .en {
    font-size: var(--fs22);
  }
  .contactP1 .list {
    margin-top: 0.75rem;
  }
  .contactP1 .list ul {
    margin-right: 0;
  }
  .contactP1 .list li {
    float: none;
    width: auto;
    padding-bottom: 0.5rem;
  }
  .contactP1 .list li .box {
    margin-right: 0;
    height: auto;
    min-height: 3.8rem;
    padding: 0.55rem 0.45rem;
  }
  .contactP1 .list li .box::before {
    height: 2px;
  }
  .contactP1 .list li .cn {
    font-size: var(--fs20);
    line-height: 0.36rem;
  }
  .contactP1 .list li .en {
    margin-top: 0.18rem;
    height: 0.56rem;
    font-size: var(--fs15);
  }
  .contactP1 .list li .en:after {
    width: 0.4rem;
  }
  .contactP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .contactP1 .list li .ico {
    top: 0.5rem;
  }
  .contactP1 .list li .ico img {
    width: 0.72rem;
  }
  .contactP2 {
    padding: 1rem 0;
    height: auto;
  }
  .contactP2 .pageTitle .en {
    font-size: var(--fs22);
  }
  .contactP2 .form {
    margin-top: 0.75rem;
  }
  .contactP2 .form ul {
    margin-right: 0;
  }
  .contactP2 .form li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .contactP2 .form li .box {
    margin-right: 0;
    padding-left: 1.6rem;
  }
  .contactP2 .form li .txt {
    left: 0.2rem;
    font-size: var(--fs15);
    line-height: 1rem;
  }
  .contactP2 .form li .input1 {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs15);
  }
  .contactP2 .form li textarea {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 2.35rem;
    padding-top: 0.25rem;
  }
  .contactP2 .btnDiv {
    width: 2.68rem;
  }
  .contactP2 .btnDiv a {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs15);
  }
}
.productP1 {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0 1.2rem;
}
.productP1:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.productP1 .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: 1;
}
.productP1 .mxfDiv .leftImg {
  width: 50%;
  overflow: hidden;
  border-radius: 10px;
}
.productP1 .mxfDiv .leftImg img {
  width: 100%;
}
.productP1 .mxfDiv .rightCon {
  width: 50%;
  padding-left: 1.1rem;
}
.productP1 .mxfDiv .name {
  margin: 0 0 0.1rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #222;
  font-weight: bold;
}
.productP1 .mxfDiv .wen {
  position: relative;
  font-size: var(--fs24);
  line-height: 0.32rem;
  padding-bottom: 0.3rem;
  color: rgba(51, 51, 51, 0.8);
}
.productP1 .mxfDiv .wen:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 4px;
  background: #29a4ff;
}
.productP1 .mxfDiv .content {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.34rem;
  text-align: justify;
  color: #666;
}
.productP1 .mxfDiv .btnDiv {
  margin-top: 0.9rem;
  overflow: hidden;
}
.productP1 .mxfDiv .btnDiv li {
  float: left;
  margin-right: 0.3rem;
}
.productP1 .mxfDiv .btnDiv li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.6rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  border: #29a4ff solid 2px;
  font-size: var(--fs16);
  color: #29a4ff;
}
.productP1 .mxfDiv .btnDiv li a em {
  margin-left: 0.15rem;
  display: block;
  width: 10px;
  height: 10px;
  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;
}
.productP1 .mxfDiv .btnDiv li a:hover {
  background: #29a4ff;
  color: #fff;
}
.productP1 .mxfDiv .btnDiv li a:hover em {
  background: url(../img/ico2on.png) no-repeat;
}
.proLayer {
  position: relative;
  width: 100%;
  background: #fff;
}
.proLayer:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ededed;
}
.proLayerNow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
.proNav {
  border: #ededed solid 1px;
  border-radius: 6px;
  border-bottom: none;
  overflow: hidden;
}
.proNav li {
  float: left;
  font-size: var(--fs16);
}
.proNav li a {
  display: block;
  width: 1.8rem;
  height: 0.52rem;
  line-height: 0.52rem;
  color: #666;
  text-align: center;
}
.proNav li a.aNow {
  background: #29a4ff;
  color: #fff;
}
.proTitle {
  padding: 0.3rem 0;
  position: relative;
}
.proTitle:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: #29a4ff;
  border-radius: 4px;
}
.proTitle .en {
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(0, 43, 155, 0.05);
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-SB';
  text-transform: uppercase;
}
.proTitle .cn {
  font-size: var(--fs48);
  line-height: 0.48rem;
  margin: 0;
  font-weight: bold;
  color: #222;
}
.productP2 {
  padding-top: 1.1rem;
  overflow: hidden;
}
.productP2 .list {
  margin-top: 0.6rem;
}
.productP2 .list li .box {
  position: relative;
  top: 0;
  height: 4.2rem;
  cursor: pointer;
  background: #f6f8fa;
  border-radius: 0.16rem;
  padding: 0.9rem 0.4rem 0;
  text-align: center;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li .ico {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  position: relative;
}
.productP2 .list li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li .ico .img1 {
  opacity: 0;
}
.productP2 .list li .name {
  margin-top: 0.4rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li .msg {
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li .box:hover {
  background: #29a4ff;
  top: -0.2rem;
}
.productP2 .list li .box:hover .ico img {
  opacity: 0;
}
.productP2 .list li .box:hover .ico .img1 {
  opacity: 1;
}
.productP2 .list li .box:hover .name,
.productP2 .list li .box:hover .msg {
  color: #fff;
}
.productP2 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
}
.productP2 .swiper-pagination .swiper-pagination-bullet {
  background: #eee;
  opacity: 1;
}
.productP2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #29a4ff;
}
.productP2.on {
  padding-top: 1.62rem;
}
.productP3 {
  padding-top: 1.1rem;
}
.productP3 .table {
  margin-top: 0.6rem;
}
.productP3 .table tr th {
  background: #29a4ff;
  height: 0.6rem;
  color: #fff;
  font-weight: 400;
  font-size: var(--fs18);
  padding: 0 0.3rem;
}
.productP3 .table tr th:first-child {
  border-right: #6dc1ff solid 1px;
}
.productP3 .table tr td {
  height: 0.6rem;
  text-align: center;
  border-right: #e0e0e0 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  font-size: var(--fs16);
  color: #666;
}
.productP3 .table tr td:first-child {
  border-left: #e0e0e0 solid 1px;
}
.productP3 .table tr:nth-child(odd) td {
  background: #f6f8fa;
}
.productP4 {
  padding-top: 1.1rem;
  background: url(../img/nimg530Bg.png) left top no-repeat;
  background-size: 5.3rem;
}
.productP4 .mxfDiv {
  margin-top: 0.6rem;
  border-radius: 12px;
  background: #f6f8fa;
  padding: 0.85rem 0.5rem 0.7rem;
}
.productP4 .imgDiv {
  text-align: center;
}
.productP4 .imgDiv img {
  max-width: 10rem;
}
.productP5 {
  padding: 1.1rem 0 1.4rem;
  overflow: hidden;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 1rem 0 0.2rem;
  }
  .productP1:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .productP1 .mxfDiv {
    display: block;
  }
  .productP1 .mxfDiv .leftImg {
    width: 100%;
    border-radius: 0.2rem;
  }
  .productP1 .mxfDiv .rightCon {
    width: auto;
    padding-top: 0.7rem;
    padding-left: 0;
  }
  .productP1 .mxfDiv .name {
    margin: 0 0 0.2rem;
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .productP1 .mxfDiv .wen {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .productP1 .mxfDiv .wen:after {
    width: 0.48rem;
    height: 2px;
  }
  .productP1 .mxfDiv .content {
    margin-top: 0.4rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .productP1 .mxfDiv .btnDiv {
    margin-top: 0.6rem;
  }
  .productP1 .mxfDiv .btnDiv li {
    margin-right: 0.2rem;
  }
  .productP1 .mxfDiv .btnDiv li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 2.2rem;
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .productP1 .mxfDiv .btnDiv li a em {
    margin-left: 0.2rem;
  }
  .proTitle:after {
    width: 0.5rem;
    height: 2px;
  }
  .proTitle .en {
    font-size: var(--fs28);
  }
  .proTitle .cn {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .productP2 {
    padding-top: 0.9rem;
  }
  .productP2 .list {
    margin-top: 0.75rem;
    overflow: hidden;
  }
  .productP2 .list li .box {
    height: 4.6rem;
    border-radius: 0.2rem;
    padding: 0.65rem 0.3rem 0;
  }
  .productP2 .list li .ico {
    width: 1rem;
    height: 1rem;
  }
  .productP2 .list li .ico img {
    width: 1rem;
  }
  .productP2 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .productP2 .list li .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .productP2 .list li .box:hover {
    top: 0;
  }
  .productP2.on {
    padding-top: 0.9rem;
  }
  .productP3 {
    padding-top: 0.9rem;
  }
  .productP3 .table {
    margin-top: 0.75rem;
  }
  .productP3 .table tr th {
    height: 1rem;
    font-size: var(--fs15);
  }
  .productP3 .table tr td {
    height: auto;
    padding: 0.2rem;
    font-size: var(--fs14);
  }
  .productP4 {
    padding-top: 0.9rem;
    background: none;
  }
  .productP4 .mxfDiv {
    margin-top: 0.75rem;
    border-radius: 0.2rem;
    padding: 0.85rem 0.3rem 0.7rem;
  }
  .productP4 .imgDiv img {
    width: 100%;
  }
  .productP5 {
    padding: 0.9rem 0 1.1rem;
  }
}
.developP1 {
  position: relative;
  overflow: hidden;
  padding-top: 1.1rem;
  margin-bottom: 3.1rem;
}
.developP1:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.3rem;
  height: 3.9rem;
  background: url(../img/nimg530Bg.png) no-repeat;
  background-size: 5.3rem;
}
.developP1:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.developP1 .content {
  margin-top: 0.5rem;
  font-size: var(--fs18);
  text-align: center;
  color: #666;
  line-height: 0.36rem;
}
.developP1 .imgList {
  margin-top: 0.92rem;
}
.developP1 .imgList ul {
  display: flex;
  margin: 0 -15px;
}
.developP1 .imgList li {
  padding: 0 15px;
  height: auto;
}
.developP1 .imgList li:nth-child(1) {
  width: 25.5%;
  transform: translateY(-1.1rem);
}
.developP1 .imgList li:nth-child(2) {
  width: 50.5%;
}
.developP1 .imgList li:nth-child(3) {
  width: 24%;
  transform: translateY(1.2rem);
}
.developP1 .imgList li .lbox {
  border-radius: 0.2rem;
  overflow: hidden;
}
.developP1 .imgList li .lbox img {
  width: 100%;
}
.home_develop {
  /* margin-top: -328px; */
  position: relative;
}
.home_develop_bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home_develop_bg img {
  width: 100%;
}
.home_develop.isfixed .home_develop_bg {
  position: fixed;
  top: auto;
  bottom: 0;
}
.home_develop.isfixed.notfixed .home_develop_bg {
  position: absolute;
  top: auto !important;
  bottom: 0;
}
.home_develop_wrap {
  width: 100%;
  /* height: calc(100vh - 90px);
    position: absolute;
    bottom: 0;
    left: 0; */
  padding-top: 1.46rem;
}
.home_develop_wrap_tit {
  position: absolute;
  top: 2rem;
  z-index: 5;
  height: calc(100vh - 2rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.home_develop.isfixed .home_develop_wrap_tit {
  position: fixed;
}
.home_develop.isfixed.notfixed .home_develop_wrap_tit {
  position: absolute;
  top: auto !important;
  bottom: 0;
}
.home_develop_wrap h2 {
  position: relative;
  font-size: var(--fs52);
  line-height: 0.64rem;
  color: #333;
  text-align: center;
  height: 100%;
}
.hdwl_ul_li {
  width: 3.66rem;
  /* visibility: hidden; */
}
.hdwl_ul_li_cont {
  padding: 0.54rem 0.5rem 0.54rem 0.44rem;
  border-radius: 10px;
  background: #29a4ff;
}
.hdwl_ul_li .ys_imgbox_cover {
  width: 0.74rem;
}
.hdwl_ul_li .ys_imgbox_cover img {
  width: 0.74rem;
}
.hdwl_ul {
  position: relative;
  z-index: 5;
}
.hdwl_ul_li .std_title3 {
  color: #FFF;
  margin-top: 0.45rem;
  margin-bottom: 0.2rem;
  font-size: var(--fs26);
}
.hulc_parga p {
  color: #fff;
  font-size: var(--fs17);
  line-height: 0.3rem;
}
.home_develop_wrap_list {
  margin-top: 2.74rem;
  padding-bottom: 1rem;
  overflow: hidden;
}
.hdwl_ul1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hdwl_ul1 .hdwl_ul_li:nth-child(2) {
  margin-top: 1.3rem;
}
.hdwl_ul2 .hdwl_ul_li:nth-child(1) {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1.1rem;
}
.hdwl_ul3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hdwl_ul3 .hdwl_ul_li:nth-child(1) {
  margin-top: 2.83rem;
}
.hdwl_ul3 .hdwl_ul_li:nth-child(2) {
  margin-top: -0.54rem;
}
.developP3 {
  padding: 1.1rem 0 1.4rem;
}
.esgPic {
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
}
.esgPic .swiper-container {
  box-sizing: content-box;
  width: 100%;
  overflow: hidden;
  padding: 0.15rem 0.15rem 0.6rem 0.15rem;
  margin: -0.15rem;
}
.esgPic .box {
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0px 0px 0.15rem 0px rgba(3, 14, 33, 0.08);
}
.esgPic .imgDiv {
  height: 2.22rem;
}
.esgPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.esgPic .botDiv {
  height: 3.1rem;
  background: #fff;
  position: relative;
  padding: 0.35rem 0.3rem 0;
}
.esgPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #222;
  font-size: var(--fs22);
  line-height: 0.32rem;
  height: 0.64rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.esgPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.18rem;
  color: rgba(11, 29, 52, 0.7);
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
}
.esgPic .time {
  position: absolute;
  left: 0.3rem;
  bottom: 0;
  width: calc(100% - 0.6rem);
  right: 0.3rem;
  background: url(../img/nimg17_1.png) left center no-repeat;
  font-family: 'Poppins-L';
  height: 0.66rem;
  line-height: 0.66rem;
  padding-left: 0.26rem;
  color: rgba(11, 29, 52, 0.35);
  font-size: var(--fs15);
}
.esgPic .time:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #f0f0f0;
}
.esgPic .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.esgPic .box:hover .name {
  color: #29a4ff;
}
.esgPic .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: flex-end;
}
.esgPic .swiper-pagination {
  position: relative;
  width: calc(100% - 2.2rem);
  height: 2px;
  background-color: #e1e6e7;
}
.esgPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #29a4ff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.esgPic .arrowDiv {
  font-size: 0;
}
.esgPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #29a4ff;
  border: #29a4ff solid 2px;
  box-sizing: border-box;
}
.esgPic .arrowDiv .se:hover {
  background: #120049;
  border: #120049 solid 2px;
}
.esgPic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.esgPic .arrowDiv .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.esgPic .arrowDiv .prev:hover:after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.esgPic .arrowDiv .next:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_righton.png) no-repeat;
}
.esgPic .arrowDiv .next:hover:after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.esgPic .num {
  position: absolute;
  left: 0;
  top: 0.15rem;
  z-index: 1;
  font-size: var(--fs16);
  color: #999;
  font-family: 'Mont-EL';
}
@media (max-width: 1600px) {
  .developP1 {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1440px) {
  .developP1 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1366px) {
  .developP1 {
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 1004px) {
  .developP1 {
    padding-top: 0.9rem;
    margin-bottom: 1.1rem;
  }
  .developP1:before {
    display: none;
  }
  .developP1:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .developP1 .pageTitle .en {
    font-size: var(--fs20);
  }
  .developP1 .content {
    margin-top: 0.65rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .developP1 .imgList ul {
    display: block;
    margin: 0;
  }
  .developP1 .imgList li {
    padding: 0 0 0.3rem;
  }
  .developP1 .imgList li:nth-child(1) {
    width: 100%;
    transform: translateY(0);
  }
  .developP1 .imgList li:nth-child(2) {
    width: 100%;
  }
  .developP1 .imgList li:nth-child(3) {
    width: 100%;
    transform: translateY(0);
  }
  .developP1 .imgList li .lbox {
    border-radius: 0.24rem;
  }
  .home_develop {
    background: #f0f6fa;
  }
  .home_develop_bg {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .home_develop_bg img {
    width: 100%;
  }
  .home_develop.isfixed .home_develop_bg {
    position: fixed;
    top: auto;
    bottom: 0;
  }
  .home_develop.isfixed.notfixed .home_develop_bg {
    position: absolute;
    top: auto !important;
    bottom: 0;
  }
  .home_develop_wrap {
    width: 100%;
    padding-top: 1rem;
  }
  .home_develop_wrap_tit {
    position: relative;
    top: 0;
    height: auto;
    left: 0;
    transform: translateX(0);
  }
  .home_develop.isfixed .home_develop_wrap_tit {
    position: relative;
  }
  .home_develop.isfixed.notfixed .home_develop_wrap_tit {
    position: relative;
  }
  .home_develop_wrap h2 {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .hdwl_ul_li {
    width: 100% /* visibility: hidden; */;
  }
  .hdwl_ul_li_cont {
    padding: 0.45rem 0.3rem;
    border-radius: 0.24rem;
  }
  .hdwl_ul_li .ys_imgbox_cover {
    width: 0.94rem;
  }
  .hdwl_ul_li .ys_imgbox_cover img {
    width: 0.94rem;
  }
  .hdwl_ul_li .std_title3 {
    font-size: var(--fs18);
  }
  .hulc_parga p {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .home_develop_wrap_list {
    margin-top: 0.8rem;
    padding-bottom: 1rem;
    overflow: hidden;
  }
  .hdwl_ul1 {
    display: block;
  }
  .hdwl_ul1 .hdwl_ul_li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .hdwl_ul2 .hdwl_ul_li:nth-child(1) {
    left: 0;
    transform: translateX(0);
    margin-top: 0.3rem;
  }
  .hdwl_ul3 {
    display: block;
  }
  .hdwl_ul3 .hdwl_ul_li:nth-child(1) {
    margin-top: 0.3rem;
  }
  .hdwl_ul3 .hdwl_ul_li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .developP3 {
    padding: 0.9rem 0 1.1rem;
  }
  .esgPic {
    margin-top: 0.75rem;
  }
  .esgPic .swiper-container {
    padding: 0 0 0.6rem;
    margin: 0;
  }
  .esgPic .box {
    box-shadow: none;
  }
  .esgPic .imgDiv {
    height: 3.8rem;
  }
  .esgPic .botDiv {
    height: 2.4rem;
    padding: 0.3rem 0.2rem 0;
    border: #f0f0f0 solid 1px;
    border-top: none;
  }
  .esgPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .esgPic .content {
    display: none;
  }
  .esgPic .time {
    height: 0.86rem;
    line-height: 0.86rem;
    padding-left: 0.4rem;
    font-size: var(--fs15);
    background-size: 0.28rem;
  }
  .esgPic .swiper-pagination {
    width: calc(100% - 2.36rem);
  }
  .esgPic .arrowDiv {
    font-size: 0;
  }
  .esgPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
    border: #e2e7e8 solid 1px;
  }
  .esgPic .arrowDiv .se:hover {
    border: #29a4ff solid 1px;
  }
  .esgPic .num {
    font-size: var(--fs15);
  }
}
.controlP1 {
  padding: 1.1rem 0 1.4rem;
  position: relative;
  overflow: hidden;
}
.controlP1:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.3rem;
  height: 3.9rem;
  background: url(../img/nimg530Bg.png) no-repeat;
  background-size: 5.3rem;
}
.controlP1:after {
  content: '';
  position: absolute;
  right: -2.76rem;
  top: -2.76rem;
  width: 5.22rem;
  height: 5.22rem;
  background: url(../img/nimg522Bg.png) no-repeat;
  background-size: 5.22rem;
  -moz-animation: rotate 10s infinite linear;
  -webkit-animation: rotate 10s infinite linear;
  animation: rotate 10s infinite linear;
}
.controlP1 .wen {
  padding: 0.6rem 0 0.4rem;
  text-align: center;
  font-size: var(--fs20);
  color: #333;
}
.controlP1 .imgDiv {
  text-align: center;
}
.controlP1 .imgDiv img {
  max-width: 15.36rem;
}
.controlP2 {
  padding: 1.1rem 0 1.4rem;
  background: #f6f7fa url(../img/controlP2.jpg) center bottom no-repeat;
  background-size: 100%;
}
.controlP2 .list {
  margin: 0.6rem 0 0.4rem;
}
.controlP2 .list ul {
  margin-right: -0.2rem;
}
.controlP2 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.18rem;
}
.controlP2 .list li .box {
  margin-right: 0.2rem;
}
.controlP2 .list li a {
  display: block;
  height: 1.2rem;
  padding: 0.25rem 0.45rem 0;
  background: #fff;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.07);
}
.controlP2 .list li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #29a4ff;
}
.controlP2 .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  height: 0.42rem;
  line-height: 0.42rem;
  font-weight: bold;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.controlP2 .list li .time {
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: rgba(51, 51, 51, 0.6);
  font-family: 'Mont-EL';
}
.controlP2 .list li a:hover .name {
  color: #29a4ff;
}
.controlP2 .more 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: #333;
}
.controlP2 .more a img {
  margin-right: 15px;
}
.controlP2 .more a:hover {
  color: #29a4ff;
}
.controlP3 {
  padding: 1.1rem 0;
}
.controlP3 .list {
  margin-top: 0.65rem;
}
.controlP3 .list ul {
  margin-right: -0.3rem;
}
.controlP3 .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.3rem;
}
.controlP3 .list li .box {
  margin-right: 0.3rem;
  height: 2.6rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.5rem 0;
  overflow: hidden;
}
.controlP3 .list li .ico {
  height: 0.45rem;
}
.controlP3 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.36rem;
  height: 0.72rem;
  font-size: var(--fs24);
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.controlP3 .list li .time {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  color: rgba(51, 51, 51, 0.6);
  font-family: 'Mont-EL';
}
.controlP3 .list li .box:hover .name {
  color: #29a4ff;
}
@media (max-width: 1004px) {
  .controlP1 {
    padding: 0.9rem 0 1.1rem;
  }
  .controlP1:before {
    display: none;
  }
  .controlP1:after {
    right: -2.26rem;
    top: -2.26rem;
    width: 4.22rem;
    height: 4.22rem;
    background-size: 4.22rem;
  }
  .controlP1 .wen {
    padding: 0.5rem 0 0.65rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .controlP1 .longDiv {
    overflow: auto;
  }
  .controlP1 .imgDiv {
    width: 12rem;
    padding-bottom: 0.2rem;
  }
  .controlP1 .imgDiv img {
    max-width: 100%;
  }
  .controlP1 .tips {
    text-align: center;
    padding-top: 0.6rem;
    color: #333;
    font-size: var(--fs15);
  }
  .controlP2 {
    padding: 0.9rem 0 1.1rem;
  }
  .controlP2 .pageTitle .en {
    font-size: var(--fs18);
  }
  .controlP2 .list {
    margin: 0.75rem 0 0.5rem;
  }
  .controlP2 .list ul {
    margin-right: 0;
  }
  .controlP2 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.25rem;
  }
  .controlP2 .list li .box {
    margin-right: 0;
  }
  .controlP2 .list li a {
    height: 1.92rem;
    padding: 0.25rem 0.3rem 0;
  }
  .controlP2 .list li a:before {
    width: 3px;
  }
  .controlP2 .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    font-size: var(--fs17);
    height: 1.04rem;
    line-height: 0.52rem;
  }
  .controlP2 .list li .time {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .controlP2 .more a {
    font-size: var(--fs15);
  }
  .controlP2 .more a img {
    margin-right: 0.25rem;
    width: 0.6rem;
  }
  .controlP3 {
    padding: 0.9rem 0;
  }
  .controlP3 .pageTitle .en {
    font-size: var(--fs17);
  }
  .controlP3 .list {
    margin-top: 0.75rem;
  }
  .controlP3 .list ul {
    margin-right: 0;
  }
  .controlP3 .list li {
    float: none;
    width: auto;
  }
  .controlP3 .list li .box {
    margin-right: 0;
    height: 3.2rem;
    border-radius: 0.16rem;
    padding: 0.5rem 0.4rem 0;
  }
  .controlP3 .list li .ico {
    height: 0.8rem;
  }
  .controlP3 .list li .ico img {
    width: 0.42rem;
  }
  .controlP3 .list li .name {
    line-height: 0.48rem;
    height: 0.96rem;
    font-size: var(--fs15);
  }
  .controlP3 .list li .time {
    margin-top: 0.2rem;
    font-size: var(--fs13);
  }
}
.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;
  }
}
.zixunBtn {
  position: fixed;
  right: 0;
  top: 50%;
  margin-top: -42px;
  z-index: 5;
}
.zixunBtn a {
  display: block;
  background: #29a4ff;
  width: 90px;
  padding-top: 12px;
  height: 84px;
  text-align: center;
  font-size: var(--fs14);
  color: #fff;
}
.zixunBtn a .ico {
  height: 38px;
}
@media (max-width: 1004px) {
  .zixunBtn {
    margin-top: -0.7rem;
  }
  .zixunBtn a {
    width: 1.4rem;
    padding-top: 0.24rem;
    height: 1.4rem;
    font-size: var(--fs12);
  }
  .zixunBtn a .ico {
    height: 0.6rem;
  }
  .zixunBtn a .ico img {
    width: 0.56rem;
  }
}
