.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);
  }
}
.upDown {
  animation: upDown 1.6s cubic-bezier(0.4, 0, 0.2, 1) alternate infinite;
}
.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 .img {
  height: 100vh;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 20%;
  z-index: 2;
}
.ind-banner .onebox .cn {
  font-size: var(--fs60);
  line-height: 0.64rem;
  color: #fff;
  margin-bottom: 10px;
}
.ind-banner .onebox .zi {
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #fff;
}
.ind-banner .onebox .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.2rem;
}
.ind-banner .onebox .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 0.1rem;
  font-size: var(--fs16);
  color: #fff;
  overflow: hidden;
  border-radius: 0.48rem;
  min-width: 1.52rem;
  height: 0.52rem;
  padding: 0 0.2rem;
  border: #fff solid 1px;
}
.ind-banner .onebox .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_1.svg) no-repeat;
  background-size: 0.24rem;
  transition: All 0.5s ease;
}
.ind-banner .onebox .more a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #084FFF;
}
@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%;
    padding: 0 0.3rem;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.1rem;
  }
  .ind-banner .onebox .cn b {
    display: block;
  }
  .ind-banner .onebox .zi {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .ind-banner .onebox .more a {
    font-size: var(--fs14);
    height: 0.82rem;
    padding: 0 0.4rem;
  }
  .ind-banner .onebox .more a em {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 0.36rem;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
}
.indTxt {
  font-size: var(--fs60);
  line-height: 0.72rem;
  text-align: center;
  color: #333;
}
.indexP1 {
  padding: 1rem 0 1.1rem;
}
.indexP1 .name {
  font-size: var(--fs48);
  line-height: 0.6rem;
  text-align: center;
  font-weight: 500;
}
.indexP1 .name em {
  background: linear-gradient(to right, #0194EC, #084FFF);
  /* 将背景剪裁到文字（标准属性） */
  background-clip: text;
  /* 针对Webkit浏览器的背景剪裁和文字透明 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 对于不支持background-clip: text的浏览器，可以设置一个备用颜色 */
  color: #084FFF;
  display: inline-block;
}
.indexP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.45rem;
}
.indexP1 .conDiv {
  width: calc(100% - 9rem);
}
.indexP1 .cn {
  color: #141414;
  font-size: var(--fs60);
  line-height: 0.7rem;
  font-weight: 500;
}
.indexP1 .content {
  margin-top: 0.2rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  text-align: justify;
}
.indexP1 .list {
  margin-top: 0.2rem;
}
.indexP1 .list li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 1rem 0 0.85rem;
  height: 1.2rem;
  border-bottom: #646464 solid 1px;
}
.indexP1 .list li .limg {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.24rem;
}
.indexP1 .list li .limg img {
  width: 0.48rem;
}
.indexP1 .list li .num {
  display: flex;
  align-items: flex-end;
  line-height: 0.5rem;
}
.indexP1 .list li .num .baozhe {
  display: flex;
  align-items: flex-end;
  min-width: 1.65rem;
}
.indexP1 .list li .num .numUp {
  font-family: "Din-B";
  margin-right: 0.1rem;
  font-size: 0.64rem;
  line-height: 0.64rem;
  display: inline-block;
  background: linear-gradient(to right, #0194EC, #084FFF);
  /* 将背景剪裁到文字（标准属性） */
  background-clip: text;
  /* 针对Webkit浏览器的背景剪裁和文字透明 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 对于不支持background-clip: text的浏览器，可以设置一个备用颜色 */
  color: #084FFF;
}
.indexP1 .list li .num .unit {
  position: relative;
  font-size: var(--fs32);
  color: #084FFF;
  height: 0.5rem;
  padding-right: 0.3rem;
}
.indexP1 .list li .num .unit::after {
  content: '+';
  color: #084FFF;
  position: absolute;
  right: 0;
  top: -0.15rem;
  line-height: 0.24rem;
  font-size: var(--fs30);
}
.indexP1 .list li .num .zi {
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.indexP1 .list li .ico {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  right: 0;
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -22px;
  border-radius: 50%;
}
.indexP1 .list li .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -7px;
  width: 9px;
  height: 15px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP1 .videobox {
  width: 7.4rem;
  height: 4.36rem;
  border-radius: 0.3rem;
  position: relative;
  overflow: hidden;
}
.indexP1 .videobox .imgDiv {
  height: 4.36rem;
}
.indexP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP1 .videobox video {
  max-width: 100%;
  max-height: 4.36rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.indexP1 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  z-index: 1;
}
.indexP1 .videobox.cur {
  background: #000;
}
.indexP1 .videobox.cur .imgDiv,
.indexP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.indexP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.indexP1 .btnGroup {
  margin-top: 0.45rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP1 .btnGroup a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 0.1rem;
  min-width: 1.52rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  font-size: var(--fs20);
  border: #084FFF solid 1px;
  color: #084FFF;
}
.indexP1 .btnGroup a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indexP2 {
  padding: 1.1rem 0 0.8rem;
  overflow: hidden;
  background: url(../img/indexP2.jpg) center no-repeat;
  background-size: cover;
}
.indexP2 .indTxt {
  margin-bottom: 0.35rem;
}
.indBusiness {
  position: relative;
  overflow: hidden;
}
.indBusiness .imgList {
  width: 40rem;
  position: relative;
  left: 50%;
  margin-left: -20rem;
}
.indBusiness .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.indBusiness .swiper-slide .imgDiv {
  width: 12.82rem;
  height: 7rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.3rem;
  overflow: hidden;
}
.indBusiness .swiper-slide .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indBusiness .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indBusiness .swiper-slide .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin: 0.55rem auto 0;
  width: 12.82rem;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indBusiness .swiper-slide .botbot .left {
  width: 8.5rem;
}
.indBusiness .swiper-slide .botbot .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  margin-bottom: 5px;
}
.indBusiness .swiper-slide .botbot .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0.6rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.indBusiness .swiper-slide .botbot .right {
  display: flex;
}
.indBusiness .swiper-slide .botbot .right a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 0.2rem;
  min-width: 1.52rem;
  padding: 0 0.15rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  font-size: var(--fs16);
  background: #fff;
  color: #666;
}
.indBusiness .swiper-slide .botbot .right a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_2.png) no-repeat;
  background-size: 0.24rem;
  transition: All 0.5s ease;
}
.indBusiness .swiper-slide .botbot .right a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indBusiness .swiper-slide .botbot .right a:hover em {
  background: url(../img/nimg24_1.svg) no-repeat;
  background-size: 0.24rem;
}
.indBusiness .swiper-slide-active .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.indBusiness .swiper-slide-active .botbot {
  opacity: 1;
  visibility: visible;
}
.indBusiness .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 3rem;
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
.indBusiness .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.indBusiness .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.indBusiness .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_left.png) no-repeat;
  background-size: 0.16rem;
}
.indBusiness .next {
  right: 50%;
  margin-right: -8.8rem;
}
.indBusiness .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_right.png) no-repeat;
  background-size: 0.16rem;
}
.indexP3 {
  padding: 1.35rem 0.26rem 0;
}
.indexP3 .indTxt {
  color: #000;
}
.indexP3 .list {
  margin-top: 0.6rem;
}
.indexP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.indexP3 .list li {
  width: calc((100% - 0.52rem) / 3);
  margin-right: 0.26rem;
  margin-top: 0.32rem;
}
.indexP3 .list li:nth-child(3n) {
  margin-right: 0;
}
.indexP3 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.indexP3 .list li a {
  display: block;
  position: relative;
  padding: 0.9rem 0.9rem 0;
  height: 6.92rem;
  border-radius: 0.2rem;
  text-align: center;
  overflow: hidden;
  background: center no-repeat;
  background-size: cover;
}
.indexP3 .list li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.5);
}
.indexP3 .list li a .baozhe {
  position: relative;
  z-index: 1;
}
.indexP3 .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.52rem;
  color: #333;
  line-height: 0.62rem;
}
.indexP3 .list li a .zi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #666;
}
.indexP3 .list li a .more {
  margin-top: 0.3rem;
  display: inline-block;
  padding-right: 0.3rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.2rem;
  background: url(../img/ico2.png) right center no-repeat;
}
.indexP3 .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4.2rem;
}
.indexP3 .list li a .imgDiv img {
  max-width: 100%;
  max-height: 4.2rem;
  transition: All 1s ease;
}
.indexP3 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.indexP3 .moreBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.6rem;
}
.indexP3 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: relative;
  overflow: hidden;
  min-width: 1.9rem;
  padding: 0 0.2rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  font-size: var(--fs16);
  color: #fff;
}
.indexP4 {
  padding: 1.25rem 0 1.45rem;
}
.indexP4 .indTxt {
  color: #000;
  margin-bottom: 0.9rem;
}
.indexP4 .moreBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.74rem;
}
.indexP4 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: relative;
  overflow: hidden;
  min-width: 1.52rem;
  padding: 0 0.2rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  font-size: var(--fs16);
  color: #fff;
}
.indScene {
  position: relative;
}
.indScene .imgList {
  overflow: hidden;
}
.indScene .imgList li a {
  display: block;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.indScene .imgList li a .imgDiv {
  height: 5.9rem;
}
.indScene .imgList li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indScene .imgList li a .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.3rem;
  height: 0.94rem;
  font-size: var(--fs36);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
}
.indScene .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.37rem;
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
.indScene .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.indScene .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.indScene .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_left.png) no-repeat;
  background-size: 0.16rem;
}
.indScene .next {
  right: 50%;
  margin-right: -8.8rem;
}
.indScene .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_right.png) no-repeat;
  background-size: 0.16rem;
}
.indexP5 {
  padding: 1.25rem 0;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
}
.indexP5 .indTxt {
  color: #fff;
  margin-bottom: 0.68rem;
}
.indexP5 .moreBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.6rem;
}
.indexP5 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: relative;
  overflow: hidden;
  min-width: 1.52rem;
  padding: 0 0.2rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  font-size: var(--fs16);
  color: #fff;
}
.indexP5 .mxfDiv {
  position: relative;
  padding-left: 1.7rem;
}
.indexP5 .box-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: absolute;
  height: 4rem;
  left: 0;
  top: 0;
  width: 40px;
}
.indexP5 .img-swiper {
  width: 40px;
  height: 232px;
  overflow: hidden;
}
.indexP5 .img-swiper .swiper-slide {
  height: 40px!important;
}
.indexP5 .img-swiper .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  cursor: pointer;
  height: 40px;
  border-radius: 50%;
  opacity: 0.4;
}
.indexP5 .img-swiper .limg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url(../img/nimg40Bg.png) no-repeat;
  transform: rotate(0deg);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP5 .img-swiper .limg img {
  max-width: 100%;
  max-height: 100%;
}
.indexP5 .img-swiper .swiper-slide-active .limg {
  opacity: 1;
}
.indexP5 .img-swiper .swiper-slide-active .limg::after {
  opacity: 1;
  transform: rotate(120deg);
}
.indexP5 .detail-box {
  width: 100%;
  position: relative;
}
.indexP5 .detail-box .item {
  display: none;
  position: relative;
  overflow: hidden;
}
.indexP5 .detail-box .item .conDiv {
  float: left;
  width: 4.3rem;
  color: #fff;
}
.indexP5 .detail-box .item .conDiv .num {
  font-size: 1.2rem;
  line-height: 1rem;
  font-family: 'Din-B';
}
.indexP5 .detail-box .item .conDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.15rem;
  font-size: var(--fs48);
  line-height: 0.56rem;
}
.indexP5 .detail-box .item .conDiv .zi {
  margin: 0.35rem 0 0.2rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.indexP5 .detail-box .item .conDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-align: justify;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indexP5 .detail-box .item .imgDiv {
  float: right;
  width: 8.34rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.indexP5 .detail-box .item .imgDiv img {
  width: 100%;
}
.indexP5 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.indexP5 .swiper-btn {
  position: absolute;
  left: 0;
  width: 40px;
  height: 17px;
  z-index: 2;
}
.indexP5 .prev {
  top: 0;
  background: url(../img/nimg28_top.png) center no-repeat;
}
.indexP5 .prev:hover {
  background: url(../img/nimg28_topon.png) center no-repeat;
}
.indexP5 .next {
  bottom: 0;
  background: url(../img/nimg28_bot.png) center no-repeat;
}
.indexP5 .next:hover {
  background: url(../img/nimg28_boton.png) center no-repeat;
}
.indexP6 {
  padding: 1.2rem 0 1.5rem;
}
.indexP6 .indTxt {
  color: #000;
  margin-bottom: 0.62rem;
}
.indexP6 .list {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP6 .list a {
  width: calc((100% - 0.64rem) / 3);
  margin-right: 0.32rem;
  margin-top: 0.32rem;
  min-height: 4.72rem;
  padding: 0.45rem 0.45rem 0.3rem;
  background: #fff;
  border-radius: 0.2rem;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.2);
}
.indexP6 .list a:nth-child(3n) {
  margin-right: 0;
}
.indexP6 .list a:nth-child(-n+3) {
  margin-top: 0;
}
.indexP6 .list a .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.indexP6 .list a .toptop .ico {
  height: 0.54rem;
}
.indexP6 .list a .toptop .ico img {
  max-height: 0.54rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .list a .toptop .guoqi {
  height: 0.54rem;
}
.indexP6 .list a .toptop .guoqi img {
  max-height: 0.54rem;
}
.indexP6 .list a .toptop .num {
  font-family: 'Din-B';
  font-size: var(--fs72);
  line-height: 0.86rem;
  opacity: 0.3;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexP6 .list a .name {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #333;
  font-weight: 500;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .list a .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: var(--fs14);
  line-height: 0.26rem;
  min-height: 0.78rem;
  color: #666;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .list a .more {
  margin-top: 0.2rem;
  text-align: right;
  font-size: var(--fs16);
  color: #494949;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .list a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.indexP6 .list a:hover .toptop .ico img {
  filter: brightness(0) invert(1);
}
.indexP6 .list a:hover .toptop .num {
  opacity: 0.3;
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: currentColor;
}
.indexP6 .list a:hover .name,
.indexP6 .list a:hover .msg,
.indexP6 .list a:hover .more {
  color: #fff;
}
.indexP7 {
  background: #f6f6f6;
  padding: 1.1rem 0 1.2rem;
}
.indexP7 .indTxt {
  color: #000;
  margin-bottom: 0.54rem;
}
@media (max-width: 1004px) {
  .indTxt {
    font-size: var(--fs24);
  }
  .indexP1 {
    padding: 0.9rem 0 1rem;
  }
  .indexP1 .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexP1 .mxfDiv {
    display: block;
    margin-top: 0.65rem;
  }
  .indexP1 .conDiv {
    width: auto;
    margin-bottom: 0.8rem;
  }
  .indexP1 .cn {
    font-size: var(--fs24);
  }
  .indexP1 .content {
    font-size: var(--fs15);
    line-height: 0.54rem;
  }
  .indexP1 .list {
    margin-top: 0.3rem;
  }
  .indexP1 .list li {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 1rem 0 1rem;
    height: 1.5rem;
  }
  .indexP1 .list li .limg {
    margin-top: -0.32rem;
  }
  .indexP1 .list li .limg img {
    width: 0.64rem;
  }
  .indexP1 .list li .num .numUp {
    font-size: var(--fs36);
  }
  .indexP1 .list li .num .unit {
    font-size: var(--fs17);
  }
  .indexP1 .list li .num .unit::after {
    line-height: 0.32rem;
    font-size: var(--fs16);
  }
  .indexP1 .list li .num .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP1 .list li .ico {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }
  .indexP1 .videobox {
    width: 100%;
    height: 4.2rem;
  }
  .indexP1 .videobox .imgDiv {
    height: 4.2rem;
  }
  .indexP1 .videobox video {
    max-height: 4.2rem;
  }
  .indexP1 .btnGroup {
    margin-top: 0.6rem;
  }
  .indexP1 .btnGroup a {
    height: 0.82rem;
    padding: 0 0.4rem;
    font-size: var(--fs15);
  }
  .indexP2 {
    padding: 1.1rem var(--offset) 1rem;
  }
  .indexP2 .indTxt {
    margin-bottom: 0.5rem;
  }
  .indBusiness .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .indBusiness .swiper-slide .imgDiv {
    width: 100%;
    height: 4.2rem;
  }
  .indBusiness .swiper-slide .botbot {
    display: block;
    margin: 0.4rem auto 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .indBusiness .swiper-slide .botbot .left {
    width: 100%;
  }
  .indBusiness .swiper-slide .botbot .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .indBusiness .swiper-slide .botbot .msg {
    min-height: 0.96rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indBusiness .swiper-slide .botbot .right {
    margin-top: 0.3rem;
  }
  .indBusiness .swiper-slide .botbot .right a {
    margin-left: 0;
    margin-right: 0.2rem;
    padding: 0 0.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indBusiness .swiper-slide .botbot .right a em {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 0.36rem;
  }
  .indBusiness .swiper-slide .botbot .right a:hover em {
    background-size: 0.36rem;
  }
  .indBusiness .se {
    top: 25%;
    width: 0.9rem;
    height: 0.9rem;
  }
  .indBusiness .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .indBusiness .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .indexP3 {
    padding: 1rem var(--offset) 0;
  }
  .indexP3 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .indexP3 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .indexP3 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .indexP3 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .indexP3 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .indexP3 .list li a {
    padding: 0.5rem 0.2rem 0;
    height: 5.6rem;
  }
  .indexP3 .list li a .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .indexP3 .list li a .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP3 .list li a .more {
    padding-right: 0.38rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .indexP3 .list li a .imgDiv {
    height: 2.8rem;
  }
  .indexP3 .list li a .imgDiv img {
    max-height: 2.8rem;
  }
  .indexP3 .moreBtn a {
    padding: 0 0.5rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP4 {
    padding: 0.9rem 0 1rem;
  }
  .indexP4 .indTxt {
    margin-bottom: 0.6rem;
  }
  .indexP4 .moreBtn {
    margin-top: 0.6rem;
  }
  .indexP4 .moreBtn a {
    padding: 0 0.5rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indScene .imgList li a .imgDiv {
    height: 6.2rem;
  }
  .indScene .imgList li a .name {
    height: 1.1rem;
    font-size: var(--fs17);
  }
  .indScene .se {
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .indScene .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .indScene .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .indexP5 {
    padding: 1.25rem 0;
    background: url(../img/indexP5.jpg) center no-repeat;
    background-size: cover;
  }
  .indexP5 .indTxt {
    color: #fff;
    margin-bottom: 0.68rem;
  }
  .indexP5 .moreBtn {
    margin-top: 0.6rem;
  }
  .indexP5 .moreBtn a {
    padding: 0 0.5rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP5 .mxfDiv {
    padding-left: 0;
  }
  .indexP5 .box-container {
    display: block;
    position: relative;
    height: 40px;
    width: 100%;
    padding: 0 0.8rem;
  }
  .indexP5 .img-swiper {
    width: 100%;
    height: 40px;
  }
  .indexP5 .img-swiper .limg {
    width: 40px;
  }
  .indexP5 .detail-box {
    margin-bottom: 0.6rem;
  }
  .indexP5 .detail-box .item .conDiv {
    float: none;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .indexP5 .detail-box .item .conDiv .num {
    display: none;
  }
  .indexP5 .detail-box .item .conDiv .name {
    margin-top: 0;
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP5 .detail-box .item .conDiv .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .indexP5 .detail-box .item .conDiv .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP5 .detail-box .item .imgDiv {
    float: none;
    width: 100%;
  }
  .indexP5 .swiper-btn {
    left: 0;
    width: 12px;
    height: 22px;
  }
  .indexP5 .prev {
    top: 50%;
    margin-top: -11px;
    background: url(../img/prev.png) center no-repeat;
  }
  .indexP5 .prev:hover {
    background: url(../img/prevpon.png) center no-repeat;
  }
  .indexP5 .next {
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    margin-top: -11px;
    background: url(../img/next.png) center no-repeat;
  }
  .indexP5 .next:hover {
    background: url(../img/nexton.png) center no-repeat;
  }
  .indexP6 {
    padding: 0.9rem 0 1rem;
  }
  .indexP6 .indTxt {
    margin-bottom: 0.6rem;
  }
  .indexP6 .list a {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
    min-height: 3rem;
    padding: 0.45rem 0.4rem 0.3rem;
  }
  .indexP6 .list a:nth-child(1) {
    margin-top: 0;
  }
  .indexP6 .list a:nth-child(2),
  .indexP6 .list a:nth-child(3) {
    margin-top: 0.3rem;
  }
  .indexP6 .list a .toptop {
    margin-bottom: 0.75rem;
  }
  .indexP6 .list a .toptop .ico {
    height: 0.76rem;
  }
  .indexP6 .list a .toptop .ico img {
    max-height: 0.76rem;
  }
  .indexP6 .list a .toptop .guoqi {
    height: 0.76rem;
  }
  .indexP6 .list a .toptop .guoqi img {
    max-height: 0.76rem;
  }
  .indexP6 .list a .toptop .num {
    font-size: var(--fs48);
  }
  .indexP6 .list a .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .indexP6 .list a .msg {
    margin-top: 0.3rem;
    line-height: 0.48rem;
    min-height: 1.44rem;
  }
  .indexP6 .list a .more {
    margin-top: 0.3rem;
  }
  .indexP7 {
    background: #f6f6f6;
    padding: 1.1rem 0 1.2rem;
  }
  .indexP7 .indTxt {
    color: #000;
    margin-bottom: 0.54rem;
  }
}
.download {
  padding: 1.2rem 0;
  background: #f3f6fa;
}
.download .list {
  padding-bottom: 0.65rem;
}
.download .list li {
  margin-top: 0.42rem;
}
.download .list li:first-child {
  margin-top: 0;
}
.download .list li a {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 0.35rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.18rem;
  background: #fff;
}
.download .list li a .name {
  color: #101828;
  font-size: var(--fs24);
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.download .list li a .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.download .list li a .more {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  margin-top: -0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #E0E6EF url(../img/nimg43_1.png) center no-repeat;
  background-size: 0.43rem;
  border-radius: 50%;
}
.download .list li a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.download .list li a:hover .name,
.download .list li a:hover .content {
  color: #fff;
}
@media (max-width: 1004px) {
  .download {
    padding: 0.9rem 0;
  }
  .download .list {
    padding-bottom: 0.8rem;
  }
  .download .list li {
    margin-top: 0.3rem;
  }
  .download .list li a {
    padding: 0.3rem 0.35rem 1.8rem;
    border-radius: 0.24rem;
  }
  .download .list li a .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.15rem;
  }
  .download .list li a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .download .list li a .more {
    right: 0.35rem;
    top: auto;
    margin-top: 0;
    bottom: 0.4rem;
    width: 1.2rem;
    height: 1.2rem;
    background-size: 0.64rem;
  }
}
.question {
  padding: 1.2rem 0;
  background: #f3f6fa;
}
.question .list {
  padding-bottom: 0.65rem;
}
.question .list li {
  margin-top: 0.42rem;
}
.question .list li:first-child {
  margin-top: 0;
}
.question .list li a {
  position: relative;
  display: block;
  padding: 0.5rem 0.64rem 0.5rem 1.2rem;
  border: 1px solid #E5E7EB;
  border-radius: 0.18rem;
  background: #fff;
}
.question .list li a .ico {
  position: absolute;
  left: 0.32rem;
  top: 0.5rem;
}
.question .list li a .ico img {
  width: 0.45rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li a .name {
  color: #101828;
  font-size: var(--fs24);
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li a .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #666;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.question .list li a:hover .ico img {
  filter: brightness(0) invert(1);
}
.question .list li a:hover .name,
.question .list li a:hover .content {
  color: #fff;
}
@media (max-width: 1004px) {
  .question {
    padding: 0.9rem 0;
  }
  .question .list {
    padding-bottom: 0.8rem;
  }
  .question .list li {
    margin-top: 0.3rem;
  }
  .question .list li a {
    padding: 0.45rem 0.35rem 0.6rem 1.2rem;
    border-radius: 0.24rem;
  }
  .question .list li a .ico {
    top: 0.45rem;
    left: 0.3rem;
  }
  .question .list li a .ico img {
    width: 0.64rem;
  }
  .question .list li a .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.15rem;
  }
  .question .list li a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.serviceP1 {
  position: relative;
  padding: 1rem 0 1.5rem;
  background: url(../img/serviceP1.jpg) center no-repeat;
  background-size: cover;
}
.serviceP1::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}
.serviceP1 .list {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
}
.serviceP1 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.serviceP1 .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.58rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 0.3rem;
  min-height: 4.2rem;
}
.serviceP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.serviceP1 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.serviceP1 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  font-size: var(--fs30);
  color: #000;
  position: relative;
  padding-left: 0.8rem;
  min-height: 0.68rem;
}
.serviceP1 .list li .name .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.34rem;
  width: 0.68rem;
  height: 0.68rem;
  background: #084FFF;
  border-radius: 50%;
}
.serviceP1 .list li .name .ico img {
  max-width: 0.45rem;
}
.serviceP1 .list li .zi {
  margin-top: 0.45rem;
  height: 0.9rem;
  overflow: hidden;
}
.serviceP1 .list li .zi dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.3rem;
  font-size: var(--fs20);
  color: #000;
}
.serviceP1 .list li .more {
  display: flex;
  margin-top: 0.45rem;
}
.serviceP1 .list li .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-width: 1.52rem;
  padding: 0 0.15rem;
  height: 0.52rem;
  border-radius: 0.5rem;
  font-size: var(--fs18);
  color: #084FFF;
  border: #084FFF solid 1px;
}
.serviceP1 .list li .more a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.serviceP2 {
  padding: 1.1rem 0 1.6rem;
}
.serviceP2 .pageTitle {
  color: #152244;
}
.serviceP2 .zi {
  color: #152244;
  text-align: center;
  margin: 0.2rem 0 0.8rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
}
.serviceP2 .list {
  margin-right: -0.24rem;
}
.serviceP2 .list ul {
  display: flex;
  width: auto;
}
.serviceP2 .list li {
  flex: 1 1 33.33%;
  height: 7.52rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.serviceP2 .list li .box {
  margin-right: 0.24rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.15rem;
}
.serviceP2 .list li .bg {
  position: relative;
  height: 7.52rem;
  background: center no-repeat;
  background-size: cover;
}
.serviceP2 .list li .bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
}
.serviceP2 .list li .beforeDiv {
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  padding: 0 0.4rem;
  z-index: 1;
  transition: All 0.5s ease;
}
.serviceP2 .list li .beforeDiv .name {
  height: 0.36rem;
  overflow: hidden;
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #fff;
}
.serviceP2 .list li .afterDiv {
  position: absolute;
  width: calc(100% - 0.6rem);
  padding: 0.5rem 1.6rem 0.42rem 0.5rem;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  background: #fff;
  border-radius: 0.3rem;
  z-index: 1;
  color: #333;
  transition: All 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.serviceP2 .list li .afterDiv .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0.22rem;
  top: 0.22rem;
  width: 0.9rem;
  height: 0.9rem;
  background: #E0E6EF;
  border-radius: 50%;
}
.serviceP2 .list li .afterDiv .ico img {
  width: 0.4rem;
}
.serviceP2 .list li .afterDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  line-height: 0.36rem;
}
.serviceP2 .list li .afterDiv .msg {
  margin-top: 5px;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.serviceP2 .list li .afterDiv .more {
  display: flex;
  margin-top: 0.16rem;
}
.serviceP2 .list li .afterDiv .more .book {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  min-width: 1.45rem;
  height: 0.42rem;
  font-size: var(--fs14);
  color: #fff;
  padding: 0 0.2rem;
  border-radius: 0.48rem;
}
.serviceP2 .list li .afterDiv .more .book em {
  margin-left: 0.1rem;
  width: 0.18rem;
  height: 0.15rem;
  background: url(../img/ico3.png) no-repeat;
  background-size: 0.18rem;
}
.serviceP2 .list li.on {
  flex: 0 0 52%;
}
.serviceP2 .list li.on .bg::after {
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}
.serviceP2 .list li.on .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.serviceP2 .list li.on .afterDiv {
  opacity: 1;
  visibility: visible;
}
.serviceP2 .swiper-pagination {
  display: none;
  bottom: 0;
  position: relative;
  padding-top: 0.6rem;
}
.serviceP2 .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: none;
  margin-left: 5px!important;
  margin-right: 5px!important;
  border: #084FFF solid 1px;
}
.serviceP2 .swiper-pagination-bullet-active {
  background: #084FFF;
}
.serviceP3 {
  padding: 1.2rem 0;
  background: url(../img/serviceP3.jpg) center no-repeat;
  background-size: cover;
}
.serviceP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-right: 1.45rem;
}
.serviceP3 .conDiv {
  color: #fff;
}
.serviceP3 .conDiv .pageTitle {
  text-align: left;
  color: #fff;
  margin-bottom: 5px;
}
.serviceP3 .conDiv .msg {
  font-size: var(--fs30);
  line-height: 0.36rem;
}
.serviceP3 .conDiv .ewmDiv {
  margin-top: 0.7rem;
  width: 3rem;
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.14rem 0.14rem 0.2rem;
}
.serviceP3 .conDiv .ewmDiv .limg img {
  width: 100%;
}
.serviceP3 .conDiv .ewmDiv p {
  margin-top: 0.1rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  text-align: center;
  color: #333;
}
.serviceP3 .rightDiv {
  width: 5.62rem;
  padding: 0.6rem 0.36rem 0.85rem;
  border-radius: 0.2rem;
  border: #fff solid 1px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
}
.serviceP3 .rightDiv .form ul {
  margin-right: -0.2rem;
}
.serviceP3 .rightDiv .form ul::after {
  content: '';
  display: block;
  clear: both;
}
.serviceP3 .rightDiv .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.24rem;
}
.serviceP3 .rightDiv .form li .box {
  margin-right: 0.2rem;
}
.serviceP3 .rightDiv .form li .zi {
  color: #fff;
  line-height: 0.2rem;
  font-size: var(--fs14);
  margin-bottom: 8px;
}
.serviceP3 .rightDiv .form li .input1 {
  width: 100%;
  height: 0.42rem;
  background: #fff;
  border-radius: 0.1rem;
  font-size: var(--fs14);
  padding-left: 0.1rem;
}
.serviceP3 .rightDiv .form li textarea {
  width: 100%;
  height: 0.86rem;
  background: #fff;
  border-radius: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.3rem;
  padding: 0 0.1rem;
}
.serviceP3 .rightDiv .form .li01 {
  width: 100%;
}
.serviceP3 .rightDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  width: 100%;
  height: 0.58rem;
  font-size: var(--fs20);
  color: #fff;
  font-weight: 700;
}
.serviceP3 .rightDiv .btnDiv a em {
  margin-left: 0.1rem;
  width: 9px;
  height: 15px;
  background: url(../img/ico1.png) no-repeat;
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding: 0.9rem 0 1rem;
  }
  .serviceP1 .list {
    margin-top: 0.65rem;
  }
  .serviceP1 .list ul {
    margin: 0;
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .serviceP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
    padding: 0.4rem;
  }
  .serviceP1 .list li:nth-child(2),
  .serviceP1 .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .serviceP1 .list li .name {
    font-size: var(--fs20);
    padding-left: 1.1rem;
    min-height: 0.9rem;
  }
  .serviceP1 .list li .name .ico {
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .serviceP1 .list li .name .ico img {
    max-width: 0.5rem;
  }
  .serviceP1 .list li .zi {
    margin-top: 0.3rem;
    height: 1.44rem;
  }
  .serviceP1 .list li .zi dd {
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .serviceP1 .list li .more {
    margin-top: 0.3rem;
  }
  .serviceP1 .list li .more a {
    padding: 0 0.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .serviceP2 {
    padding: 0.9rem 0 1rem;
  }
  .serviceP2 .zi {
    margin: 0.2rem 0 0.65rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .serviceP2 .list {
    margin-right: 0;
    overflow: hidden;
  }
  .serviceP2 .list ul {
    width: 100%;
  }
  .serviceP2 .list li {
    flex: 0 0 100%;
    height: 7rem;
  }
  .serviceP2 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .serviceP2 .list li .bg {
    height: 7rem;
  }
  .serviceP2 .list li .beforeDiv {
    display: none;
  }
  .serviceP2 .list li .afterDiv {
    width: calc(100% - 0.6rem);
    padding: 0.5rem 1.4rem 0.42rem 0.3rem;
    opacity: 1;
    visibility: visible;
  }
  .serviceP2 .list li .afterDiv .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .serviceP2 .list li .afterDiv .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .serviceP2 .list li .afterDiv .more {
    margin-top: 0.2rem;
  }
  .serviceP2 .list li .afterDiv .more .book {
    height: 0.78rem;
    padding: 0 0.4rem;
  }
  .serviceP2 .list li .afterDiv .more .book em {
    width: 0.24rem;
    height: 0.2rem;
    background-size: 0.24rem;
  }
  .serviceP2 .list li.on {
    flex: 0 0 100%;
  }
  .serviceP2 .swiper-pagination {
    display: block;
  }
  .serviceP3 {
    padding: 1rem 0;
  }
  .serviceP3 .mxfDiv {
    display: block;
    padding-right: 0;
  }
  .serviceP3 .conDiv {
    margin-bottom: 0.6rem;
  }
  .serviceP3 .conDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .serviceP3 .conDiv .ewmDiv {
    margin-top: 0.6rem;
    width: 3rem;
    padding: 0.2rem;
  }
  .serviceP3 .conDiv .ewmDiv p {
    margin-top: 0.15rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP3 .rightDiv {
    width: 100%;
    padding: 0.6rem 0.3rem 0.85rem;
    border-radius: 0.24rem;
  }
  .serviceP3 .rightDiv .form ul {
    margin-right: 0;
  }
  .serviceP3 .rightDiv .form li {
    float: none;
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .serviceP3 .rightDiv .form li .box {
    margin-right: 0;
  }
  .serviceP3 .rightDiv .form li .zi {
    line-height: 0.42rem;
    margin-bottom: 0.1rem;
  }
  .serviceP3 .rightDiv .form li .input1 {
    height: 0.86rem;
    border-radius: 0.16rem;
    padding-left: 0.2rem;
  }
  .serviceP3 .rightDiv .form li textarea {
    height: 2.86rem;
    border-radius: 0.16rem;
    line-height: 0.48rem;
    padding: 0 0.2rem;
  }
  .serviceP3 .rightDiv .btnDiv {
    padding-top: 0.2rem;
  }
  .serviceP3 .rightDiv .btnDiv a {
    height: 0.92rem;
    font-size: var(--fs15);
  }
  .serviceP3 .rightDiv .btnDiv a em {
    margin-left: 0.2rem;
  }
}
.caseshow {
  padding: 0.8rem 0 2.2rem;
}
.caseshow .backbtn {
  display: flex;
}
.caseshow .backbtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-width: 1.2rem;
  height: 0.48rem;
  padding: 0 0.2rem;
  font-size: var(--fs14);
  color: #000;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0 0 6px 1px rgba(153, 153, 153, 0.3);
}
.caseshow .backbtn a em {
  margin-right: 0.2rem;
  width: 7px;
  height: 11px;
  background: url(../img/ico4.png);
}
.caseshow .backbtn a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.caseshow .backbtn a:hover em {
  filter: brightness(0) invert(1);
}
.caseshow .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #084FFF;
  font-weight: bold;
  margin: 0.35rem 0 0.3rem;
}
.caseshow .msg {
  font-size: var(--fs16);
  color: #000;
  font-weight: 400;
  line-height: 0.26rem;
}
.caseshow .content {
  margin-top: 0.9rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.caseshow .content b {
  display: block;
  color: #333;
  font-size: var(--fs20);
}
.caseshow .imglist {
  margin-top: 0.3rem;
}
.caseshow .imglist ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.caseshow .imglist li {
  width: calc((100% - 1.04rem) / 3);
  margin-right: 0.52rem;
  margin-top: 0.3rem;
}
.caseshow .imglist li:nth-child(3n) {
  margin-right: 0;
}
.caseshow .imglist li:nth-child(-n+3) {
  margin-top: 0;
}
.caseshow .imglist li .imgDiv img {
  width: 100%;
}
.caseshow .imglist li .zi {
  margin-top: 0.12rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
@media (max-width: 1004px) {
  .caseshow {
    border-top: #e0e0e0 solid 1px;
    padding: 0.8rem 0 1.5rem;
  }
  .caseshow .backbtn a {
    height: 0.8rem;
    padding: 0 0.4rem;
  }
  .caseshow .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .caseshow .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .caseshow .content {
    margin-top: 0.65rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .caseshow .content b {
    font-size: var(--fs18);
    line-height: 0.6rem;
  }
  .caseshow .imglist li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .caseshow .imglist li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .caseshow .imglist li:nth-child(2n) {
    margin-right: 0;
  }
  .caseshow .imglist li:nth-child(-n+2) {
    margin-top: 0;
  }
  .caseshow .imglist li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .caseshow .imglist li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.caseP1 {
  padding: 0.85rem 0 1.2rem;
  position: relative;
  background: url(../img/caseP1.jpg) center no-repeat;
  background-size: cover;
}
.caseP1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.caseP1 .links {
  position: relative;
  z-index: 1;
  margin-bottom: 0.86rem;
}
.caseP1 .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.caseP1 .links li {
  margin: 0 0.1rem;
}
.caseP1 .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  color: #666;
  min-width: 1.36rem;
  padding: 0 0.3rem;
  height: 0.48rem;
  border-radius: 0.45rem;
  border: 1px solid #7C8083;
}
.caseP1 .links li .on {
  border: none;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.casePic {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.casePic .imgList {
  width: 40rem;
  position: relative;
  left: 50%;
  margin-left: -20rem;
}
.casePic .swiper-slide {
  position: relative;
  overflow: hidden;
}
.casePic .swiper-slide .imgDiv {
  width: 12.82rem;
  height: 6rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.3rem;
  overflow: hidden;
  transform: scale(0.92);
  -webkit-transform: scale(0.92);
  transition: All 0.5s ease;
}
.casePic .swiper-slide .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  visibility: visible;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casePic .swiper-slide .botbot {
  margin: 0.7rem auto 0;
  width: 12.82rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .swiper-slide .botbot .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.casePic .swiper-slide .botbot .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0.6rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.casePic .swiper-slide-active .imgDiv {
  transform: scale(1);
}
.casePic .swiper-slide-active .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.casePic .swiper-slide-active .botbot {
  opacity: 1;
  visibility: visible;
}
.casePic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 3rem;
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
.casePic .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.casePic .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.casePic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_left.png) no-repeat;
  background-size: 0.16rem;
}
.casePic .next {
  right: 50%;
  margin-right: -8.8rem;
}
.casePic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_right.png) no-repeat;
  background-size: 0.16rem;
}
.caseP2 {
  padding: 0.8rem 0 1.5rem;
}
.caseP2 .list {
  margin-bottom: 0.5rem;
}
.caseP2 .list li {
  border-bottom: rgba(0, 0, 0, 0.2) solid 1px;
}
.caseP2 .list li:last-child {
  border-bottom: none;
}
.caseP2 .list li a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0.5rem 0;
}
.caseP2 .list li a .imgDiv {
  width: 6.3rem;
  height: 4.06rem;
  overflow: hidden;
  border-radius: 0.3rem;
}
.caseP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseP2 .list li a .conDiv {
  width: calc(100% - 7.1rem);
  padding-top: 0.25rem;
}
.caseP2 .list li a .name {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #666;
  font-weight: 500;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseP2 .list li a .zi {
  margin-top: 0.1rem;
}
.caseP2 .list li a .zi em {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
  padding-right: 1rem;
}
.caseP2 .list li a .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.24rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #666;
}
.caseP2 .list li a .hala {
  margin-top: 0.6rem;
}
.caseP2 .list li a .hala dl {
  display: flex;
  margin: 0;
}
.caseP2 .list li a .hala dd {
  font-size: var(--fs20);
  line-height: 0.3rem;
  margin-right: 0.35rem;
  padding-left: 0.32rem;
  background: url(../img/gou.png) left 0.08rem no-repeat;
  background-size: 0.21rem;
}
.caseP2 .list li a .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.4rem;
  font-size: var(--fs18);
  color: #333;
  width: 1.52rem;
  height: 0.52rem;
  border: #666 solid 1px;
  border-radius: 0.45rem;
}
.caseP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.caseP2 .list li a:hover .name {
  color: #084FFF;
}
.caseP2 .list li a:hover .more {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
  border: none;
}
@media (max-width: 1004px) {
  .caseP1 {
    padding: 0.85rem var(--offset) 1rem;
  }
  .caseP1 .links {
    margin-bottom: 0.6rem;
  }
  .caseP1 .links ul {
    display: block;
  }
  .caseP1 .links ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .caseP1 .links li {
    float: left;
    margin: 0 0.2rem 0.2rem 0;
  }
  .caseP1 .links li a {
    font-size: var(--fs14);
    min-width: 1.86rem;
    padding: 0 0.3rem;
    height: 0.7rem;
  }
  .casePic .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .casePic .swiper-slide {
    position: relative;
    overflow: hidden;
  }
  .casePic .swiper-slide .imgDiv {
    width: 100%;
    height: 4.2rem;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  .casePic .swiper-slide .botbot {
    margin: 0.5rem auto 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .casePic .swiper-slide .botbot .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .casePic .swiper-slide .botbot .msg {
    min-height: 0.96rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .casePic .se {
    top: 25%;
    width: 0.9rem;
    height: 0.9rem;
  }
  .casePic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .casePic .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .caseP2 {
    padding: 0.8rem 0 1.1rem;
  }
  .caseP2 .list {
    margin-bottom: 0.8rem;
  }
  .caseP2 .list li a {
    display: block;
    padding: 0.6rem 0;
  }
  .caseP2 .list li a .imgDiv {
    width: 100%;
    height: 4.2rem;
  }
  .caseP2 .list li a .conDiv {
    width: auto;
    padding-top: 0.5rem;
  }
  .caseP2 .list li a .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .caseP2 .list li a .zi {
    margin-top: 0.1rem;
  }
  .caseP2 .list li a .zi em {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-right: 0.5rem;
  }
  .caseP2 .list li a .content {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .caseP2 .list li a .hala {
    margin-top: 0.45rem;
  }
  .caseP2 .list li a .hala dl {
    display: block;
  }
  .caseP2 .list li a .hala dl::after {
    content: '';
    display: block;
    clear: both;
  }
  .caseP2 .list li a .hala dd {
    float: left;
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-right: 0.35rem;
    padding-left: 0.32rem;
    background: url(../img/gou.png) left 0.08rem no-repeat;
    background-size: 0.21rem;
  }
  .caseP2 .list li a .more {
    font-size: var(--fs14);
    width: 2.32rem;
    height: 0.82rem;
  }
}
.solutionP1 {
  padding-top: 0.7rem;
  height: 5.96rem;
  background: url(../img/solutionP1.jpg) center no-repeat;
  background-size: cover;
}
.solutionP1 .pageTitle {
  text-align: left;
  margin-bottom: 0.72rem;
}
.spotPic {
  position: relative;
}
.spotPic .list {
  overflow: hidden;
}
.spotPic li .ico {
  margin-bottom: 0.18rem;
}
.spotPic li .ico img {
  width: 0.66rem;
}
.spotPic li .name {
  font-size: var(--fs30);
  color: #000;
  line-height: 0.36rem;
}
.spotPic li .msg {
  margin-top: 0.2rem;
  color: #6F6F6F;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.spotPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 0.3rem;
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
.spotPic .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.spotPic .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.spotPic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_left.png) no-repeat;
  background-size: 0.16rem;
}
.spotPic .next {
  right: 50%;
  margin-right: -8.8rem;
}
.spotPic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_right.png) no-repeat;
  background-size: 0.16rem;
}
.spotPic .swiper-pagination {
  display: none;
  margin-top: 0.6rem;
  position: relative;
  bottom: 0;
}
.spotPic .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: none;
  border: #084FFF solid 1px;
}
.spotPic .swiper-pagination-bullet-active {
  background: #084FFF;
}
.solutionP2 {
  padding: 1.2rem 0;
}
.solutionP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.solutionP2 .imgDiv {
  width: 7.4rem;
  border-radius: 0.3rem;
}
.solutionP2 .imgDiv img {
  width: 100%;
}
.solutionP2 .conDiv {
  width: calc(100% - 8.2rem);
}
.solutionP2 .conDiv .pageTitle {
  text-align: left;
}
.solutionP2 .conDiv .msg {
  margin-top: 0.5rem;
  text-align: justify;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.solutionP2 .conDiv .btnDiv {
  margin-top: 0.6rem;
  display: flex;
}
.solutionP2 .conDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 0.2rem;
  min-width: 1.52rem;
  height: 0.52rem;
  border-radius: 0.45rem;
  border: #084FFF solid 1px;
  font-size: var(--fs18);
  color: #084FFF;
}
.solutionP2 .conDiv .btnDiv a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.solutionP2 .conDiv .hideBox {
  display: none;
}
.halaModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 110;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.halaModal-box .hala-box {
  width: 14rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.65rem 0 1rem;
  position: relative;
  border-radius: 0.5rem;
}
.halaModal-box .hala-box .close {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  right: 0.65rem;
  top: 0.5rem;
  z-index: 2;
}
.halaModal-box .hala-box .close img {
  width: 22px;
}
.halaModal-box .hala-box .name {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #141414;
  border-bottom: #666 solid 1px;
  padding: 0 1.5rem 0.2rem 0.7rem;
}
.halaModal-box .hala-box .content-box {
  margin-top: 0.5rem;
  padding: 0 0.65rem;
  height: 5.6rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  overflow: auto;
}
.halaModal-box .hala-box .content-box::-webkit-scrollbar {
  width: 3px;
}
.halaModal-box .hala-box .content-box::-webkit-scrollbar-track {
  background-color: #eee;
}
.halaModal-box .hala-box .content-box::-webkit-scrollbar-thumb {
  background-color: #084FFF;
}
.halaModal-box .hala-box .content-box b {
  display: block;
  font-size: var(--fs30);
  font-weight: 400;
  line-height: 0.42rem;
}
.halaModal-box .hala-box .content-box p {
  font-size: var(--fs16);
}
.halaModal-box.on {
  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 */
}
.solutionP3 {
  padding: 1.1rem 0 1.5rem;
  background: url(../img/solutionP3.jpg) center top no-repeat;
  background-size: cover;
  position: relative;
}
.solutionP3::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}
.solutionP3 .pageTitle {
  margin-bottom: 0.62rem;
}
.advantagePic {
  position: relative;
  z-index: 1;
}
.advantagePic .list {
  overflow: hidden;
}
.advantagePic .list li .box {
  text-align: center;
  border-radius: 0.3rem;
  background: #fff;
  height: 4.72rem;
  padding: 0.74rem 0.3rem 0.3rem;
}
.advantagePic .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.12rem;
  margin-bottom: 0.5rem;
}
.advantagePic .list li .ico img {
  max-width: 1.12rem;
  max-height: 1.12rem;
}
.advantagePic .list li .name {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #084FFF;
}
.advantagePic .list li .msg {
  margin-top: 0.3rem;
  text-align: left;
  font-size: var(--fs18);
  line-height: 0.3rem;
  height: 1.2rem;
  overflow: auto;
  padding: 0 0.2rem;
}
.advantagePic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.37rem;
  width: 0.74rem;
  height: 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  z-index: 2;
}
.advantagePic .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.advantagePic .prev {
  left: 50%;
  margin-left: -8.8rem;
}
.advantagePic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_left.png) no-repeat;
  background-size: 0.16rem;
}
.advantagePic .next {
  right: 50%;
  margin-right: -8.8rem;
}
.advantagePic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.08rem;
  width: 0.16rem;
  height: 0.27rem;
  margin-top: -0.14rem;
  background: url(../img/nimg16_right.png) no-repeat;
  background-size: 0.16rem;
}
.advantagePic .swiper-pagination {
  display: none;
  margin-top: 0.6rem;
  position: relative;
  bottom: 0;
}
.advantagePic .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: none;
  border: #084FFF solid 1px;
}
.advantagePic .swiper-pagination-bullet-active {
  background: #084FFF;
}
.solutionP4 {
  padding: 1.2rem 0 0.9rem;
}
.solutionP4 .toptop {
  position: relative;
  margin-bottom: 0.8rem;
}
.solutionP4 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0.1rem;
  z-index: 1;
}
.solutionP4 .arrowDiv a {
  display: block;
  float: left;
  width: 53px;
  height: 53px;
}
.solutionP4 .arrowDiv .prev {
  margin-right: 12px;
  background: url(../img/nimg53_left.png) no-repeat;
}
.solutionP4 .arrowDiv .prev:hover {
  background: url(../img/nimg53_lefton.png) no-repeat;
}
.solutionP4 .arrowDiv .next {
  background: url(../img/nimg53_right.png) no-repeat;
}
.solutionP4 .arrowDiv .next:hover {
  background: url(../img/nimg53_righton.png) no-repeat;
}
.otherCase .list {
  overflow: hidden;
}
.otherCase .list li .imgDiv {
  height: 2.9rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.otherCase .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.otherCase .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.15rem;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.otherCase .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.otherCase .list li .more {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #ccc;
}
.otherCase .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.otherCase .list li:hover .name {
  color: #084FFF;
}
@media (max-width: 1004px) {
  .solutionP1 {
    padding: 0.9rem 0;
    height: auto;
  }
  .solutionP1 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .spotPic li .ico {
    margin-bottom: 0.2rem;
  }
  .spotPic li .ico img {
    width: 0.76rem;
  }
  .spotPic li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .spotPic li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .spotPic .se {
    display: none;
  }
  .spotPic .swiper-pagination {
    display: block;
  }
  .solutionP2 {
    padding: 0.9rem 0;
  }
  .solutionP2 .mxfDiv {
    display: block;
  }
  .solutionP2 .imgDiv {
    width: 100%;
  }
  .solutionP2 .conDiv {
    margin-top: 0.7rem;
    width: auto;
  }
  .solutionP2 .conDiv .msg {
    margin-top: 0.4rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .solutionP2 .conDiv .btnDiv a {
    padding: 0 0.4rem;
    min-width: 1.52rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .halaModal-box .hala-box {
    width: 94%;
    padding: 0.5rem 0.3rem 0.7rem;
  }
  .halaModal-box .hala-box .close {
    right: 0.2rem;
    top: 0.2rem;
  }
  .halaModal-box .hala-box .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
    padding: 0 1rem 0.2rem 0;
  }
  .halaModal-box .hala-box .content-box {
    padding: 0 0.2rem;
    height: 6rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .halaModal-box .hala-box .content-box b {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .halaModal-box .hala-box .content-box p {
    font-size: var(--fs13);
  }
  .solutionP3 {
    padding: 0.9rem 0 1rem;
  }
  .advantagePic .list li .box {
    height: 4.72rem;
    padding: 0.6rem 0.3rem 0.3rem;
  }
  .advantagePic .list li .ico {
    margin-bottom: 0.3rem;
    height: 0.82rem;
  }
  .advantagePic .list li .ico img {
    max-width: 0.82rem;
    max-height: 0.82rem;
  }
  .advantagePic .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .advantagePic .list li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .advantagePic .se {
    display: none;
  }
  .advantagePic .swiper-pagination {
    display: block;
  }
  .solutionP4 {
    padding: 1rem 0 0.9rem;
  }
  .solutionP4 .toptop {
    margin-bottom: 0.6rem;
  }
  .solutionP4 .pageTitle {
    text-align: left;
    line-height: 0.86rem;
  }
  .solutionP4 .arrowDiv {
    top: 0;
  }
  .solutionP4 .arrowDiv a {
    width: 0.86rem;
    height: 0.86rem;
  }
  .solutionP4 .arrowDiv .prev {
    margin-right: 0.2rem;
    background-size: 0.86rem;
  }
  .solutionP4 .arrowDiv .prev:hover {
    background-size: 0.86rem;
  }
  .solutionP4 .arrowDiv .next {
    background-size: 0.86rem;
  }
  .solutionP4 .arrowDiv .next:hover {
    background-size: 0.86rem;
  }
  .otherCase .list li .imgDiv {
    height: 4.2rem;
    border-radius: 0.24rem;
  }
  .otherCase .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .otherCase .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .otherCase .list li .more {
    margin-top: 0.4rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
}
.videoBox {
  padding: 1.2rem 0;
  background: #f3f6fa;
}
.videoBox .list {
  padding-bottom: 1.3rem;
}
.videoBox .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.videoBox .list li {
  cursor: pointer;
  position: relative;
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.54rem;
  border-radius: 15px;
  overflow: hidden;
}
.videoBox .list li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.videoBox .list li:nth-child(3n) {
  margin-right: 0;
}
.videoBox .list li:nth-child(-n+3) {
  margin-top: 0;
}
.videoBox .list li .imgDiv {
  position: relative;
  height: 3.4rem;
}
.videoBox .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 38px;
  height: 38px;
  margin-left: -19px;
  margin-top: -19px;
  background: url(../img/play2.png) no-repeat;
}
.videoBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.videoBox .list li .name {
  position: absolute;
  font-size: var(--fs22);
  line-height: 0.3rem;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 0.3rem;
  left: 0;
  bottom: 0.3rem;
  z-index: 1;
}
.videoBox .list li .videoDiv {
  display: none;
}
.videoBox .list li:hover::after {
  opacity: 0;
  visibility: hidden;
}
.videoBox .list li:hover .imgDiv img {
  transform: scale(1.1);
}
@media (max-width: 1004px) {
  .videoBox {
    padding: 1rem 0;
  }
  .videoBox .list {
    padding-bottom: 0.8rem;
  }
  .videoBox .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.45rem;
    border-radius: 0.24rem;
  }
  .videoBox .list li:nth-child(2),
  .videoBox .list li:nth-child(3) {
    margin-top: 0.45rem;
  }
  .videoBox .list li .imgDiv {
    height: 4.2rem;
  }
  .videoBox .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    bottom: 0.3rem;
  }
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  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 */
}
.shipinLayer {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 70px 64px;
  border-radius: 0.5rem;
  position: relative;
}
.shipinLayer .close {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  display: block;
  right: 30px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 1;
}
.shipinLayer .close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  background: url(../img/close.svg) center no-repeat;
  background-size: 16px;
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.6rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
.ewmLayer {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  background: #fff;
  width: 2.1rem;
  padding: 0.1rem;
}
.ewmLayer .limg {
  width: 100%;
}
.ewmLayer .limg img {
  width: 100%;
}
.ewmLayer p {
  text-align: center;
  margin-top: 7px;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #333;
}
@media (max-width: 1004px) {
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
    border-radius: 0.3rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
  .ewmLayer {
    right: 50%;
    margin-right: -1.2rem;
    top: auto;
    bottom: 0;
    width: 2.4rem;
    padding: 0.2rem;
  }
  .ewmLayer p {
    margin-top: 0.15rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.self {
  padding: 0.9rem 0 1.7rem;
}
.self .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #FFF;
  box-shadow: 0 0 6px 1px rgba(153, 153, 153, 0.3);
  padding: 0.7rem 0.75rem;
}
.self .imgDiv {
  width: 4rem;
}
.self .imgDiv img {
  width: 100%;
}
.self .conDiv {
  width: calc(100% - 4.8rem);
}
.self .conDiv .name {
  font-size: var(--fs30);
  color: #000;
  font-weight: 500;
  line-height: 0.42rem;
}
.self .conDiv .zi {
  font-size: var(--fs16);
  line-height: 0.22rem;
  color: #999;
}
.self .conDiv .msg {
  margin: 0.35rem 0 0.4rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #333;
}
.self .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.26rem;
  text-align: justify;
}
.self .conDiv .content em {
  display: block;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #333;
}
@media (max-width: 1004px) {
  .self {
    padding: 0.9rem 0 1rem;
  }
  .self .mxfDiv {
    display: block;
    padding: 0.7rem 0.35rem;
  }
  .self .imgDiv {
    width: 4rem;
    margin: 0 auto;
  }
  .self .conDiv {
    width: 100%;
    margin-top: 0.7rem;
  }
  .self .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .self .conDiv .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .self .conDiv .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .self .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .self .conDiv .content em {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
}
.progress {
  padding: 2rem 0 2.4rem;
  position: relative;
  background: url(../img/progressBg.jpg) center no-repeat;
  background-size: cover;
}
.progress .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
}
.progress .leftDiv {
  width: 4.82rem;
  background: #1F3989;
  border-radius: 0.18rem;
  padding: 1.7rem 0.42rem 0.7rem;
}
.progress .leftDiv .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 50%;
}
.progress .leftDiv .ico img {
  width: 0.52rem;
}
.progress .leftDiv .zi {
  margin: 0.95rem 0 0.35rem;
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #fff;
}
.progress .leftDiv .tel {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #fff;
}
.progress .rightDiv {
  width: calc(100% - 5.72rem);
  padding: 0.75rem 0.5rem 0;
  border-radius: 0.18rem;
  background: rgba(255, 255, 255, 0.5);
}
.progress .rightDiv .title {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.progress .rightDiv .midmid {
  position: relative;
  padding-right: 1.66rem;
  margin-bottom: 0.9rem;
}
.progress .rightDiv .form ul {
  display: flex;
}
.progress .rightDiv .form li {
  margin-right: 0.15rem;
}
.progress .rightDiv .form li:nth-child(1) {
  width: 55%;
}
.progress .rightDiv .form li:nth-child(2) {
  width: 45%;
}
.progress .rightDiv .form li .input1 {
  width: 100%;
  padding-left: 0.35rem;
  height: 0.66rem;
  border-radius: 0.45rem;
  font-size: var(--fs20);
  border: #084FFF solid 1px;
}
.progress .rightDiv .btnDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.66rem;
}
.progress .rightDiv .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: 100%;
  height: 0.66rem;
  background: #084FFF;
  color: #fff;
  border-radius: 0.45rem;
  font-size: var(--fs20);
}
.progress .rightDiv .tips {
  border-top: #B7B7B7 solid 1px;
  text-align: center;
  padding-top: 0.48rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #333;
}
.progress .rightDiv .tips em {
  display: block;
  color: #084FFF;
}
@media (max-width: 1004px) {
  .progress {
    padding: 1rem 0 1.2rem;
  }
  .progress .mxfDiv {
    display: block;
  }
  .progress .leftDiv {
    width: 100%;
    border-radius: 0.24rem;
    padding: 0.9rem 0.4rem 0.6rem;
  }
  .progress .leftDiv .ico {
    width: 1.2rem;
    height: 1.2rem;
  }
  .progress .leftDiv .ico img {
    width: 0.76rem;
  }
  .progress .leftDiv .zi {
    margin: 0.7rem 0 0.35rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .progress .leftDiv .tel {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .progress .rightDiv {
    margin-top: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.35rem;
    border-radius: 0.24rem;
  }
  .progress .rightDiv .title {
    font-size: var(--fs24);
    margin-bottom: 0.5rem;
  }
  .progress .rightDiv .midmid {
    padding-right: 0;
    margin-bottom: 0.7rem;
  }
  .progress .rightDiv .form ul {
    display: block;
  }
  .progress .rightDiv .form li {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .progress .rightDiv .form li:nth-child(1) {
    width: 100%;
  }
  .progress .rightDiv .form li:nth-child(2) {
    width: 100%;
  }
  .progress .rightDiv .form li .input1 {
    padding-left: 0.2rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .progress .rightDiv .btnDiv {
    position: relative;
    width: 2.3rem;
  }
  .progress .rightDiv .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .progress .rightDiv .tips {
    padding-top: 0.6rem;
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
}
.contactP1 {
  padding: 1.1rem 0 1.4rem;
  background: url(../img/contactP1.jpg) center no-repeat;
  background-size: cover;
  margin-bottom: 0.9rem;
}
.contactP1 .list {
  margin-top: 0.9rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.contactP1 .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  min-height: 4.5rem;
  padding: 0.65rem 0.42rem 0.2rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
}
.contactP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.contactP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #1F3989;
}
.contactP1 .list li .ico img {
  max-width: 0.52rem;
  filter: brightness(0) invert(1);
}
.contactP1 .list li .name {
  margin-top: 0.95rem;
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.42rem;
}
.contactP1 .list li .zi {
  margin-top: 0.35rem;
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.34rem;
}
.contactP1 .list li .zi em {
  display: inline-block;
  min-width: 2.3rem;
}
.contactP1 .list li .address {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.42rem;
}
.contactP1 .list li:nth-child(1) {
  background: #1F3989;
}
.contactP1 .list li:nth-child(1) .ico {
  background: #fff;
}
.contactP1 .list li:nth-child(1) .ico img {
  filter: brightness(1) invert(0);
}
.contactP1 .list li:nth-child(2) {
  background: url(../img/nimg482Bg.jpg) center no-repeat;
  background-size: cover;
}
.contactP1 .list li:nth-child(3) {
  background: url(../img/nimg482Bg2.jpg) center no-repeat;
  background-size: cover;
}
.contactP1 .list li:nth-child(3) .name {
  color: #000;
}
.contactP2 {
  padding-bottom: 1rem;
}
.contactP2 .list {
  margin-top: 0.75rem;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP2 .list a {
  display: block;
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-top: 0.76rem;
  min-height: 3.3rem;
  border-radius: 18px;
  padding: 0.58rem 0.5rem 0.5rem;
  background: rgba(224, 230, 239, 0.5);
}
.contactP2 .list a:nth-child(3n) {
  margin-right: 0;
}
.contactP2 .list a:nth-child(-n+3) {
  margin-top: 0;
}
.contactP2 .list a .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  font-size: var(--fs36);
  color: #000;
  position: relative;
  padding-left: 1.26rem;
  min-height: 0.8rem;
  margin-bottom: 0.4rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contactP2 .list a .name .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #1F3989;
  border-radius: 50%;
  overflow: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contactP2 .list a .name .ico img {
  max-width: 100%;
}
.contactP2 .list a .msg {
  border-top: #000 solid 1px;
  padding-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  word-break: break-all;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contactP2 .list a:hover {
  background: #1F3989;
}
.contactP2 .list a:hover .name {
  color: #fff;
}
.contactP2 .list a:hover .name .ico {
  background: #152244;
}
.contactP2 .list a:hover .msg {
  border-top: #fff solid 1px;
  color: #fff;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.9rem 0 1rem;
    margin-bottom: 0.9rem;
  }
  .contactP1 .list {
    margin-top: 0.65rem;
  }
  .contactP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.35rem;
    min-height: 3rem;
    padding: 0.6rem 0.4rem 0.5rem;
  }
  .contactP1 .list li:nth-child(1) {
    margin-top: 0;
  }
  .contactP1 .list li .ico {
    width: 1.2rem;
    height: 1.2rem;
  }
  .contactP1 .list li .ico img {
    max-width: 0.72rem;
  }
  .contactP1 .list li .name {
    margin-top: 0.5rem;
    font-size: var(--fs20);
    line-height: 0.6rem;
  }
  .contactP1 .list li .zi {
    margin-top: 0.25rem;
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .contactP1 .list li .zi em {
    min-width: 3.2rem;
  }
  .contactP1 .list li .address {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-top: 0.3rem;
  }
  .contactP2 {
    padding-bottom: 0.8rem;
  }
  .contactP2 .list {
    margin-top: 0.6rem;
  }
  .contactP2 .list a {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
    border-radius: 0.24rem;
    padding: 0.6rem 0.4rem 0.5rem;
  }
  .contactP2 .list a:nth-child(1) {
    margin-top: 0;
  }
  .contactP2 .list a:nth-child(2),
  .contactP2 .list a:nth-child(3) {
    margin-top: 0.4rem;
  }
  .contactP2 .list a .name {
    font-size: var(--fs18);
    padding-left: 1.56rem;
    min-height: 1.2rem;
  }
  .contactP2 .list a .name .ico {
    margin-top: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .contactP2 .list a .name .ico img {
    max-width: 0.5rem;
  }
  .contactP2 .list a .msg {
    padding-top: 0.3rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
.aboutP1 {
  padding: 0.75rem 0 1.4rem;
}
.aboutP1 .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;
}
.aboutP1 .imgDiv {
  width: 7.4rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP1 .content {
  width: calc(100% - 8.05rem);
  text-align: justify;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.aboutP2 {
  padding: 1.1rem 0 2rem;
  background: url(../img/aboutP2.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP2 .pageTitle {
  color: #fff;
  margin-bottom: 0.85rem;
}
.culturePic .list {
  overflow: hidden;
}
.culturePic .list li {
  padding: 0.75rem 0.35rem 0;
  height: 4rem;
  background: #fff;
  border-radius: 0.2rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.culturePic .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 auto;
  background: #E0E6EF;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.culturePic .list li .ico img {
  width: 0.64rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.culturePic .list li .name {
  margin: 0.35rem 0 0.1rem;
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #000;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.culturePic .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.culturePic .list li:hover {
  background: #084FFF;
}
.culturePic .list li:hover .ico {
  background: #fff;
}
.culturePic .list li:hover .name,
.culturePic .list li:hover .msg {
  color: #fff;
}
.culturePic .swiper-pagination {
  margin-top: 0.6rem;
  position: relative;
  bottom: 0;
}
.culturePic .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: 12px;
  background: #fff;
  border: #084FFF solid 1px;
}
.culturePic .swiper-pagination-bullet-active {
  background: #084FFF;
}
.aboutP3 {
  padding: 1.2rem 0 1.6rem;
}
.aboutP3 .pageTitle {
  margin-bottom: 0.7rem;
}
.aboutP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.aboutP3 .list li {
  width: 66.66%;
  margin-top: 0.36rem;
}
.aboutP3 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.aboutP3 .list li:nth-child(2),
.aboutP3 .list li:nth-child(3) {
  width: 33.33%;
}
.aboutP3 .list li .box {
  margin-right: 0.36rem;
}
.aboutP3 .list li:nth-child(2n) .box {
  margin-right: 0;
}
.aboutP3 .list li a {
  display: block;
  position: relative;
}
.aboutP3 .list li a .imgDiv {
  position: relative;
  height: 4.6rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.aboutP3 .list li a .imgDiv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.aboutP3 .list li a .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP3 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP3 .list li a .name {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0.32rem;
  width: 100%;
  padding: 0 0.3rem;
  font-size: var(--fs36);
  text-align: center;
  color: #fff;
  line-height: 0.42rem;
}
.aboutP3 .list li a:hover .imgDiv::before {
  opacity: 1;
}
.aboutP3 .list li a:hover .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.aboutP3 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.aboutP4 {
  padding: 3.7rem 0 1rem;
  overflow: hidden;
  background: url(../img/aboutP4.jpg) center top no-repeat;
  background-size: cover;
}
.aboutP4 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.95rem;
}
.aboutP4 .pageTitle {
  text-align: left;
}
.aboutP4 .links {
  display: flex;
}
.aboutP4 .links a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  margin-left: 0.16rem;
  min-width: 1.65rem;
  height: 0.6rem;
  color: #fff;
  border-radius: 0.45rem;
  background: #084FFF;
  font-size: var(--fs18);
}
.jobPic .list {
  overflow: hidden;
}
.jobPic .list li {
  margin-bottom: 42px;
  position: relative;
  cursor: pointer;
  height: 3.24rem;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0.5rem 0;
}
.jobPic .list li:nth-child(2) {
  margin-bottom: 0;
}
.jobPic .list li .more {
  position: absolute;
  right: 0.22rem;
  top: 0.22rem;
  width: 0.48rem;
  height: 0.48rem;
  background: none;
  border-radius: 50%;
}
.jobPic .list li .more::after {
  content: '';
  width: 9px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -8px;
  background: url(../img/ico1on.png) no-repeat;
}
.jobPic .list li .ico {
  margin-bottom: 0.12rem;
}
.jobPic .list li .ico img {
  width: 0.32rem;
}
.jobPic .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  letter-spacing: 1.5px;
}
.jobPic .list li .brief {
  margin-top: 0.15rem;
}
.jobPic .list li .brief span {
  position: relative;
  padding: 0 8px;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.36rem;
}
.jobPic .list li .brief span:first-child {
  padding: 0 8px 0 0;
}
.jobPic .list li .brief span:first-child::after {
  display: none;
}
.jobPic .list li .brief span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background: #999;
}
.jobPic .list li .desc {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.3rem;
  max-height: 0.72rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.36rem;
}
.jobPic .list li .detail-box {
  display: none;
}
.jobPic .list li:hover .more {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.jobPic .list li:hover .more::after {
  background: url(../img/ico1.png) no-repeat;
}
.jobPic .swiper-pagination {
  margin-top: 0.35rem;
  position: relative;
  bottom: 0;
}
.jobPic .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
}
.jobPic .swiper-pagination-bullet-active {
  background: #194EA1;
}
.jobModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 110;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.jobModal-box .job-box {
  width: 12.78rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.6rem 0.9rem 1rem;
  position: relative;
  border-radius: 0.3rem;
}
.jobModal-box .job-box .close {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: absolute;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  right: 18px;
  top: 18px;
  z-index: 2;
}
.jobModal-box .job-box .close img {
  width: 22px;
}
.jobModal-box .job-box .header {
  padding-bottom: 0.4rem;
  border-bottom: rgba(153, 153, 153, 0.2) solid 1px;
}
.jobModal-box .job-box .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  letter-spacing: 1.5px;
}
.jobModal-box .job-box .brief {
  margin-top: 5px;
}
.jobModal-box .job-box .brief span {
  position: relative;
  padding: 0 8px;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.36rem;
}
.jobModal-box .job-box .brief span:first-child {
  padding: 0 8px 0 0;
}
.jobModal-box .job-box .brief span:first-child::after {
  display: none;
}
.jobModal-box .job-box .brief span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background: #999;
}
.jobModal-box .job-box .content-box {
  margin-top: 0.5rem;
  height: 4.2rem;
  padding-right: 0.5rem;
  overflow: auto;
}
.jobModal-box .job-box .content-box::-webkit-scrollbar {
  width: 3px;
}
.jobModal-box .job-box .content-box::-webkit-scrollbar-track {
  background-color: #eee;
}
.jobModal-box .job-box .content-box::-webkit-scrollbar-thumb {
  background-color: #084FFF;
}
.jobModal-box .job-box .content-box .box {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  margin-bottom: 0.3rem;
}
.jobModal-box .job-box .content-box .box:last-child {
  margin-bottom: 0;
}
.jobModal-box .job-box .content-box .box h2 {
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-weight: 700;
}
.jobModal-box .job-box .btnGroup {
  display: flex;
  margin-top: 0.4rem;
}
.jobModal-box .job-box .btnGroup a {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-width: 1.76rem;
  height: 0.58rem;
  line-height: 0.58rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
  padding-left: 0.42rem;
  padding-right: 5px;
}
.jobModal-box .job-box .btnGroup a span {
  background-image: linear-gradient(270deg, #B3E926 0%, #B3E926 9.16%, #3EE480 100%);
  background-blend-mode: normal, normal;
  border-radius: 50%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0.15rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  width: 0.48rem;
  height: 0.48rem;
  position: relative;
  overflow: hidden;
}
.jobModal-box .job-box .btnGroup a i::before,
.jobModal-box .job-box .btnGroup a i::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  background: url(../img/ico1.png) center no-repeat;
  background-size: 9px;
}
.jobModal-box .job-box .btnGroup a i::before {
  left: auto;
  right: 150%;
}
.jobModal-box .job-box .btnGroup a:hover span {
  background: rgba(255, 255, 255, 0.1);
  transform: translate(3px);
}
.jobModal-box .job-box .btnGroup a:hover i::before,
.jobModal-box .job-box .btnGroup a:hover i::after {
  transform: translate(150%);
}
.jobModal-box.on {
  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 */
}
.aboutP5 {
  overflow: hidden;
  padding-top: 1.1rem;
  height: 10.45rem;
  background: #f7f9fa url(../img/aboutP5.png) center bottom no-repeat;
  background-size: 100%;
}
.aboutP5 .pageTitle {
  color: #000;
  margin-bottom: 0.54rem;
}
.aboutP5 .links {
  display: flex;
  justify-content: center;
}
.aboutP5 .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.aboutP5 .links li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 0.1rem;
  cursor: pointer;
  min-width: 1.36rem;
  padding: 0 0.3rem;
  line-height: 0.48rem;
  font-size: var(--fs18);
  color: #7C8083;
  border: 1px solid #7C8083;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP5 .links .on {
  border: transparent solid 1px;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.honorPic {
  display: none;
  padding-top: 1.2rem;
  position: relative;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .swiper-slide {
  width: auto;
}
.honorPic .swiper-slide .box {
  width: 2.8rem;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.honorPic .swiper-slide .mxfDiv {
  height: 3.7rem;
  position: relative;
}
.honorPic .swiper-slide .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #868686;
  padding: 0.1rem;
}
.honorPic .swiper-slide .imgDiv img {
  max-width: 2.6rem;
  max-height: 3.5rem;
}
.honorPic .swiper-slide .name {
  width: 100%;
  padding: 0 0.15rem;
  margin-top: 0.32rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  height: 0.6rem;
  overflow: hidden;
  text-align: center;
  color: #333;
}
.honorPic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 0.4rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.honorPic .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.honorPic .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.honorPic .swiper-pagination {
  position: relative;
  width: 4.42rem;
  height: 4px;
  background-color: #d7d8da;
}
.honorPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.honorPic .layer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: -0.1rem;
  font-size: var(--fs18);
}
.honorPic .num1,
.honorPic .num2 {
  font-family: 'Poppins-R';
  color: #999;
}
.honorPic .num1 {
  font-size: var(--fs20);
  color: #000;
}
.honorPic .arrowDiv {
  margin-left: 0.2rem;
}
.honorPic .arrowDiv .se {
  position: relative;
  float: left;
  margin-right: 0.24rem;
  display: block;
  overflow: hidden;
  background: #fff;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.honorPic .arrowDiv .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.honorPic .arrowDiv .prev::before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  width: 9px;
  height: 16px;
  margin-top: -8px;
  background: url(../img/nimg9_left.png) no-repeat;
}
.honorPic .arrowDiv .prev:hover::before {
  background: url(../img/nimg9_lefton.png) no-repeat;
}
.honorPic .arrowDiv .next::before {
  content: '';
  z-index: 2;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -5px;
  width: 9px;
  height: 16px;
  margin-top: -8px;
  background: url(../img/nimg9_right.png) no-repeat;
}
.honorPic .arrowDiv .next:hover::before {
  background: url(../img/nimg9_righton.png) no-repeat;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP1 .mxfDiv {
    display: block;
    margin-top: 0.6rem;
  }
  .aboutP1 .imgDiv {
    width: 100%;
  }
  .aboutP1 .content {
    margin-top: 0.6rem;
    width: auto;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .aboutP2 {
    padding: 0.9rem 0 1.2rem;
  }
  .aboutP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .culturePic .list {
    overflow: hidden;
  }
  .culturePic .list li {
    padding: 0.9rem 0.5rem 0;
    height: 5.2rem;
    border-radius: 0.24rem;
  }
  .culturePic .list li .ico {
    width: 1.64rem;
    height: 1.64rem;
  }
  .culturePic .list li .ico img {
    width: 1rem;
  }
  .culturePic .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .culturePic .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .culturePic .swiper-pagination {
    display: block;
  }
  .aboutP3 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP3 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .aboutP3 .list ul {
    display: block;
  }
  .aboutP3 .list li {
    width: 100%;
    margin-top: 0.3rem;
  }
  .aboutP3 .list li:nth-child(1) {
    margin-top: 0;
  }
  .aboutP3 .list li:nth-child(2),
  .aboutP3 .list li:nth-child(3) {
    width: 100%;
    margin-top: 0.3rem;
  }
  .aboutP3 .list li .box {
    margin-right: 0;
  }
  .aboutP3 .list li a .imgDiv {
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .aboutP3 .list li a .name {
    bottom: 0.3rem;
    padding: 0 0.3rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .aboutP4 {
    padding: 1.5rem 0 1rem;
  }
  .aboutP4 .toptop {
    display: block;
    margin-bottom: 0.7rem;
  }
  .aboutP4 .links {
    margin-top: 0.5rem;
  }
  .aboutP4 .links a {
    margin-left: 0;
    margin-right: 0.15rem;
    min-width: 1.8rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .jobPic .list li {
    margin-bottom: 0.3rem;
    height: 3.24rem;
    padding: 0.4rem 0.35rem 0;
  }
  .jobPic .list li .more {
    right: 0.3rem;
    top: 0.3rem;
    width: 0.76rem;
    height: 0.76rem;
  }
  .jobPic .list li .ico {
    display: none;
    margin-bottom: 0.2rem;
  }
  .jobPic .list li .ico img {
    width: 0.5rem;
  }
  .jobPic .list li .name {
    padding-right: 1rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .jobPic .list li .brief span {
    padding: 0 5px;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .jobPic .list li .brief span:first-child {
    padding: 0 5px 0 0;
  }
  .jobPic .list li .brief span::after {
    margin-top: -6px;
    height: 12px;
  }
  .jobPic .list li .desc {
    margin-top: 0.2rem;
    max-height: 0.96rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .jobModal-box .job-box {
    width: 94%;
    padding: 0.5rem 0.3rem 0.7rem;
  }
  .jobModal-box .job-box .close {
    right: 0.2rem;
    top: 0.2rem;
  }
  .jobModal-box .job-box .header {
    padding-bottom: 0.4rem;
    border-bottom: rgba(153, 153, 153, 0.2) solid 1px;
  }
  .jobModal-box .job-box .name {
    padding-right: 1rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .jobModal-box .job-box .brief span {
    padding: 0 5px;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .jobModal-box .job-box .brief span:first-child {
    padding: 0 5px 0 0;
  }
  .jobModal-box .job-box .brief span::after {
    margin-top: -6px;
    height: 12px;
  }
  .jobModal-box .job-box .content-box {
    margin-top: 0.35rem;
    height: 4.8rem;
    padding-right: 0.3rem;
  }
  .jobModal-box .job-box .content-box .box {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.48rem;
  }
  .jobModal-box .job-box .content-box .box h2 {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .jobModal-box .job-box .btnGroup a {
    min-width: 2.4rem;
    height: 0.82rem;
    line-height: 0.82rem;
    font-size: var(--fs15);
  }
  .jobModal-box .job-box .btnGroup a span {
    width: 0.66rem;
    height: 0.66rem;
  }
  .aboutP5 {
    padding: 1rem 0;
    height: auto;
  }
  .aboutP5 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .aboutP5 .links li {
    padding: 0 0.4rem;
    line-height: 0.82rem;
    font-size: var(--fs15);
  }
  .honorPic {
    padding-top: 0.6rem;
  }
  .honorPic .swiper-slide .box {
    width: 100%;
  }
  .honorPic .swiper-slide .mxfDiv {
    min-width: auto;
    height: 2.85rem;
  }
  .honorPic .swiper-slide .imgDiv {
    background: none;
  }
  .honorPic .swiper-slide .imgDiv img {
    border: #d8d8d8 solid 2px;
    max-width: 100%;
    max-height: 2.65rem;
  }
  .honorPic .swiper-slide .name {
    width: auto;
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .honorPic .pjDiv {
    display: none;
  }
}
.productP0 {
  padding: 1.3rem 0 0.5rem;
  background: url(../img/productP0.jpg) center no-repeat;
  background-size: cover;
}
.productP0 .links {
  text-align: center;
  margin-bottom: 1.5rem;
}
.productP0 .links ul {
  font-size: 0;
}
.productP0 .links li {
  display: inline-block;
  margin: 0 0.1rem;
}
.productP0 .links li a {
  display: inline-block;
  padding: 0 0.32rem;
  height: 0.48rem;
  color: #fff;
  font-size: var(--fs18);
  line-height: 0.48rem;
  border-radius: 0.45rem;
  border: #fff solid 1px;
}
.productP0 .links li a:hover {
  color: #084FFF;
}
.productP0 .links li .aNow {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  border: none;
  color: #fff !important;
}
.typePic {
  position: relative;
  padding: 0 0.7rem;
}
.typePic .imgList {
  overflow: hidden;
}
.typePic .imgList li .box a {
  display: block;
  height: 1.68rem;
  border: #fff solid 1px;
  border-radius: 0.1rem;
  overflow: hidden;
  background: url(../img/nimg260Bg.jpg) center no-repeat;
  background-size: cover;
}
.typePic .imgList li .box a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2rem;
  height: 1.68rem;
  margin: 0 auto;
}
.typePic .imgList li .box a .imgDiv img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
}
.typePic .imgList li .box .on {
  border: #084FFF solid 1px;
}
.typePic .se {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  margin-top: -20px;
  z-index: 2;
  outline: none;
}
.typePic .se:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
}
.typePic .prev {
  left: 0;
}
.typePic .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -7px;
  width: 8px;
  height: 13px;
  background: url(../img/nimg8_left.png) no-repeat;
}
.typePic .prev:hover::after {
  background: url(../img/nimg8_lefton.png) no-repeat;
}
.typePic .next {
  right: 0;
}
.typePic .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -7px;
  width: 8px;
  height: 13px;
  background: url(../img/nimg8_right.png) no-repeat;
}
.typePic .next:hover::after {
  background: url(../img/nimg8_righton.png) no-repeat;
}
.productP1 {
  padding: 0.85rem 0;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0.6rem 1.8rem 0.6rem 0.75rem;
  border-radius: 0.3rem;
  overflow: hidden;
  min-height: 6.4rem;
  background: center no-repeat;
  background-size: cover;
}
.productP1 .conDiv {
  width: 7.2rem;
}
.productP1 .conDiv .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
}
.productP1 .conDiv .content {
  margin: 0.2rem 0 0.35rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #fff;
}
.productP1 .conDiv .msg {
  color: #fff;
}
.productP1 .conDiv .msg em {
  font-size: var(--fs20);
  line-height: 0.3rem;
  padding: 0 0.1rem;
}
.productP1 .conDiv .msg em:first-child {
  padding: 0 0.1rem 0 0;
}
.productP1 .conDiv .btnDiv {
  display: flex;
  margin-top: 0.46rem;
}
.productP1 .conDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 0.2rem;
  border: #fff solid 1px;
  border-radius: 0.45rem;
  min-width: 1.52rem;
  height: 0.52rem;
  padding: 0 0.2rem;
  font-size: var(--fs18);
  color: #fff;
}
.productP1 .conDiv .btnDiv a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_1.svg) no-repeat;
  background-size: 0.24rem;
  transition: All 0.5s ease;
}
.productP1 .conDiv .btnDiv a:hover {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  border: transparent solid 1px;
}
.productP1 .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  order: 1;
  width: 4.75rem;
  height: 4.95rem;
}
.productP1 .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.productP2 {
  height: 8.56rem;
}
.productP2 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.productP2 .conDiv {
  padding-left: 50%;
  width: 100%;
}
.productP2 .conDiv .pageTitle {
  color: #fff;
  text-align: left;
}
.productP2 .conDiv .zi {
  margin: 0.1rem 0 0.9rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #fff;
  width: 4.6rem;
}
.productP2 .conDiv .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.productP2 .conDiv .list li {
  color: #fff;
  margin-right: 0.2rem;
  width: calc((100% - 0.4rem) / 3);
  margin-top: 0.5rem;
}
.productP2 .conDiv .list li:nth-child(3n) {
  margin-right: 0;
}
.productP2 .conDiv .list li:nth-child(-n+3) {
  margin-top: 0;
}
.productP2 .conDiv .list li .wen {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 700;
}
.productP2 .conDiv .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.22rem;
}
.productP2 .conDiv .btnDiv {
  display: flex;
  margin-top: 0.46rem;
}
.productP2 .conDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  min-width: 1.52rem;
  height: 0.52rem;
  padding: 0 0.2rem;
  font-size: var(--fs18);
  color: #fff;
}
.productP2 .conDiv .btnDiv a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_1.svg) no-repeat;
  background-size: 0.24rem;
  transition: All 0.5s ease;
}
.productP3 {
  padding: 1.2rem 0;
}
.productP3 .list {
  margin-top: 0.5rem;
}
.productP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.productP3 .list li {
  margin-right: 0.2rem;
  width: calc((100% - 0.8rem) / 5);
  margin-top: 0.75rem;
}
.productP3 .list li:nth-child(5n) {
  margin-right: 0;
}
.productP3 .list li:nth-child(-n+5) {
  margin-top: 0;
}
.productP3 .list li .imgDiv img {
  width: 100%;
}
.productP3 .list li .made {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.productP3 .list li .name {
  background-image: linear-gradient(90deg, #0194EC 0%, #084FFF 100%);
  background-blend-mode: normal, normal;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.4rem;
  min-width: 1.8rem;
  padding: 0 0.2rem;
  font-size: var(--fs30);
  color: #fff;
  height: 0.6rem;
  border-radius: 0.45rem;
  box-shadow: 0 4px 20px 0 rgba(8, 79, 255, 0.25);
}
.productP4 {
  position: relative;
  padding: 1.2rem 0 1.5rem;
  background: url(../img/serviceP1.jpg) center no-repeat;
  background-size: cover;
}
.productP4::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}
.productP4 .pageTitle {
  position: relative;
  z-index: 1;
  color: #333;
}
.productP4 .zi {
  position: relative;
  z-index: 1;
  font-size: var(--fs18);
  line-height: 0.28rem;
  text-align: center;
  color: #333;
  margin: 0.15rem 0 0.8rem;
}
.productP4 .list {
  position: relative;
  z-index: 1;
}
.productP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.productP4 .list li {
  margin-right: 0.45rem;
  width: calc((100% - 0.9rem) / 3);
  margin-top: 0.7rem;
}
.productP4 .list li:nth-child(3n) {
  margin-right: 0;
}
.productP4 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.productP4 .list li .imgDiv {
  overflow: hidden;
  border-radius: 0.15rem;
}
.productP4 .list li .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .productP0 {
    padding: 0.9rem 0 0.5rem;
  }
  .productP0 .links {
    margin-bottom: 0.6rem;
  }
  .productP0 .links ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
    margin: 0;
  }
  .productP0 .links li {
    display: block;
    width: calc((100% - 0.2rem) / 2);
    margin: 0 0.2rem 0.2rem 0;
  }
  .productP0 .links li:nth-child(2n) {
    margin-right: 0;
  }
  .productP0 .links li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding: 0 0.2rem;
    height: 0.84rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .typePic {
    padding: 0 0.88rem;
  }
  .typePic .imgList li .box a {
    height: 1.5rem;
  }
  .typePic .imgList li .box a .imgDiv {
    height: 1.5rem;
  }
  .typePic .se {
    margin-top: -0.32rem;
  }
  .productP1 {
    padding: 0.9rem 0;
  }
  .productP1 .mxfDiv {
    display: block;
    padding: 0.6rem 0.35rem;
    min-height: 4.4rem;
  }
  .productP1 .conDiv {
    width: auto;
  }
  .productP1 .conDiv .name {
    font-size: var(--fs22);
  }
  .productP1 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP1 .conDiv .msg em {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP1 .conDiv .btnDiv {
    margin-top: 0.5rem;
  }
  .productP1 .conDiv .btnDiv a {
    height: 0.82rem;
    padding: 0 0.4rem;
    font-size: var(--fs14);
  }
  .productP1 .conDiv .btnDiv a em {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 0.36rem;
  }
  .productP1 .imgDiv {
    margin-bottom: 0.7rem;
    width: 100%;
    height: 3.6rem;
  }
  .productP2 {
    position: relative;
    height: auto;
    padding: 1rem 0;
  }
  .productP2::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  .productP2 .wrap {
    display: block;
  }
  .productP2 .conDiv {
    position: relative;
    z-index: 1;
    padding-left: 0;
  }
  .productP2 .conDiv .zi {
    margin: 0.1rem 0 0.65rem;
    font-size: var(--fs15);
    line-height: 0.56rem;
    width: auto;
  }
  .productP2 .conDiv .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
    margin: 0;
  }
  .productP2 .conDiv .list li {
    margin-right: 0.2rem;
    width: calc((100% - 0.2rem) / 2);
    margin-top: 0.4rem;
  }
  .productP2 .conDiv .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .productP2 .conDiv .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP2 .conDiv .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .productP2 .conDiv .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .productP2 .conDiv .list li .wen {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .productP2 .conDiv .list li .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .productP2 .conDiv .btnDiv a {
    height: 0.82rem;
    padding: 0 0.4rem;
    font-size: var(--fs14);
  }
  .productP2 .conDiv .btnDiv a em {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 0.36rem;
  }
  .productP3 {
    padding: 1rem 0;
  }
  .productP3 .list {
    margin-top: 0.6rem;
  }
  .productP3 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-top: 0.4rem;
  }
  .productP3 .list li:nth-child(5n) {
    margin-right: 0.2rem;
  }
  .productP3 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP3 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .productP3 .list li:nth-child(3),
  .productP3 .list li:nth-child(4),
  .productP3 .list li:nth-child(5) {
    margin-top: 0.4rem;
  }
  .productP3 .list li .name {
    padding: 0 0.4rem;
    font-size: var(--fs15);
    height: 0.8rem;
  }
  .productP4 {
    padding: 1rem 0 1.2rem;
  }
  .productP4 .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0.15rem 0 0.65rem;
  }
  .productP4 .list li {
    margin-right: 0.2rem;
    width: calc((100% - 0.2rem) / 2);
    margin-top: 0.4rem;
  }
  .productP4 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .productP4 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP4 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .productP4 .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .productP4 .list li .imgDiv {
    border-radius: 0.24rem;
  }
}
.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;
  }
}
