.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.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;
}
@keyframes indmhRun {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/*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%;
  width: 8rem;
  margin-left: -7.68rem;
  top: 28%;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-family: 'Poppins-SB';
  color: #000;
  margin-bottom: 0.3rem;
}
.ind-banner .onebox .en em {
  color: #2a5dc4;
}
.ind-banner .onebox .zi {
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #000;
  margin-bottom: 0.12rem;
}
.ind-banner .onebox .msg {
  width: 5.8rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
}
.ind-banner .twobox {
  position: absolute;
  left: 50%;
  width: 8rem;
  margin-left: -7.68rem;
  top: 24%;
  z-index: 2;
}
.ind-banner .twobox .en {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-family: 'Poppins-SB';
  color: #fff;
  margin-bottom: 0.3rem;
}
.ind-banner .twobox .msg {
  width: 5.8rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #fff;
}
.ind-banner .onebox,
.ind-banner .twobox {
  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,
.ind-banner .swiper-slide-active .twobox {
  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 {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0.3rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 2rem;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 8px;
  margin-left: 8px!important;
  margin-right: 8px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #2a5dc4;
  border-radius: 8px;
  transition: All 5s linear;
  -webkit-transition: All 5s linear;
  -moz-transition: All 5s linear;
  -o-transition: All 5s linear;
}
.ind-banner .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.5);
}
.ind-banner .swiper-pagination-bullet-active::after {
  width: 100%;
}
@media (max-width: 1600px) {
  .ind-banner .onebox,
  .ind-banner .twobox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    top: 20%;
    left: 0.3rem;
    right: 0.3rem;
    width: 85%;
    margin-left: 0;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .onebox .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .msg {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .twobox {
    left: 0.3rem;
    right: 0.3rem;
    width: 85%;
    margin-left: 0;
  }
  .ind-banner .twobox .en {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .twobox .msg {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
    width: 1rem;
  }
}
.indTitle {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-family: 'Poppins-SB';
  text-align: center;
}
.indexP1 {
  padding: 1.1rem 0 1.2rem;
  overflow: hidden;
}
.indexP1 .indTitle {
  margin-bottom: 0.6rem;
}
.indexP1 .tab2 {
  position: relative;
  height: 0.5rem;
  margin-bottom: 0.6rem;
}
.indexP1 .tab2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}
.indexP1 .tab2 ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP1 .tab2 li {
  position: relative;
  z-index: 1;
  width: 25%;
  height: 0.5rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  text-align: center;
  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;
}
.indexP1 .tab2 li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #2a5dc4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .tab2 .liNow {
  color: #2a5dc4;
}
.indexP1 .tab2 .liNow::after {
  width: 100%;
  left: 0;
}
.indexP1 .tabContent2 {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.indexP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 6.4rem;
  background: #f5f5f5;
}
.indexP1 .imgDiv {
  order: 1;
  width: 9.2rem;
  height: 6.4rem;
}
.indexP1 .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP1 .conDiv {
  padding-left: 0.8rem;
  width: 5rem;
}
.indexP1 .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #000;
  font-family: 'Poppins-M';
}
.indexP1 .conDiv .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.1rem;
}
.indexP1 .conDiv .lie {
  margin-top: 0.15rem;
}
.indexP1 .conDiv .lie li {
  margin-bottom: 0.1rem;
}
.indexP1 .conDiv .lie li:last-child {
  margin-bottom: 0;
}
.indexP1 .conDiv .lie li .zi {
  padding-left: 15px;
  line-height: 0.32rem;
  position: relative;
  font-family: 'Poppins-M';
  font-size: var(--fs18);
  color: #000;
}
.indexP1 .conDiv .lie li .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  width: 3px;
  height: 18px;
  background: #2a5dc4;
}
.indexP1 .conDiv .lie li .content {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
}
.indexP1 .conDiv .more {
  margin-top: 0.75rem;
  width: 1.65rem;
}
.indexP1 .conDiv .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: 100%;
  height: 0.5rem;
  background: #2a5dc4;
  font-size: var(--fs16);
  color: #fff;
}
.indexP1 .conDiv .more a em {
  margin-left: 0.15rem;
  width: 9px;
  height: 9px;
  background: url(../img/ico2.png) no-repeat;
}
.indexP1 .botList {
  margin-top: 0.4rem;
}
.indexP1 .botList ul {
  margin-right: -0.24rem;
}
.indexP1 .botList li {
  float: left;
  width: 16.66%;
}
.indexP1 .botList li .box {
  margin-right: 0.24rem;
}
.indexP1 .botList li .box .limg a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.2rem;
  border: #f5f5f5 solid 1px;
  overflow: hidden;
}
.indexP1 .botList li .box .limg img {
  max-width: 2rem;
  max-height: 1rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP1 .botList li .box:hover .limg img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP2 {
  padding: 1.1rem 0 1.2rem;
  overflow: hidden;
  background: #f8f8f8;
}
.indexP2 .indTitle {
  margin-bottom: 0.5rem;
}
.indTech {
  position: relative;
  overflow: hidden;
}
.indTech .swiper-slide .box {
  height: 3.64rem;
  background: #fff;
  padding: 0.4rem 0.3rem 0;
  overflow: hidden;
}
.indTech .swiper-slide .ico {
  height: 0.9rem;
}
.indTech .swiper-slide .ico img {
  width: 0.45rem;
}
.indTech .swiper-slide .name {
  font-family: 'Poppins-M';
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #000;
}
.indTech .swiper-slide .lie {
  margin-top: 0.2rem;
}
.indTech .swiper-slide .lie li {
  font-size: var(--fs16);
  line-height: 0.24rem;
  position: relative;
  padding-left: 12px;
}
.indTech .swiper-slide .lie li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 0.1rem;
  background: #2a5dc4;
}
.indTech .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.6rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.indTech .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.indTech .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
.indexP3 {
  padding-top: 1.1rem;
  height: 6.8rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP3 .conDiv {
  width: 6.2rem;
}
.indexP3 .indTitle {
  text-align: left;
  color: #fff;
}
.indexP3 .content {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #fff;
}
.indexP3 .btnDiv {
  margin-top: 0.8rem;
}
.indexP3 .btnDiv 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.65rem;
  height: 0.5rem;
  background: #2a5dc4;
  color: #fff;
  font-size: var(--fs16);
}
.indexP3 .btnDiv a em {
  margin-left: 0.16rem;
  width: 9px;
  height: 9px;
  background: url(../img/ico2.png) no-repeat;
}
.indexP4 {
  padding: 1.1rem 0 1.4rem;
}
.indexP4 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
  margin: 0.15rem 0 0.45rem;
}
.indexP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP4 .list li {
  width: calc((100% - 0.96rem) / 4);
  position: relative;
  margin-right: 0.32rem;
}
.indexP4 .list li:nth-child(4n) {
  margin-right: 0;
}
.indexP4 .list li .imgDiv {
  height: 2.54rem;
  overflow: hidden;
}
.indexP4 .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;
}
.indexP4 .list li .name {
  margin-top: 0.3rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.indexP4 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP4 .list li:hover .name {
  color: #2a5dc4;
}
.indexP5 {
  padding: 1.1rem 0 1.2rem;
  position: relative;
  overflow: hidden;
}
.indexP5 .parallax-bg {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 130%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP5 .indTitle {
  text-align: left;
}
.indexP5 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #000;
  margin: 0.15rem 0 0.8rem;
}
.indDevelop {
  position: relative;
  overflow: hidden;
}
.indDevelop .swiper-slide .box {
  height: 3.64rem;
  background: #fff;
  padding: 0.4rem 0.3rem 0;
  overflow: hidden;
}
.indDevelop .swiper-slide .ico {
  height: 0.9rem;
}
.indDevelop .swiper-slide .ico img {
  width: 0.43rem;
}
.indDevelop .swiper-slide .name {
  font-family: 'Poppins-M';
  font-size: var(--fs20);
  line-height: 0.24rem;
  color: #000;
}
.indDevelop .swiper-slide .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.indDevelop .swiper-slide .lie {
  margin-top: 0.2rem;
}
.indDevelop .swiper-slide .lie li {
  font-size: var(--fs16);
  line-height: 0.24rem;
  position: relative;
  padding-left: 12px;
}
.indDevelop .swiper-slide .lie li::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: 0.1rem;
  background: #2a5dc4;
}
.indDevelop .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.6rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.indDevelop .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.indDevelop .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
.indexP6 {
  padding: 1.1rem 0 1.2rem;
}
.indexP6 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP6 .leftDiv {
  width: 54.8%;
}
.indexP6 .indTitle {
  text-align: left;
}
.indexP6 .content {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.3rem;
}
.indexP6 .form {
  margin-top: 0.35rem;
}
.indexP6 .form::after {
  content: '';
  display: block;
  clear: both;
}
.indexP6 .form ul {
  margin-right: -0.2rem;
}
.indexP6 .form li {
  float: left;
  width: 50%;
  padding-bottom: 0.2rem;
}
.indexP6 .form li .box {
  margin-right: 0.2rem;
  position: relative;
  background: #f6f6f6;
}
.indexP6 .form li .box::before {
  content: '*';
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -7px;
  color: #f80404;
  font-size: 14px;
  line-height: 14px;
  z-index: 1;
}
.indexP6 .form li .input1 {
  padding-left: 28px;
  height: 0.54rem;
  line-height: 0.54rem;
  background: #f6f6f6;
  font-size: var(--fs14);
  color: #666;
  font-family: 'Poppins-R';
}
.indexP6 .form li textarea {
  padding-top: 0.1rem;
  padding-left: 28px;
  height: 0.95rem;
  line-height: 0.24rem;
  background: #f6f6f6;
  font-size: var(--fs14);
  color: #666;
  font-family: 'Poppins-R';
}
.indexP6 .form .li01 {
  width: 100%;
}
.indexP6 .form .li01 .box::before {
  display: none;
}
.indexP6 .select {
  width: 100%;
  position: relative;
  padding-left: 28px;
}
.indexP6 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs14);
  color: #000;
}
.indexP6 .select .caption::after {
  content: "";
  display: block;
  width: 30px;
  height: 8px;
  background: url(../img/selectIco.png) no-repeat right center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  z-index: 1;
}
.indexP6 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
}
.indexP6 .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.indexP6 .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.indexP6 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #2a5dc4;
}
.indexP6 .select .xlist em {
  display: block;
  cursor: pointer;
  font-size: var(--fs14);
  background: #fff;
  color: #333;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.indexP6 .select .xlist em:hover {
  color: #2a5dc4;
}
.indexP6 .select .xlist em:last-child {
  border-bottom: none;
}
.indexP6 .btnDiv {
  margin-top: 0.1rem;
}
.indexP6 .btnDiv 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.66rem;
  height: 0.54rem;
  background: #2a5dc4;
  color: #fff;
  font-size: var(--fs18);
}
.indexP6 .rightDiv {
  width: 39.7%;
  padding-top: 1.2rem;
}
.indexP6 .rightDiv .name {
  font-family: 'Poppins-M';
  color: #000;
  font-size: var(--fs24);
  line-height: 0.3rem;
}
.indexP6 .rightDiv .msgList {
  padding-top: 0.25rem;
  width: 4.8rem;
}
.indexP6 .rightDiv .msgList li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  padding-left: 0.5rem;
  min-height: 0.36rem;
  margin-bottom: 0.2rem;
}
.indexP6 .rightDiv .msgList li:last-child {
  margin-bottom: 0;
}
.indexP6 .rightDiv .msgList li .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.18rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #2a5dc4;
}
.indexP6 .rightDiv .msgList li .ico img {
  width: 0.21rem;
}
.indexP6 .rightDiv .msgList li .zi {
  color: #000;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.indexP6-2 .form li .box {
  background: none;
}
.indexP6-2 .form li .box::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  z-index: 1;
}
.indexP6-2 .form li .input1 {
  background: #fff;
}
.indexP6-2 .form li textarea {
  background: #fff;
}
.indexP6-2 .select {
  width: 100%;
  position: relative;
  padding-left: 28px;
}
.indexP6-2 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs14);
  color: #000;
}
.indexP6-2 .select .caption::after {
  content: "";
  display: block;
  width: 30px;
  height: 8px;
  background: url(../img/selectIco.png) no-repeat right center;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  z-index: 1;
}
.indexP6-2 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
}
.indexP6-2 .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.indexP6-2 .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.indexP6-2 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #2a5dc4;
}
.indexP6-2 .select .xlist em {
  display: block;
  cursor: pointer;
  font-size: var(--fs14);
  background: #fff;
  color: #333;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.indexP6-2 .select .xlist em:hover {
  color: #2a5dc4;
}
.indexP6-2 .select .xlist em:last-child {
  border-bottom: none;
}
@media (max-width: 1600px) {
  .indTech .swiper-slide .box {
    padding: 0.3rem 0.3rem 0;
  }
  .indTech .swiper-slide .ico {
    height: 0.7rem;
  }
  .indDevelop .swiper-slide .box {
    padding: 0.3rem 0.3rem 0;
  }
  .indDevelop .swiper-slide .ico {
    height: 0.7rem;
  }
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP1 {
    padding: 0.9rem 0 0.8rem;
  }
  .indexP1 .tab2 {
    height: auto;
    overflow: hidden;
    margin-bottom: 0.4rem;
  }
  .indexP1 .tab2::after {
    display: none;
  }
  .indexP1 .tab2 ul {
    display: block;
  }
  .indexP1 .tab2 li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    float: left;
    width: 50%;
    height: 0.8rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
    margin-bottom: 0.2rem;
  }
  .indexP1 .tab2 li::after {
    height: 2px;
  }
  .indexP1 .mxfDiv {
    display: block;
    height: auto;
  }
  .indexP1 .imgDiv {
    width: 100%;
    height: 4.8rem;
  }
  .indexP1 .conDiv {
    padding: 0.8rem 0.3rem;
    width: auto;
  }
  .indexP1 .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .indexP1 .conDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-top: 0.15rem;
  }
  .indexP1 .conDiv .lie {
    margin-top: 0.2rem;
  }
  .indexP1 .conDiv .lie li .zi {
    padding-left: 0.2rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
    color: #000;
  }
  .indexP1 .conDiv .lie li .zi::before {
    margin-top: -7px;
    width: 2px;
    height: 14px;
  }
  .indexP1 .conDiv .lie li .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indexP1 .conDiv .more {
    margin-top: 0.4rem;
    width: 2.6rem;
  }
  .indexP1 .conDiv .more a {
    height: 0.84rem;
    font-size: var(--fs15);
  }
  .indexP1 .botList {
    margin-top: 0.6rem;
  }
  .indexP1 .botList ul {
    margin-right: -0.2rem;
  }
  .indexP1 .botList li {
    width: 33.33%;
    margin-bottom: 0.2rem;
  }
  .indexP1 .botList li .box {
    margin-right: 0.2rem;
  }
  .indexP1 .botList li .box .limg a {
    height: 1.2rem;
  }
  .indexP1 .botList li .box .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
  .indexP2 {
    padding: 0.9rem 0 1rem;
  }
  .indTech .swiper-slide .box {
    height: 5.6rem;
    padding: 0.5rem 0.3rem 0;
  }
  .indTech .swiper-slide .ico {
    height: 1rem;
  }
  .indTech .swiper-slide .ico img {
    width: 0.76rem;
  }
  .indTech .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indTech .swiper-slide .lie li {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indTech .swiper-slide .lie li::before {
    top: 0.15rem;
  }
  .indTech .swiper-pagination {
    display: block;
  }
  .indexP3 {
    padding: 1.4rem 0;
    height: auto;
  }
  .indexP3 .conDiv {
    width: auto;
  }
  .indexP3 .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.92rem;
  }
  .indexP3 .btnDiv {
    margin-top: 0.4rem;
  }
  .indexP3 .btnDiv a {
    width: 2.6rem;
    height: 0.84rem;
    font-size: var(--fs15);
  }
  .indexP4 {
    padding: 0.9rem 0 0.6rem;
  }
  .indexP4 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.15rem 0 0.6rem;
  }
  .indexP4 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.45rem;
  }
  .indexP4 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .indexP4 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .indexP4 .list li .imgDiv {
    height: 2.2rem;
  }
  .indexP4 .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .indexP4 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indexP5 {
    padding: 0.9rem 0 1rem;
  }
  .indexP5 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.2rem 0 0.65rem;
  }
  .indDevelop .swiper-slide .box {
    height: 5.6rem;
    padding: 0.5rem 0.3rem 0;
  }
  .indDevelop .swiper-slide .ico {
    height: 1rem;
  }
  .indDevelop .swiper-slide .ico img {
    width: 0.76rem;
  }
  .indDevelop .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indDevelop .swiper-slide .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indDevelop .swiper-slide .lie li {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indDevelop .swiper-slide .lie li::before {
    top: 0.15rem;
  }
  .indDevelop .swiper-pagination {
    display: block;
  }
  .indexP6 {
    padding: 0.9rem 0 1rem;
  }
  .indexP6 .mxfDiv {
    display: block;
  }
  .indexP6 .leftDiv {
    width: auto;
  }
  .indexP6 .content {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP6 .form {
    margin-top: 0.5rem;
  }
  .indexP6 .form ul {
    margin-right: 0;
  }
  .indexP6 .form li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .indexP6 .form li .box {
    margin-right: 0;
  }
  .indexP6 .form li .box::before {
    left: 0.2rem;
  }
  .indexP6 .form li .input1 {
    padding-left: 0.48rem;
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .indexP6 .form li textarea {
    padding-left: 0.48rem;
    padding-top: 0.35rem;
    height: 2rem;
  }
  .indexP6 .select {
    padding-left: 0.48rem;
  }
  .indexP6 .select .caption {
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .indexP6 .select .xlist {
    max-height: 4rem;
  }
  .indexP6 .select .xlist em {
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.4rem;
  }
  .indexP6 .btnDiv {
    margin-top: 0.2rem;
  }
  .indexP6 .btnDiv a {
    width: 2.36rem;
    height: 0.84rem;
    font-size: var(--fs15);
  }
  .indexP6 .rightDiv {
    width: auto;
    padding-top: 0.8rem;
  }
  .indexP6 .rightDiv .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .indexP6 .rightDiv .msgList {
    padding-top: 0.35rem;
    width: auto;
  }
  .indexP6 .rightDiv .msgList li {
    padding-left: 1rem;
    min-height: 0.7rem;
  }
  .indexP6 .rightDiv .msgList li .ico {
    margin-top: -0.35rem;
    width: 0.7rem;
    height: 0.7rem;
  }
  .indexP6 .rightDiv .msgList li .ico img {
    width: 0.36rem;
  }
  .indexP6 .rightDiv .msgList li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.aboutP1 {
  padding-top: 1.3rem;
}
.aboutP1 .content {
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #000;
  padding: 0 2.4rem 0.9rem;
}
.aboutP1 .videobox {
  margin: 0 auto;
  width: 12rem;
  height: 6.7rem;
  position: relative;
  overflow: hidden;
}
.aboutP1 .videobox .imgDiv {
  position: relative;
  height: 6.7rem;
}
.aboutP1 .videobox .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.aboutP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP1 .videobox video {
  max-width: 100%;
  max-height: 6.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.aboutP1 .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  margin-top: -0.35rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 1;
}
.aboutP1 .videobox.cur {
  background: #000;
}
.aboutP1 .videobox.cur .imgDiv,
.aboutP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.aboutP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.aboutP2 {
  padding: 1.2rem 0;
}
.aboutP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
}
.culture {
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.culture .swiper-slide .box {
  position: relative;
  height: 3.64rem;
  background: #f6f6f6;
  padding: 0.42rem 0.4rem 0;
  overflow: hidden;
}
.culture .swiper-slide .layer {
  width: 100%;
  padding-left: 0.4rem;
  padding-right: 1rem;
  position: absolute;
  right: 0;
  bottom: 0.5rem;
}
.culture .swiper-slide .ico {
  position: absolute;
  right: 0.4rem;
  bottom: 0;
}
.culture .swiper-slide .ico img {
  width: 0.52rem;
}
.culture .swiper-slide .name {
  font-family: 'Poppins-M';
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #000;
}
.culture .swiper-slide .msg {
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.culture .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.45rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.culture .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.culture .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
.aboutP3 {
  background: #f6f6f6;
  padding: 1.2rem 0;
}
.aboutP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.6rem;
}
.historyPic {
  position: relative;
}
.historyPic .detail-box .item {
  display: none;
  position: relative;
  overflow: hidden;
}
.historyPic .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.historyPic .detail-box .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.historyPic .detail-box .imgDiv {
  width: 50%;
  animation: am_left 0.6s ease-in-out 0.2s backwards;
  -webkit-animation: am_left 0.6s ease-in-out 0.2s backwards;
}
.historyPic .detail-box .imgDiv img {
  width: 100%;
}
.historyPic .detail-box .conDiv {
  width: 45%;
  animation: am_right 0.6s ease-in-out 0.2s backwards;
  -webkit-animation: am_right 0.6s ease-in-out 0.2s backwards;
}
.historyPic .detail-box .year {
  font-family: 'Poppins-M';
  font-size: 0.72rem;
  line-height: 0.86rem;
  color: #2a5dc4;
}
.historyPic .detail-box .desc {
  margin-top: 0.4rem;
}
.historyPic .detail-box .desc li {
  position: relative;
  padding-left: 15px;
  padding-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
}
.historyPic .detail-box .desc li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2a5dc4;
  position: absolute;
  left: 0;
  top: 0.08rem;
  z-index: 1;
  border-radius: 50%;
}
.historyPic .box-container {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
}
.historyPic .box-container::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}
.historyPic .year-swiper {
  overflow: hidden;
}
.historyPic .swiper-slide {
  width: 25%;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.historyPic .swiper-slide::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  background: #2a5dc4;
  width: 0;
  height: 1px;
  transition: All 5s linear;
  z-index: 1;
}
.historyPic .swiper-slide .ico {
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}
.historyPic .swiper-slide .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: #dfdfdf;
}
.historyPic .swiper-slide .year {
  font-family: 'Poppins-M';
  padding-bottom: 24px;
  font-size: 18px;
  line-height: 20px;
  color: #666;
}
.historyPic .swiper-slide-active::after {
  width: 100%;
}
.historyPic .swiper-slide-active .year {
  color: #2a5dc4;
}
.historyPic .swiper-slide-active .ico::after {
  background: #2a5dc4;
}
.historyPic .prev {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 12px;
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff url(../img/nimg9_left.png) center no-repeat;
  z-index: 5;
}
.historyPic .prev:hover {
  background: #2a5dc4 url(../img/nimg9_lefton.png) center no-repeat;
}
.historyPic .next {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 12px;
  cursor: pointer;
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
  border-radius: 50%;
  background: #fff url(../img/nimg9_right.png) center no-repeat;
  z-index: 5;
}
.historyPic .next:hover {
  background: #2a5dc4 url(../img/nimg9_righton.png) center no-repeat;
}
.aboutP4 {
  padding: 1.2rem 0;
}
.aboutP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
}
.honorPic {
  margin-top: 0.6rem;
}
.honorPic .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.honorPic .imgList li {
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
}
.honorPic .imgList li .box {
  padding: 0.4rem 0.3rem 0;
  height: 3.6rem;
  background: #f6f6f6;
  transition: All 0.5s ease;
}
.honorPic .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 2.42rem;
  cursor: pointer;
}
.honorPic .imgList li .imgDiv img {
  max-width: 100%;
  max-height: 2.42rem;
  transition: All 1s ease;
}
.honorPic .imgList li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.15rem;
  height: 0.52rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #000;
  overflow: hidden;
}
.honorPic .imgList li .box:hover {
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(23, 137, 201, 0.2);
}
.honorPic .imgList li .box:hover .imgDiv img {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
}
.honorPic .bottom {
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.honorPic .swiper-pagination {
  position: relative;
  width: calc(100% - 2.2rem);
  height: 2px;
  background-color: #e1e6e7;
}
.honorPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #2a5dc4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.honorPic .arrowDiv {
  font-size: 0;
}
.honorPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: #e2e7e8 solid 2px;
  box-sizing: border-box;
}
.honorPic .arrowDiv .se:hover {
  background: #2a5dc4;
  border: #2a5dc4 solid 2px;
}
.honorPic .arrowDiv .prev {
  margin-right: 0.2rem;
}
.honorPic .arrowDiv .prev:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -4px;
  margin-top: -6px;
  background: url(../img/nimg7_left.png) no-repeat;
}
.honorPic .arrowDiv .prev:hover:after {
  background: url(../img/nimg7_lefton.png) no-repeat;
}
.honorPic .arrowDiv .next:after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 7px;
  height: 12px;
  margin-right: -4px;
  margin-top: -6px;
  background: url(../img/nimg7_right.png) no-repeat;
}
.honorPic .arrowDiv .next:hover:after {
  background: url(../img/nimg7_righton.png) no-repeat;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding-top: 0.9rem;
  }
  .aboutP1 .content {
    font-size: var(--fs15);
    line-height: 0.56rem;
    padding: 0 0 0.7rem;
    text-align: left;
  }
  .aboutP1 .videobox {
    width: 100%;
    height: 3.8rem;
  }
  .aboutP1 .videobox .imgDiv {
    height: 3.8rem;
  }
  .aboutP1 .videobox video {
    max-height: 3.8rem;
  }
  .aboutP1 .videobox .playbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
  }
  .aboutP1 .videobox .playbox img {
    width: 0.26rem;
  }
  .aboutP2 {
    padding: 0.9rem 0;
  }
  .aboutP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .culture {
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  .culture .swiper-slide .box {
    height: 4.6rem;
  }
  .culture .swiper-slide .layer {
    padding-right: 1.4rem;
  }
  .culture .swiper-slide .ico {
    right: 0.3rem;
  }
  .culture .swiper-slide .ico img {
    width: 0.96rem;
  }
  .culture .swiper-slide .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .culture .swiper-slide .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .culture .swiper-pagination {
    display: block;
  }
  .aboutP3 {
    padding: 0.9rem 0;
  }
  .aboutP3 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .historyPic .detail-box .mxfDiv {
    display: block;
  }
  .historyPic .detail-box .imgDiv {
    width: 100%;
    animation: am_top 0.6s ease-in-out 0.2s backwards;
    -webkit-animation: am_top 0.6s ease-in-out 0.2s backwards;
  }
  .historyPic .detail-box .conDiv {
    width: 100%;
    padding-top: 0.5rem;
    animation: am_top 0.6s ease-in-out 0.2s backwards;
    -webkit-animation: am_top 0.6s ease-in-out 0.2s backwards;
  }
  .historyPic .detail-box .year {
    font-size: var(--fs30);
    line-height: 0.64rem;
  }
  .historyPic .detail-box .desc {
    margin-top: 0.4rem;
  }
  .historyPic .detail-box .desc li {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin-bottom: 0.15rem;
    padding-left: 0.25rem;
  }
  .historyPic .detail-box .desc li::before {
    top: 0.15rem;
  }
  .historyPic .box-container {
    margin-top: 0.5rem;
    padding: 0 0.65rem;
  }
  .historyPic .swiper-slide {
    width: 33.33%;
  }
  .historyPic .swiper-slide .year {
    padding-bottom: 20px;
    font-size: var(--fs18);
    line-height: 0.42rem;
  }
  .historyPic .prev {
    left: 0.2rem;
    margin-left: 0;
    top: 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .historyPic .next {
    right: 0.2rem;
    margin-right: 0;
    top: 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .aboutP4 {
    padding: 0.9rem 0;
  }
  .aboutP4 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .honorPic .imgList {
    overflow: hidden;
    padding: 0.2rem;
    margin: -0.2rem;
  }
  .honorPic .imgList li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .honorPic .imgList li .box {
    padding: 0.3rem 0.3rem 0;
    height: 4.4rem;
  }
  .honorPic .imgList li .imgDiv {
    height: 2.8rem;
  }
  .honorPic .imgList li .imgDiv img {
    max-height: 2.8rem;
  }
  .honorPic .imgList li .name {
    height: 0.96rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .honorPic .swiper-pagination {
    width: calc(100% - 2.36rem);
  }
  .honorPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
    border: #e2e7e8 solid 1px;
  }
  .honorPic .arrowDiv .se:hover {
    border: #2a5dc4 solid 1px;
  }
}
.serverP1 {
  padding: 1.2rem 0;
}
.serverP1 .name {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
}
.serverP1 .content {
  width: 64%;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
  margin: 0.25rem auto 1rem;
}
.serverP1 .msgList {
  margin-top: 1rem;
}
.serverP1 .msgList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.serverP1 .msgList li {
  position: relative;
  border-top: #000 solid 2px;
  width: calc((100% - 0.4rem) / 2);
  margin-right: 0.4rem;
  padding-top: 0.2rem;
  padding-left: 1.6rem;
}
.serverP1 .msgList li:nth-child(2n) {
  margin-right: 0;
}
.serverP1 .msgList li .wen {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.6rem;
  font-size: var(--fs20);
  color: #0e1019;
  line-height: 0.3rem;
}
.serverP1 .msgList li .lie dd {
  position: relative;
  padding: 0.1rem 0;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.serverP1 .msgList li .lie dd::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e3e3e3;
}
.serverPic {
  width: 7rem;
  margin: 0 auto;
}
.serverPic .imgList {
  overflow: hidden;
}
.serverPic .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 5.6rem;
  height: 4.2rem;
}
.serverPic .imgList li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.serverPic .swiper-pagination {
  position: relative;
  text-align: center;
  padding-top: 1rem;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.serverPic .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 6px;
  opacity: 1;
  background: #d1d4d6;
  border: none;
  border-radius: 8px;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.serverPic .swiper-pagination-bullet-active {
  background: #2a5dc4;
  width: 38px;
}
.serverP2 {
  padding-bottom: 1.2rem;
}
.serverP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.4rem;
}
.serverP2 .table table th {
  width: 50%;
  padding: 0 0.3rem;
  color: #fff;
  height: 0.6rem;
  background: #2a5dc4;
  font-size: var(--fs18);
  text-align: left;
}
.serverP2 .table table td {
  font-size: var(--fs16);
  color: #0e1019;
  padding: 0.15rem 0.3rem;
  line-height: 0.28rem;
  background: #f8f8f8;
  border-bottom: #fff solid 1px;
}
.serverP3 {
  padding-bottom: 1.2rem;
}
.serverP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.4rem;
}
.serverP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.serverP3 .list li {
  width: calc((100% - 0.4rem) / 2);
  margin-top: 0.4rem;
  margin-right: 0.4rem;
}
.serverP3 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.serverP3 .list li:nth-child(2n) {
  margin-right: 0;
}
.serverP3 .list li a {
  position: relative;
  display: block;
  height: 0.9rem;
  padding: 0 1.7rem 0 0.3rem;
  background: #f8f8f8;
}
.serverP3 .list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2a5dc4;
  transition: All 0.5s ease;
}
.serverP3 .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 0.6rem;
  height: 0.9rem;
  position: relative;
  color: #0e1019;
  font-size: var(--fs18);
}
.serverP3 .list li a .name em {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.22rem;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: #2a5dc4 url(../img/nimg19_1.png) center no-repeat;
  background-size: 0.19rem;
}
.serverP3 .list li a .btnDiv {
  position: absolute;
  right: 0.3rem;
  top: 0;
  line-height: 0.9rem;
  color: #2a5dc4;
  padding-left: 0.27rem;
  background: url(../img/nimg16_1.png) left center no-repeat;
  background-size: 0.16rem;
}
.serverP3 .list li a:hover {
  background: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.13);
}
.serverP3 .list li a:hover::after {
  width: 100%;
}
@media (max-width: 1004px) {
  .serverP1 {
    padding: 0.9rem 0;
  }
  .serverP1 .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .serverP1 .content {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0.3rem auto 0.7rem;
  }
  .serverP1 .msgList {
    margin-top: 0.7rem;
  }
  .serverP1 .msgList ul {
    display: block;
  }
  .serverP1 .msgList li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
  }
  .serverP1 .msgList li:last-child {
    margin-bottom: 0;
  }
  .serverP1 .msgList li .wen {
    width: 2.5rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .serverP1 .msgList li .lie dd {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serverPic {
    width: 100%;
  }
  .serverPic .swiper-pagination {
    padding-top: 0.7rem;
  }
  .serverP2 {
    padding-bottom: 0.9rem;
  }
  .serverP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    margin-bottom: 0.55rem;
  }
  .serverP2 .table table th {
    padding: 0 0.2rem;
    height: 1rem;
    font-size: var(--fs15);
  }
  .serverP2 .table table td {
    font-size: var(--fs13);
    padding: 0.15rem 0.2rem;
    line-height: 0.42rem;
  }
  .serverP3 {
    padding-bottom: 0.9rem;
  }
  .serverP3 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    margin-bottom: 0.55rem;
  }
  .serverP3 .list ul {
    display: block;
  }
  .serverP3 .list li {
    width: 100%;
    margin-top: 0.3rem;
    margin-right: 0;
  }
  .serverP3 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .serverP3 .list li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .serverP3 .list li a {
    height: auto;
    padding: 0.2rem 0.3rem;
  }
  .serverP3 .list li a .name {
    padding-left: 0.86rem;
    height: 1rem;
    font-size: var(--fs15);
  }
  .serverP3 .list li a .name em {
    margin-top: -0.32rem;
    width: 0.64rem;
    height: 0.64rem;
    background-size: 0.28rem;
  }
  .serverP3 .list li a .btnDiv {
    position: relative;
    right: 0;
    font-size: var(--fs13);
    line-height: 0.56rem;
    padding-left: 0.4rem;
    background-size: 0.26rem;
  }
}
.support {
  padding: 1.1rem 0 1.2rem;
}
.support .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin: 0;
}
.support .content {
  width: 64%;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
  margin: 0.12rem auto 0.5rem;
}
.support .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.support .list li:last-child {
  margin-bottom: 0;
}
.support .list li .imgDiv {
  width: 50%;
}
.support .list li .imgDiv img {
  width: 100%;
}
.support .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 42.3%;
}
.support .list li .conDiv .ico {
  margin-bottom: 0.4rem;
}
.support .list li .conDiv .ico img {
  width: 0.5rem;
}
.support .list li .conDiv .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.36rem;
}
.support .list li .conDiv .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.support .list li:nth-child(even) .imgDiv {
  order: 1;
}
@media (max-width: 1004px) {
  .support {
    padding: 0.9rem 0 1rem;
  }
  .support .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .support .content {
    width: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0.2rem auto 0.5rem;
  }
  .support .list ul {
    display: block;
  }
  .support .list li {
    display: block;
    margin-bottom: 0.6rem;
  }
  .support .list li .imgDiv {
    width: 100%;
  }
  .support .list li .conDiv {
    margin-top: 0.5rem;
    width: 100%;
    display: block;
  }
  .support .list li .conDiv .ico {
    height: auto;
    margin-bottom: 0.35rem;
  }
  .support .list li .conDiv .ico img {
    width: 0.8rem;
  }
  .support .list li .conDiv .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .support .list li .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.developmentP1 {
  padding: 1.2rem 0;
}
.developmentP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.developmentP1 .conDiv {
  width: 75.5%;
}
.developmentP1 .title {
  font-size: var(--fs48);
  line-height: 0.52rem;
  color: #000;
  font-family: 'Poppins-M';
  margin: 0;
}
.developmentP1 .content {
  margin-top: 0.5rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.developmentP1 .rightDiv {
  width: 2.26rem;
}
.developPic {
  position: relative;
}
.developPic .list {
  overflow: hidden;
  border: #c6cfe8 solid 1px;
  border-radius: 0.16rem;
}
.developPic .list li .box {
  padding: 0 0.18rem;
  height: 2.6rem;
}
.developPic .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  font-size: var(--fs24);
  color: #509f18;
  height: 0.82rem;
  border-bottom: #c6cfe8 solid 1px;
}
.developPic .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.2rem auto 0;
  width: 1.7rem;
  height: 1.4rem;
}
.developPic .list li .limg img {
  max-width: 100%;
  max-height: 100%;
}
.developPic .swiper-pagination {
  position: relative;
  padding-top: 0.1rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.developPic .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.developPic .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
.developmentP2 {
  height: 6.8rem;
  position: relative;
  overflow: hidden;
}
.developmentP2 .parallax-bg {
  position: absolute;
  top: -90%;
  left: 0;
  width: 100%;
  height: 130%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.developmentP2 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.developmentP2 .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #fff;
  margin: 0;
  font-family: 'Poppins-M';
}
.developmentP2 .list {
  padding-top: 0.3rem;
  width: 7.86rem;
}
.developmentP2 .list li {
  position: relative;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #fff;
  margin-bottom: 0.2rem;
  padding-left: 0.2rem;
}
.developmentP2 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #fff;
}
.developmentP3 {
  padding: 1.2rem 0;
}
.developmentP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  margin-bottom: 0.55rem;
  font-family: 'Poppins-M';
}
.developmentP3 .list {
  margin-right: -0.18rem;
}
.developmentP3 .list ul {
  display: inline-flex;
  width: 100%;
}
.developmentP3 .list li {
  width: 20%;
  height: 4.5rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.developmentP3 .list li .box {
  margin-right: 0.18rem;
  position: relative;
  overflow: hidden;
}
.developmentP3 .list li .bg {
  position: relative;
  height: 4.5rem;
  background: center no-repeat;
  background-size: cover;
}
.developmentP3 .list li .bg::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: All 0.5s ease;
}
.developmentP3 .list li .beforeDiv {
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  padding: 0 0.3rem;
  z-index: 1;
  transition: All 0.5s ease;
}
.developmentP3 .list li .beforeDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #fff;
  text-align: center;
}
.developmentP3 .list li .afterDiv {
  position: absolute;
  width: 100%;
  padding: 0 0.3rem;
  left: 0;
  bottom: -50%;
  z-index: 1;
  color: #fff;
  height: 0;
  overflow: hidden;
  transition: All 0.5s ease;
}
.developmentP3 .list li .afterDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.developmentP3 .list li .afterDiv .msg {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.developmentP3 .list li.on {
  width: 40%;
}
.developmentP3 .list li.on .bg::after {
  opacity: 1;
  visibility: visible;
}
.developmentP3 .list li.on .beforeDiv {
  bottom: -1rem;
}
.developmentP3 .list li.on .afterDiv {
  bottom: 0.25rem;
  height: auto;
}
@media (max-width: 1004px) {
  .developmentP1 {
    padding: 0.9rem 0;
  }
  .developmentP1 .mxfDiv {
    display: block;
  }
  .developmentP1 .conDiv {
    width: auto;
    margin-bottom: 0.6rem;
  }
  .developmentP1 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .developmentP1 .content {
    margin-top: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .developmentP1 .rightDiv {
    width: 60%;
    margin: 0 auto;
  }
  .developPic .list {
    border-radius: 0.2rem;
  }
  .developPic .list li .box {
    padding: 0 0.25rem 0.4rem;
    height: auto;
  }
  .developPic .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 1.2rem;
  }
  .developPic .list li .limg {
    width: 2.6rem;
    height: 2.2rem;
  }
  .developPic .swiper-pagination {
    padding-top: 0.2rem;
  }
  .developmentP2 {
    height: auto;
    padding: 1rem 0;
  }
  .developmentP2 .wrap {
    display: block;
  }
  .developmentP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .developmentP2 .list {
    width: 85%;
  }
  .developmentP2 .list li {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-left: 0.25rem;
  }
  .developmentP2 .list li::before {
    top: 0.14rem;
    width: 4px;
    height: 4px;
  }
  .developmentP3 {
    padding: 0.9rem 0;
  }
  .developmentP3 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .developmentP3 .list {
    margin-right: 0;
  }
  .developmentP3 .list ul {
    display: block;
  }
  .developmentP3 .list li {
    width: 100%;
    height: 5.6rem;
    margin-bottom: 0.3rem;
  }
  .developmentP3 .list li:last-child {
    margin-bottom: 0;
  }
  .developmentP3 .list li .box {
    margin-right: 0;
  }
  .developmentP3 .list li .bg {
    height: 5.6rem;
  }
  .developmentP3 .list li .bg::after {
    opacity: 1;
    visibility: visible;
  }
  .developmentP3 .list li .beforeDiv {
    display: none;
  }
  .developmentP3 .list li .afterDiv {
    bottom: 0.25rem;
    height: auto;
  }
  .developmentP3 .list li .afterDiv .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .developmentP3 .list li .afterDiv .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-bottom: 0.15rem;
  }
  .developmentP3 .list li.on {
    width: 100%;
  }
  .developmentP3 .list li.on .beforeDiv {
    display: none;
  }
}
.news {
  padding: 1rem 0 1.2rem;
}
.news .zjMxf {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0.6rem;
}
.news .zjMxf::after {
  content: '';
  display: block;
  clear: both;
}
.news .zjMxf .select {
  width: 3.3rem;
  height: 0.6rem;
  position: relative;
}
.news .zjMxf .select .caption {
  border-radius: 0.48rem;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  z-index: 3;
  background: #fff url(../img/selectIco.png) right center no-repeat;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .on {
  border-radius: 0;
  border-top-left-radius: 0.32rem;
  border-top-right-radius: 0.32rem;
}
.news .zjMxf .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background: #fff;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  border-bottom-left-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-thumb {
  background-color: #2a5dc4;
}
.news .zjMxf .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  border-bottom: 1px solid #ddd;
}
.news .zjMxf .select .xlist a:hover {
  color: #2a5dc4;
}
.news .zjMxf .select .xlist a:last-child {
  border-bottom: none;
}
.news .zjMxf .select .xlist .on {
  color: #2a5dc4;
}
.news .zjMxf .form {
  margin-left: 0.3rem;
  width: 3.3rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
  overflow: hidden;
}
.news .zjMxf .form .input1 {
  width: 100%;
  background: #fff url(../img/nimg20_1.png) 0.2rem center no-repeat;
  padding-left: 0.6rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  font-family: 'Poppins-R';
}
.news .zjMxf .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .btnDiv {
  margin-left: 0.25rem;
}
.news .zjMxf .btnDiv a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 1.4rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Poppins-L';
  font-size: var(--fs18);
  border-radius: 0.48rem;
  background: #2a5dc4;
}
.news .list {
  padding-bottom: 0.8rem;
}
.news .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.news .list li {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
  margin-top: 0.6rem;
}
.news .list li:nth-child(-n+3) {
  margin-top: 0;
}
.news .list li:nth-child(3n) {
  margin-right: 0;
}
.news .list li a {
  display: block;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.08);
  border-radius: 0.12rem;
  overflow: hidden;
}
.news .list li a .imgDiv {
  height: 2.9rem;
  overflow: hidden;
}
.news .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.news .list li a .botDiv {
  padding: 0.35rem 0.4rem 0;
  height: 2.2rem;
  background: #fff;
  transition: All 0.5s ease;
}
.news .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs20);
  color: #333;
  line-height: 0.3rem;
}
.news .list li a .time {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #666;
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li a:hover .botDiv {
  background: #2a5dc4;
}
.news .list li a:hover .botDiv .name,
.news .list li a:hover .botDiv .time {
  color: #fff;
}
.newsPic {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.08);
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .imgDiv {
  width: 50%;
  height: 5.6rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.85rem 1rem 0 0.8rem;
}
.newsPic .time {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
  font-family: 'Poppins-M';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.1rem 0 0.3rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #000;
  font-family: 'Poppins-M';
  transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #999;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.2rem;
}
.newsPic .mxfDiv:hover .name {
  color: #2a5dc4;
}
.newsPic .swiper-pagination {
  width: auto;
  left: calc(50% + 0.8rem);
  bottom: 0.9rem;
  z-index: 2;
}
.newsPic .swiper-pagination-bullet {
  float: left;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #c6c6d1;
  border: none;
  border-radius: 50%;
  margin-left: 0!important;
  margin-right: 0.2rem !important;
  overflow: hidden;
}
.newsPic .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.9rem 0 1rem;
  }
  .news .zjMxf {
    margin: 0.7rem 0 0.6rem;
  }
  .news .zjMxf .select {
    float: none;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .select .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .news .zjMxf .select .on {
    border-top-left-radius: 0.48rem;
    border-top-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist {
    max-height: 4.3rem;
    border-bottom-left-radius: 0.48rem;
    border-bottom-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .news .zjMxf .form {
    float: none;
    margin-left: 0;
    margin-top: 0.3rem;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .form .input1 {
    width: 100%;
    background: #fff url(../img/nimg20_8.png) 0.3rem center no-repeat;
    background-size: 0.36rem;
    padding-left: 0.8rem;
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .news .zjMxf .btnDiv {
    margin-top: 0.3rem;
    margin-left: 0;
    float: none;
  }
  .news .zjMxf .btnDiv a {
    display: block;
    width: 2.1rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs15);
  }
  .news .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
  }
  .news .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .news .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .news .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .news .list li:nth-child(2n) {
    margin-right: 0;
  }
  .news .list li a {
    border-radius: 0.2rem;
  }
  .news .list li a .imgDiv {
    height: 2rem;
  }
  .news .list li a .botDiv {
    padding: 0.2rem 0.3rem 0;
    height: 2.5rem;
  }
  .news .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .news .list li a .time {
    margin-top: 0.2rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .newsPic {
    border-radius: 0.2rem;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 3.8rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 1.2rem;
  }
  .newsPic .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 0.5rem;
  }
  .newsPic .swiper-pagination-bullet {
    float: none;
    display: inline-block;
    margin-left: 0.1rem !important;
    margin-right: 0.1rem !important;
  }
}
.newsBox {
  padding: 1.4rem 0 1.6rem;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .leftDiv {
  width: 9.6rem;
}
.newsBox .name {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #000;
  margin-bottom: 0.25rem;
  font-family: 'Poppins-M';
}
.newsBox .msgList {
  padding-bottom: 0.4rem;
  overflow: hidden;
  border-bottom: #e4e4e4 solid 1px;
}
.newsBox .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs18);
  text-transform: uppercase;
  font-family: 'Poppins-M';
}
.newsBox .content {
  padding: 0.32rem 0 0.4rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: justify;
  color: #333;
}
.newsBox .content img {
  max-width: 100%;
}
.newsBox .imgDiv {
  text-align: center;
}
.sideNews {
  position: sticky;
  top: 1.2rem;
  width: 4.75rem;
}
.sideNews .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li {
  border-bottom: #e2e2e2 solid 1px;
}
.sideNews .list li:last-child {
  border-bottom: none;
}
.sideNews .list li a {
  display: block;
  padding: 0.3rem 0 0.2rem;
}
.sideNews .list li .cn {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #000;
  transition: All 0.5s ease;
}
.sideNews .list li .time {
  font-size: var(--fs16);
  color: #999;
}
.sideNews .list li:hover .cn {
  color: #2a5dc4;
}
.pageDown {
  padding-top: 0.3rem;
}
.pageDown li {
  margin-bottom: 20px;
}
.pageDown li:last-child {
  margin-bottom: 0;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  padding: 0.2rem 0.4rem 0;
  height: 1.06rem;
  line-height: 0.32rem;
  border: #e1e1e1 solid 1px;
  border-top: none;
}
.pageDown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #5f5f5f;
}
.pageDown li em {
  display: block;
  color: #000;
}
.pageDown li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  overflow: hidden;
  color: #666;
}
.pageDown li a:hover::before {
  background: #2a5dc4;
}
@media (max-width: 1600px) {
  .newsBox .leftDiv {
    width: 10rem;
  }
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.7rem 0 0.9rem;
  }
  .newsBox .leftDiv {
    width: auto;
    float: none;
  }
  .newsBox .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsBox .msgList {
    padding-bottom: 0.3rem;
  }
  .newsBox .msgList li {
    font-size: var(--fs14);
  }
  .newsBox .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .sideNews {
    display: none;
  }
  .pageDown li {
    margin-bottom: 0.3rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    padding: 0.2rem 0.3rem;
    height: auto;
    line-height: 0.52rem;
  }
  .pageDown li p {
    height: 0.52rem;
  }
}
.factoryP1 {
  padding: 1.2rem 0;
}
.factoryP1 .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.factoryP1 .list li:last-child {
  margin-bottom: 0;
}
.factoryP1 .list li .imgDiv {
  width: 50%;
}
.factoryP1 .list li .imgDiv img {
  width: 100%;
}
.factoryP1 .list li .conDiv {
  position: relative;
  width: 42.3%;
}
.factoryP1 .list li .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.52rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.36rem;
}
.factoryP1 .list li .conDiv .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.factoryP1 .list li .conDiv .more {
  position: absolute;
  left: 0;
  bottom: 0;
}
.factoryP1 .list li .conDiv .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.66rem;
  height: 0.5rem;
  background: #2a5dc4;
  font-size: var(--fs16);
  color: #fff;
}
.factoryP1 .list li .conDiv .more a em {
  margin-left: 0.15rem;
  width: 9px;
  height: 9px;
  background: url(../img/ico2.png) no-repeat;
}
.factoryP1 .list li .conDiv .lie {
  padding-top: 0.35rem;
}
.factoryP1 .list li .conDiv .lie dd {
  position: relative;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #333;
  margin-bottom: 0.1rem;
  padding-left: 0.2rem;
}
.factoryP1 .list li .conDiv .lie dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a5dc4;
}
.factoryP1 .list li:nth-child(even) .imgDiv {
  order: 1;
}
.factoryP2 {
  padding: 1.2rem 0;
  background: url(../img/factoryP2.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.factoryP2 .wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.factoryP2 .leftDiv {
  position: relative;
  width: 4rem;
}
.factoryP2 .leftDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  width: 3rem;
  margin: 0;
}
.factoryP2 .leftDiv .list {
  padding-top: 0.35rem;
}
.factoryP2 .leftDiv .list li {
  position: relative;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #333;
  margin-bottom: 0.1rem;
  padding-left: 0.2rem;
}
.factoryP2 .leftDiv .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2a5dc4;
}
.factoryP2 .leftDiv .arrowDiv {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  z-index: 1;
}
.factoryP2 .leftDiv .arrowDiv .se {
  position: relative;
  display: block;
  float: left;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  border: #ccc solid 2px;
}
.factoryP2 .leftDiv .arrowDiv .se::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  transition: All 0.5s ease;
}
.factoryP2 .leftDiv .arrowDiv .se:hover {
  border: #2a5dc4 solid 2px;
  background: #2a5dc4;
}
.factoryP2 .leftDiv .arrowDiv .prev {
  margin-right: 0.2rem;
}
.factoryP2 .leftDiv .arrowDiv .prev::before {
  left: 50%;
  margin-left: -5px;
  background: url(../img/nimg9_left.png) center no-repeat;
}
.factoryP2 .leftDiv .arrowDiv .prev:hover::before {
  background: url(../img/nimg9_lefton.png) center no-repeat;
}
.factoryP2 .leftDiv .arrowDiv .next::before {
  right: 50%;
  margin-right: -5px;
  background: url(../img/nimg9_right.png) center no-repeat;
}
.factoryP2 .leftDiv .arrowDiv .next:hover::before {
  background: url(../img/nimg9_righton.png) center no-repeat;
}
.factoryP2 .rightDiv {
  width: 10.1rem;
}
.proEquip {
  position: relative;
}
.proEquip .imgList {
  width: 120%;
  overflow: hidden;
}
.proEquip .imgList li {
  width: calc((100% - 0.45rem) / 2.42);
  margin-right: 0.45rem;
}
.proEquip .imgList li .box {
  position: relative;
}
.proEquip .imgList li .box .imgDiv {
  height: 5.8rem;
  overflow: hidden;
}
.proEquip .imgList li .box .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proEquip .imgList li .box .name {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  padding: 0 0.3rem;
  z-index: 1;
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #fff;
}
.proEquip .swiper-pagination {
  display: none;
  position: relative;
  padding-top: 0.45rem;
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.proEquip .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #dbdbdb;
  border: none;
  border-radius: 50%;
  margin-left: 5px!important;
  margin-right: 5px!important;
  overflow: hidden;
}
.proEquip .swiper-pagination-bullet-active {
  background: #2a5dc4;
}
.factoryP3 {
  padding: 1.2rem 0;
}
.factoryP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin: 0;
}
.factoryP3 .msg {
  width: 64%;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
  margin: 0.2rem auto 0.5rem;
}
.equipment {
  position: relative;
}
.equipment .imgList {
  overflow: hidden;
}
.equipment .imgList .swiper-slide .imgDiv {
  height: 2.96rem;
  overflow: hidden;
}
.equipment .imgList .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.equipment .imgList .swiper-slide .name {
  margin-top: 0.15rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #000;
  text-align: center;
}
.equipment .imgList .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.equipment .se {
  position: absolute;
  top: 1.2rem;
  z-index: 2;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #fff;
}
.equipment .se::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  transition: All 0.5s ease;
}
.equipment .se:hover {
  background: #2a5dc4;
}
.equipment .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.equipment .prev::before {
  left: 50%;
  margin-left: -5px;
  background: url(../img/nimg9_left2.png) center no-repeat;
}
.equipment .prev:hover::before {
  background: url(../img/nimg9_lefton.png) center no-repeat;
}
.equipment .next {
  right: 50%;
  margin-right: -8.8rem;
}
.equipment .next::before {
  right: 50%;
  margin-right: -5px;
  background: url(../img/nimg9_right2.png) center no-repeat;
}
.equipment .next:hover::before {
  background: url(../img/nimg9_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .factoryP1 {
    padding: 0.9rem 0;
  }
  .factoryP1 .list li {
    display: block;
    margin-bottom: 0.6rem;
  }
  .factoryP1 .list li .imgDiv {
    width: 100%;
  }
  .factoryP1 .list li .conDiv {
    margin-top: 0.5rem;
    width: auto;
  }
  .factoryP1 .list li .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
    margin-bottom: 0.3rem;
  }
  .factoryP1 .list li .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .factoryP1 .list li .conDiv .more {
    position: relative;
    margin-top: 0.4rem;
  }
  .factoryP1 .list li .conDiv .more a {
    width: 2.6rem;
    height: 0.84rem;
    font-size: var(--fs15);
  }
  .factoryP1 .list li .conDiv .lie {
    padding-top: 0.45rem;
  }
  .factoryP1 .list li .conDiv .lie dd {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin-bottom: 0.15rem;
    padding-left: 0.25rem;
  }
  .factoryP1 .list li .conDiv .lie dd::before {
    top: 0.15rem;
  }
  .factoryP2 {
    padding: 0.9rem 0;
  }
  .factoryP2 .wrap {
    display: block;
  }
  .factoryP2 .leftDiv {
    width: auto;
  }
  .factoryP2 .leftDiv .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    width: auto;
  }
  .factoryP2 .leftDiv .list li {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin-bottom: 0.15rem;
    padding-left: 0.25rem;
  }
  .factoryP2 .leftDiv .list li::before {
    top: 0.15rem;
  }
  .factoryP2 .leftDiv .arrowDiv {
    display: none;
  }
  .factoryP2 .rightDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .proEquip .imgList {
    width: 100%;
  }
  .proEquip .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .proEquip .imgList li .box .imgDiv {
    height: 5.4rem;
  }
  .proEquip .imgList li .box .name {
    bottom: 0.3rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .proEquip .swiper-pagination {
    display: block;
  }
  .factoryP3 {
    padding: 0.9rem 0;
  }
  .factoryP3 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .factoryP3 .msg {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .equipment .imgList .swiper-slide .imgDiv {
    height: 3.6rem;
  }
  .equipment .imgList .swiper-slide .name {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .equipment .se {
    top: 30%;
    width: 0.86rem;
    height: 0.86rem;
  }
  .equipment .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .equipment .next {
    right: 0.2rem;
    margin-right: 0;
  }
}
.contact {
  padding-top: 1.2rem;
  background: #f6f6f6;
  border-bottom: #ddd solid 1px;
  overflow: hidden;
}
.contact .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-family: 'Poppins-M';
  margin-bottom: 0.6rem;
}
.contact .mxfDiv {
  position: relative;
}
.contact .mapDiv {
  position: relative;
  width: 12.46rem;
  margin: 0 auto;
}
.contact .mapDiv .imgDiv img {
  width: 100%;
}
.contact .list li {
  position: absolute;
  font-size: var(--fs14);
  line-height: 0.2rem;
  color: #333;
}
.contact .list li em {
  display: block;
  cursor: pointer;
}
.contact .list li .ico {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: rgba(50, 123, 192, 0.1);
}
.contact .list li .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  border-radius: 50%;
  background: #2a5dc4;
}
.contact .list li .layerDiv {
  position: absolute;
  z-index: 2;
  padding: 18px 18px 25px;
  right: -150px;
  top: -190px;
  background: #fff;
  width: 294px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
}
.contact .list li .layerDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #2a5dc4;
  height: 2px;
  width: 100%;
}
.contact .list li .layerDiv .name {
  color: #000;
  font-size: var(--fs20);
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
  font-weight: bold;
}
.contact .list li .layerDiv .msg {
  font-size: var(--fs14);
  color: #666;
  padding-right: 4px;
  line-height: 24px;
  height: 96px;
  overflow: auto;
}
.contact .list li .layerDiv .msg::-webkit-scrollbar {
  width: 3px;
}
.contact .list li .layerDiv .msg::-webkit-scrollbar-track {
  background-color: #eee;
}
.contact .list li .layerDiv .msg::-webkit-scrollbar-thumb {
  background-color: #2a5dc4;
}
.contact .list .canada {
  right: 15.5%;
  top: 15%;
  padding-left: 0.28rem;
}
.contact .list .canada .ico {
  left: 0;
  top: 0;
}
.contact .list .america {
  right: 17%;
  top: 26%;
  padding-left: 0.28rem;
}
.contact .list .america .ico {
  left: 0;
  top: 0;
}
.contact .list .mexico {
  right: 15.5%;
  top: 32%;
  padding-left: 0.28rem;
}
.contact .list .mexico .ico {
  left: 0;
  top: 0;
}
.contact .list .brazil {
  right: 3.5%;
  top: 52%;
  padding-left: 0.28rem;
}
.contact .list .brazil .ico {
  left: 0;
  top: 0;
}
.contact .list .france {
  left: 11.5%;
  top: 18%;
  padding-left: 0.28rem;
}
.contact .list .france .ico {
  left: 0;
  top: 0;
}
.contact .list .tunisia {
  left: 10%;
  top: 26%;
  padding-left: 0.28rem;
}
.contact .list .tunisia .ico {
  left: 0;
  top: 0;
}
.contact .list .japan {
  left: 45.5%;
  top: 28%;
  padding-left: 0.28rem;
}
.contact .list .japan .ico {
  left: 0;
  top: 0;
}
.contact .list .korea {
  left: 39.5%;
  top: 30%;
  padding-top: 0.2rem;
}
.contact .list .korea .ico {
  left: 50%;
  margin-left: -0.09rem;
  top: 0;
}
.contact .list .singapore {
  left: 30.5%;
  top: 48%;
  padding-top: 0.2rem;
}
.contact .list .singapore .ico {
  left: 50%;
  margin-left: -0.09rem;
  top: 0;
}
.contact .list .australia {
  left: 43.5%;
  top: 62%;
  padding-left: 0.28rem;
}
.contact .list .australia .ico {
  left: 0;
  top: 0;
}
.contact .list .guangdong {
  left: 38.5%;
  top: 36%;
  padding-left: 0.28rem;
}
.contact .list .guangdong .ico {
  left: 0;
  top: 0;
}
.contact .list .huanan {
  right: 62.5%;
  top: 35%;
  padding-right: 0.28rem;
}
.contact .list .huanan .ico {
  right: 0;
  top: 0;
}
.contact .list .hunan {
  right: 61.5%;
  top: 32%;
  padding-right: 0.28rem;
}
.contact .list .hunan .ico {
  right: 0;
  top: 0;
}
.contact .list .huabei {
  right: 60.5%;
  top: 25.5%;
  padding-right: 0.28rem;
}
.contact .list .huabei .ico {
  right: 0;
  top: 0;
}
.contact .list .taiguo {
  right: 63.5%;
  top: 41.5%;
  padding-right: 0.28rem;
}
.contact .list .taiguo .ico {
  right: 0;
  top: 0;
}
.contact .list .deguo {
  left: 12.5%;
  top: 16%;
  padding-left: 0.28rem;
}
.contact .list .deguo .ico {
  left: 0;
  top: 0;
}
.contact .list .on .layerDiv {
  opacity: 1;
  visibility: visible;
  top: -170px;
}
.contact .zi {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  z-index: 1;
  color: #b5b6b6;
  font-size: var(--fs14);
  line-height: 0.24rem;
  text-align: center;
}
.contact .cardP4Tab {
  height: 0.9rem;
  position: relative;
  background: #2a5dc4;
  padding: 0 0.3rem;
  margin-bottom: 0.35rem;
}
.contact .cardP4Tab .txt {
  line-height: 0.9rem;
  font-size: var(--fs17);
  color: #fff;
  display: block;
}
.contact .cardP4Tab .ico {
  position: absolute;
  top: 0px;
  right: 0.35rem;
  width: 100%;
  height: 100%;
  background: url(../img/ico1.png) right center no-repeat;
  cursor: pointer;
}
.contact .cardP4Tab ul {
  margin-right: 0px;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0.9rem;
  width: 100%;
  border: #ddd solid 1px;
  border-top: none;
  background: #fff;
  display: none;
  height: 3.6rem;
  overflow: auto;
}
.contact .cardP4Tab li {
  font-size: var(--fs15);
  padding: 0 0.3rem;
  height: 0.9rem;
  line-height: 0.9rem;
}
.contact .Phone-Box .name {
  font-size: var(--fs17);
  line-height: 0.52rem;
  color: #333;
  font-weight: bold;
}
.contact .Phone-Box .msg {
  font-size: var(--fs14);
  line-height: 0.48rem;
  margin-top: 0.15rem;
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.9rem 0;
  }
  .contact .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .contact .mapDiv {
    width: 100%;
  }
  .contact .list li {
    font-size: var(--fs12);
    line-height: 0.24rem;
  }
  .contact .list li .ico {
    position: absolute;
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 50%;
    background: rgba(50, 123, 192, 0.1);
  }
  .contact .list li .ico::after {
    width: 4px;
    height: 4px;
    margin-top: -2px;
    margin-left: -2px;
  }
  .contact .list li .layerDiv {
    padding: 0.2rem 0.2rem 0.3rem;
    right: auto;
    left: -1.2rem;
    top: -1.9rem;
    width: 5.2rem;
  }
  .contact .list li .layerDiv .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .contact .list li .layerDiv .msg {
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 2.4rem;
  }
  .contact .list li:nth-child(1) {
    right: 20.5%;
    top: 17%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(1) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(2) {
    right: 8.5%;
    top: 26%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(2) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(3) {
    right: 15.5%;
    top: 32%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(3) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(4) {
    right: 3.5%;
    top: 52%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(4) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(5) {
    left: 12.5%;
    top: 18%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(5) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(6) {
    left: 10%;
    top: 26%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(6) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(7) {
    left: 45.5%;
    top: 28%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(7) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(8) {
    left: 39.5%;
    top: 30%;
    padding-top: 0.2rem;
  }
  .contact .list li:nth-child(8) .ico {
    left: 50%;
    margin-left: -0.09rem;
    top: 0;
  }
  .contact .list li:nth-child(9) {
    left: 30.5%;
    top: 48%;
    padding-top: 0.2rem;
  }
  .contact .list li:nth-child(9) .ico {
    left: 50%;
    margin-left: -0.09rem;
    top: 0;
  }
  .contact .list li:nth-child(10) {
    left: 43.5%;
    top: 62%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(10) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(11) {
    left: 38.5%;
    top: 36%;
    padding-left: 0.28rem;
  }
  .contact .list li:nth-child(11) .ico {
    left: 0;
    top: 0;
  }
  .contact .list li:nth-child(12) {
    right: 62.5%;
    top: 35%;
    padding-right: 0.28rem;
  }
  .contact .list li:nth-child(12) .ico {
    right: 0;
    top: 0;
  }
  .contact .list li:nth-child(13) {
    right: 61.5%;
    top: 32%;
    padding-right: 0.28rem;
  }
  .contact .list li:nth-child(13) .ico {
    right: 0;
    top: 0;
  }
  .contact .list li:nth-child(14) {
    right: 60.5%;
    top: 25.5%;
    padding-right: 0.28rem;
  }
  .contact .list li:nth-child(14) .ico {
    right: 0;
    top: 0;
  }
  .contact .list .on .layerDiv {
    top: -1.7rem;
  }
  .contact .zi {
    right: 0.3rem;
    bottom: 0.4rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
}
.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;
  }
}
