.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.ind-banner .onebox .cn {
  margin: 0;
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-weight: 400;
  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 .onebox .zi {
  margin-top: 0.1rem;
  font-size: var(--fs72);
  line-height: 0.86rem;
  color: #fff;
  font-weight: bold;
  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 .se {
  display: block;
  width: 18px;
  height: 34px;
  position: absolute;
  z-index: 3;
  top: 50%;
  margin-top: -17px;
}
.ind-banner .prev {
  left: 0.5rem;
  background: url(../img/nimg18_left.png) no-repeat;
}
.ind-banner .prev:hover {
  background: url(../img/nimg18_lefton.png) no-repeat;
}
.ind-banner .next {
  right: 0.5rem;
  background: url(../img/nimg18_right.png) no-repeat;
}
.ind-banner .next:hover {
  background: url(../img/nimg18_righton.png) no-repeat;
}
.ind-banner .swiper-slide-active .cn,
.ind-banner .swiper-slide-active .zi {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.35rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 8px;
  background: #01a0d5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .swiper-pagination-bullet-active {
  width: 58px;
  border-radius: 12px;
}
.ind-banner .swiper-pagination-bullet-active:after {
  width: 100%;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .zi {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .ind-banner .se {
    display: none;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
  .ind-banner .swiper-pagination-bullet-active {
    width: 40px;
  }
}
.indTxt {
  text-align: center;
  color: #333;
}
.indTxt .en {
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-family: 'Mont-B';
  margin: 0 0 0.1rem;
  text-transform: uppercase;
}
.indTxt .cn {
  margin: 0;
  font-size: var(--fs30);
  line-height: 0.3rem;
}
.indexP1 {
  padding: 1.4rem 0;
  background: url(../img/indexP1.png) center bottom no-repeat;
  background-size: 100%;
}
.indexP1 .tab {
  margin-top: 0.5rem;
  text-align: center;
  position: relative;
  width: 100%;
}
.indexP1 .tab::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e4e4e4;
}
.indexP1 .tab ul {
  font-size: 0;
  margin: 0;
}
.indexP1 .tab li {
  display: inline-block;
  color: #333;
  height: 0.5rem;
  line-height: 0.2rem;
  font-size: var(--fs18);
  position: relative;
  z-index: 1;
  margin: 0 0.28rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .tab li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #014ba2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .tab .liNow {
  color: #014ba2;
}
.indexP1 .tab .liNow::after {
  left: 0;
  width: 100%;
}
.indexP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.9rem;
  padding-right: 0.6rem;
}
.indexP1 .conDiv {
  width: 5.92rem;
  animation: am_left 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_left 0.8s ease-out 0.1s backwards;
}
.indexP1 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
}
.indexP1 .msg {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #000;
}
.indexP1 .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  color: #333;
  height: 1.2rem;
}
.indexP1 .lie {
  width: 3.6rem;
  margin-top: 0.3rem;
  min-height: 1.8rem;
  overflow: hidden;
}
.indexP1 .lie ul {
  margin: 0;
}
.indexP1 .lie li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  position: relative;
  float: left;
  min-width: 1.7rem;
  padding-left: 18px;
  padding-right: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indexP1 .lie li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: #014ba2;
}
.indexP1 .btnGroup {
  margin-top: 0.3rem;
  overflow: hidden;
}
.indexP1 .btnGroup ul {
  margin: 0;
}
.indexP1 .btnGroup li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.indexP1 .btnGroup li a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 1.42rem;
  text-align: center;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  background: #014ba2;
  color: #fff;
}
.indexP1 .btnGroup li:nth-child(2) a {
  background: #01a0d5;
}
.indexP1 .imgDiv {
  order: 1;
  width: 6.4rem;
  animation: am_right 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_right 0.8s ease-out 0.1s backwards;
}
.indexP1 .imgDiv img {
  width: 100%;
}
.indexP2 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 9.2rem;
  overflow: hidden;
  background: center no-repeat;
  background-size: cover;
}
.indexP2 .name {
  width: 9.4rem;
  margin: 0 auto;
  font-size: var(--fs48);
  line-height: 0.68rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.indexP2 .numList {
  width: 10rem;
  margin: 0.9rem auto 0;
}
.indexP2 .numList ul {
  margin: 0;
}
.indexP2 .numList li {
  float: left;
  width: 25%;
  color: #fff;
  text-align: center;
  font-size: var(--fs18);
}
.indexP2 .numList li .num {
  font-family: 'Mont-R';
  height: 0.7rem;
}
.indexP2 .numList li .num em {
  font-size: var(--fs60);
  line-height: 0.64rem;
}
.indexP2 .numList li .wen {
  line-height: 0.2rem;
}
.indexP2 .btnDiv {
  margin: 1.2rem auto 0;
  width: 1.54rem;
}
.indexP2 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #fff;
  height: 0.5rem;
  font-size: var(--fs16);
  border: #fff solid 2px;
  border-radius: 0.48rem;
}
.indexP2 .btnDiv a em {
  display: block;
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .btnDiv a:hover {
  border: #fff solid 2px;
  background: #fff;
  color: #014ba2;
}
.indexP2 .btnDiv a:hover em {
  background: url(../img/ico1on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP3 {
  padding: 1.4rem 0;
  background: #f6f7f8;
  overflow: hidden;
}
.indexP3 .toptop {
  position: relative;
  height: 1.3rem;
}
.indexP3 .indTxt {
  text-align: left;
}
.indexP3 .tab {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 0;
}
.indexP3 .tab ul {
  font-size: 0;
  margin: 0;
}
.indexP3 .tab li {
  display: inline-block;
  margin: 0 0.24rem;
  position: relative;
  line-height: 0.8rem;
  font-size: var(--fs18);
  color: #333;
}
.indexP3 .tab li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #014ba2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .tab .liNow {
  color: #014ba2;
}
.indexP3 .tab .liNow::after {
  width: 100%;
  left: 0;
}
.indexP3 .moreBtn {
  position: absolute;
  right: 0;
  top: 0.2rem;
  z-index: 1;
}
.indexP3 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.54rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #014ba2;
  color: #fff;
  font-size: var(--fs16);
}
.indexP3 .moreBtn em {
  display: block;
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.16rem;
}
.indexP3 .tabContent {
  animation: am_top 0.6s ease-in-out 0.1s backwards;
  -webkit-animation: am_top 0.6s ease-in-out 0.1s backwards;
}
.indexP3 .leftDiv {
  width: 9.2rem;
}
.indexP3 .leftDiv ul {
  margin-right: -0.2rem;
}
.indexP3 .leftDiv li {
  float: left;
  width: 50%;
}
.indexP3 .leftDiv li .box {
  margin-right: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .imgDiv {
  height: 3.2rem;
  overflow: hidden;
}
.indexP3 .leftDiv 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;
}
.indexP3 .leftDiv li .botDiv {
  background: #fff;
  height: 2.6rem;
  position: relative;
  padding: 0.24rem 0.4rem 0;
}
.indexP3 .leftDiv li .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #01a0d5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  color: #333;
  line-height: 0.36rem;
  height: 0.72rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .time {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.16rem;
  color: #999;
  font-family: 'Poppins-L';
}
.indexP3 .leftDiv li .ico {
  position: relative;
  margin-top: 0.5rem;
  width: 0.48rem;
  height: 0.48rem;
  background: #f0f3f6 url(../img/ico2.png) center no-repeat;
  border-radius: 50%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .leftDiv li .box:hover {
  box-shadow: 0 0 0.3rem rgba(20, 51, 110, 0.15);
}
.indexP3 .leftDiv li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP3 .leftDiv li .box:hover .botDiv::after {
  width: 100%;
}
.indexP3 .leftDiv li .box:hover .name {
  color: #014ba2;
}
.indexP3 .leftDiv li .box:hover .ico {
  background: #014ba2 url(../img/ico2on.png) center no-repeat;
}
.indexP3 .rightDiv {
  width: 5.96rem;
}
.indexP3 .rightDiv ul {
  margin: 0;
}
.indexP3 .rightDiv li {
  margin-bottom: 0.2rem;
}
.indexP3 .rightDiv li:last-child {
  margin-bottom: 0;
}
.indexP3 .rightDiv li a {
  display: block;
  background: #fff;
  height: 1.8rem;
  padding: 0.3rem 0.6rem 0 0.4rem;
}
.indexP3 .rightDiv li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  color: #333;
  line-height: 0.36rem;
  height: 0.72rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .rightDiv li .time {
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.16rem;
  color: #999;
  font-family: 'Poppins-L';
  background: url(../img/ico2.png) right center no-repeat;
}
.indexP3 .rightDiv li a:hover .name {
  color: #014ba2;
}
.indexP4 {
  position: relative;
  padding: 1.4rem 0 1.2rem;
  overflow: hidden;
}
.indexP4::before {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.indexP4::after {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.indexP4 .indTxt {
  margin-bottom: 0.3rem;
}
.leftScroll .list ul,
.rightScroll .list ul {
  margin: 0;
}
.leftScroll .list li,
.rightScroll .list li {
  float: left;
  cursor: pointer;
}
.leftScroll .list li .limg,
.rightScroll .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.6rem;
  width: 2.85rem;
}
.leftScroll .list li .limg img,
.rightScroll .list li .limg img {
  max-width: 2.2rem;
  max-height: 1rem;
}
.tempWrap {
  width: 100%!important;
}
.indexP5 {
  padding-top: 1.2rem;
  height: 4.9rem;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.indexP5 .leftDiv {
  width: 3.6rem;
}
.indexP5 .indTxt {
  text-align: left;
  color: #fff;
}
.indexP5 .msg {
  color: #fff;
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.indexP5 .rightDiv {
  width: 8.3rem;
}
.indexP5 .form ul {
  margin-right: -0.1rem;
}
.indexP5 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.1rem;
}
.indexP5 .form li .box {
  margin-right: 0.1rem;
  height: 0.54rem;
  background: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.indexP5 .form li .input1 {
  width: 100%;
  height: 0.54rem;
  line-height: 0.54rem;
  padding-left: 0.2rem;
  font-size: var(--fs14);
}
.indexP5 .btnDiv {
  margin-top: 6px;
}
.indexP5 .btnDiv a {
  display: block;
  width: 100%;
  height: 0.54rem;
  text-align: center;
  line-height: 0.54rem;
  background: #fff;
  border-radius: 0.1rem;
  font-size: var(--fs18);
  color: #014ba2;
}
.indexP5 .btnDiv a:hover {
  background: #f8610b;
  color: #fff;
}
@media (max-width: 1600px) {
  .indexP3 .leftDiv {
    width: 9.6rem;
  }
  .indexP3 .rightDiv {
    width: 6.16rem;
  }
}
@media (max-width: 1004px) {
  .indTxt .en {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .indTxt .cn {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .indexP1 {
    padding: 1.1rem 0;
  }
  .indexP1 .tab {
    margin-top: 0.3rem;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .indexP1 .tab li {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs14);
    margin: 0 0.45rem 0 0;
  }
  .indexP1 .tab li:last-child {
    margin-right: 0;
  }
  .indexP1 .tab li::after {
    height: 2px;
  }
  .indexP1 .mxfDiv {
    margin-top: 0.6rem;
    display: block;
    padding-right: 0;
  }
  .indexP1 .conDiv {
    width: auto;
    animation: am_top 0.8s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
  }
  .indexP1 .name {
    font-size: var(--fs24);
  }
  .indexP1 .msg {
    font-size: var(--fs18);
    line-height: 0.6rem;
  }
  .indexP1 .content {
    margin-top: 0.4rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.92rem;
  }
  .indexP1 .lie {
    width: auto;
    margin-top: 0.4rem;
    min-height: 100%;
  }
  .indexP1 .lie li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 50%;
    padding-left: 0.24rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .lie li::before {
    width: 4px;
    height: 4px;
    margin-top: -2px;
  }
  .indexP1 .btnGroup {
    margin-top: 0.4rem;
  }
  .indexP1 .btnGroup li {
    font-size: var(--fs14);
  }
  .indexP1 .btnGroup li a {
    width: 2.1rem;
    height: 0.82rem;
    line-height: 0.82rem;
  }
  .indexP1 .imgDiv {
    display: none;
    width: 100%;
    animation: am_top 0.8s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
  }
  .indexP2 {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    height: 9.2rem;
  }
  .indexP2 .name {
    width: auto;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP2 .numList {
    width: auto;
    margin: 0.65rem auto 0;
  }
  .indexP2 .numList li {
    width: 50%;
    margin-bottom: 0.4rem;
    font-size: var(--fs14);
  }
  .indexP2 .numList li .num {
    height: 0.86rem;
  }
  .indexP2 .numList li .num em {
    font-size: var(--fs30);
    line-height: 0.72rem;
  }
  .indexP2 .numList li .wen {
    line-height: 0.2rem;
  }
  .indexP2 .btnDiv {
    margin: 0.5rem auto 0;
    width: 2.3rem;
  }
  .indexP2 .btnDiv a {
    height: 0.82rem;
    font-size: var(--fs14);
    border: #fff solid 1px;
  }
  .indexP2 .btnDiv a em {
    width: 0.24rem;
    height: 0.2rem;
    background-size: 0.24rem;
  }
  .indexP2 .btnDiv a:hover {
    border: #014ba2 solid 1px;
  }
  .indexP3 {
    padding: 1.1rem 0;
  }
  .indexP3 .toptop {
    height: auto;
    padding-bottom: 0.6rem;
  }
  .indexP3 .tab {
    position: relative;
    margin-top: 0.2rem;
  }
  .indexP3 .tab li {
    margin: 0 0.3rem;
    font-size: var(--fs15);
    color: #333;
  }
  .indexP3 .tab li::after {
    height: 2px;
  }
  .indexP3 .moreBtn a {
    width: 2.3rem;
    height: 0.82rem;
    font-size: var(--fs13);
  }
  .indexP3 .moreBtn em {
    width: 0.24rem;
    height: 0.2rem;
    background-size: 0.24rem;
  }
  .indexP3 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP3 .leftDiv ul {
    margin-right: 0;
  }
  .indexP3 .leftDiv li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .indexP3 .leftDiv li .box {
    margin-right: 0;
  }
  .indexP3 .leftDiv li .imgDiv {
    height: 4.2rem;
  }
  .indexP3 .leftDiv li .botDiv {
    height: 3.2rem;
    padding: 0.3rem 0.4rem 0;
  }
  .indexP3 .leftDiv li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 .leftDiv li .time {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .indexP3 .leftDiv li .ico {
    margin-top: 0.4rem;
    width: 0.72rem;
    height: 0.72rem;
    background-size: 12px;
  }
  .indexP3 .leftDiv li .box:hover .ico {
    background-size: 12px;
  }
  .indexP3 .rightDiv {
    width: auto;
    float: none;
  }
  .indexP3 .rightDiv li {
    margin-bottom: 0.3rem;
  }
  .indexP3 .rightDiv li a {
    height: 2rem;
    padding: 0.3rem 0.4rem 0 0.4rem;
  }
  .indexP3 .rightDiv li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 .rightDiv li .time {
    margin-top: 0.12rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
    background-size: 12px;
  }
  .indexP4 {
    padding: 1.2rem 0 1rem;
  }
  .indexP4::before {
    display: none;
  }
  .indexP4::after {
    display: none;
  }
  .indexP4 .indTxt {
    margin-bottom: 0.5rem;
  }
  .leftScroll .list li .limg,
  .rightScroll .list li .limg {
    height: 1.2rem;
    width: 2.4rem;
  }
  .leftScroll .list li .limg img,
  .rightScroll .list li .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
  .indexP5 {
    padding: 1rem 0;
    height: auto;
  }
  .indexP5 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP5 .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP5 .rightDiv {
    width: auto;
    float: none;
    margin-top: 0.5rem;
  }
  .indexP5 .form ul {
    margin-right: 0;
  }
  .indexP5 .form li {
    float: none;
    width: auto;
    margin-bottom: 0.2rem;
  }
  .indexP5 .form li .box {
    margin-right: 0;
    height: 0.9rem;
    border-radius: 0.16rem;
  }
  .indexP5 .form li .input1 {
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .indexP5 .btnDiv a {
    height: 0.9rem;
    line-height: 0.9rem;
    background: #fff;
    border-radius: 0.16rem;
    font-size: var(--fs15);
  }
}
.contact {
  padding: 1.4rem 0;
  overflow: hidden;
}
.contact .leftDiv {
  width: 50%;
  padding-right: 0.8rem;
}
.contact .pageTitle {
  text-align: left;
}
.contact .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.contact .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #014ba2;
  margin: 0.4rem 0 0.15rem;
}
.contact .msgList ul {
  margin: 0;
}
.contact .msgList li {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #333;
  font-family: 'Poppins-L';
}
.contact .msgList li a {
  padding-left: 0.2rem;
  background: url(../img/nimg14_1.png) left center no-repeat;
  background-size: 0.14rem;
  color: #014ba2;
}
.contact .msgList li a:hover {
  text-decoration: underline;
}
.contact .ewmDiv {
  margin-top: 0.4rem;
  width: 1.9rem;
}
.contact .ewmDiv .limg {
  border: #e5e5e5 solid 1px;
  border-radius: 12px;
  overflow: hidden;
}
.contact .ewmDiv .limg img {
  width: 100%;
}
.contact .ewmDiv p {
  font-size: var(--fs16);
  color: #333;
  text-align: center;
  margin-top: 0.1rem;
}
.contact .rightImg {
  width: 50%;
}
.contact .rightImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .contact {
    padding: 1rem 0;
  }
  .contact .leftDiv {
    float: none;
    width: auto;
    padding-right: 0;
  }
  .contact .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .contact .msgList li {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .contact .msgList li a {
    padding-left: 0.28rem;
    background-size: 0.2rem;
  }
  .contact .ewmDiv {
    width: 2.4rem;
  }
  .contact .ewmDiv .limg {
    border-radius: 0.2rem;
  }
  .contact .ewmDiv p {
    font-size: var(--fs14);
    margin-top: 0.2rem;
  }
  .contact .rightImg {
    margin-top: 0.7rem;
    width: auto;
    float: none;
  }
}
.news {
  padding: 1.2rem 0;
}
.news .list ul {
  margin-right: -0.48rem;
}
.news .list li {
  float: left;
  width: 33.33%;
}
.news .list li .box {
  margin-right: 0.48rem;
}
.news .list li .imgDiv {
  height: 3.4rem;
  overflow: hidden;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .list li .botDiv {
  background: #f5f5f5;
  padding: 0.25rem 0.3rem 0;
  height: 1.7rem;
}
.news .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  height: 0.6rem;
  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;
}
.news .list li .time {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #999;
  font-family: 'Poppins-R';
}
.news .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li .box:hover .name {
  color: #014ba2;
}
.news .list2 {
  margin: 0.4rem 0;
}
.news .list2 ul {
  margin: 0;
}
.news .list2 li a {
  display: block;
  height: 2.65rem;
  position: relative;
  padding: 0.42rem 0.5rem 0 3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list2 li .imgDiv {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.93rem;
  width: 2.62rem;
  height: 1.86rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list2 li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .list2 li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: var(--fs26);
  color: #333;
}
.news .list2 li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  height: 0.6rem;
  padding-right: 1.8rem;
}
.news .list2 li .zi {
  position: relative;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  color: #666;
  font-family: 'Poppins-L';
}
.news .list2 li .zi::after {
  content: '';
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50%;
  width: 31px;
  height: 16px;
  background: url(../img/ico4.png) right center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list2 li .zi em {
  color: #014ba2;
  padding-right: 0.15rem;
}
.news .list2 li a:hover {
  padding: 0.42rem 0.5rem 0 3.4rem;
  box-shadow: 0 0 0.3rem rgba(151, 144, 145, 0.2);
}
.news .list2 li a:hover .imgDiv {
  left: 0.4rem;
}
.news .list2 li a:hover .zi::after {
  opacity: 1;
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0;
  }
  .news .list ul {
    margin-right: 0;
  }
  .news .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .news .list li .box {
    margin-right: 0;
  }
  .news .list li .imgDiv {
    height: auto;
  }
  .news .list li .imgDiv img {
    height: auto;
  }
  .news .list li .botDiv {
    padding: 0.35rem 0.3rem;
    height: auto;
  }
  .news .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li .time {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .news .list2 {
    margin: 0 0 0.75rem;
  }
  .news .list2 li a {
    height: 2.5rem;
    padding: 0.4rem 0 0 3rem;
    border-bottom: #eee solid 1px;
  }
  .news .list2 li .imgDiv {
    margin-top: -0.8rem;
    width: 2.62rem;
    height: 1.6rem;
  }
  .news .list2 li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    height: 0.96rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
    color: #333;
  }
  .news .list2 li .content {
    display: none;
  }
  .news .list2 li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs13);
  }
  .news .list2 li .zi::after {
    display: none;
  }
  .news .list2 li .zi em {
    color: #014ba2;
    padding-right: 0.15rem;
  }
  .news .list2 li a:hover {
    padding: 0.4rem 0 0 3rem;
    box-shadow: none;
  }
  .news .list2 li a:hover .imgDiv {
    left: 0;
  }
}
.newsTop {
  background: url(../img/newsTop.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 1rem;
}
.newsTop .wrap {
  position: relative;
}
.newsTop .pageNow {
  position: relative;
  right: 0;
  margin-right: 0;
  line-height: 0.72rem;
}
.newsTop .name {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #000;
  padding: 0.3rem 0;
  width: 60%;
}
.newsTop .msgList {
  overflow: hidden;
}
.newsTop .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs16);
  font-family: 'Poppins-L';
}
.newsTop .back {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  z-index: 1;
  top: 1rem;
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #ced2d9 solid 2px;
  background: url(../img/nimg14_2.png) center no-repeat;
  background-size: 0.14rem;
}
.newsTop .back:hover {
  border: #014ba2 solid 2px;
  background: #014ba2 url(../img/nimg14_2on.png) center no-repeat;
  background-size: 0.14rem;
}
.newsBot {
  padding: 0.7rem 0 1.4rem;
  overflow: hidden;
}
.newsBot .leftDiv {
  width: 10.4rem;
}
.newsBot .content {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.pageDown {
  padding-top: 0.7rem;
}
.pageDown li {
  margin-bottom: 20px;
}
.pageDown li:last-child {
  margin-bottom: 0;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs16);
  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: #0066cb;
}
.sideNews {
  width: 3.72rem;
}
.sideNews .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li {
  margin-bottom: 0.55rem;
}
.sideNews .list li .imgDiv {
  overflow: hidden;
}
.sideNews .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.sideNews .list li .name {
  margin-top: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.sideNews .list li:hover .name {
  color: #014ba2;
}
@media (max-width: 1600px) {
  .newsTop .back {
    margin-right: -8rem;
  }
  .newsBot .leftDiv {
    width: 11rem;
  }
}
@media (max-width: 1004px) {
  .newsTop {
    padding: 0 0 0.8rem;
  }
  .newsTop .pageNow {
    display: none;
  }
  .newsTop .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    padding: 0.5rem 0 0.3rem;
    width: auto;
  }
  .newsTop .msgList li {
    font-size: var(--fs14);
  }
  .newsTop .back {
    display: none;
  }
  .newsBot {
    padding: 0.7rem 0 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
  }
  .newsBot .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .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;
  }
  .sideNews {
    display: none;
  }
}
.serviceP1 {
  padding: 1.4rem 0 1.2rem;
  overflow: hidden;
}
.serviceP1 .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  width: 7.6rem;
  margin: 0.25rem auto 0.5rem;
}
.aftersales {
  position: relative;
}
.aftersales .list {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.aftersales .list li .box {
  padding: 0.6rem 0.6rem 0;
  height: 4.2rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.aftersales .list li .ico {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  background-image: linear-gradient(180deg, #014ba2 0%, #019fd5 100%);
  background-blend-mode: normal, normal;
}
.aftersales .list li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.26rem;
  margin-top: -0.26rem;
  width: 0.52rem;
}
.aftersales .list li .name {
  margin-top: 0.4rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  font-size: var(--fs30);
  height: 0.42rem;
  line-height: 0.42rem;
  overflow: hidden;
}
.aftersales .list li .msg {
  margin-top: 5px;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  padding-right: 5px;
  max-height: 1.2rem;
  overflow: auto;
}
.aftersales .list li .msg::-webkit-scrollbar {
  width: 3px;
}
.aftersales .list li .msg::-webkit-scrollbar-track {
  background-color: #eee;
}
.aftersales .list li .msg::-webkit-scrollbar-thumb {
  background-color: #014ba2;
}
.aftersales .se {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -0.29rem;
  z-index: 3;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
}
.aftersales .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: #f5f5f5 url(../img/nimg10_left.png) center no-repeat;
}
.aftersales .prev:hover {
  background: #019ed4 url(../img/nimg10_lefton.png) center no-repeat;
}
.aftersales .next {
  right: 50%;
  margin-right: -8.6rem;
  background: #f5f5f5 url(../img/nimg10_right.png) center no-repeat;
}
.aftersales .next:hover {
  background: #019ed4 url(../img/nimg10_righton.png) center no-repeat;
}
.aftersales .swiper-pagination {
  display: none;
  position: relative;
  bottom: 0;
  padding-top: 0.5rem;
}
.aftersales .swiper-pagination .swiper-pagination-bullet-active {
  background: #014ba2;
}
.serviceP2 {
  padding: 1.4rem 0 1rem;
  background: url(../img/serviceP2.jpg) center no-repeat;
  background-size: cover;
}
.serviceP2 .pageTitle::after {
  background: #fff;
}
.serviceP2 .pageTitle .en,
.serviceP2 .pageTitle .cn {
  color: #fff;
}
.serviceP2 .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #fff;
  margin: 0.25rem 0 0.5rem;
}
.serviceP2 .list ul {
  margin-right: -0.45rem;
}
.serviceP2 .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.45rem;
}
.serviceP2 .list li .box {
  margin-right: 0.45rem;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.35rem 0.4rem 0;
  height: 2.9rem;
  position: relative;
}
.serviceP2 .list li .name {
  color: #000;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-weight: bold;
}
.serviceP2 .list li .msg {
  font-size: var(--fs14);
  line-height: 0.24rem;
  margin-top: 0.15rem;
}
.serviceP2 .list li .btnGroup {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
}
.serviceP2 .list li .btnGroup dd {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs14);
}
.serviceP2 .list li .btnGroup dd a {
  display: block;
  width: 1.2rem;
  text-align: center;
  height: 0.42rem;
  line-height: 0.42rem;
  border-radius: 0.48rem;
  background: #f3f3f3;
  color: #000;
}
.serviceP2 .list li .btnGroup dd a:hover {
  background: #014ba2;
  color: #fff;
}
.serviceP3 {
  padding: 1.4rem 0;
}
.serviceP3 .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  margin: 0.25rem 0 0.5rem;
}
.serviceP3 .list {
  border-top: #e2e2e2 solid 1px;
}
.serviceP3 .list ul {
  margin: 0;
}
.serviceP3 .list li {
  padding: 0.26rem 0;
  border-bottom: #e2e2e2 solid 1px;
}
.serviceP3 .list li .msgDiv {
  padding: 0 0.6rem;
  position: relative;
  cursor: pointer;
}
.serviceP3 .list li .ico {
  position: absolute;
  left: 10px;
  top: 0.14rem;
  width: 0.2rem;
  height: 0.2rem;
}
.serviceP3 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.1rem;
  margin-top: -0.02rem;
  width: 0.2rem;
  height: 0.04rem;
  background: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP3 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.02rem;
  margin-top: -0.1rem;
  width: 0.04rem;
  height: 0.2rem;
  background: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP3 .list li .name {
  color: #000;
  line-height: 0.48rem;
  font-size: var(--fs24);
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP3 .list li .box {
  display: none;
}
.serviceP3 .list li .msgDiv.aNow .name {
  color: #014ba2;
}
.serviceP3 .list li .msgDiv.aNow .ico:before {
  background: #014ba2;
}
.serviceP3 .list li .msgDiv.aNow .ico:after {
  background: #014ba2;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.serviceP3 .list li .content {
  line-height: 0.32rem;
  font-size: var(--fs16);
  text-align: justify;
  padding: 0.12rem 1rem 0.15rem 0.6rem;
}
@media (max-width: 1600px) {
  .aftersales .prev {
    margin-left: -9rem;
  }
  .aftersales .next {
    margin-right: -9rem;
  }
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding: 1rem 0 0.9rem;
  }
  .serviceP1 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    margin: 0.35rem 0 0.5rem;
  }
  .aftersales {
    position: relative;
  }
  .aftersales .list {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .aftersales .list li .box {
    padding: 0.6rem 0.3rem 0;
    height: 5rem;
    border-radius: 0.24rem;
    box-shadow: none;
    border: #eee solid 1px;
  }
  .aftersales .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs20);
    height: 0.52rem;
    line-height: 0.52rem;
  }
  .aftersales .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.92rem;
  }
  .aftersales .se {
    display: none;
  }
  .aftersales .swiper-pagination {
    display: block;
  }
  .serviceP2 {
    padding: 1rem 0 0.8rem;
  }
  .serviceP2 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.35rem 0 0.5rem;
  }
  .serviceP2 .list ul {
    margin-right: 0;
  }
  .serviceP2 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .serviceP2 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
    padding: 0.45rem 0.4rem;
    height: auto;
    overflow: hidden;
  }
  .serviceP2 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .serviceP2 .list li .msg {
    line-height: 0.42rem;
    margin-top: 0.2rem;
  }
  .serviceP2 .list li .btnGroup {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 0.3rem;
  }
  .serviceP2 .list li .btnGroup dd {
    font-size: var(--fs13);
  }
  .serviceP2 .list li .btnGroup dd a {
    width: 2rem;
    height: 0.84rem;
    line-height: 0.84rem;
  }
  .serviceP3 {
    padding: 1rem 0;
  }
  .serviceP3 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.35rem 0 0.5rem;
  }
  .serviceP3 .list li {
    padding: 0.3rem 0;
  }
  .serviceP3 .list li .msgDiv {
    padding: 0 0.4rem;
  }
  .serviceP3 .list li .ico {
    left: 0;
    width: 12px;
    height: 12px;
  }
  .serviceP3 .list li .ico:before {
    margin-left: -6px;
    margin-top: -1px;
    width: 12px;
    height: 2px;
  }
  .serviceP3 .list li .ico:after {
    margin-left: -1px;
    margin-top: -6px;
    width: 2px;
    height: 12px;
  }
  .serviceP3 .list li .name {
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .serviceP3 .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs14);
    padding: 0.12rem 0.3rem 0.15rem 0.4rem;
  }
}
.aboutP1 {
  position: relative;
  overflow: hidden;
}
.aboutP1 .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  height: 100%;
  width: 6.32rem;
}
.aboutP1 .pageTitle {
  text-align: left;
}
.aboutP1 .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.aboutP1 .name {
  color: #014ba2;
  font-size: var(--fs30);
  line-height: 0.3rem;
  margin: 0.5rem 0 0.25rem;
}
.aboutP1 .content {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.28rem;
  text-align: justify;
}
.aboutP1 .rightImg {
  float: right;
  width: 50%;
}
.aboutP1 .rightImg img {
  width: 100%;
}
.aboutP2 {
  overflow: hidden;
  position: relative;
  height: 9.2rem;
  background: url(../img/aboutP2.jpg) center no-repeat;
  background-size: cover;
}
.aboutP2 .pageTitle {
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 1.4rem;
  left: 0;
}
.aboutP2 .pageTitle::after {
  background: #fff;
}
.aboutP2 .pageTitle .en,
.aboutP2 .pageTitle .cn {
  color: #fff;
}
.aboutP2 .list ul {
  margin: 0;
}
.aboutP2 .list li {
  float: left;
  width: 20%;
  position: relative;
  height: 9.2rem;
}
.aboutP2 .list li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.aboutP2 .list li .conDiv {
  position: absolute;
  top: 50%;
  text-align: center;
  margin-top: -0.8rem;
  z-index: 1;
  padding: 0 0.5rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .ico {
  height: 1.2rem;
}
.aboutP2 .list li .ico img {
  width: 0.7rem;
}
.aboutP2 .list li .cn {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.aboutP2 .list li .msg {
  height: 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.24rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li:hover .conDiv {
  margin-top: -1.2rem;
}
.aboutP2 .list li:hover .msg {
  margin-top: 0.25rem;
  height: 0.72rem;
}
.aboutP3 {
  overflow: hidden;
  padding: 1.4rem 0 1.6rem;
  background: url(../img/aboutP3.jpg) center bottom no-repeat;
  background-size: 100%;
}
.honorPic {
  margin-top: 0.8rem;
  background: url(../img/honorBg.png) center bottom no-repeat;
  background-size: 100%;
}
.honorPic .imgList {
  width: 19rem;
  overflow: hidden;
}
.honorPic .swiper-slide {
  width: auto;
}
.honorPic .box {
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 3rem;
}
.honorPic .mxfDiv {
  height: 2.26rem;
  background: #fff;
  border: #f2d69e solid 2px;
  position: relative;
}
.honorPic .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100%;
}
.honorPic .imgDiv img {
  max-width: 2.86rem;
  max-height: 2.1rem;
}
.honorPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.4rem;
  text-align: center;
  padding: 0 0.2rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
}
.honorPic .bottom {
  margin-top: 0.7rem;
  position: relative;
  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% - 1.8rem);
  height: 2px;
  background-color: #cdd2d5;
}
.honorPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #014ba2;
  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: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
}
.honorPic .arrowDiv .prev {
  margin-right: 0.2rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
  background-size: 0.1rem;
}
.honorPic .arrowDiv .prev:hover {
  background: #014ba2 url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.1rem;
}
.honorPic .arrowDiv .next {
  background: #fff url(../img/nimg10_right.png) center no-repeat;
  background-size: 0.1rem;
}
.honorPic .arrowDiv .next:hover {
  background: #014ba2 url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.1rem;
}
.aboutP4 {
  padding-top: 1.4rem;
}
.aboutP4 .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  margin: 0.25rem 0 0.5rem;
}
.aboutP4 .lunbo {
  position: relative;
  overflow: hidden;
}
.aboutP4 .imgList {
  width: 31.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.8rem;
}
.aboutP4 .swiper-slide {
  position: relative;
  overflow: hidden;
}
.aboutP4 .swiper-slide .img {
  width: 10.24rem;
  height: 5.8rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.aboutP4 .swiper-slide .img::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;
  background: url(../img/bg1.png) repeat-x;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP4 .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP4 .swiper-slide .layer {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 0.45rem;
  bottom: -50%;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP4 .swiper-slide .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  margin-bottom: 0.1rem;
}
.aboutP4 .swiper-slide .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.aboutP4 .swiper-slide-active .img::after {
  opacity: 1;
  visibility: visible;
}
.aboutP4 .swiper-slide-active .layer {
  bottom: 0.3rem;
}
.aboutP4 .se {
  display: block;
  width: 0.58rem;
  height: 0.58rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.29rem;
  background: rgba(0, 0, 0, 0.5);
}
.aboutP4 .se:hover {
  background: #e60012;
}
.aboutP4 .prev {
  left: 50%;
  margin-left: -7.68rem;
}
.aboutP4 .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -8px;
  width: 10px;
  height: 17px;
  background: url("../img/nimg10_lefton.png") center no-repeat;
}
.aboutP4 .next {
  right: 50%;
  margin-right: -7.68rem;
}
.aboutP4 .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -8px;
  width: 10px;
  height: 17px;
  background: url("../img/nimg10_righton.png") center no-repeat;
}
.aboutP5 {
  position: relative;
  padding: 1.4rem 0 1.2rem;
  overflow: hidden;
}
.aboutP5::before {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.aboutP5::after {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.aboutP5 .zi {
  width: 7.6rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  margin: 0.25rem auto 0.5rem;
}
@media (max-width: 1600px) {
  .aboutP1 .conDiv {
    margin-left: -8rem;
  }
  .aboutP4 .prev {
    margin-left: -8rem;
  }
  .aboutP4 .next {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .aboutP1 .conDiv {
    display: block;
    position: relative;
    left: 0;
    margin-left: 0;
    height: auto;
    width: auto;
    padding: 0.9rem 0.3rem;
  }
  .aboutP1 .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
    margin: 0.5rem 0 0.3rem;
  }
  .aboutP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .rightImg {
    float: none;
    width: auto;
  }
  .aboutP2 {
    overflow: hidden;
    position: relative;
    height: auto;
    padding: 0.9rem 0;
  }
  .aboutP2 .pageTitle {
    position: relative;
    top: 0;
  }
  .aboutP2 .list {
    margin-top: 0.6rem;
  }
  .aboutP2 .list li {
    float: none;
    width: auto;
    height: auto;
    padding: 0.2rem 0.3rem;
  }
  .aboutP2 .list li::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .aboutP2 .list li .conDiv {
    position: relative;
    top: 0;
    text-align: left;
    margin-top: 0;
    padding: 0;
  }
  .aboutP2 .list li .ico {
    height: 0.72rem;
  }
  .aboutP2 .list li .ico img {
    width: 0.72rem;
  }
  .aboutP2 .list li .cn {
    font-size: var(--fs18);
    position: absolute;
    left: 1.1rem;
    top: 0;
    line-height: 0.72rem;
  }
  .aboutP2 .list li .msg {
    height: auto;
    margin-top: 0.25rem;
    text-align: left;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 .list li:hover .conDiv {
    margin-top: 0;
  }
  .aboutP2 .list li:hover .msg {
    height: auto;
  }
  .aboutP3 {
    padding: 1rem 0 1.2rem;
  }
  .honorPic {
    margin-top: 0.7rem;
    background: none;
  }
  .honorPic .imgList {
    width: 100%;
    overflow: hidden;
  }
  .honorPic .box {
    width: auto;
  }
  .honorPic .mxfDiv {
    border: #f2d69e solid 1px;
  }
  .honorPic .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 0.3rem;
    padding: 0;
    font-size: var(--fs14);
    line-height: 0.42rem;
    height: 1.26rem;
  }
  .honorPic .bottom {
    margin-top: 0.5rem;
  }
  .honorPic .swiper-pagination {
    width: calc(100% - 2.36rem);
  }
  .honorPic .arrowDiv {
    font-size: 0;
  }
  .honorPic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .honorPic .arrowDiv .prev {
    background: #eee url(../img/nimg10_left.png) center no-repeat;
    background-size: 0.14rem;
  }
  .honorPic .arrowDiv .prev:hover {
    background-size: 0.14rem;
  }
  .honorPic .arrowDiv .next {
    background: #eee url(../img/nimg10_right.png) center no-repeat;
    background-size: 0.14rem;
  }
  .honorPic .arrowDiv .next:hover {
    background-size: 0.14rem;
  }
  .aboutP4 {
    padding-top: 1rem;
  }
  .aboutP4 .pageTitle .en {
    font-size: var(--fs20);
  }
  .aboutP4 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin: 0.35rem 0 0.5rem;
  }
  .aboutP4 .lunbo {
    padding: 0 0.3rem;
    overflow: hidden;
  }
  .aboutP4 .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .aboutP4 .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
    border-radius: 0.24rem;
  }
  .aboutP4 .swiper-slide .img::after {
    opacity: 1;
    visibility: visible;
    height: 50%;
    background: url(../img/bg1.png) top repeat-x;
  }
  .aboutP4 .swiper-slide .layer {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 0 0.25rem;
    bottom: 0.3rem;
    color: #fff;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .aboutP4 .swiper-slide .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP4 .swiper-slide .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP4 .se {
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
  }
  .aboutP4 .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .aboutP4 .prev::after {
    margin-left: -3px;
    margin-top: -5px;
    width: 6px;
    height: 11px;
    background-size: 6px;
  }
  .aboutP4 .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .aboutP4 .next::after {
    margin-left: -3px;
    margin-top: -5px;
    width: 6px;
    height: 11px;
    background-size: 6px;
  }
  .aboutP5 {
    padding: 1.2rem 0 1rem;
  }
  .aboutP5::before {
    display: none;
  }
  .aboutP5::after {
    display: none;
  }
  .aboutP5 .zi {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0 0.3rem;
    margin: 0.35rem 0 0.5rem;
  }
}
.proBanner {
  position: relative;
  overflow: hidden;
}
.proBanner .bg img {
  width: 100%;
}
.proBanner .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.proBanner .cn {
  margin: 0;
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
}
.proBanner .wen {
  font-size: var(--fs30);
  line-height: 0.42rem;
  margin: 0.15rem 0 0.2rem;
}
.proBanner .msg {
  width: 6.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
@media (max-width: 1600px) {
  .proBanner .info {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .proBanner .info {
    left: 0.3rem;
    margin-left: 0;
  }
  .proBanner .cn {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .proBanner .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0.15rem 0 0;
    width: 75%;
  }
  .proBanner .msg {
    display: none;
    width: 80%;
    font-size: var(--fs12);
    line-height: 0.32rem;
  }
}
.productBox .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100vh;
}
.productBox .contrastDiv {
  width: 50%;
  position: relative;
}
.productBox .contrastDiv .layer {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  z-index: 3;
  width: 100%;
  padding: 0 0.3rem;
}
.productBox .contrastDiv .layer em {
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #fff;
  font-family: 'Mont-M';
}
.productBox .conDiv {
  width: 42.3%;
}
.productBox .conDiv .name {
  margin: 0;
  position: relative;
  padding-bottom: 0.2rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  font-family: "Poppins-R";
}
.productBox .conDiv .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: #014ba2;
}
.productBox .conDiv .wen {
  margin: 0.45rem 0 0.2rem;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #333;
}
.productBox .conDiv .msg {
  color: #333;
  line-height: 0.28rem;
  font-size: var(--fs16);
}
.productBox .videoDiv {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.productBox .videoDiv .imgDiv {
  height: 5.6rem;
}
.productBox .videoDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productBox .videoDiv video {
  max-width: 100%;
  max-height: 5.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.productBox .videoDiv .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  z-index: 1;
}
.productBox .videoDiv.cur {
  background: #000;
}
.productBox .videoDiv.cur .imgDiv,
.productBox .videoDiv.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.productBox .videoDiv.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.productBox .leftDiv {
  width: 50%;
  position: relative;
}
.productBox .leftDiv .imgDiv {
  overflow: hidden;
  border-radius: 6px;
}
.productBox .leftDiv .imgDiv img {
  width: 100%;
}
.productBox .leftDiv .layerImg {
  position: absolute;
  right: 0;
  bottom: -0.75rem;
  z-index: 1;
}
.productBox .leftDiv .layerImg img {
  width: 2.7rem;
}
.productBox .proImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  height: 6rem;
}
.productBox .proImg img {
  max-width: 5.2rem;
  max-height: 5.6rem;
}
.productBox .msgList {
  width: 50%;
}
.productBox .msgList .name {
  margin: 0;
  position: relative;
  padding-bottom: 0.2rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  font-family: "Poppins-R";
}
.productBox .msgList .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: #014ba2;
}
.productBox .msgList .lie {
  margin-top: 0.1rem;
}
.productBox .msgList .lie ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-right: -0.6rem;
  flex-wrap: wrap;
}
.productBox .msgList .lie li {
  width: 50%;
}
.productBox .msgList .lie li .box {
  margin-right: 0.6rem;
  border-bottom: #dcdcdc solid 1px;
  padding: 0.35rem 0 0.1rem;
}
.productBox .msgList .lie li .zi {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
  margin-bottom: 0.05rem;
}
.productBox .msgList .lie li .msg {
  font-size: var(--fs24);
  line-height: 0.32rem;
  min-height: 0.64rem;
  color: #000;
  font-family: 'Poppins-R';
}
.productBox .mxfDiv2 .contrastDiv {
  order: 2;
}
.productBox .mxfDiv2 .videoDiv {
  order: 0;
}
.productBox .mxfDiv2 .conDiv {
  order: 1;
}
.productBox .mxfDiv2 .leftDiv {
  order: 2;
}
.productP2 {
  background: #f5f5f5;
}
.productP2 .videoDiv {
  order: 1;
}
.productP4 {
  position: relative;
  background: center no-repeat;
  background-size: cover;
}
.productP4 .leftImg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.productP4 .leftImg img {
  width: 11.56rem;
}
.productP4 .conDiv {
  margin-left: auto;
}
.productP4 .conDiv .name {
  color: #fff;
}
.productP4 .conDiv .name::after {
  background: #fff;
}
.productP4 .conDiv .wen,
.productP4 .conDiv .msg {
  color: #fff;
}
.productP5 {
  padding-top: 1.4rem;
  height: 9.1rem;
  background: center no-repeat;
  background-size: cover;
}
.productP5 .title {
  text-align: center;
  color: #fff;
  padding-bottom: 0.3rem;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
}
.productP5 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -14px;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: #fff;
}
.featurePic {
  margin-top: 0.4rem;
}
.featurePic .list {
  overflow: hidden;
}
.featurePic .box {
  background: #fff;
  height: 4.12rem;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem 0.48rem 0;
}
.featurePic .box .ico {
  height: 0.72rem;
}
.featurePic .box .ico img {
  width: 0.48rem;
}
.featurePic .box .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.featurePic .box .msg {
  opacity: 0;
  visibility: hidden;
  margin-top: 0.25rem;
  padding-right: 5px;
  font-size: var(--fs16);
  line-height: 0.24rem;
  max-height: 0.96rem;
  color: #333;
  overflow: auto;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.featurePic .box .msg::-webkit-scrollbar {
  width: 3px;
}
.featurePic .box .msg::-webkit-scrollbar-track {
  background-color: #eee;
}
.featurePic .box .msg::-webkit-scrollbar-thumb {
  background-color: #014ba2;
}
.featurePic .box .more {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.featurePic .box .more::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  margin-left: -1px;
  margin-top: -6px;
  background: #fff;
}
.featurePic .box .more::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  background: #fff;
}
.featurePic .box .num {
  opacity: 0;
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  font-size: var(--fs72);
  line-height: 0.6rem;
  color: #f3f3f3;
  font-family: 'Poppins-R';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.featurePic .box:hover .name {
  color: #014ba2;
}
.featurePic .box:hover .msg {
  opacity: 1;
  visibility: visible;
}
.featurePic .box:hover .more {
  opacity: 0;
}
.featurePic .box:hover .num {
  opacity: 1;
}
.featurePic .bottom {
  margin-top: 0.4rem;
  position: relative;
  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;
}
.featurePic .swiper-pagination {
  position: relative;
  width: calc(100% - 1.8rem);
  height: 2px;
  background-color: rgba(225, 225, 225, 0.1);
}
.featurePic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #01a1d5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.featurePic .arrowDiv {
  font-size: 0;
}
.featurePic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
}
.featurePic .arrowDiv .prev {
  margin-right: 0.2rem;
  background: #fff url(../img/nimg10_left2.png) center no-repeat;
  background-size: 0.1rem;
}
.featurePic .arrowDiv .prev:hover {
  background: #014ba2 url(../img/nimg10_lefton.png) center no-repeat;
  background-size: 0.1rem;
}
.featurePic .arrowDiv .next {
  background: #fff url(../img/nimg10_right2.png) center no-repeat;
  background-size: 0.1rem;
}
.featurePic .arrowDiv .next:hover {
  background: #014ba2 url(../img/nimg10_righton.png) center no-repeat;
  background-size: 0.1rem;
}
.productP6 {
  padding-top: 1.4rem;
}
.productP6 .title {
  text-align: center;
  color: #000;
  padding-bottom: 0.3rem;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
}
.productP6 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -14px;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: #014ba2;
}
.productP6 .zi {
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.28rem;
  width: 9.6rem;
  color: #333;
  margin: 0.25rem auto 0.5rem;
}
.productP6 .lunbo {
  position: relative;
  overflow: hidden;
}
.productP6 .imgList {
  width: 31.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.8rem;
}
.productP6 .swiper-slide {
  position: relative;
  overflow: hidden;
}
.productP6 .swiper-slide .img {
  width: 10.24rem;
  height: 5.8rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.productP6 .swiper-slide .img::after {
  content: '';
  opacity: 1;
  visibility: visible;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP6 .swiper-slide .img img,
.productP6 .swiper-slide .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP6 .swiper-slide-active .img::after {
  opacity: 0;
  visibility: hidden;
}
.productP6 .se {
  display: block;
  width: 0.58rem;
  height: 0.58rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.29rem;
  background: rgba(0, 0, 0, 0.5);
}
.productP6 .se:hover {
  background: #014ba2;
}
.productP6 .prev {
  left: 50%;
  margin-left: -7.68rem;
}
.productP6 .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -8px;
  width: 10px;
  height: 17px;
  background: url("../img/nimg10_lefton.png") center no-repeat;
}
.productP6 .next {
  right: 50%;
  margin-right: -7.68rem;
}
.productP6 .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -8px;
  width: 10px;
  height: 17px;
  background: url("../img/nimg10_righton.png") center no-repeat;
}
.consultDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.6rem;
  background: url(../img/zixunBg.jpg) center no-repeat;
  background-size: cover;
}
.consultDiv .title {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: 0;
}
.consultDiv .msg {
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.48rem;
}
.consultDiv .btnGroup {
  margin-top: 0.48rem;
  text-align: center;
}
.consultDiv .btnGroup ul {
  margin: 0;
}
.consultDiv .btnGroup li {
  display: inline-block;
  margin: 0 0.1rem;
}
.consultDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.42rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  border: rgba(255, 255, 255, 0.5) solid 2px;
}
.consultDiv .btnGroup li a:hover {
  background: #fff;
  border: #fff solid 2px;
  color: #014ba2;
}
@media (max-width: 1600px) {
  .productP6 .prev {
    margin-left: -8rem;
  }
  .productP6 .next {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .productBox .mxfDiv {
    padding: 0.9rem 0;
    display: block;
    height: auto;
  }
  .productBox .contrastDiv {
    width: auto;
    position: relative;
    margin-bottom: 0.5rem;
  }
  .productBox .contrastDiv .layer em {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .productBox .conDiv {
    width: auto;
  }
  .productBox .conDiv .name {
    padding-bottom: 0.25rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productBox .conDiv .name::after {
    width: 0.46rem;
  }
  .productBox .conDiv .wen {
    margin: 0.45rem 0 0.3rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .productBox .conDiv .msg {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .productBox .videoDiv {
    width: auto;
    margin-bottom: 0.5rem;
  }
  .productBox .videoDiv .imgDiv {
    height: 4.2rem;
  }
  .productBox .videoDiv video {
    max-height: 4.2rem;
  }
  .productBox .videoDiv .playbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
  }
  .productBox .videoDiv .playbox img {
    width: 1.2rem;
  }
  .productBox .leftDiv {
    width: auto;
    margin-bottom: 0.5rem;
    padding-bottom: 0.6rem;
  }
  .productBox .leftDiv .layerImg {
    bottom: 0;
  }
  .productBox .leftDiv .layerImg img {
    width: 2rem;
  }
  .productBox .proImg {
    width: auto;
    height: 6rem;
    margin-bottom: 0.5rem;
  }
  .productBox .proImg img {
    max-width: 5.2rem;
    max-height: 5.6rem;
  }
  .productBox .msgList {
    width: auto;
  }
  .productBox .msgList .name {
    padding-bottom: 0.25rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productBox .msgList .name::after {
    width: 0.46rem;
  }
  .productBox .msgList .lie {
    margin-top: 0.25rem;
  }
  .productBox .msgList .lie ul {
    display: block;
    margin-right: 0;
  }
  .productBox .msgList .lie li {
    width: auto;
  }
  .productBox .msgList .lie li .box {
    margin-right: 0;
    padding: 0.3rem 0 0.2rem;
  }
  .productBox .msgList .lie li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.1rem;
  }
  .productBox .msgList .lie li .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
    min-height: 0.8rem;
  }
  .productP4 .wrap {
    padding: 0;
  }
  .productP4 .mxfDiv {
    padding: 0 0 0.9rem;
  }
  .productP4 .leftImg {
    position: relative;
    margin-bottom: 0.5rem;
  }
  .productP4 .leftImg img {
    width: 100%;
  }
  .productP4 .conDiv {
    padding: 0 0.3rem;
  }
  .productP5 {
    padding: 0.9rem 0;
    height: auto;
  }
  .productP5 .title {
    padding-bottom: 0.3rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP5 .title::after {
    margin-left: -0.23rem;
    width: 0.46rem;
  }
  .featurePic {
    margin-top: 0.6rem;
  }
  .featurePic .box {
    height: 4.8rem;
    padding: 0.5rem 0.3rem 0;
  }
  .featurePic .box .ico {
    position: absolute;
    left: 0.3rem;
    top: 0.5rem;
    height: 0.8rem;
  }
  .featurePic .box .ico img {
    width: 0.8rem;
  }
  .featurePic .box .name {
    padding-left: 1.2rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .featurePic .box .msg {
    opacity: 1;
    visibility: visible;
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.92rem;
  }
  .featurePic .box .more {
    display: none;
  }
  .featurePic .box .num {
    right: 0.3rem;
    bottom: 0.3rem;
    font-size: var(--fs32);
    line-height: 0.6rem;
  }
  .featurePic .box:hover .msg {
    opacity: 1;
    visibility: visible;
  }
  .featurePic .bottom {
    margin-top: 0.5rem;
  }
  .featurePic .swiper-pagination {
    width: calc(100% - 2.36rem);
  }
  .featurePic .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .featurePic .arrowDiv .prev {
    background-size: 0.14rem;
  }
  .featurePic .arrowDiv .prev:hover {
    background-size: 0.14rem;
  }
  .featurePic .arrowDiv .next {
    background-size: 0.14rem;
  }
  .featurePic .arrowDiv .next:hover {
    background-size: 0.14rem;
  }
  .productP6 {
    padding-top: 0.9rem;
  }
  .productP6 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP6 .title::after {
    margin-left: -0.23rem;
    width: 0.46rem;
  }
  .productP6 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    margin: 0.35rem 0.3rem 0.5rem;
  }
  .productP6 .lunbo {
    padding: 0 0.3rem;
    overflow: hidden;
  }
  .productP6 .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .productP6 .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
    border-radius: 0.24rem;
  }
  .productP6 .se {
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
  }
  .productP6 .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .productP6 .prev::after {
    margin-left: -3px;
    margin-top: -5px;
    width: 6px;
    height: 11px;
    background-size: 6px;
  }
  .productP6 .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .productP6 .next::after {
    margin-left: -3px;
    margin-top: -5px;
    width: 6px;
    height: 11px;
    background-size: 6px;
  }
  .consultDiv {
    height: 5.2rem;
    padding: 0 0.3rem;
  }
  .consultDiv .title {
    font-size: var(--fs20);
  }
  .consultDiv .msg {
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .consultDiv .btnGroup {
    margin-top: 0.3rem;
  }
  .consultDiv .btnGroup li a {
    width: 2.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
    border: rgba(255, 255, 255, 0.5) solid 1px;
  }
  .consultDiv .btnGroup li a:hover {
    border: #014ba2 solid 1px;
  }
}
.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;
  }
}
