.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #1f4590;
  }
}
@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #1f4590;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6);
  }
}
@keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Firefox */
@-moz-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Safari and Chrome */
@-webkit-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Opera */
@-o-keyframes myfirst {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Firefox */
@-moz-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Safari and Chrome */
@-webkit-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Opera */
@-o-keyframes myfirst2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* 跑马灯动画 - 自适应距离 */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--item-total-width)));
  }
}
/* 反向动画 */
@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(calc(-1 * var(--item-total-width)));
  }
  100% {
    transform: translateX(0);
  }
}
.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::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 138px;
  background: url(../img/bg1.png) repeat-x;
  z-index: 1;
}
.ind-banner::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.02rem;
  background: url(../img/index-plate1-bg.png) center top no-repeat;
  background-size: 100%;
  z-index: 2;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 100vh;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.ind-banner .onebox .baozhe {
  overflow: hidden;
  width: 0;
}
.ind-banner .onebox .cn {
  font-size: var(--fs72);
  line-height: 0.92rem;
  color: #1f4590;
  font-weight: bold;
}
.ind-banner .onebox .cn em {
  display: block;
  color: #d71219;
}
.ind-banner .cn {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .baozhe {
  width: 100%;
}
.ind-banner .swiper-slide-active .cn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
  border: #fff solid 2px;
  background: rgba(125, 124, 121, 0.3);
}
.ind-banner .se:hover {
  background: #1f4590;
}
.ind-banner .prev {
  left: 50%;
  margin-left: -8.9rem;
}
.ind-banner .prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/left2.svg) center no-repeat;
  background-size: 16px;
}
.ind-banner .next {
  right: 50%;
  margin-right: -8.9rem;
}
.ind-banner .next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/right2.svg) center no-repeat;
  background-size: 16px;
}
.ind-banner .mouse {
  position: absolute;
  left: 50%;
  margin-left: -1.5rem;
  bottom: 0.7rem;
  z-index: 3;
  width: 3rem;
}
.ind-banner .mouse p {
  font-size: var(--fs16);
  color: #fff;
  line-height: 0.2rem;
  text-align: center;
  font-weight: 100;
  margin-bottom: 0.15rem;
}
.ind-banner .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 28px;
  height: 48px;
  border-radius: 0.48rem;
  border: 1px solid #fff;
}
.ind-banner .mouse .kuang span {
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 18px;
  width: 2px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
.explode-circle {
  animation: explode 1s forwards;
}
.desplode-circle {
  animation: desplode 0.5s forwards;
}
.su_button_circle {
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner::before {
    height: 0.42rem;
  }
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 1.2rem;
    margin-left: 0;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .ind-banner .se {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .ind-banner .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .ind-banner .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .ind-banner .mouse {
    display: none;
  }
}
.indTitle {
  padding-bottom: 0.4rem;
  position: relative;
  text-align: center;
}
.indTitle::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.17rem;
  bottom: 0;
  width: 0.35rem;
  height: 3px;
  background: #d71219;
}
.indTitle .en {
  background-image: -webkit-linear-gradient(top, #0e3e66, #9db4c7);
  background-image: linear-gradient(to bottom, #0e3e66, #9db4c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  font-size: var(--fs60);
  line-height: 0.64rem;
  font-family: 'Mont-B';
  text-transform: uppercase;
  margin: 0;
}
.indTitle .cn {
  font-size: var(--fs36);
  line-height: 0.4rem;
  margin-top: 0.05rem;
  color: #333;
  font-weight: bold;
  letter-spacing: 3px;
}
.indexP1 {
  padding: 0.65rem 0 0.3rem;
  background: #f7f9fc;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.indexP1 .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  padding: 0.35rem 0 0.56rem;
}
.indexP1 .swiper-container {
  padding: 0 0.2rem;
  position: relative;
}
.indexP1 .swiper-slide .pic {
  position: relative;
  background: #000;
  overflow: hidden;
}
.indexP1 .swiper-slide .pic img {
  width: 100%;
  height: 6.58rem;
  object-fit: cover;
  transition-delay: 0.2s;
  transition-property: all;
  transition-duration: 1.2s;
}
.indexP1 .swiper-slide .info {
  position: absolute;
  left: 0.62rem;
  bottom: 0.7rem;
  z-index: 10;
  padding: 0.92rem 0.5rem 0;
  width: calc(100% - 1.24rem);
  text-align: center;
  transition: all 0.8s ease;
}
.indexP1 .swiper-slide .info::after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0665cb 0%, #1f4590 100%);
  background-blend-mode: normal, normal;
  transition: all 0.8s ease;
}
.indexP1 .swiper-slide .info img {
  position: relative;
  z-index: 1;
  display: block;
  width: 0.6rem;
  margin: 0 auto;
}
.indexP1 .swiper-slide .title {
  position: relative;
  z-index: 1;
  font-family: "Poppins-R";
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #fff;
  margin: 0.5rem auto 0.22rem;
  transition: all 0.6s ease;
}
.indexP1 .swiper-slide .brief {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  position: relative;
  z-index: 1;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
.indexP1 .swiper-slide .imore {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 1.46rem;
  height: 0.48rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs16);
  border: rgba(255, 255, 255, 0.3) solid 1px;
  overflow: hidden;
  transition: all 0.8s ease;
  border-radius: 0.48rem;
}
.indexP1 .swiper-slide .imore em {
  display: block;
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.16rem;
}
.indexP1 .swiper-slide .imore span {
  position: relative;
  z-index: 2;
}
.indexP1 .swiper-slide:hover .info {
  padding-bottom: 0.6rem;
}
.indexP1 .swiper-slide:hover .info::after {
  opacity: 0.9;
}
.indexP1 .swiper-slide:hover .title {
  margin-top: 0.36rem;
  margin-bottom: 0.3rem;
}
.indexP1 .swiper-slide:hover .brief {
  opacity: 1;
  visibility: visible;
  height: 1.2rem;
  margin-bottom: 0.35rem;
}
.indexP1 .swiper-btn {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
  background: #fff;
}
.indexP1 .swiper-btn:hover {
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.indexP1 .prev {
  left: 50%;
  margin-left: -8.7rem;
}
.indexP1 .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.indexP1 .prev:hover::after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.indexP1 .next {
  right: 50%;
  margin-right: -8.7rem;
}
.indexP1 .next::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-right: -6px;
  margin-top: -6px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.indexP1 .next:hover::after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.indexP2 {
  margin-top: 0.9rem;
}
.indexP2 .bigBox {
  padding-top: 0.5rem;
  height: 9.4rem;
  background: url(../img/indexP2.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.indexP2 .indTitle {
  padding-bottom: 0;
}
.indexP2 .indTitle::after {
  display: none;
}
.indexP2 .links {
  position: relative;
  padding-top: 0.35rem;
  text-align: center;
}
.indexP2 .links::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}
.indexP2 .links ul {
  font-size: 0;
}
.indexP2 .links li {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0.48rem;
  padding-bottom: 0.22rem;
  cursor: pointer;
}
.indexP2 .links li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d71219;
  transition: All 0.5s ease;
}
.indexP2 .links li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}
.indexP2 .links li .ico img {
  width: 0.4rem;
  transition: All 0.5s ease;
}
.indexP2 .links li .name {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.2rem;
}
.indexP2 .links .on::after {
  width: 100%;
  left: 0;
}
.indexP2 .links .on .ico {
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
}
.indexP2 .links .on .ico img {
  filter: brightness(0) invert(1);
}
.indexP2 .mxfDiv {
  padding-top: 0.75rem;
}
.indexP2 .btnGroup {
  padding: 0.7rem 0;
}
.indexP2 .btnGroup ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP2 .btnGroup li {
  margin: 0 0.14rem;
}
.indexP2 .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.48rem;
  position: relative;
  overflow: hidden;
  width: 1.6rem;
  height: 0.54rem;
  font-size: var(--fs16);
  color: #fff;
}
.indexP2 .btnGroup li a em {
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/nimg16_3on.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
}
.indexP2 .btnGroup li a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #d71219;
  border-radius: 0.48rem;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.indexP2 .btnGroup li a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
  border-radius: 0.48rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.indexP2 .btnGroup li a:hover {
  color: #d71219;
}
.indexP2 .btnGroup li a:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.indexP2 .btnGroup li a:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.indexP2 .btnGroup li a:hover em {
  background: url(../img/nimg16_4.png) no-repeat;
  background-size: 0.16rem;
}
.indexP2 .btnGroup li:nth-child(2) a::before {
  border: 1px solid #1f4590;
}
.indexP2 .btnGroup li:nth-child(2) a::after {
  background-image: linear-gradient(90deg, #35579b 0%, #1e73d0 100%);
}
.indexP2 .btnGroup li:nth-child(2) a:hover {
  color: #1f4590;
}
.indPro {
  display: none;
  position: relative;
}
.indPro .imgList {
  overflow: hidden;
}
.indPro .swiper-slide {
  position: relative;
  width: 100%;
}
.indPro .swiper-slide .conDiv {
  padding-top: 0.5rem;
  width: 4rem;
  min-height: 5.2rem;
}
.indPro .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.42rem;
  font-size: var(--fs30);
  color: #333;
  font-weight: bold;
}
.indPro .swiper-slide .zi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.36rem;
  font-size: var(--fs24);
}
.indPro .swiper-slide .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.3rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  height: 0.72rem;
}
.indPro .swiper-slide .more {
  margin-top: 0.4rem;
}
.indPro .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.48rem;
  position: relative;
  overflow: hidden;
  width: 1.6rem;
  height: 0.54rem;
  font-size: var(--fs16);
  color: #fff;
}
.indPro .swiper-slide .more a em {
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/nimg16_3on.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
}
.indPro .swiper-slide .more a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #d71219;
  border-radius: 0.48rem;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.indPro .swiper-slide .more a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d71219;
  border-radius: 0.48rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.indPro .swiper-slide .more a:hover {
  color: #d71219;
}
.indPro .swiper-slide .more a:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.indPro .swiper-slide .more a:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.indPro .swiper-slide .more a:hover em {
  background: url(../img/nimg16_4.png) no-repeat;
  background-size: 0.16rem;
}
.indPro .swiper-slide .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -3.75rem;
  top: 0;
  width: 7.5rem;
  height: 5.2rem;
}
.indPro .swiper-slide .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.indPro .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  width: 2.2rem;
  top: 0.65rem;
  z-index: 1;
}
.indPro .temeDiv {
  width: 100%;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: end;
  -webkit-justify-content: end;
  font-size: var(--fs18);
  color: #0c3c65;
  padding: 2.5rem 0 0.25rem;
}
.indPro .temeDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #0c3c65;
}
.indPro .num1,
.indPro .num2 {
  font-family: 'Poppins-R';
  padding: 0 0.1rem;
  text-align: center;
}
.indPro .num1 {
  font-size: var(--fs36);
  color: #d71219;
}
.indPro .num2 {
  padding: 0 0 0 0.1rem;
}
.indPro .arrowDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  float: right;
  width: 1.75rem;
}
.indPro .arrowDiv .se {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  width: 0.5rem;
  height: 0.5rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.indPro .arrowDiv .se:hover {
  background: #d71219;
}
.indPro .arrowDiv .prev::before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.indPro .arrowDiv .prev:hover::before {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.indPro .arrowDiv .next::before {
  content: '';
  z-index: 2;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.indPro .arrowDiv .next:hover::before {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.indexP3 {
  position: relative;
  overflow: hidden;
  padding-top: 1.2rem;
  height: 9.5rem;
}
.indexP3::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../img/bg3.png) repeat;
}
.indexP3 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP3 .indTitle {
  text-align: left;
}
.indexP3 .indTitle::after {
  left: 0;
  margin-left: 0;
  background: rgba(255, 255, 255, 0.3);
}
.indexP3 .indTitle .en {
  background-image: -webkit-linear-gradient(top, #fff, transparent);
  background-image: linear-gradient(to bottom, #fff, transparent);
  opacity: 0.3;
}
.indexP3 .indTitle .cn {
  color: #fff;
}
.indexP3 .mxfDiv {
  position: relative;
  z-index: 1;
}
.indexP3 .name {
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.48rem;
  padding: 0.7rem 0 0.3rem;
}
.indexP3 .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #fff;
  text-align: justify;
  width: 6rem;
}
.indexP3 .more {
  margin-top: 0.35rem;
}
.indexP3 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.48rem;
  position: relative;
  overflow: hidden;
  width: 1.54rem;
  height: 0.5rem;
  font-size: var(--fs16);
  color: #1f4590;
}
.indexP3 .more a em {
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/nimg16_3.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
}
.indexP3 .more a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #fff;
  border-radius: 0.48rem;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.indexP3 .more a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 0.48rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.indexP3 .more a:hover {
  color: #fff;
}
.indexP3 .more a:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.indexP3 .more a:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.indexP3 .more a:hover em {
  background: url(../img/nimg16_3on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP3 .numList {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.6rem;
  width: 15.36rem;
  z-index: 1;
}
.indexP3 .numList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP3 .numList li {
  width: 20%;
  position: relative;
  color: #fff;
  font-size: var(--fs18);
}
.indexP3 .numList li .pj {
  display: flex;
  height: 0.68rem;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num i {
  font-size: var(--fs30);
  line-height: 0.32rem;
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(../img/nimg16_2on.png) no-repeat;
}
.indexP3 .numList li .numUp {
  font-size: 0.8rem;
  line-height: 0.64rem;
  padding-right: 0.12rem;
  font-family: "Din-B";
}
.indexP3 .numList li .wen {
  margin-top: 0.12rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.indexP3 .phoneImg img {
  width: 100%;
}
.indexP4 {
  padding: 0.8rem 0 1.6rem;
}
.indexP4 .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  padding: 0.3rem 0 0.5rem;
}
.indexP4 .box-container {
  position: relative;
  padding: 0 0.5rem;
  margin-bottom: 0.42rem;
}
.indexP4 .box-container .year-swiper {
  padding: 0.16rem;
  margin: -0.2rem;
  overflow: hidden;
}
.indexP4 .box-container .swiper-slide .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  border: #eeeff2 solid 1px;
  height: 0.95rem;
  border-radius: 8px;
  transition: All 0.5s ease;
}
.indexP4 .box-container .swiper-slide .limg img {
  max-width: 1.5rem;
  max-height: 0.8rem;
}
.indexP4 .box-container .swiper-slide-active .limg {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.indexP4 .detail-box {
  position: relative;
}
.indexP4 .detail-box .item {
  display: none;
  position: relative;
  background: #f6f7f9;
}
.indexP4 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.indexP4 .detail-box .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP4 .detail-box .leftImg {
  width: 50%;
  height: 5.2rem;
}
.indexP4 .detail-box .leftImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP4 .detail-box .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  padding: 0 0.7rem;
  height: 5.2rem;
}
.indexP4 .detail-box .conDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
  font-weight: bold;
  line-height: 0.42rem;
  font-size: var(--fs30);
}
.indexP4 .detail-box .conDiv .zi {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.indexP4 .detail-box .conDiv .btnGroup {
  margin-top: 0.35rem;
}
.indexP4 .detail-box .conDiv .btnGroup li {
  float: left;
  margin-right: 0.2rem;
}
.indexP4 .detail-box .conDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  width: 1.54rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: #dfe0e7 solid 2px;
  color: #333;
}
.indexP4 .detail-box .conDiv .btnGroup li a em {
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/nimg16_4.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
}
.indexP4 .detail-box .conDiv .btnGroup li a:hover {
  border: #d71219 solid 2px;
  background: #d71219;
  color: #fff;
}
.indexP4 .detail-box .conDiv .btnGroup li a:hover em {
  background: url(../img/nimg16_3on.png);
  background-size: 0.16rem;
}
.indexP4 .detail-box .conDiv .btnGroup li:last-child a {
  border: none;
  background: #d71219;
  color: #fff;
}
.indexP4 .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
  border: #d71219 solid 2px;
  background: #fff;
}
.indexP4 .se:hover {
  border: transparent solid 2px;
  background-image: linear-gradient(90deg, #e2231b 0%, #e2231b 100%);
  background-blend-mode: normal, normal;
}
.indexP4 .prev {
  left: -0.25rem;
}
.indexP4 .prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/left1.svg) center no-repeat;
  background-size: 16px;
}
.indexP4 .prev:hover::after {
  background: url(../img/left2.svg) center no-repeat;
  background-size: 16px;
}
.indexP4 .next {
  right: -0.25rem;
}
.indexP4 .next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/right1.svg) center no-repeat;
  background-size: 16px;
}
.indexP4 .next:hover::after {
  background: url(../img/right2.svg) center no-repeat;
  background-size: 16px;
}
.indexP5 {
  background: #f2f4f9;
  padding: 0.9rem 0 1.4rem;
  overflow: hidden;
}
.indexP5 .indTitle {
  padding-bottom: 0.2rem;
  text-align: left;
}
.indexP5 .indTitle::after {
  left: 0;
  margin-left: 0;
}
.indexP5 .indTitle .en {
  font-size: var(--fs48);
  line-height: 0.56rem;
  opacity: 1;
  background-image: -webkit-linear-gradient(top, #cfd0d2, #e9e9e9);
  background-image: linear-gradient(to bottom, #cfd0d2, #e9e9e9);
}
.indexP5 .toptop {
  height: 1.6rem;
}
.indexP5 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP5 .leftDiv {
  width: 4.5rem;
}
.indexP5 .midDiv {
  width: 6rem;
}
.indexP5 .rightDiv {
  width: 4.48rem;
}
.indexP5 .rightDiv .baozhe {
  height: 5.64rem;
  background: #fff;
  padding-top: 0.3rem;
}
.indexP5 .rightDiv .zi {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0.72rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
  padding: 0 0.2rem;
}
.indexP5 .moreBtn {
  margin-top: 0.35rem;
}
.indexP5 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  width: 1.54rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: #dfe0e7 solid 2px;
  color: #333;
}
.indexP5 .moreBtn a em {
  margin-left: 0.18rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/nimg16_4.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
}
.indexP5 .moreBtn a:hover {
  border: #d71219 solid 2px;
  background: #d71219;
  color: #fff;
}
.indexP5 .moreBtn a:hover em {
  background: url(../img/nimg16_3on.png);
  background-size: 0.16rem;
}
.indexP5 .tab2 {
  padding-top: 0.7rem;
}
.indexP5 .tab2 li {
  float: left;
  margin-right: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  transition: All 0.5s ease;
}
.indexP5 .tab2 .liNow {
  color: #1f4590;
}
.indexP5 .list {
  height: 5.64rem;
  background: #ffffff;
  padding: 0.4rem 0.35rem 0;
  animation: am_top 0.5s ease-out 0.1s backwards;
}
.indexP5 .list li {
  margin-bottom: 0.55rem;
}
.indexP5 .list li:last-child {
  margin-bottom: 0;
}
.indexP5 .list li a {
  display: block;
  position: relative;
  padding-left: 0.86rem;
  min-height: 0.75rem;
}
.indexP5 .list li a .time {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs14);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Mont-M';
}
.indexP5 .list li a .time em {
  display: block;
  font-family: 'Din-B';
  font-size: var(--fs60);
  line-height: 0.56rem;
  color: #d71219;
}
.indexP5 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #333;
  transition: All 0.5s ease;
}
.indexP5 .list li a:hover .name {
  color: #d71219;
}
.indNews {
  position: relative;
}
.indNews .imgList {
  overflow: hidden;
}
.indNews .imgList li .imgDiv {
  height: 2.82rem;
  overflow: hidden;
}
.indNews .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.indNews .imgList li .conDiv {
  height: 2.82rem;
  background: #d71219;
  padding: 0.32rem 0.4rem 0;
}
.indNews .imgList li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #fff;
}
.indNews .imgList li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #fff;
}
.indNews .imgList li .time {
  margin-top: 0.35rem;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.16rem;
  font-family: 'Mont-M';
}
.indNews .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indNews .swiper-pagination {
  width: auto;
  left: auto;
  right: 0.4rem;
  bottom: 0.55rem;
  z-index: 2;
}
.indNews .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  margin: 0 0 0 10px!important;
  overflow: hidden;
}
.indNews .swiper-pagination-bullet-active {
  background: #fff;
}
.indHonor {
  position: relative;
  padding: 0 0.45rem;
}
.indHonor .imgList {
  overflow: hidden;
}
.indHonor .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 2.7rem;
  overflow: hidden;
}
.indHonor .imgList li .imgDiv img {
  max-width: 3.3rem;
  max-height: 2.7rem;
  transition: All 1s ease;
}
.indHonor .imgList li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 0.6rem;
  margin-top: 0.25rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  text-align: center;
}
.indHonor .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indHonor .swiper-pagination {
  position: relative;
  width: 100%;
  left: 0;
  padding-top: 0.4rem;
  bottom: 0;
  z-index: 2;
}
.indHonor .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #d1d1d1;
  border: none;
  border-radius: 50%;
  margin: 0 5px!important;
  overflow: hidden;
}
.indHonor .swiper-pagination-bullet-active {
  background: #d71219;
}
.indexForm {
  padding: 1.2rem 0 1.1rem;
  background: center no-repeat;
  background-size: cover;
}
.indexForm .mxfDiv {
  position: relative;
  z-index: 1;
  width: 11.14rem;
}
.indexForm .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  margin: 0 0 0.2rem;
  font-weight: bold;
}
.indexForm .msg {
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.48rem;
  margin-bottom: 0.55rem;
}
.indexForm .form {
  position: relative;
  z-index: 1;
}
.indexForm .form::after {
  content: '';
  display: block;
  clear: both;
}
.indexForm .form ul {
  margin-right: -0.3rem;
}
.indexForm .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.2rem;
}
.indexForm .form li:last-child {
  width: 66.66%;
}
.indexForm .form li .box {
  margin-right: 0.3rem;
  border: #e6e6e6 solid 1px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.indexForm .form li .zi {
  position: absolute;
  left: 0.2rem;
  top: 0;
  line-height: 0.58rem;
  color: #333;
  font-size: var(--fs16);
  padding-left: 0.32rem;
}
.indexForm .form li .zi img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.13rem;
  width: 0.26rem;
}
.indexForm .form li .input1 {
  width: 100%;
  height: 0.58rem;
  line-height: 0.58rem;
  padding-left: 1.1rem;
  font-size: var(--fs16);
  border-radius: 8px;
}
.indexForm .select {
  width: 100%;
  position: relative;
}
.indexForm .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.58rem;
  line-height: 0.58rem;
  padding-left: 1.5rem;
  font-size: var(--fs16);
  color: #333;
}
.indexForm .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(../img/selectIco2.png) no-repeat right center;
  background-size: 12px;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.indexForm .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
}
.indexForm .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.indexForm .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.indexForm .select .xlist::-webkit-scrollbar-thumb {
  background-color: #d71219;
}
.indexForm .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #333;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.indexForm .select .xlist a:hover {
  color: #d71219;
}
.indexForm .select .xlist a:last-child {
  border-bottom: none;
}
.indexForm .btnGroup {
  margin-top: 0.3rem;
}
.indexForm .btnGroup::after {
  content: '';
  display: block;
  clear: both;
}
.indexForm .btnGroup li {
  float: left;
  margin-right: 0.3rem;
}
.indexForm .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 2rem;
  height: 0.58rem;
  border: #e6e6e6 solid 1px;
  background: #fff;
  font-size: var(--fs18);
  color: #333;
  border-radius: 0.48rem;
}
.indexForm .btnGroup li a::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #e60012 0, #cf1723);
  transition: 0.5s;
}
.indexForm .btnGroup li a p {
  position: relative;
  z-index: 1;
}
.indexForm .btnGroup li a em {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 0.2rem;
  width: 0.3rem;
  height: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexForm .btnGroup li:nth-child(1) a em {
  background: url(../img/nimg30_1.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(1) a:hover em {
  background: url(../img/nimg30_1on.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(2) a em {
  background: url(../img/nimg30_2.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(2) a:hover em {
  background: url(../img/nimg30_2on.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li a:hover {
  color: #fff;
  border: #d71219 solid 1px;
}
.indexForm .btnGroup li a:hover::after {
  width: 100%;
}
@media (max-width: 1004px) {
  .indTitle {
    padding-bottom: 0.3rem;
  }
  .indTitle::after {
    width: 0.45rem;
    height: 2px;
    margin-left: -0.23rem;
  }
  .indTitle .en {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indTitle .cn {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .indexP1 {
    padding: 0.8rem 0 0.3rem;
  }
  .indexP1 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding: 0.35rem 0.3rem 0.6rem;
  }
  .indexP1 .swiper-container {
    padding: 0 0.2rem;
  }
  .indexP1 .swiper-slide .pic {
    position: relative;
    background: #000;
    overflow: hidden;
  }
  .indexP1 .swiper-slide .pic img {
    height: 6.58rem;
    object-fit: cover;
    transition-delay: 0.2s;
    transition-property: all;
    transition-duration: 1.2s;
  }
  .indexP1 .swiper-slide .info {
    left: 0.35rem;
    bottom: 0.5rem;
    padding: 0.6rem 0.3rem 0;
    width: calc(100% - 0.7rem);
  }
  .indexP1 .swiper-slide .info img {
    width: 0.78rem;
  }
  .indexP1 .swiper-slide .title {
    font-size: var(--fs17);
    line-height: 0.48rem;
    margin: 0.5rem auto 0.22rem;
  }
  .indexP1 .swiper-slide .brief {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .indexP1 .swiper-slide .imore {
    display: none;
  }
  .indexP1 .swiper-slide:hover .info {
    padding-bottom: 0.5rem;
  }
  .indexP1 .swiper-slide:hover .title {
    margin-top: 0.36rem;
    margin-bottom: 0.3rem;
  }
  .indexP1 .swiper-slide:hover .brief {
    opacity: 1;
    visibility: visible;
    height: 1.2rem;
    margin-bottom: 0.35rem;
  }
  .indexP1 .swiper-btn {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .indexP1 .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .indexP1 .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .indexP2 {
    margin-top: 0.6rem;
  }
  .indexP2 .bigBox {
    padding-top: 0.65rem;
    height: auto;
  }
  .indexP2 .links {
    overflow: hidden;
  }
  .indexP2 .links ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .indexP2 .links li {
    width: 33.33%;
    display: block;
    margin: 0 0 0.3rem;
  }
  .indexP2 .links li::after {
    display: none;
  }
  .indexP2 .links li .ico {
    width: 1rem;
    height: 1rem;
  }
  .indexP2 .links li .ico img {
    width: 0.64rem;
  }
  .indexP2 .links li .name {
    padding: 0 0.1rem;
    font-size: var(--fs14);
    line-height: 0.4rem;
  }
  .indexP2 .mxfDiv {
    padding-top: 0.5rem;
  }
  .indexP2 .btnGroup li {
    margin: 0 0.2rem;
  }
  .indexP2 .btnGroup li a {
    width: 2.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP2 .btnGroup li a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP2 .btnGroup li a:hover em {
    background-size: 12px;
  }
  .indPro .swiper-slide .conDiv {
    padding-top: 0;
    width: auto;
    min-height: 3.2rem;
  }
  .indPro .swiper-slide .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .indPro .swiper-slide .zi {
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .indPro .swiper-slide .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indPro .swiper-slide .more {
    margin-top: 0.3rem;
  }
  .indPro .swiper-slide .more a {
    width: 2.48rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indPro .swiper-slide .more a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indPro .swiper-slide .more a:hover em {
    background-size: 12px;
  }
  .indPro .swiper-slide .imgDiv {
    position: relative;
    left: 0;
    margin: 0.4rem auto 0;
    width: 6.4rem;
  }
  .indPro .pjDiv {
    display: none;
    position: relative;
    right: auto;
    margin-right: 0;
    width: auto;
    top: 0;
  }
  .indPro .temeDiv {
    display: none;
  }
  .indPro .arrowDiv {
    display: block;
    float: none;
    width: auto;
  }
  .indPro .arrowDiv .se {
    position: absolute;
    top: 50%;
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .indPro .arrowDiv .prev {
    left: 0;
  }
  .indPro .arrowDiv .next {
    right: 0;
  }
  .indexP3 {
    padding: 0.4rem 0 0;
    height: auto;
  }
  .indexP3::after {
    display: none;
  }
  .indexP3 .indTitle {
    text-align: center;
    padding-bottom: 0;
  }
  .indexP3 .indTitle .en {
    background-image: -webkit-linear-gradient(top, #0e3e66, #9db4c7);
    background-image: linear-gradient(to bottom, #0e3e66, #9db4c7);
    opacity: 0.3;
  }
  .indexP3 .indTitle .cn {
    color: #333;
  }
  .indexP3 .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
    color: #333;
    padding: 0.5rem 0 0.3rem;
  }
  .indexP3 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: auto;
    color: #666;
    overflow: hidden;
    width: auto;
  }
  .indexP3 .more a {
    border: #dfe0e7 solid 2px;
    width: 2.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP3 .more a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP3 .more a:hover em {
    background-size: 12px;
  }
  .indexP3 .numList {
    padding-top: 0.6rem;
    padding-bottom: 0.5rem;
    position: relative;
    left: 0;
    margin-left: 0;
    bottom: auto;
    width: 100%;
  }
  .indexP3 .numList::after {
    content: '';
    display: block;
    clear: both;
  }
  .indexP3 .numList li {
    width: 50%;
    font-size: var(--fs14);
    margin-bottom: 0.25rem;
    color: #666;
  }
  .indexP3 .numList li .ico {
    top: 0.1rem;
  }
  .indexP3 .numList li .ico img {
    width: 0.7rem;
  }
  .indexP3 .numList li .pj {
    display: flex;
    height: 0.68rem;
    align-items: flex-end;
    -webkit-align-items: flex-end;
  }
  .indexP3 .numList li .num i {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP3 .numList li .num span {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP3 .numList li .numUp {
    font-size: var(--fs36);
    line-height: 0.56rem;
    color: #d71219;
  }
  .indexP3 .numList li .wen {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP4 {
    padding: 0.8rem 0 1rem;
  }
  .indexP4 .indTitle {
    text-align: center;
  }
  .indexP4 .indTitle::after {
    left: 50%;
    margin-left: -0.23rem;
  }
  .indexP4 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP4 .box-container {
    padding: 0 0.8rem;
  }
  .indexP4 .box-container .year-swiper {
    padding: 0.16rem;
    margin: -0.2rem;
  }
  .indexP4 .box-container .swiper-slide .limg {
    height: 1rem;
  }
  .indexP4 .box-container .swiper-slide .limg img {
    max-width: 1.65rem;
    max-height: 0.9rem;
  }
  .indexP4 .detail-box .mxfDiv {
    display: block;
  }
  .indexP4 .detail-box .leftImg {
    width: 100%;
    height: 4.2rem;
  }
  .indexP4 .detail-box .conDiv {
    display: block;
    width: 100%;
    padding: 0.6rem 0.35rem;
    overflow: hidden;
    height: auto;
  }
  .indexP4 .detail-box .conDiv .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .indexP4 .detail-box .conDiv .zi {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-top: 0.12rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP4 .detail-box .conDiv .btnGroup li a {
    font-size: var(--fs14);
    width: 2.3rem;
    height: 0.86rem;
  }
  .indexP4 .detail-box .conDiv .btnGroup li a em {
    width: 12px;
    height: 8px;
    background-size: 12px;
  }
  .indexP4 .detail-box .conDiv .btnGroup li a:hover em {
    background-size: 12px;
  }
  .indexP4 .se {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
    border: #d71219 solid 1px;
  }
  .indexP4 .se:hover {
    border: transparent solid 1px;
  }
  .indexP4 .prev {
    left: -0.1rem;
  }
  .indexP4 .next {
    right: -0.1rem;
  }
  .indexP5 {
    padding: 0.9rem 0 1rem;
  }
  .indexP5 .indTitle {
    text-align: center;
  }
  .indexP5 .indTitle::after {
    left: 50%;
    margin-left: -0.23rem;
  }
  .indexP5 .indTitle .en {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP5 .toptop {
    height: auto;
    padding-bottom: 0.6rem;
  }
  .indexP5 .mxfDiv {
    display: block;
  }
  .indexP5 .leftDiv {
    width: 100%;
  }
  .indexP5 .midDiv {
    width: 100%;
  }
  .indexP5 .rightDiv {
    margin-top: 0.7rem;
    width: 100%;
  }
  .indexP5 .rightDiv .baozhe {
    height: auto;
    padding: 0.3rem 0 0.6rem;
  }
  .indexP5 .rightDiv .zi {
    min-height: 0.96rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    margin-bottom: 0.35rem;
  }
  .indexP5 .moreBtn {
    margin-top: 0.45rem;
  }
  .indexP5 .moreBtn a {
    font-size: var(--fs14);
    width: 2.3rem;
    height: 0.86rem;
  }
  .indexP5 .moreBtn a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP5 .moreBtn a:hover em {
    background-size: 12px;
  }
  .indexP5 .tab2 {
    padding-bottom: 0.35rem;
  }
  .indexP5 .tab2 li {
    font-size: var(--fs17);
    line-height: 0.32rem;
  }
  .indexP5 .list {
    height: auto;
    padding: 0.5rem 0.3rem;
  }
  .indexP5 .list li {
    margin-bottom: 0.3rem;
  }
  .indexP5 .list li a {
    padding-left: 1.3rem;
  }
  .indexP5 .list li a .time {
    font-size: var(--fs13);
    line-height: 0.28rem;
  }
  .indexP5 .list li a .time em {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .indexP5 .list li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indNews .imgList li .imgDiv {
    height: 4.2rem;
  }
  .indNews .imgList li .conDiv {
    height: 2.4rem;
    padding: 0.5rem 0.3rem 0;
  }
  .indNews .imgList li .name {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .indNews .imgList li .content {
    display: none;
  }
  .indNews .imgList li .time {
    margin-top: 0.2rem;
    line-height: 0.32rem;
  }
  .indNews .swiper-pagination {
    right: 0.3rem;
    bottom: 0.35rem;
  }
  .indHonor {
    padding: 0 0.3rem;
  }
  .indHonor .imgList li .imgDiv {
    height: 3rem;
  }
  .indHonor .imgList li .imgDiv img {
    max-width: 4.3rem;
    max-height: 3rem;
  }
  .indHonor .imgList li .name {
    min-height: 0.96rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .indHonor .swiper-pagination {
    position: relative;
    width: 100%;
    left: 0;
    padding-top: 0.4rem;
    bottom: 0;
    z-index: 2;
  }
  .indexForm {
    padding: 0.9rem 0 0.8rem;
  }
  .indexForm .mxfDiv {
    width: auto;
  }
  .indexForm .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexForm .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .indexForm .form ul {
    margin-right: 0;
  }
  .indexForm .form li {
    float: none;
    width: auto;
  }
  .indexForm .form li:last-child {
    width: auto;
  }
  .indexForm .form li .box {
    margin-right: 0;
    border-radius: 0.16rem;
  }
  .indexForm .form li .zi {
    line-height: 0.88rem;
    font-size: var(--fs14);
    padding-left: 0.42rem;
  }
  .indexForm .form li .zi img {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .indexForm .form li .input1 {
    height: 0.88rem;
    line-height: 0.88rem;
    padding-left: 2rem;
    font-size: var(--fs14);
  }
  .indexForm .select .caption {
    height: 0.88rem;
    line-height: 0.88rem;
    padding-left: 2rem;
    font-size: var(--fs14);
  }
  .indexForm .select .xlist {
    max-height: 3.2rem;
  }
  .indexForm .select .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .indexForm .btnGroup {
    margin-top: 0.4rem;
  }
  .indexForm .btnGroup li {
    margin-right: 0.2rem;
  }
  .indexForm .btnGroup li a {
    width: 2.4rem;
    height: 0.88rem;
    font-size: var(--fs14);
  }
  .indexForm .btnGroup li a em {
    width: 0.36rem;
    height: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(1) a em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(1) a:hover em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(2) a em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(2) a:hover em {
    background-size: 0.36rem;
  }
}
.indexBar {
  opacity: 0.5;
  position: fixed;
  right: 10px;
  top: 1.6rem;
  transition: All 0.5s ease;
  z-index: 3;
}
.indexBar:hover {
  opacity: 1;
}
.indexBar .list {
  width: 1.2rem;
}
.indexBar .list ul {
  margin: 0;
}
.indexBar .list li {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 0.45rem;
  position: relative;
  cursor: pointer;
  font-size: var(--fs14);
  margin-bottom: 2px;
}
.indexBar .list li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  border-radius: 6px;
  text-align: center;
  padding: 0 0.15rem;
  line-height: 0.2rem;
  height: 100%;
  color: #666;
  overflow: hidden;
}
.indexBar .list li a:hover {
  color: #d71219;
}
@media (max-width: 1004px) {
  .indexBar {
    right: 0;
  }
  .indexBar .list {
    width: 1.8rem;
  }
  .indexBar .list ul {
    margin: 0;
  }
  .indexBar .list li {
    height: 0.9rem;
    font-size: var(--fs13);
  }
  .indexBar .list li a {
    line-height: 0.32rem;
  }
}
.contact {
  padding: 1.3rem 0 1.65rem;
}
.contact .list {
  padding-top: 0.6rem;
}
.contact .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.6rem;
  background: #fff;
  box-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.08);
}
.contact .list li:last-child {
  margin-bottom: 0;
}
.contact .list li .imgDiv {
  order: 1;
  width: 50%;
  overflow: hidden;
}
.contact .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.contact .list li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  padding: 0 0.5rem 0 1rem;
}
.contact .list li .cn {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
}
.contact .list li .en {
  margin-top: 8px;
  line-height: 0.28rem;
  color: #999;
  font-size: var(--fs18);
  font-family: 'Mont-M';
}
.contact .list li .lie {
  margin-top: 0.4rem;
}
.contact .list li .lie dd {
  position: relative;
  padding-left: 0.52rem;
  min-height: 0.32rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.contact .list li .lie dd:last-child {
  margin-bottom: 0;
}
.contact .list li .lie dd .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.16rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.contact .list li .lie dd .ico img {
  width: 0.18rem;
}
.contact .list li:nth-child(even) .imgDiv {
  order: 0;
}
.contact .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.9rem 0 1rem;
  }
  .contact .list {
    padding-top: 0.7rem;
  }
  .contact .list li {
    display: block;
    margin-bottom: 0.5rem;
  }
  .contact .list li .imgDiv {
    width: 100%;
  }
  .contact .list li .conDiv {
    display: block;
    width: 100%;
    padding: 0.6rem 0.3rem;
  }
  .contact .list li .cn {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .contact .list li .en {
    margin-top: 0.1rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .contact .list li .lie dd {
    font-size: var(--fs14);
    line-height: 0.42rem;
    min-height: 0.56rem;
    padding-left: 0.8rem;
  }
  .contact .list li .lie dd .ico {
    margin-top: -0.28rem;
    width: 0.56rem;
    height: 0.56rem;
  }
  .contact .list li .lie dd .ico img {
    width: 0.26rem;
  }
}
.download {
  padding: 1.3rem 0 1.4rem;
}
.download .pageTitle {
  text-align: center;
}
.download .pageTitle::after {
  left: 50%;
  margin-left: -0.17rem;
}
.download .links {
  padding: 0.6rem 0 0.5rem;
}
.download .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.download .links li {
  margin: 0 0.3rem;
}
.download .links li a {
  display: block;
  text-align: center;
  padding: 0.28rem 0.05rem 0;
  width: 1.56rem;
  height: 1.5rem;
  background: #f6f7f9;
  border-radius: 8px;
}
.download .links li a .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto 0.05rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.download .links li a .ico img {
  width: 0.28rem;
  filter: brightness(0) invert(1);
}
.download .links li a .cn {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #666;
  transition: All 0.5s ease;
}
.download .links li a .en {
  font-size: var(--fs12);
  color: rgba(31, 31, 31, 0.3);
  font-family: 'Mont-M';
}
.download .links li a:hover .cn {
  color: #d71219;
}
.download .links li .aNow {
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.download .links li .aNow .ico {
  background: #fff;
}
.download .links li .aNow .ico img {
  filter: brightness(1) invert(0);
}
.download .links li .aNow .cn {
  color: #fff !important;
}
.download .links li .aNow .en {
  color: rgba(255, 255, 255, 0.3);
}
.download .midDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
}
.download .select {
  width: 4rem;
  position: relative;
}
.download .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.4rem;
  font-size: var(--fs24);
  color: #333;
  border: #f1f5f3 solid 1px;
  background: #fff;
  border-radius: 6px;
  font-family: 'Poppins-R';
}
.download .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(../img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.download .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.download .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  max-height: 2.5rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #f1f5f3;
  border-top: none;
}
.download .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.download .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.download .select .xlist::-webkit-scrollbar-thumb {
  background-color: #d71219;
}
.download .select .xlist a {
  display: block;
  font-size: var(--fs20);
  background: #fff;
  color: #333;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.4rem;
  border-bottom: 1px solid #f1f5f3;
  font-family: 'Poppins-R';
}
.download .select .xlist a:last-child {
  border-bottom: none;
}
.download .select .xlist a:hover {
  color: #d71219;
}
.download .form {
  margin: 0 0.2rem;
  width: 4.6rem;
  height: 0.8rem;
  background: #fff;
  border: 1px solid #f1f5f3;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.download .form .input1 {
  width: 100%;
  padding-left: 0.4rem;
  font-size: var(--fs24);
  color: #333;
  height: 0.78rem;
  line-height: 0.78rem;
}
.download .form .input1::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}
.download .form .input1:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.download .form .input1::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.download .form .input1:-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
.download .form .btn1 {
  position: absolute;
  right: 0.2rem;
  width: 0.6rem;
  height: 0.8rem;
  background: url(../img/nimg18_5.png) center no-repeat;
}
.download .resetBtn a {
  color: #333;
  font-size: var(--fs24);
}
.download .resetBtn a:hover {
  color: #d71219;
}
.download .list {
  padding-top: 0.5rem;
}
.download .list li {
  margin-bottom: 0.2rem;
}
.download .list li:last-child {
  margin-bottom: 0;
}
.download .list li a {
  display: block;
  position: relative;
  height: 0.8rem;
  background: #f6f7f9;
  border-radius: 4px;
  padding: 0 4rem 0 0.6rem;
  overflow: hidden;
}
.download .list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #d71219;
  transition: All 0.5s ease;
}
.download .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  padding-left: 0.9rem;
  height: 0.8rem;
  font-size: var(--fs20);
  font-weight: 100;
  color: #333;
  background: url(../img/nimg36_1.png) left center no-repeat;
  background-size: 0.36rem;
  transition: All 0.5s ease;
}
.download .list li a .time {
  position: absolute;
  right: 0.7rem;
  padding-right: 1.15rem;
  font-size: var(--fs14);
  color: #999;
  font-family: 'Poppins-L';
  line-height: 0.4rem;
  top: 50%;
  margin-top: -0.2rem;
}
.download .list li a .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff url(../img/ico2.png) center no-repeat;
  box-shadow: 0 0 0.24rem rgba(0, 0, 0, 0.08);
  transition: All 0.5s ease;
}
.download .list li a:hover {
  background: #fff;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.08);
}
.download .list li a:hover::before {
  width: 3px;
}
.download .list li a:hover .name {
  color: #d71219;
  background: url(../img/nimg36_1on.png) left center no-repeat;
  background-size: 0.36rem;
}
.download .list li a:hover .time::after {
  background: #d71219 url(../img/ico2on.png) center no-repeat;
}
@media (max-width: 1004px) {
  .download {
    padding: 1.3rem 0 1.4rem;
  }
  .download .pageTitle {
    text-align: center;
  }
  .download .pageTitle::after {
    left: 50%;
    margin-left: -0.17rem;
  }
  .download .links {
    padding: 0.7rem 0 0.5rem;
  }
  .download .links ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .download .links li {
    width: calc((100% - 0.4rem) / 3);
    margin: 0 0.2rem 0 0;
  }
  .download .links li:nth-child(3n) {
    margin: 0;
  }
  .download .links li a {
    padding: 0.3rem 0.1rem;
    width: 100%;
    min-height: 2.5rem;
  }
  .download .links li a .ico {
    width: 0.8rem;
    height: 0.8rem;
  }
  .download .links li a .ico img {
    width: 0.38rem;
  }
  .download .links li a .cn {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .download .midDiv {
    display: block;
  }
  .download .select {
    width: 100%;
  }
  .download .select .caption {
    height: 0.96rem;
    line-height: 0.96rem;
    font-size: var(--fs14);
  }
  .download .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    right: 0.3rem;
    margin-top: -4px;
  }
  .download .select .xlist {
    max-height: 4.8rem;
  }
  .download .select .xlist a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .download .form {
    margin: 0.25rem 0;
    width: 100%;
    height: 0.96rem;
  }
  .download .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
  }
  .download .form .btn1 {
    right: 0;
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.32rem;
  }
  .download .resetBtn a {
    font-size: var(--fs17);
  }
  .download .list {
    padding-top: 0.6rem;
  }
  .download .list li a {
    height: auto;
    padding: 0.2rem 0.3rem;
  }
  .download .list li a .name {
    display: block;
    padding-left: 0.6rem;
    height: auto;
    font-size: var(--fs15);
    line-height: 0.48rem;
    background: url(../img/nimg36_1.png) left 0.08rem no-repeat;
    background-size: 0.4rem;
  }
  .download .list li a .time {
    position: relative;
    display: inline-block;
    right: 0;
    margin-top: 0.3rem;
    padding-right: 0.85rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .download .list li a .time::after {
    width: 0.6rem;
    height: 0.6rem;
    background-size: 8px;
  }
  .download .list li a:hover .name {
    background: url(../img/nimg36_1on.png) left 0.08rem no-repeat;
    background-size: 0.4rem;
  }
  .download .list li a:hover .time::after {
    background-size: 8px;
  }
}
.question {
  padding: 1.3rem 0 2rem;
}
.question .toptop {
  position: relative;
}
.question .form {
  position: absolute;
  right: 0;
  top: 0.65rem;
  width: 2.48rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #f1f5f3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.05);
}
.question .form .input1 {
  width: 100%;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.58rem;
  line-height: 0.58rem;
}
.question .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.question .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.question .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.question .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.question .form .btn1 {
  position: absolute;
  right: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: url(../img/nimg18_5.png) center no-repeat;
}
.question .list {
  padding-top: 0.95rem;
}
.question .list li {
  position: relative;
  padding-bottom: 10px;
}
.question .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #f6f7f9;
  cursor: pointer;
}
.question .list li .ico {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.question .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #d71219;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #d71219;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .wen {
  position: absolute;
  color: #999;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  border: #cdcdcd solid 1px;
  background: #fff;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.question .list li .box {
  display: none;
}
.question .list li .msgDiv.aNow .ico {
  background-image: linear-gradient(180deg, #ec301e 0%, #da2026 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.question .list li .msgDiv.aNow .ico:before {
  background: #fff;
}
.question .list li .msgDiv.aNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.question .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.2rem 0.3rem 0.8rem;
}
.question .list li .zi {
  position: absolute;
  background-image: linear-gradient(180deg, #ec301e 0%, #da2026 100%);
  background-blend-mode: normal, normal;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.38rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.question .list li .content {
  color: #666;
  line-height: 0.36rem;
  font-size: var(--fs16);
  text-align: justify;
}
@media (max-width: 1004px) {
  .question {
    padding: 0.9rem 0 1rem;
  }
  .question .form {
    position: relative;
    top: 0;
    margin-top: 0.35rem;
    width: 100%;
    height: 0.96rem;
  }
  .question .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
  }
  .question .form .btn1 {
    right: 0;
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.32rem;
  }
  .question .list {
    padding-top: 0.7rem;
  }
  .question .list li {
    padding-bottom: 0.25rem;
  }
  .question .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .question .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .question .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .question .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .question .list li .name {
    height: auto;
    line-height: 0.52rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .question .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .question .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
}
.newsP1 {
  padding: 1.3rem 0 1.45rem;
  background: #f2f4f9;
}
.newsP1 .toptop {
  padding-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.newsP1 .rightDiv {
  position: absolute;
  right: 0;
  top: 0.3rem;
  z-index: 1;
}
.newsP1 .select {
  width: 2.48rem;
  position: relative;
}
.newsP1 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #666;
  border: #dadada solid 1px;
  background: #fff;
  border-radius: 6px;
  font-family: 'Mont-R';
}
.newsP1 .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(../img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP1 .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.newsP1 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  max-height: 2.5rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #dadada;
  border-top: none;
}
.newsP1 .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.newsP1 .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.newsP1 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #d71219;
}
.newsP1 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #666;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #dadada;
  font-family: 'Mont-R';
}
.newsP1 .select .xlist a:last-child {
  border-bottom: none;
}
.newsP1 .select .xlist a:hover {
  color: #d71219;
}
.newsP1 .form {
  margin-left: 0.3rem;
  width: 2.48rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #dadada;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.newsP1 .form .input1 {
  width: 100%;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.58rem;
  line-height: 0.58rem;
}
.newsP1 .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .btn1 {
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.6rem;
  background: url(../img/nimg18_5.png) center no-repeat;
}
.newsPic {
  position: relative;
  overflow: hidden;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsPic .mxfDiv {
  position: relative;
  padding: 0 0.5rem 0 8.1rem;
  height: 4.7rem;
  background: #fff;
  overflow: hidden;
}
.newsPic .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.5rem;
  height: 4.7rem;
  overflow: hidden;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsPic .time {
  padding: 0.5rem 0 0.3rem;
  font-size: var(--fs18);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Mont-R';
}
.newsPic .time em {
  display: block;
  color: #d71219;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
}
.newsPic .name {
  font-size: var(--fs30);
  font-weight: bold;
  color: #333;
  line-height: 0.48rem;
  height: 0.96rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #666;
  text-align: justify;
  line-height: 0.3rem;
  height: 0.6rem;
}
.newsPic .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.34rem;
  width: 1.6rem;
  height: 0.56rem;
  color: #d71219;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  border: #d71219 solid 1px;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .more em {
  margin-left: 0.15rem;
  width: 16px;
  height: 12px;
  background: url(../img/ico4on.png) no-repeat;
}
.newsPic .swiper-pagination {
  bottom: 0.8rem !important;
  left: auto!important;
  right: 0.5rem;
  margin-left: 0;
  text-align: left;
  width: auto!important;
}
.newsPic .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0.2rem !important;
  background: #e1e1e1;
  opacity: 1;
}
.newsPic .swiper-pagination .swiper-pagination-bullet-active {
  background: #d71219;
}
.newsPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic .swiper-slide:hover .name {
  color: #d71219;
}
.newsPic .swiper-slide:hover .more {
  color: #fff;
  background: #d71219;
}
.newsPic .swiper-slide:hover .more em {
  background: url(../img/ico4.png) no-repeat;
}
.newsP2 {
  padding: 1.35rem 0 2rem;
  border-bottom: #1f4590 solid 1px;
}
.newsP2 .list {
  padding-bottom: 1.2rem;
}
.newsP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.newsP2 .list li {
  width: calc((100% - 0.35rem) / 2);
  margin-right: 0.35rem;
  margin-top: 0.4rem;
}
.newsP2 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.newsP2 .list li:nth-child(2n) {
  margin-right: 0;
}
.newsP2 .list li a {
  display: block;
  position: relative;
  height: 2.2rem;
  border: #eee solid 1px;
  padding: 0.44rem 0.4rem 0 2rem;
}
.newsP2 .list li a .layer {
  position: absolute;
  left: 0.4rem;
  top: 0.42rem;
  width: 1.18rem;
  height: 1.2rem;
}
.newsP2 .list li a .layer::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #dfdfdf;
}
.newsP2 .list li a .layer::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 3px;
  height: 0.2rem;
  background: #d71219;
  z-index: 1;
  transition: All 0.5s ease;
}
.newsP2 .list li a .time {
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #989898;
  font-family: 'Mont-R';
}
.newsP2 .list li a .time em {
  display: block;
  color: #3c4153;
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-family: 'Din-R';
}
.newsP2 .list li a .ico {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #dfdfdf;
}
.newsP2 .list li a .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.11rem;
  height: 0.1rem;
  margin-left: -0.05rem;
  margin-top: -0.05rem;
  background: url(../img/ico4.png) no-repeat;
  background-size: 0.11rem;
  transition: All 0.5s ease;
}
.newsP2 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  max-height: 0.6rem;
  color: #3a3c42;
}
.newsP2 .list li a .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  max-height: 0.48rem;
  color: #63666d;
}
.newsP2 .list li a:hover {
  border: #fff solid 1px;
  box-shadow: 0 0 0.6rem rgba(97, 97, 97, 0.2);
}
.newsP2 .list li a:hover .layer::before {
  height: 100%;
}
.newsP2 .list li a:hover .ico {
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.9rem 0 1rem;
  }
  .newsP1 .toptop {
    padding-bottom: 0.5rem;
  }
  .newsP1 .rightDiv {
    margin-top: 0.5rem;
    position: relative;
    top: 0;
  }
  .newsP1 .select {
    width: 100%;
    float: none;
  }
  .newsP1 .select .caption {
    height: 0.96rem;
    line-height: 0.96rem;
    font-size: var(--fs14);
  }
  .newsP1 .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    right: 0.3rem;
    margin-top: -4px;
  }
  .newsP1 .select .xlist {
    max-height: 4.8rem;
  }
  .newsP1 .select .xlist a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .newsP1 .form {
    float: none;
    margin-top: 0.25rem;
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
  }
  .newsP1 .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
  }
  .newsP1 .form .btn1 {
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.32rem;
  }
  .newsPic .mxfDiv {
    padding: 0 0 1.2rem 0;
    height: auto;
  }
  .newsPic .imgDiv {
    position: relative;
    width: auto;
    height: auto;
  }
  .newsPic .imgDiv img {
    height: auto;
  }
  .newsPic .time {
    padding: 0.5rem 0.4rem 0.3rem;
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .newsPic .time em {
    font-size: var(--fs28);
    line-height: 0.6rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
    padding: 0 0.4rem;
  }
  .newsPic .content {
    display: none;
  }
  .newsPic .more {
    margin: 0.5rem 0.4rem 0;
    width: 2.2rem;
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsPic .more em {
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsPic .swiper-pagination {
    bottom: 0.5rem !important;
    left: auto!important;
    right: 0.4rem;
  }
  .newsPic .swiper-slide:hover .more em {
    background-size: 10px;
  }
  .newsP2 {
    padding: 0.9rem 0 1rem;
  }
  .newsP2 .list {
    padding-bottom: 0.7rem;
  }
  .newsP2 .list li {
    width: 100%;
    margin-right: 0;
  }
  .newsP2 .list li:nth-child(-n+1) {
    margin-top: 0;
  }
  .newsP2 .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .newsP2 .list li a {
    height: auto;
    padding: 0.3rem 0.4rem;
  }
  .newsP2 .list li a .layer {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    margin-bottom: 0.2rem;
  }
  .newsP2 .list li a .layer::after {
    display: none;
  }
  .newsP2 .list li a .layer::before {
    display: none;
  }
  .newsP2 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .newsP2 .list li a .time em {
    font-size: var(--fs24);
    line-height: 0.52rem;
  }
  .newsP2 .list li a .ico {
    display: none;
  }
  .newsP2 .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .newsP2 .list li a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
}
.newsTop {
  padding: 1.1rem 0 0.9rem;
  background: url(../img/newsTop.png) center bottom no-repeat;
  background-size: 100%;
  border-bottom: #d71219 solid 1px;
}
.newsTop .name {
  margin: 0 auto 0.4rem;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.64rem;
}
.newsTop .time {
  text-align: center;
}
.newsTop .time li {
  position: relative;
  display: inline-block;
  margin: 0 0.45rem;
  padding-left: 0.3rem;
  color: #999;
  font-size: var(--fs18);
  line-height: 0.36rem;
  font-family: 'Poppins-L';
}
.newsTop .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.1rem;
  width: 0.2rem;
}
.newsBot {
  background: #f6f7f9;
  padding-bottom: 1.4rem;
  overflow: visible;
  border-bottom: #2d62ae solid 1px;
}
.newsBot .leftDiv {
  width: 78%;
  padding-left: calc((100% - 15.36rem) / 2);
}
.newsBot .conDiv {
  background: #fff;
  padding: 0.8rem 1.1rem 0.6rem;
}
.newsBot .content {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.36rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.newsBot .botbot {
  margin-top: 1.6rem;
  min-height: 0.58rem;
  position: relative;
}
.newsBot .share {
  position: absolute;
  right: 0;
  top: 0.06rem;
  padding-left: 0.8rem;
}
.newsBot .share em {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.43rem;
  font-size: var(--fs18);
}
.newsBot .share li {
  float: left;
  margin-right: 0.2rem;
}
.newsBot .share li img {
  width: 0.43rem;
}
.newsBot .backBtn {
  margin: 0 auto;
  width: 1.8rem;
}
.newsBot .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border: #d2d2d2 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
}
.newsBot .backBtn em {
  margin-left: 0.15rem;
  width: 14px;
  height: 13px;
  background: url(../img/ico4on.png) no-repeat;
  transition: All 0.5s ease;
}
.newsBot .backBtn a:hover {
  border: #d71219 solid 1px;
  background: #d71219;
  color: #fff;
}
.newsBot .backBtn a:hover em {
  background: url(../img/ico4.png) no-repeat;
}
.pageDown {
  margin-top: 0.95rem;
}
.pageDown ul {
  margin-right: -0.56rem;
}
.pageDown li {
  float: left;
  width: 50%;
  font-size: var(--fs16);
}
.pageDown li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-right: 0.56rem;
  height: 0.8rem;
  background: #fff;
  position: relative;
  padding-left: 1rem;
  padding-right: 0.35rem;
}
.pageDown li .box::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #d71219;
  transition: All 0.5s ease;
}
.pageDown li .box em {
  position: absolute;
  left: 0.32rem;
  top: 50%;
  margin-top: -0.15rem;
  line-height: 0.3rem;
  color: #333;
}
.pageDown li .box a {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 0.48rem;
  line-height: 0.24rem;
  overflow: hidden;
  color: #333;
}
.pageDown li .box:hover {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.pageDown li .box:hover:after {
  width: 100%;
}
.pageDown li .box:hover a {
  color: #1f4590;
}
.sideRight {
  width: 22%;
  position: sticky;
  top: 0.6rem;
}
.sideRight .title {
  font-size: var(--fs18);
  line-height: 0.2rem;
  font-weight: bold;
  margin: 0 0 0.25rem;
  color: #1f4590;
}
.sideRight .sideNews {
  position: relative;
  padding: 0.4rem 32% 0.5rem 0.5rem;
}
.sideRight .sideNews .list li {
  padding-bottom: 0.35rem;
}
.sideRight .sideNews .list li .imgDiv {
  overflow: hidden;
}
.sideRight .sideNews .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.sideRight .sideNews .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
  margin-top: 0.12rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideRight .sideNews .list li:hover .name {
  color: #d71219;
}
.sideRight .sideNews .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.sideRight .moreBtn {
  margin-top: 0.1rem;
}
.sideRight .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.68rem;
  height: 0.5rem;
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.sideRight .moreBtn em {
  margin-left: 0.2rem;
  width: 18px;
  height: 14px;
  background: url(../img/ico5.png) no-repeat;
}
@media (max-width: 1600px) {
  .newsBot .leftDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .sideRight .sideNews {
    padding: 0.4rem 28% 0.5rem 0.5rem;
  }
}
@media (max-width: 1004px) {
  .newsTop {
    padding: 0.7rem 0 0.6rem;
  }
  .newsTop .name {
    width: auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
    margin: 0 auto 0.3rem;
  }
  .newsTop .time li {
    margin: 0 0.2rem;
    padding-left: 0.46rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newsTop .time li img {
    margin-top: -0.16rem;
    width: 0.32rem;
  }
  .newsTop.on {
    padding: 0.7rem 0 0.6rem;
  }
  .newsBot {
    padding-bottom: 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
    padding-left: 0;
  }
  .newsBot .conDiv {
    padding: 0.75rem 0.3rem 0.8rem;
  }
  .newsBot .content {
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .newsBot .botbot {
    margin-top: 0.8rem;
  }
  .newsBot .share {
    top: 0.1rem;
    padding-left: 1.1rem;
  }
  .newsBot .share em {
    font-size: var(--fs14);
    line-height: 0.64rem;
  }
  .newsBot .share li img {
    width: 0.64rem;
  }
  .newsBot .backBtn {
    margin: 0;
    width: 2.4rem;
  }
  .newsBot .backBtn a {
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsBot .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsBot .backBtn a:hover em {
    background-size: 10px;
  }
  .pageDown {
    margin-top: 0.65rem;
    padding: 0 0.3rem;
  }
  .pageDown ul {
    margin-right: 0;
  }
  .pageDown li {
    float: none;
    width: auto;
    font-size: var(--fs13);
    margin-bottom: 0.25rem;
  }
  .pageDown li .box {
    margin-right: 0;
    height: 1.4rem;
    padding-left: 1.35rem;
    padding-right: 0.35rem;
  }
  .pageDown li .box em {
    margin-top: -0.2rem;
    line-height: 0.4rem;
    left: 0.3rem;
  }
  .pageDown li .box a {
    max-height: 0.84rem;
    line-height: 0.42rem;
  }
  .sideRight {
    display: none;
  }
}
.case {
  padding: 1.3rem 0 2rem;
}
.case .list {
  margin: 0.6rem 0 1.1rem;
}
.case .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.case .list li {
  width: calc((100% - 0.6rem) / 2);
  margin-right: 0.6rem;
  margin-top: 0.6rem;
}
.case .list li:nth-child(-n+2) {
  margin-top: 0;
}
.case .list li:nth-child(2n) {
  margin-right: 0;
}
.case .list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.case .list li a .imgDiv {
  height: 4.28rem;
  overflow: hidden;
}
.case .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.case .list li a .botDiv {
  padding: 0.3rem 0.6rem 0;
  height: 3.2rem;
  position: relative;
  background: #f6f7f9;
  transition: All 0.5s ease;
}
.case .list li a .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #d71219;
  transition: All 0.5s ease;
}
.case .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.96rem;
  line-height: 0.48rem;
  color: #333;
  font-size: var(--fs30);
  font-weight: bold;
}
.case .list li a .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  line-height: 0.32rem;
  height: 0.64rem;
  font-size: var(--fs16);
  color: #666;
  font-weight: 100;
}
.case .list li a .ico {
  position: absolute;
  left: 0.6rem;
  bottom: 0.4rem;
  width: 0.58rem;
  height: 0.38rem;
  border-radius: 0.2rem;
  border: #cecece solid 1px;
  background: url(../img/ico6.png) center no-repeat;
  transition: All 0.5s ease;
}
.case .list li a:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.06);
}
.case .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.case .list li a:hover .botDiv {
  background: #fff;
}
.case .list li a:hover .botDiv::after {
  width: 100%;
}
.case .list li a:hover .ico {
  border: #d71219 solid 1px;
  background: #d71219 url(../img/ico6on.png) center no-repeat;
}
@media (max-width: 1004px) {
  .case {
    padding: 0.9rem 0 1rem;
  }
  .case .list {
    margin: 0.6rem 0 0.7rem;
  }
  .case .list ul {
    display: block;
  }
  .case .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .case .list li:nth-child(-n+1) {
    margin-top: 0;
  }
  .case .list li:nth-child(2) {
    margin-top: 0.3rem;
  }
  .case .list li a .imgDiv {
    height: 3.8rem;
  }
  .case .list li a .botDiv {
    padding: 0.3rem 0.4rem 0;
    height: 3rem;
  }
  .case .list li a .botDiv::after {
    height: 2px;
  }
  .case .list li a .name {
    max-height: 1.12rem;
    line-height: 0.56rem;
    font-size: var(--fs18);
  }
  .case .list li a .msg {
    margin-top: 0.2rem;
    line-height: 0.48rem;
    height: 0.96rem;
    font-size: var(--fs14);
  }
  .case .list li a .ico {
    display: none;
  }
}
.caseP1 {
  padding: 1.4rem 0 0.45rem;
  background: #f6f7f9;
  border-top: #efefef solid 1px;
}
.caseP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #fff;
  overflow: hidden;
}
.caseP1 .leftDiv {
  width: 9.6rem;
}
.caseP1 .leftDiv .item {
  display: none;
  position: relative;
}
.caseP1 .leftDiv .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.caseP1 .leftDiv .imgDiv {
  height: 6.82rem;
  overflow: hidden;
}
.caseP1 .leftDiv .imgDiv img,
.caseP1 .leftDiv .imgDiv video,
.caseP1 .leftDiv .imgDiv iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseP1 .rightDiv {
  order: 1;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  padding-right: 0.3rem;
  width: 5.4rem;
  height: 6.82rem;
}
.caseP1 .rightDiv .name {
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.2rem;
}
.caseP1 .rightDiv .time {
  font-size: var(--fs18);
  line-height: 0.2rem;
  font-family: 'Poppins-L';
}
.caseP1 .rightDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.8rem;
}
.caseP1 .rightDiv .content a {
  color: #d71219;
}
.caseP1 .rightDiv .content a:hover {
  text-decoration: underline;
}
.caseP1 .rightDiv .btnGroup {
  margin-top: 0.6rem;
}
.caseP1 .rightDiv .btnGroup::after {
  content: '';
  display: block;
  clear: both;
}
.caseP1 .rightDiv .btnGroup li {
  float: left;
  margin-right: 0.2rem;
}
.caseP1 .rightDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.55rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: #d71219 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.caseP1 .rightDiv .btnGroup li a:hover {
  color: #fff;
  border: transparent solid 1px;
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
}
.caseP1 .rightDiv .btnGroup li:nth-child(1) a em {
  margin-right: 0.15rem;
  width: 0.25rem;
  height: 0.26rem;
  background: url(../img/nimg25_1.png) no-repeat;
  background-size: 0.25rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(1) a:hover em {
  background: url(../img/nimg25_1on.png) no-repeat;
  background-size: 0.25rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a {
  width: 2.4rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a em {
  margin-left: 0.1rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(../img/ico5on.png) no-repeat;
  background-size: 0.16rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a:hover em {
  background: url(../img/ico5.png) no-repeat;
  background-size: 0.16rem;
}
.caseP1 .botbot {
  margin-top: 0.4rem;
  width: 6.38rem;
  position: relative;
}
.caseP1 .box-container {
  width: 5.14rem;
  margin: 0 auto;
  overflow: hidden;
}
.caseP1 .box-container .swiper-slide {
  position: relative;
  cursor: pointer;
}
.caseP1 .box-container .limg {
  border-radius: 0.12rem;
  overflow: hidden;
  height: 1.1rem;
  border: transparent solid 1px;
}
.caseP1 .box-container .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseP1 .box-container .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 16px;
  margin-left: -7px;
  margin-top: -8px;
  background: url(../img/play4.png) no-repeat;
}
.caseP1 .box-container .swiper-slide-active .limg {
  border: #d71219 solid 1px;
}
.caseP1 .se {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.caseP1 .se:hover {
  background-image: linear-gradient(90deg, #ef3d22 0%, #ee1d23 100%);
  background-blend-mode: normal, normal;
}
.caseP1 .prev {
  left: 0;
}
.caseP1 .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.caseP1 .prev:hover::after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.caseP1 .next {
  right: 0;
}
.caseP1 .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.caseP1 .next:hover::after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.caseP2 {
  border-bottom: #dbdbdb solid 1px;
  overflow: hidden;
}
.caseP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.caseP2 .leftDiv {
  width: 9rem;
  padding: 1rem 0 1.1rem;
}
.caseP2 .leftDiv .title {
  font-size: var(--fs30);
  letter-spacing: 3px;
  line-height: 0.32rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.caseP2 .leftDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  color: #333;
}
.caseP2 .rightDiv {
  width: 5.75rem;
  position: relative;
  padding: 0.8rem 0 1.3rem;
}
.caseP2 .rightDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dbdbdb;
}
.caseP2 .msgList {
  position: relative;
  z-index: 1;
  padding-bottom: 0.8rem;
}
.caseP2 .msgList li {
  padding-bottom: 0.5rem;
}
.caseP2 .msgList li:last-child {
  padding-bottom: 0;
}
.caseP2 .msgList li .zi {
  position: relative;
  margin-bottom: 0.1rem;
  padding-left: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.caseP2 .msgList li .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ee2123;
}
.caseP2 .msgList li .wen {
  color: #333;
  font-size: var(--fs24);
  line-height: 0.3rem;
  font-family: 'Poppins-M';
  padding-left: 0.25rem;
}
.caseP2 .share {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-left: 1.05rem;
  position: relative;
  height: 0.56rem;
}
.caseP2 .share em {
  position: absolute;
  left: 0.25rem;
  top: 0;
  line-height: 0.56rem;
  font-size: var(--fs18);
}
.caseP2 .share ul {
  margin-bottom: 0;
}
.caseP2 .share li {
  float: left;
  margin-right: 0.2rem;
}
.caseP2 .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 32px;
  height: 32px;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
}
.caseP2 .share li a:hover {
  border: #d71219 solid 1px;
}
.caseP2 .backBtn {
  padding-top: 1.3rem;
  width: 1.8rem;
}
.caseP2 .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border: #d2d2d2 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
}
.caseP2 .backBtn em {
  margin-left: 0.15rem;
  width: 18px;
  height: 14px;
  background: url(../img/ico5on.png) no-repeat;
}
.caseP2 .backBtn a:hover {
  border: #d71219 solid 1px;
  background: #d71219;
  color: #fff;
}
.caseP2 .backBtn a:hover em {
  background: url(../img/ico5.png) no-repeat;
}
.caseP3 {
  padding: 1.2rem 0 2rem;
  overflow: hidden;
  background: #f6f7f9;
}
.caseP3 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.9rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
@media (max-width: 1600px) {
  .caseP2 .leftDiv {
    width: 9.45rem;
  }
}
@media (max-width: 1004px) {
  .caseP1 {
    padding: 0.8rem 0;
  }
  .caseP1 .mxfDiv {
    display: block;
  }
  .caseP1 .leftDiv {
    width: auto;
  }
  .caseP1 .leftDiv .imgDiv {
    height: 4.3rem;
  }
  .caseP1 .rightDiv {
    display: block;
    padding: 0.7rem 0.3rem;
    width: auto;
    height: auto;
    overflow: hidden;
  }
  .caseP1 .rightDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .caseP1 .rightDiv .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .caseP1 .rightDiv .content {
    display: block;
    margin-top: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: auto;
  }
  .caseP1 .rightDiv .btnGroup {
    margin-top: 0.5rem;
  }
  .caseP1 .rightDiv .btnGroup li {
    margin-bottom: 0.2rem;
  }
  .caseP1 .rightDiv .btnGroup li:last-child {
    margin-bottom: 0;
  }
  .caseP1 .rightDiv .btnGroup li a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(1) a em {
    margin-right: 0.1rem;
    width: 0.32rem;
    height: 0.33rem;
    background-size: 0.32rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(1) a:hover em {
    background-size: 0.32rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a {
    width: 4rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a em {
    margin-left: 0.1rem;
    width: 0.22rem;
    height: 0.18rem;
    background-size: 0.22rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a:hover em {
    background-size: 0.22rem;
  }
  .caseP1 .botbot {
    width: 100%;
  }
  .caseP1 .box-container {
    width: calc(100% - 2rem);
  }
  .caseP1 .box-container .limg {
    height: 1rem;
  }
  .caseP1 .box-container .ico {
    width: 10px;
    height: 12px;
    margin-left: -5px;
    margin-top: -6px;
    background-size: 10px;
  }
  .caseP1 .se {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }
  .caseP2 .mxfDiv {
    display: block;
  }
  .caseP2 .leftDiv {
    width: auto;
    padding: 0.75rem 0;
  }
  .caseP2 .leftDiv .title {
    font-size: var(--fs18);
    letter-spacing: 2px;
    line-height: 0.56rem;
  }
  .caseP2 .leftDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .caseP2 .rightDiv {
    width: auto;
    padding: 0.8rem 0 1rem;
  }
  .caseP2 .msgList li .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .caseP2 .msgList li .wen {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .caseP2 .share {
    padding-left: 1.2rem;
  }
  .caseP2 .share em {
    font-size: var(--fs14);
  }
  .caseP2 .backBtn {
    padding-top: 0.6rem;
    width: 2.4rem;
  }
  .caseP2 .backBtn a {
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .caseP2 .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .caseP2 .backBtn a:hover em {
    background-size: 10px;
  }
  .caseP3 {
    padding: 0.9rem 0 1rem;
  }
  .caseP3 .title {
    font-size: var(--fs24);
    margin-bottom: 0.65rem;
    line-height: 0.72rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
}
.product {
  padding: 1rem 0 2rem;
  background: #f3f5f7 url(../img/productBg.jpg) center top no-repeat;
  background-size: 100%;
}
.product .zjMxf {
  margin-top: 0.95rem;
  position: relative;
  z-index: 2;
}
.product .zjMxf::after {
  content: '';
  display: block;
  clear: both;
}
.product .zjMxf .liDiv {
  width: 16.66%;
  float: left;
}
.product .zjMxf .select {
  width: 100%;
  height: 0.66rem;
  position: relative;
}
.product .zjMxf .select .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.5rem;
  padding-left: 0.3rem;
  border: #e6e7ed solid 1px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  background: #fff;
  height: 0.66rem;
  line-height: 0.64rem;
  font-size: var(--fs20);
  color: #333;
  transition: All 0.5s ease;
}
.product .zjMxf .select .caption::after {
  content: '';
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -7px;
  width: 9px;
  height: 14px;
  background: url(../img/next.png) no-repeat;
  transition: All 0.5s ease;
}
.product .zjMxf .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.65rem;
  padding: 0.25rem 0.3rem 0.2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: none;
  border: 1px solid #d7d8df;
  border-top: none;
}
.product .zjMxf .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.product .zjMxf .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.product .zjMxf .select .xlist::-webkit-scrollbar-thumb {
  background-color: #d71219;
}
.product .zjMxf .select .xlist a {
  display: block;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.34rem;
  overflow: hidden;
  padding-left: 0.2rem;
  margin-bottom: 0.06rem;
  background: url(../img/ico7.png) left 0.1rem no-repeat;
  background-size: 0.09rem;
}
.product .zjMxf .select .xlist a:hover {
  color: #d71219;
  background: url(../img/ico7on.png) left 0.1rem no-repeat;
  background-size: 0.09rem;
}
.product .zjMxf .select .caption.on {
  background: #d71219;
  color: #fff;
}
.product .zjMxf .select .caption.on::after {
  background: url(../img/nexton.png) no-repeat;
  transform: rotate(90deg);
}
.product .list {
  padding: 0.5rem 0 1.2rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.product .list li {
  width: calc((100% - 0.51rem) / 4);
  margin-right: 0.17rem;
  margin-top: 0.4rem;
}
.product .list li:nth-child(-n+4) {
  margin-top: 0;
}
.product .list li:nth-child(4n) {
  margin-right: 0;
}
.product .list li a {
  position: relative;
  padding: 0.5rem 0.3rem 0;
  display: block;
  height: 5.6rem;
  background: #fff;
  border: #dfe0e7 solid 1px;
  overflow: hidden;
}
.product .list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #e6291c;
  transition: All 0.5s ease;
}
.product .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 2.54rem;
}
.product .list li a .imgDiv img {
  max-width: 3rem;
  max-height: 2.54rem;
  transition: All 1s ease;
}
.product .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.38rem;
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: var(--fs20);
  color: #333;
  font-weight: bold;
  text-align: center;
}
.product .list li a .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.16rem;
  height: 0.48rem;
  line-height: 0.24rem;
  font-size: var(--fs14);
  color: #666;
  text-align: center;
}
.product .list li a .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.32rem auto 0;
  width: 1.3rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  border: #d71219 solid 1px;
  font-size: var(--fs16);
  color: #d71219;
}
.product .list li a:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.product .list li a:hover::after {
  width: 100%;
}
.product .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list li a:hover .btnDiv {
  border: none;
  color: #fff;
  background-image: linear-gradient(180deg, #ec311e 0%, #d81319 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .product {
    padding: 0.9rem 0 1rem;
  }
  .product .zjMxf .liDiv {
    width: 50%;
    margin-bottom: 0.2rem;
  }
  .product .zjMxf .select {
    height: 0.86rem;
  }
  .product .zjMxf .select .caption {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.5rem;
    padding-left: 0.25rem;
    height: 0.86rem;
    z-index: 0;
    line-height: 0.84rem;
    font-size: var(--fs13);
  }
  .product .zjMxf .select .xlist {
    max-height: 3rem;
  }
  .product .zjMxf .select .xlist a {
    font-size: var(--fs13);
    padding-left: 0.25rem;
    line-height: 0.48rem;
    margin-bottom: 0.1rem;
    background: url(../img/ico7.png) left 0.15rem no-repeat;
    background-size: 0.12rem;
  }
  .product .zjMxf .select .xlist a:hover {
    background: url(../img/ico7on.png) left 0.15rem no-repeat;
    background-size: 0.12rem;
  }
  .product .list {
    padding: 0.5rem 0 0.7rem;
  }
  .product .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .product .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .product .list li:nth-child(3),
  .product .list li:nth-child(4) {
    margin-top: 0.3rem;
  }
  .product .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(2n) {
    margin-right: 0;
  }
  .product .list li a {
    padding: 0.3rem 0.2rem 0;
    border-radius: 0.2rem;
  }
  .product .list li a .imgDiv {
    height: 2.5rem;
  }
  .product .list li a .imgDiv img {
    max-width: 2.7rem;
    max-height: 2.5rem;
  }
  .product .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.15rem;
    height: 1.04rem;
    line-height: 0.52rem;
    font-size: var(--fs16);
  }
  .product .list li a .msg {
    display: none;
  }
  .product .list li a .btnDiv {
    margin: 0.25rem auto 0;
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
}
.proNav {
  position: sticky;
  top: 0.92rem;
  z-index: 2;
}
.proshowP0 {
  padding: 0.7rem 0 0.75rem;
  position: relative;
}
.proshowP0 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.proshowP0 .leftImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 44.2%;
  height: 6.8rem;
  border: #f1f1f1 solid 2px;
  background: #fff;
}
.proshowP0 .leftImg img {
  max-width: 100%;
  max-height: 5rem;
  mix-blend-mode: multiply;
}
.proshowP0 .rightDiv {
  width: 48.3%;
}
.proshowP0 .name {
  position: relative;
  padding-bottom: 0.28rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  margin-bottom: 0.6rem;
  font-weight: bold;
}
.proshowP0 .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #d71219;
}
.proshowP0 .content {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  margin-bottom: 0.75rem;
}
.proshowP0 .btnlist::after {
  content: '';
  display: block;
  clear: both;
}
.proshowP0 .btnlist li {
  float: left;
  font-size: var(--fs16);
  margin-right: 0.45rem;
}
.proshowP0 .btnlist li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.56rem;
  height: 0.54rem;
  border-radius: 0.48rem;
  color: #fff;
}
.proshowP0 .btnlist li:nth-child(1) a {
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.proshowP0 .btnlist li:nth-child(1) em {
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  background: url(../img/nimg30_2on.png) no-repeat;
  background-size: 0.3rem;
}
.proshowP0 .btnlist li:nth-child(2) {
  margin-right: 0;
}
.proshowP0 .btnlist li:nth-child(2) a {
  background-image: linear-gradient(90deg, #1f4590 0%, #0664cb 100%);
  background-blend-mode: normal, normal;
}
.proshowP0 .moreBtn {
  margin-top: 0.8rem;
  width: 1.82rem;
}
.proshowP0 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border: #d71219 solid 1px;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #666;
  font-size: var(--fs16);
}
.proshowP0 .moreBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../img/ico4on.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP0 .moreBtn a:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proshowP0 .moreBtn a:hover em {
  background: url(../img/ico4.png) no-repeat;
}
.proshowP1 {
  padding: 1.4rem 0;
  position: relative;
  overflow: hidden;
}
.proshowP1 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 150%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.proshowP1 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #fff;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proshowP1 .list ul {
  display: inline-flex;
  width: 100%;
}
.proshowP1 .list li {
  width: 33.33%;
  position: relative;
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.65s;
}
.proshowP1 .list li .box {
  cursor: pointer;
  width: 100%;
  height: 4.7rem;
  position: relative;
  background: #fff;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP1 .list li .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #cf000e;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP1 .list li .beforeDiv {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding: 1rem 0.3rem 0;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP1 .list li .afterDiv {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0.8rem 0.55rem 0;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP1 .list li .afterDiv .name {
  color: #333;
}
.proshowP1 .list li .ico {
  height: 1rem;
}
.proshowP1 .list li .ico img {
  width: 0.52rem;
}
.proshowP1 .list li .name {
  font-size: var(--fs26);
  line-height: 0.36rem;
  color: #000;
  font-weight: bold;
}
.proshowP1 .list li .more {
  position: absolute;
  left: 50%;
  margin-left: -0.25rem;
  bottom: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: #d71219 solid 1px;
  background: url(../img/ico4on.png) center no-repeat;
}
.proshowP1 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  width: 4.7rem;
}
.proshowP1 .list .on {
  width: 60%;
}
.proshowP1 .list .on .box {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.proshowP1 .list .on .box::before {
  width: 100%;
}
.proshowP1 .list .on .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.proshowP1 .list .on .afterDiv {
  opacity: 1;
  visibility: visible;
}
.proshowP2 {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0;
}
.proshowP2 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 150%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.proshowP2 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.traitPic {
  position: relative;
}
.traitPic .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.traitPic .imgList li .box {
  position: relative;
  padding: 0.95rem 0.4rem 0;
  height: 4.7rem;
  background: #fff;
  text-align: center;
  transition: All 0.5s ease;
}
.traitPic .imgList li .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #ee1f25;
  transition: All 0.5s ease;
}
.traitPic .imgList li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 0.96rem;
  color: #333;
  font-size: var(--fs30);
  line-height: 0.48rem;
}
.traitPic .imgList li .msg {
  height: 1.68rem;
  overflow: hidden;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.traitPic .imgList li:hover .box {
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.08);
}
.traitPic .imgList li:hover .box::before {
  width: 100%;
}
.traitPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.5rem;
  height: 0.5rem;
  border: #d71219 solid 1px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
}
.traitPic .se:hover {
  border: none;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.traitPic .prev {
  left: 50%;
  margin-left: -8.4rem;
}
.traitPic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.traitPic .prev:hover::before {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.traitPic .next {
  right: 50%;
  margin-right: -8.4rem;
}
.traitPic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.traitPic .next:hover::before {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.proshowP3 {
  padding: 1.4rem 0;
}
.proshowP3 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proshowP3 .tableDiv .oneRow {
  position: sticky;
  top: 1.62rem;
}
.proshowP3 .tableDiv table {
  font-family: "Poppins-M";
}
.proshowP3 .tableDiv table tr:first-child {
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.proshowP3 .tableDiv table th {
  border-right: #e44848 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  height: 0.7rem;
  color: #fff;
  font-size: var(--fs22);
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
.proshowP3 .tableDiv table th:first-child {
  text-align: left;
  padding-left: 1.3rem;
}
.proshowP3 .tableDiv table .one {
  width: 4.6rem;
}
.proshowP3 .tableDiv table td {
  border-right: #e0e0e0 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  text-align: center;
  background: #f7f8fa;
  padding: 0.12rem 0.35rem;
  min-height: 0.55rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Poppins-L';
}
.proshowP3 .tableDiv table td:first-child {
  border-left: #e0e0e0 solid 1px;
  text-align: left;
  padding: 0.12rem 0.35rem 0.12rem 1.3rem;
}
.proshowP3 .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs15);
  line-height: 0.42rem;
  color: #333;
}
.proshowP4 {
  padding: 1.3rem 0;
  background: url(../img/proshowP4.jpg) center no-repeat;
  background-size: cover;
}
.proshowP4 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.8rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proshowP4 .table .firstRow {
  position: sticky;
  top: 1.62rem;
}
.proshowP4 .table table {
  font-family: "Poppins-M";
}
.proshowP4 .table table tr:first-child {
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.proshowP4 .table table th {
  border-right: #e44848 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  height: 0.7rem;
  color: #fff;
  font-size: var(--fs22);
  text-align: left;
  padding-left: 3.6rem;
  padding-right: 0.35rem;
}
.proshowP4 .table table th:first-child {
  width: 30%;
  padding-left: 0.35rem;
  text-align: center;
}
.proshowP4 .table table td {
  border-right: #e0e0e0 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  background: #fff;
  padding: 0.12rem 0.35rem 0.12rem 3.6rem;
  min-height: 0.55rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Poppins-L';
}
.proshowP4 .table table td:first-child {
  border-left: #e0e0e0 solid 1px;
  text-align: center;
  padding: 0.12rem 0.35rem;
}
.proshowP4 .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs15);
  line-height: 0.42rem;
  color: #333;
}
.proshowP5 {
  padding: 1.4rem 0;
}
.proshowP5 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proshowP5 .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.5rem;
}
.proshowP5 .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;
  border: #d71219 solid 1px;
  padding: 0 0.32rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #666;
  font-size: var(--fs16);
}
.proshowP5 .btnDiv a em {
  display: block;
  margin-left: 0.15rem;
  width: 14px;
  height: 13px;
  background: url(../img/ico4on.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proshowP5 .btnDiv a:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proshowP5 .btnDiv a:hover em {
  background: url(../img/ico4.png) no-repeat;
}
.appField {
  position: relative;
  padding: 0 0.4rem;
}
.appField .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.appField .imgList li .box {
  transition: All 0.5s ease;
}
.appField .imgList li .imgDiv {
  height: 3.28rem;
  overflow: hidden;
}
.appField .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.appField .imgList li .botDiv {
  position: relative;
  height: 2rem;
  padding: 0.4rem 0.6rem 0;
  background: #f9f9f9;
  text-align: center;
  transition: All 0.5s ease;
}
.appField .imgList li .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ee1f25;
  transition: All 0.5s ease;
}
.appField .imgList li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs20);
  line-height: 0.32rem;
}
.appField .imgList li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.appField .imgList li:hover .box {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.appField .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.appField .imgList li:hover .botDiv {
  background: #fff;
}
.appField .imgList li:hover .botDiv::after {
  width: 100%;
}
.appField .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border: #959595 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.appField .se:hover {
  border: none;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.appField .prev {
  left: 50%;
  margin-left: -8.2rem;
}
.appField .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_left.png) no-repeat;
}
.appField .prev:hover::before {
  background: url(../img/nimg7_lefton.png) no-repeat;
}
.appField .next {
  right: 50%;
  margin-right: -8.2rem;
}
.appField .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_right.png) no-repeat;
}
.appField .next:hover::before {
  background: url(../img/nimg7_righton.png) no-repeat;
}
.proshowP6 {
  padding: 1.2rem 0 1rem;
  background: #f6f7f9;
}
.proshowP6 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  padding-bottom: 0.32rem;
  margin: 0 0 0.22rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proshowP6 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.17rem;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #d71219;
}
.proshowP6 .msg {
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.42rem;
}
.proshowP6 .baozhe {
  margin-top: 0.85rem;
}
.proshowP6 .zi {
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.28rem;
  font-weight: bold;
  margin-bottom: 0.28rem;
}
.proshowP6 .zi em {
  background-image: linear-gradient(left, #d71219, #ed4739);
  background-image: linear-gradient(to right, #d71219, #ed4739);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proshowP6 .table table th {
  height: 0.7rem;
  font-size: var(--fs22);
  color: #fff;
  background: #a1a1a1;
  font-weight: 400;
  padding: 0 0.9rem;
  width: 33.33%;
  border-right: #fff solid 1px;
}
.proshowP6 .table table th:nth-child(1) {
  text-align: left;
  background-image: linear-gradient(90deg, #1f4590 0%, #0665cb 100%);
  background-blend-mode: normal, normal;
}
.proshowP6 .table table th:nth-child(2) {
  background-image: linear-gradient(90deg, #d71219 0%, #ec311e 100%);
  background-blend-mode: normal, normal;
}
.proshowP6 .table table th:last-child {
  border-right: none;
}
.proshowP6 .table table td {
  border-right: #efefef solid 1px;
  border-bottom: #efefef solid 1px;
  background: #fff;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #666;
  padding: 0.2rem 0.35rem;
  min-height: 0.55rem;
}
.proshowP6 .table table td:first-child {
  border-left: #efefef solid 1px;
  padding: 0 0.35rem 0 0.9rem;
}
.proshowP6 .table table td:nth-child(2) {
  color: #333;
}
.proshowP6 .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs15);
  line-height: 0.42rem;
  color: #333;
}
.proshowP6 .conclusion {
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  margin-top: 0.24rem;
}
.proShowP7 {
  padding: 1.4rem 0;
}
.proShowP7 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proShowP7 .list li {
  position: relative;
  padding-bottom: 10px;
}
.proShowP7 .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #f6f7f9;
  cursor: pointer;
}
.proShowP7 .list li .ico {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.proShowP7 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #d71219;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #d71219;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .wen {
  position: absolute;
  color: #ef3122;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  border: #cdcdcd solid 1px;
  background: #fff;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.proShowP7 .list li .box {
  display: none;
}
.proShowP7 .list li .msgDiv.aNow .ico {
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef482e 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.proShowP7 .list li .msgDiv.aNow .ico:before {
  background: #fff;
}
.proShowP7 .list li .msgDiv.aNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.proShowP7 .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.2rem 0.65rem 0.8rem;
}
.proShowP7 .list li .zi {
  position: absolute;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef482e 100%);
  background-blend-mode: normal, normal;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.38rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.proShowP7 .list li .content {
  color: #999;
  line-height: 0.36rem;
  font-size: var(--fs16);
  text-align: justify;
}
.proShowP7 .moreBtn {
  width: 1.54rem;
  margin: 0.45rem auto 0;
}
.proShowP7 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #e70e1f 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.proShowP7 .moreBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 18px;
  height: 14px;
  background: url(../img/ico5.png) no-repeat;
  background-size: 18px;
}
.proShowP8 {
  padding: 0.9rem 0 1rem;
  overflow: hidden;
  background: #f6f7f9;
}
.proShowP8 .title {
  font-size: var(--fs36);
  font-weight: bold;
  color: #333;
  line-height: 0.4rem;
  text-align: center;
  margin: 0 0 0.7rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proShowP8 .backBtn {
  width: 1.8rem;
  margin: 0.65rem auto 0;
}
.proShowP8 .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border: #d71219 solid 1px;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #666;
  font-size: var(--fs16);
}
.proShowP8 .backBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../img/ico4on.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP8 .backBtn a:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proShowP8 .backBtn a:hover em {
  background: url(../img/ico4.png) no-repeat;
}
.proShowP8 .hotProduct {
  padding: 0 0.4rem;
}
.proShowP8 .hotProduct .imgList a {
  height: 5.26rem;
  border-radius: 0;
}
.proShowP8 .hotProduct .imgList a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ee1f25;
  transition: All 0.5s ease;
}
.proShowP8 .hotProduct .imgList a .name {
  margin-top: 0;
  font-size: var(--fs20);
}
.proShowP8 .hotProduct .imgList a .btnDiv {
  margin: 0.35rem auto 0;
  color: #d71219;
}
.proShowP8 .hotProduct .imgList a:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.proShowP8 .hotProduct .imgList a:hover::after {
  width: 100%;
}
.hotProduct {
  position: relative;
}
.hotProduct .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.hotProduct .imgList a {
  position: relative;
  padding: 0.4rem 0.3rem 0;
  display: block;
  height: 5.64rem;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.hotProduct .imgList a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
  overflow: hidden;
}
.hotProduct .imgList a .imgDiv img {
  max-width: 4rem;
  max-height: 3.2rem;
  transition: All 1s ease;
}
.hotProduct .imgList a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  height: 0.46rem;
  line-height: 0.46rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  text-align: center;
}
.hotProduct .imgList a .msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  line-height: 0.32rem;
  font-size: var(--fs16);
  color: #999;
  text-align: center;
}
.hotProduct .imgList a .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.12rem auto 0;
  width: 1.3rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  border: #ef3722 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.hotProduct .imgList a:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.hotProduct .imgList a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.hotProduct .imgList a:hover .btnDiv {
  border: none;
  color: #fff;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.hotProduct .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border: #959595 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.hotProduct .se:hover {
  border: none;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
}
.hotProduct .prev {
  left: 50%;
  margin-left: -8.6rem;
}
.hotProduct .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_left.png) no-repeat;
}
.hotProduct .prev:hover::before {
  background: url(../img/nimg7_lefton.png) no-repeat;
}
.hotProduct .next {
  right: 50%;
  margin-right: -8.6rem;
}
.hotProduct .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_right.png) no-repeat;
}
.hotProduct .next:hover::before {
  background: url(../img/nimg7_righton.png) no-repeat;
}
@media (max-width: 1004px) {
  .proshowP0 {
    padding: 0.8rem 0 0.9rem;
  }
  .proshowP0 .pageNow {
    display: none;
  }
  .proshowP0 .mxfDiv {
    display: block;
  }
  .proshowP0 .leftImg {
    width: 100%;
    height: 5.6rem;
  }
  .proshowP0 .leftImg img {
    max-width: 4.8rem;
    max-height: 4.6rem;
  }
  .proshowP0 .rightDiv {
    width: auto;
    margin-top: 0.65rem;
  }
  .proshowP0 .name {
    padding-bottom: 0.3rem;
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .proshowP0 .name::after {
    width: 0.48rem;
    height: 2px;
  }
  .proshowP0 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.6rem;
  }
  .proshowP0 .btnlist li {
    font-size: var(--fs14);
    margin-right: 0.2rem;
  }
  .proshowP0 .btnlist li a {
    width: 2.56rem;
    height: 0.86rem;
  }
  .proshowP0 .btnlist li:nth-child(1) em {
    width: 0.36rem;
    height: 0.36rem;
    background-size: 0.36rem;
  }
  .proshowP0 .moreBtn {
    margin-top: 0.6rem;
    width: 2.82rem;
  }
  .proshowP0 .moreBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .proshowP0 .moreBtn a em {
    width: 12px;
    height: 11px;
    background-size: 12px;
  }
  .proshowP0 .moreBtn a:hover em {
    background-size: 12px;
  }
  .proshowP1 {
    padding: 1rem 0;
  }
  .proshowP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proshowP1 .list ul {
    display: block;
  }
  .proshowP1 .list li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.3rem;
  }
  .proshowP1 .list li .box {
    height: auto;
  }
  .proshowP1 .list li .beforeDiv {
    opacity: 0;
    visibility: hidden;
  }
  .proshowP1 .list li .afterDiv {
    display: block;
    position: relative;
    padding: 0.5rem 0.35rem;
    min-height: 4.2rem;
    opacity: 1;
    visibility: visible;
  }
  .proshowP1 .list li .ico {
    height: 1.5rem;
  }
  .proshowP1 .list li .ico img {
    width: 1.3rem;
  }
  .proshowP1 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .proshowP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proshowP1 .list .on {
    width: 100%;
  }
  .proshowP2 {
    padding: 1rem 0;
  }
  .proshowP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .traitPic {
    padding-bottom: 1.2rem;
  }
  .traitPic .imgList {
    padding: 0;
    margin: 0;
  }
  .traitPic .imgList li .box {
    padding: 0.6rem 0.3rem 0.2rem;
    height: 4.7rem;
  }
  .traitPic .imgList li .name {
    max-height: 1.12rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .traitPic .imgList li .msg {
    height: auto;
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .traitPic .imgList li:hover .box {
    box-shadow: none;
  }
  .traitPic .se {
    bottom: 0;
    top: auto;
    margin-top: 0;
    width: 0.86rem;
    height: 0.86rem;
  }
  .traitPic .prev {
    margin-left: -1rem;
  }
  .traitPic .next {
    margin-right: -1rem;
  }
  .proshowP3 {
    padding: 1rem 0;
  }
  .proshowP3 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proshowP3 .longDiv {
    overflow: auto;
  }
  .proshowP3 .tableDiv {
    width: 16rem;
  }
  .proshowP3 .tableDiv .oneRow {
    top: 0;
  }
  .proshowP3 .tableDiv table th {
    height: 1rem;
    font-size: var(--fs15);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .proshowP3 .tableDiv table th:first-child {
    padding-left: 0.3rem;
  }
  .proshowP3 .tableDiv table .one {
    width: 5rem;
  }
  .proshowP3 .tableDiv table td {
    padding: 0.15rem 0.3rem;
    font-size: var(--fs13);
  }
  .proshowP3 .tableDiv table td:first-child {
    padding: 0.15rem 0.3rem;
  }
  .proshowP4 {
    padding: 1rem 0;
  }
  .proshowP4 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proshowP4 .longDiv {
    overflow: auto;
  }
  .proshowP4 .table {
    width: 16rem;
  }
  .proshowP4 .table .firstRow {
    top: 0;
  }
  .proshowP4 .table table th {
    height: 1rem;
    font-size: var(--fs15);
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .proshowP4 .table table th:first-child {
    padding-left: 0.3rem;
  }
  .proshowP4 .table table td {
    padding: 0.15rem 0.3rem;
    font-size: var(--fs13);
  }
  .proshowP4 .table table td:first-child {
    padding: 0.15rem 0.3rem;
  }
  .proshowP5 {
    padding: 1rem 0;
  }
  .proshowP5 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proshowP5 .btnDiv {
    margin-top: 0.65rem;
  }
  .proshowP5 .btnDiv a {
    padding: 0 0.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .proshowP5 .btnDiv a em {
    width: 12px;
    height: 11px;
    background-size: 12px;
  }
  .proshowP5 .btnDiv a:hover em {
    background-size: 12px;
  }
  .appField {
    padding: 0;
  }
  .appField .imgList {
    padding: 0;
    margin: 0;
  }
  .appField .imgList li .imgDiv {
    height: 4.2rem;
  }
  .appField .imgList li .botDiv {
    height: 2.6rem;
    padding: 0.4rem 0.3rem 0;
    border: #ddd solid 1px;
    border-top: none;
  }
  .appField .imgList li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .appField .imgList li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .appField .imgList li:hover .box {
    box-shadow: none;
  }
  .appField .se {
    border: none;
    background: #fff;
    top: 35%;
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .appField .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .appField .next {
    right: 0.3rem;
    margin-right: 0;
  }
  .proshowP6 {
    padding: 0.9rem 0 1rem;
  }
  .proshowP6 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.3rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proshowP6 .title::after {
    margin-left: -0.24rem;
    width: 0.48rem;
    height: 2px;
  }
  .proshowP6 .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .proshowP6 .baozhe {
    margin-top: 0.7rem;
  }
  .proshowP6 .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
    margin-bottom: 0.35rem;
  }
  .proshowP6 .longDiv {
    overflow: auto;
  }
  .proshowP6 .table {
    width: 16rem;
  }
  .proshowP6 .table table th {
    height: 1rem;
    font-size: var(--fs16);
    padding: 0 0.3rem;
  }
  .proshowP6 .table table td {
    font-size: var(--fs13);
    line-height: 0.46rem;
    padding: 0.2rem 0.3rem;
    min-height: 0.85rem;
  }
  .proshowP6 .table table td:first-child {
    padding: 0 0.3rem;
  }
  .proshowP6 .conclusion {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.3rem;
  }
  .proShowP7 {
    padding: 1rem 0;
  }
  .proShowP7 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.6rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proShowP7 .list li {
    padding-bottom: 0.25rem;
  }
  .proShowP7 .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .proShowP7 .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .proShowP7 .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .proShowP7 .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .proShowP7 .list li .name {
    height: auto;
    line-height: 0.52rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .proShowP7 .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .proShowP7 .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .proShowP7 .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .proShowP7 .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
  .proShowP7 .moreBtn {
    width: 2.34rem;
  }
  .proShowP7 .moreBtn a {
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .proShowP7 .moreBtn a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .proShowP8 {
    padding: 0.9rem 0 1rem;
  }
  .proShowP8 .title {
    font-size: var(--fs24);
    margin-bottom: 0.6rem;
    line-height: 0.64rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proShowP8 .backBtn {
    width: 2.56rem;
  }
  .proShowP8 .backBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .proShowP8 .backBtn a em {
    width: 12px;
    height: 11px;
    background-size: 12px;
  }
  .proShowP8 .backBtn a:hover em {
    background-size: 12px;
  }
  .proShowP8 .hotProduct {
    padding: 0;
  }
  .proShowP8 .hotProduct .imgList a {
    height: 6rem;
  }
  .proShowP8 .hotProduct .imgList a .name {
    font-size: var(--fs17);
  }
  .proShowP8 .hotProduct .imgList a .btnDiv {
    margin: 0.2rem auto 0;
  }
  .hotProduct .imgList {
    padding: 0;
    margin: 0;
  }
  .hotProduct .imgList a {
    padding: 0.3rem 0.2rem 0;
    height: 6.4rem;
    border-radius: 0.2rem;
  }
  .hotProduct .imgList a .imgDiv {
    height: 3.5rem;
  }
  .hotProduct .imgList a .imgDiv img {
    max-width: 5.2rem;
    max-height: 3.5rem;
  }
  .hotProduct .imgList a .name {
    margin-top: 0.15rem;
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .hotProduct .imgList a .msg {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .hotProduct .imgList a .btnDiv {
    margin: 0.16rem auto 0;
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .hotProduct .imgList a:hover {
    box-shadow: none;
  }
  .hotProduct .se {
    top: 35%;
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .hotProduct .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .hotProduct .next {
    right: 0.3rem;
    margin-right: 0;
  }
}
.soluBanner {
  position: relative;
  overflow: hidden;
}
.soluBanner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 138px;
  background: url(../img/bg1.png) bottom repeat-x;
  z-index: 1;
}
.soluBanner .bg img {
  width: 100%;
}
.soluBanner .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.soluBanner .en {
  font-size: var(--fs60);
  line-height: 0.64rem;
  font-family: 'Mont-B';
  -webkit-text-stroke: 0.5px white;
  text-stroke: 1px white;
  text-transform: uppercase;
  opacity: 0.2;
  color: transparent;
}
.soluBanner .cn {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #fff;
  padding-bottom: 0.28rem;
  position: relative;
}
.soluBanner .cn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #fff;
}
.soluBanner .name {
  margin-top: 0.38rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1600px) {
  .soluBanner .info {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .soluBanner .bg {
    height: 5rem;
  }
  .soluBanner .bg img {
    height: 100%;
    object-fit: cover;
  }
  .soluBanner .info {
    left: 0.3rem;
    margin-left: 0;
  }
  .soluBanner .en {
    font-size: var(--fs30);
    line-height: 0.72rem;
  }
  .soluBanner .cn {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .soluBanner .cn::after {
    width: 0.52rem;
    height: 2px;
  }
  .soluBanner .name {
    margin-top: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
}
.soluTitle {
  text-align: center;
}
.soluTitle .num {
  font-size: 1.2rem;
  line-height: 0.9rem;
  font-family: 'Din-B';
  background-image: linear-gradient(top, #d71219, transparent);
  background-image: linear-gradient(to bottom, #d71219, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.soluTitle .cn {
  margin: 0;
  font-weight: bold;
  font-size: var(--fs60);
  line-height: 0.64rem;
  color: #000;
}
.soluTitle .en {
  margin: 3px 0 0;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #ccc;
  font-family: 'Poppins-L';
  text-transform: uppercase;
}
.solutionP1 {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 0;
}
.solutionP1 .zi {
  margin: 0.6rem 0 0.3rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  text-indent: 3px;
  background-image: linear-gradient(top, #000, #919191);
  background-image: linear-gradient(to bottom, #000, #919191);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutionP1 .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #1c1d25;
  padding-bottom: 0.6rem;
}
.solutionP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.solutionP1 .list li {
  width: calc((100% - 0.6rem) / 4);
  margin-right: 0.2rem;
  padding: 0.15rem 0.3rem 0.3rem;
  min-height: 3.76rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.5);
  transition: All 0.5s ease;
}
.solutionP1 .list li:nth-child(4n) {
  margin-right: 0;
}
.solutionP1 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.6rem;
  margin: 0 auto;
  background: url(../img/nimg260Bg.jpg) center no-repeat;
  height: 0.56rem;
  font-size: var(--fs24);
  font-weight: bold;
  border-radius: 0.12rem;
  color: #fff;
  transition: All 0.5s ease;
}
.solutionP1 .list li .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
  text-align: center;
  margin-top: 0.15rem;
}
.solutionP1 .list li:hover {
  background: #fff;
}
.solutionP1 .list li:hover .name {
  background: #d71219;
}
.solutionP1 .videobox {
  margin-top: 1.1rem;
  width: 100%;
  height: 7.52rem;
  position: relative;
  overflow: hidden;
}
.solutionP1 .videobox .imgDiv {
  height: 7.52rem;
}
.solutionP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionP1 .videobox video {
  max-width: 100%;
  max-height: 7.52rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.solutionP1 .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
}
.solutionP1 .videobox.cur {
  background: #000;
}
.solutionP1 .videobox.cur .imgDiv,
.solutionP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.solutionP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.ultra-gradient-wrapper {
  width: 100%;
  height: 100%;
  background-color: #fff;
  justify-content: center;
  align-items: flex-start;
  font-size: 1vw;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}
.main-shapes-wrapper {
  filter: blur(120px);
}
.blending-group-wrapper {
  z-index: 1;
  filter: blur(120px);
  mix-blend-mode: overlay;
}
.main-shapes-wrapper div,
.blending-group-wrapper div {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.shape-3 {
  width: 53em;
  height: 100em;
  background-color: #dfebf4;
  border-radius: 999em;
  position: absolute;
  top: -19.8em;
  left: -26em;
  right: 0;
  transform: rotate(-28deg);
}
.shape-2 {
  width: 43em;
  height: 40em;
  background-color: #a3bbd8;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  top: 10em;
  left: -22.4em;
  right: 0;
}
.shape-3,
.shape-5 {
  animation: myfirst 10s linear 0s infinite normal;
  -moz-animation: myfirst 10s linear 0s infinite normal;
  -webkit-animation: myfirst 10s linear 0s infinite normal;
  -o-animation: myfirst 10s linear 0s infinite normal;
}
.shape-2,
.shape-4 {
  animation: myfirst2 10s linear 0s infinite normal;
  -moz-animation: myfirst2 10s linear 0s infinite normal;
  -webkit-animation: myfirst2 10s linear 0s infinite normal;
  -o-animation: myfirst2 10s linear 0s infinite normal;
}
.solutionP2 {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1.4rem;
}
.solutionP2 .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: #1c1d25;
  padding: 0.6rem 0;
}
.solutionP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.solutionP2 .list li {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
  padding: 0.3rem 0.4rem 0.3rem;
  min-height: 5.76rem;
  border-radius: 0.16rem;
  background: #fff;
  transition: All 0.5s ease;
}
.solutionP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.solutionP2 .list li .name {
  line-height: 0.42rem;
  font-size: var(--fs30);
  font-weight: bold;
  color: #d71219;
}
.solutionP2 .list li .zi {
  position: relative;
  font-size: var(--fs24);
  padding-bottom: 0.1rem;
  line-height: 0.36rem;
  color: #333;
}
.solutionP2 .list li .zi::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #d71219;
}
.solutionP2 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  margin-top: 0.3rem;
}
.solutionP2 .list li:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.shape-4 {
  width: 53em;
  height: 50em;
  background-color: #dfebf4;
  border-radius: 999em;
  position: absolute;
  bottom: -14rem;
  left: -26em;
  right: 0;
  transform: rotate(-28deg);
}
.shape-5 {
  width: 43em;
  height: 40em;
  background-color: #a3bbd8;
  border-radius: 999em;
  margin-left: auto;
  position: absolute;
  bottom: -63em;
  left: -22.4em;
  right: 0;
}
.solutionP3 {
  padding-bottom: 1.9rem;
}
.solutionP3 .mxfDiv {
  padding: 1rem 0 0.58rem;
  position: sticky;
  top: 0;
}
.solutionP3 .zi {
  margin-top: 0.3rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  text-indent: 3px;
  background-image: linear-gradient(top, #000, #919191);
  background-image: linear-gradient(to bottom, #000, #919191);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutionP3 .item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 3;
  will-change: top;
  transform: translateZ(0);
}
.solutionP3 .item .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #f8fafc;
}
.solutionP3 .item .imgDiv {
  width: 50%;
  height: 4.7rem;
  overflow: hidden;
}
.solutionP3 .item .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionP3 .item .conDiv {
  width: 50%;
  padding: 0 1rem;
}
.solutionP3 .item .conDiv .ico {
  margin-bottom: 0.24rem;
}
.solutionP3 .item .conDiv .ico img {
  width: 0.7rem;
}
.solutionP3 .item .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  margin-bottom: 0.1rem;
}
.solutionP3 .item .conDiv .name em {
  color: #d71219;
}
.solutionP3 .item .conDiv .wen {
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.solutionP3 .item:nth-child(even) .imgDiv {
  order: 1;
}
.solutionP4 {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 0;
}
.solutionP4 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.solutionP4 .soluTitle .cn {
  color: #fff;
}
.installPic {
  margin-top: 0.5rem;
  position: relative;
  padding-bottom: 1.2rem;
}
.installPic .imgList {
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.installPic .swiper-slide {
  width: auto;
}
.installPic .swiper-slide .box {
  background: #fff;
  border-radius: 0.16rem;
  width: 3.6rem;
  height: 3.92rem;
  padding: 0.75rem 0.6rem 0;
}
.installPic .swiper-slide .ico {
  margin: 0 auto;
  width: 0.42rem;
  height: 0.75rem;
}
.installPic .swiper-slide .ico img {
  width: 100%;
}
.installPic .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #000;
  font-weight: bold;
}
.installPic .swiper-slide .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
}
.installPic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.installPic .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.installPic .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 2px;
  background-color: #e1e6e7;
}
.installPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #d71219;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.installPic .num1,
.installPic .num2 {
  font-family: 'Poppins-L';
  font-size: var(--fs14);
  color: #fff;
  width: 24px;
  text-align: center;
}
.installPic .num1 {
  padding-right: 0.08rem;
  color: #d71219;
}
.installPic .num2 {
  padding-left: 0.08rem;
}
.installPic .arrowDiv {
  margin-right: 0.3rem;
}
.installPic .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.2rem;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border: #c3c4c5 solid 1px;
  border-radius: 50%;
}
.installPic .arrowDiv .se:hover {
  border: #d71219 solid 1px;
  background: #d71219;
}
.installPic .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_lefton.png) no-repeat;
}
.installPic .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/nimg7_righton.png) no-repeat;
}
.solutionP5 {
  padding: 0.5rem 0 1.5rem;
  background: url(../img/solutionP5.jpg) center no-repeat;
  background-size: cover;
}
.solutionP5 .soluTitle {
  margin-bottom: 0.8rem;
}
.solutionP5 .mxfDiv {
  padding: 1.3rem 0.7rem 1.1rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.8);
}
.solutionP5 .baozhe {
  position: relative;
}
.solutionP5 .arrowlist li {
  position: absolute;
  top: 42%;
  width: 0.25rem;
  height: 0.25rem;
  background: #d71219 url(../img/ico8.png) center no-repeat;
  background-size: 0.09rem;
  border-radius: 50%;
}
.solutionP5 .arrowlist li:nth-child(1) {
  left: 17%;
}
.solutionP5 .arrowlist li:nth-child(2) {
  left: 38.5%;
}
.solutionP5 .arrowlist li:nth-child(3) {
  left: 60%;
}
.solutionP5 .arrowlist li:nth-child(4) {
  left: 81.5%;
}
.solutionP5 .tab2 ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.solutionP5 .tab2 li {
  width: 1.98rem;
}
.solutionP5 .tab2 li .num {
  text-align: center;
  opacity: 0.2;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
  background-image: linear-gradient(top, #228dff, transparent);
  background-image: linear-gradient(to bottom, #228dff, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutionP5 .tab2 li .round {
  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;
  width: 100%;
  height: 1.98rem;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 0.18rem rgba(13, 131, 255, 0.05);
  transition: All 0.5s ease;
}
.solutionP5 .tab2 li .ico img {
  width: 0.58rem;
  transition: All 0.5s ease;
}
.solutionP5 .tab2 li .name {
  margin-top: 0.12rem;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  transition: All 0.5s ease;
}
.solutionP5 .tab2 .liNow .round {
  background: #d71219;
}
.solutionP5 .tab2 .liNow .ico img {
  filter: brightness(0) invert(1);
}
.solutionP5 .tab2 .liNow .name {
  color: #fff;
}
.solutionP5 .tabContentDiv2 {
  padding: 0.5rem 0.8rem 0;
}
.solutionP5 .tabContentDiv2 .msg {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.solutionP5 .tabContentDiv2 .msg em {
  font-size: var(--fs24);
  color: #d71219;
  padding-right: 0.1rem;
  font-family: 'Din-B';
}
.solutionP6 {
  padding: 0.9rem 0 1.4rem;
  background: #f5f6f7;
}
.successCase {
  margin-top: 0.6rem;
  position: relative;
}
.successCase .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.successCase .imgList li .box {
  transition: All 0.5s ease;
}
.successCase .imgList li .imgDiv {
  height: 3.12rem;
  overflow: hidden;
}
.successCase .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.successCase .imgList li .botDiv {
  position: relative;
  height: 2.4rem;
  padding: 0.25rem 0.4rem 0;
  background: #fff;
  transition: All 0.5s ease;
}
.successCase .imgList li .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ee1f25;
  transition: All 0.5s ease;
}
.successCase .imgList li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs24);
  font-weight: bold;
  line-height: 0.36rem;
}
.successCase .imgList li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.06rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
}
.successCase .imgList li:hover .box {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.successCase .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.successCase .imgList li:hover .botDiv {
  background: #fff;
}
.successCase .imgList li:hover .botDiv::after {
  width: 100%;
}
.successCase .se {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: #fff;
  border: #d71219 solid 1px;
}
.successCase .se:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(90deg, #ef3d22 0%, #ee1d23 100%);
  background-blend-mode: normal, normal;
}
.successCase .prev {
  left: 50%;
  margin-left: -8.6rem;
}
.successCase .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(../img/nimg12_left.png) no-repeat;
}
.successCase .prev:hover::after {
  background: url(../img/nimg12_lefton.png) no-repeat;
}
.successCase .next {
  right: 50%;
  margin-right: -8.6rem;
}
.successCase .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(../img/nimg12_right.png) no-repeat;
}
.successCase .next:hover::after {
  background: url(../img/nimg12_righton.png) no-repeat;
}
.solutionP7 {
  position: relative;
  overflow: hidden;
  padding-top: 0.95rem;
}
.solutionP7 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.solutionP7 .soluTitle {
  margin-bottom: 0.9rem;
}
.promise {
  position: relative;
}
.promise .list .mxfDiv {
  position: relative;
  padding-bottom: 1.9rem;
}
.promise .list .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.promise .list .bg {
  position: absolute;
  left: 0;
  bottom: -5.48rem;
  width: 8.76rem;
  height: 5.48rem;
  background: url(../img/nimg876Bg.png) no-repeat;
  background-size: 100%;
  transition: All 1s ease;
}
.promise .list .leftDiv {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 1.5rem;
  z-index: 1;
}
.promise .list .leftDiv .en {
  width: 7rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-family: 'Din-B';
  -webkit-text-stroke: 0.5px white;
  text-stroke: 1px white;
  text-transform: uppercase;
  color: transparent;
}
.promise .list .leftDiv .cn {
  padding-top: 0.15rem;
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-weight: bold;
}
.promise .list .rightDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 50%;
  min-height: 3.76rem;
  padding: 0 0.9rem;
  float: right;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.08);
}
.promise .list .rightDiv .content {
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.promise .list .rightDiv .content em {
  color: #d71219;
  font-size: var(--fs24);
}
.promise .list .swiper-slide-active .bg {
  bottom: 0;
}
.promise .swiper-pagination {
  width: auto;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.6rem;
  bottom: auto;
  z-index: 2;
}
.promise .swiper-pagination-bullet {
  float: left;
  position: relative;
  width: 14px;
  height: 14px;
  opacity: 1;
  background: none;
  border: #fff solid 2px;
  border-radius: 50%;
  margin-left: 0!important;
  margin-right: 0.12rem !important;
  overflow: hidden;
}
.promise .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1600px) {
  .promise .list .leftDiv {
    margin-left: -8rem;
  }
  .promise .swiper-pagination {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .soluTitle .num {
    font-size: var(--fs48);
    line-height: 0.72rem;
  }
  .soluTitle .cn {
    font-size: var(--fs26);
    line-height: 0.72rem;
  }
  .soluTitle .en {
    margin: 0;
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .solutionP1 .zi {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .solutionP1 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .solutionP1 .list ul {
    display: block;
  }
  .solutionP1 .list li {
    width: 100%;
    margin-right: 0;
    padding: 0.2rem 0.3rem 0.3rem;
    min-height: 3rem;
    border-radius: 0.2rem;
    background: #f6f6f6;
    margin-bottom: 0.3rem;
  }
  .solutionP1 .list li:last-child {
    margin-bottom: 0;
  }
  .solutionP1 .list li .name {
    width: 85%;
    background-size: cover;
    height: 0.84rem;
    font-size: var(--fs17);
    border-radius: 0.16rem;
  }
  .solutionP1 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.25rem;
  }
  .solutionP1 .list li:hover {
    background: #f6f6f6;
  }
  .solutionP1 .videobox {
    margin-top: 0.7rem;
    height: 4.2rem;
  }
  .solutionP1 .videobox .imgDiv {
    height: 4.2rem;
  }
  .solutionP1 .videobox video {
    max-height: 4.2rem;
  }
  .solutionP1 .videobox .playbox {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: -0.7rem;
    margin-top: -0.7rem;
  }
  .solutionP1 .videobox .playbox img {
    width: 0.86rem;
  }
  .solutionP2 {
    padding: 0.8rem 0 1rem;
  }
  .solutionP2 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .solutionP2 .list ul {
    display: block;
  }
  .solutionP2 .list li {
    width: 100%;
    margin-right: 0;
    padding: 0.45rem 0.4rem 0.3rem;
    min-height: 3rem;
    border-radius: 0.2rem;
    margin-bottom: 0.3rem;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  }
  .solutionP2 .list li:last-child {
    margin-bottom: 0;
  }
  .solutionP2 .list li .name {
    line-height: 0.64rem;
    font-size: var(--fs18);
  }
  .solutionP2 .list li .zi {
    font-size: var(--fs16);
    padding-bottom: 0.2rem;
    line-height: 0.48rem;
  }
  .solutionP2 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP3 {
    padding-bottom: 1rem;
  }
  .solutionP3 .mxfDiv {
    padding: 0.5rem 0 0.6rem;
    position: relative;
    top: auto;
  }
  .solutionP3 .zi {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .solutionP3 .item {
    position: relative;
    padding: 0;
    height: auto;
    top: 0!important;
    margin-bottom: 0.3rem;
  }
  .solutionP3 .item .baozhe {
    display: block;
  }
  .solutionP3 .item .imgDiv {
    width: 100%;
    height: 4.2rem;
  }
  .solutionP3 .item .conDiv {
    width: 100%;
    padding: 0.6rem 0.3rem;
  }
  .solutionP3 .item .conDiv .ico img {
    width: 0.9rem;
  }
  .solutionP3 .item .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .solutionP3 .item .conDiv .wen {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .installPic {
    padding-bottom: 1.4rem;
  }
  .installPic .imgList {
    width: 100%;
    position: relative;
  }
  .installPic .swiper-slide {
    width: auto;
  }
  .installPic .swiper-slide .box {
    border-radius: 0.2rem;
    width: 100%;
    height: 4.8rem;
    padding: 0.6rem 0.35rem;
  }
  .installPic .swiper-slide .ico {
    width: 0.9rem;
    height: 1.4rem;
  }
  .installPic .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .installPic .swiper-slide .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .installPic .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .installPic .swiper-pagination {
    width: 2.2rem;
  }
  .installPic .num1,
  .installPic .num2 {
    width: 0.48rem;
  }
  .installPic .num1 {
    padding-right: 0.1rem;
  }
  .installPic .num2 {
    padding-left: 0.1rem;
  }
  .installPic .arrowDiv {
    margin-right: 0.2rem;
  }
  .installPic .arrowDiv .se {
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .solutionP5 {
    padding: 0.9rem 0 1rem;
  }
  .solutionP5 .soluTitle {
    margin-bottom: 0.7rem;
  }
  .solutionP5 .mxfDiv {
    padding: 0.8rem 0.2rem;
    border-radius: 0.24rem;
  }
  .solutionP5 .arrowlist {
    display: none;
  }
  .solutionP5 .tab2 ul {
    display: block;
  }
  .solutionP5 .tab2 ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .solutionP5 .tab2 li {
    float: left;
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
  .solutionP5 .tab2 li .num {
    opacity: 0.5;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .solutionP5 .tab2 li .round {
    margin: 0 auto;
    width: 1.8rem;
    height: 1.8rem;
  }
  .solutionP5 .tab2 li .ico img {
    width: 0.6rem;
  }
  .solutionP5 .tab2 li .name {
    margin-top: 0.08rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .solutionP5 .tab2 li:nth-child(4),
  .solutionP5 .tab2 li:nth-child(5) {
    width: 50%;
  }
  .solutionP5 .tabContentDiv2 {
    padding: 0.5rem 0.2rem 0;
  }
  .solutionP5 .tabContentDiv2 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP5 .tabContentDiv2 .msg em {
    font-size: var(--fs22);
  }
  .solutionP6 {
    padding: 0.9rem 0 1rem;
  }
  .successCase .imgList {
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  .successCase .imgList li .imgDiv {
    height: 4.2rem;
  }
  .successCase .imgList li .botDiv {
    height: 2.65rem;
    padding: 0.25rem 0.3rem 0;
  }
  .successCase .imgList li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .successCase .imgList li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .successCase .se {
    top: 35%;
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .successCase .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .successCase .next {
    right: 0.3rem;
    margin-right: 0;
  }
  .solutionP7 {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
  .solutionP7 .soluTitle {
    margin-bottom: 0.7rem;
  }
  .promise .list .mxfDiv {
    padding-bottom: 0.8rem;
  }
  .promise .list .bg {
    display: none;
    position: absolute;
    left: 0;
    bottom: -5.48rem;
    width: 8.76rem;
    height: 5.48rem;
    background: url(../img/nimg876Bg.png) no-repeat;
    background-size: 100%;
    transition: All 1s ease;
  }
  .promise .list .leftDiv {
    padding-bottom: 0.5rem;
    position: relative;
    left: 0;
    margin-left: 0;
    bottom: 0;
  }
  .promise .list .leftDiv .en {
    width: auto;
    -webkit-text-stroke: 0.5px gray;
    text-stroke: 1px gray;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .promise .list .leftDiv .cn {
    font-size: var(--fs22);
    color: #333;
  }
  .promise .list .rightDiv {
    width: 100%;
    min-height: 3.5rem;
    padding: 0 0.3rem;
    float: none;
    border-radius: 0.24rem;
  }
  .promise .list .rightDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .promise .list .rightDiv .content em {
    font-size: var(--fs20);
  }
  .promise .swiper-pagination {
    width: 100%;
    left: 0;
    margin-left: 0;
    top: auto;
    bottom: 0;
  }
  .promise .swiper-pagination-bullet {
    float: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 5px!important;
    margin-right: 5px!important;
    border: #d71219 solid 2px;
  }
  .promise .swiper-pagination-bullet-active {
    background: #d71219;
  }
}
.aboutP1 {
  padding: 1.3rem 0 1.4rem;
}
.aboutP1 .midmid {
  position: relative;
  padding-bottom: 2.3rem;
  overflow: hidden;
}
.aboutP1 .midmid::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 45.72%;
  height: 100%;
  background: #f6f7f9;
}
.aboutP1 .leftDiv {
  position: relative;
  z-index: 1;
  padding-top: 0.52rem;
  width: 7.76rem;
}
.aboutP1 .leftDiv .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
}
.aboutP1 .leftDiv .content {
  margin-top: 0.28rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: justify;
}
.aboutP1 .numList {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  width: 6.12rem;
}
.aboutP1 .numList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP1 .numList li {
  width: 50%;
  position: relative;
  padding-left: 0.7rem;
  color: #666;
  font-size: var(--fs18);
  margin-bottom: 0.5rem;
}
.aboutP1 .numList li .ico {
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.aboutP1 .numList li .ico img {
  width: 0.57rem;
}
.aboutP1 .numList li .pj {
  display: flex;
  height: 0.68rem;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num i {
  font-size: var(--fs30);
  line-height: 0.32rem;
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(../img/nimg16_2.png) no-repeat;
}
.aboutP1 .numList li .numUp {
  font-size: 0.8rem;
  line-height: 0.64rem;
  padding-right: 0.12rem;
  color: #d71219;
  font-family: "Din-B";
}
.aboutP1 .numList li .wen {
  margin-top: 0.12rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.aboutP1 .videobox {
  margin-top: -0.56rem;
  width: 100%;
  height: 7.52rem;
  position: relative;
  overflow: hidden;
}
.aboutP1 .videobox .imgDiv {
  height: 7.52rem;
}
.aboutP1 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP1 .videobox video {
  max-width: 100%;
  max-height: 7.52rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.aboutP1 .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
}
.aboutP1 .videobox.cur {
  background: #000;
}
.aboutP1 .videobox.cur .imgDiv,
.aboutP1 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.aboutP1 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.aboutP2 {
  padding: 1.4rem 0;
  overflow: hidden;
  background: #f6f7f9;
}
.environment {
  position: relative;
}
.environment .imgList {
  overflow: hidden;
}
.environment .imgList .imgDiv {
  height: 4.76rem;
}
.environment .imgList .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.environment .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
  border: #d71219 solid 2px;
  background: #fff;
}
.environment .se:hover {
  border: transparent solid 2px;
  background-image: linear-gradient(90deg, #e2231b 0%, #e2231b 100%);
  background-blend-mode: normal, normal;
}
.environment .prev {
  left: 50%;
  margin-left: -8.54rem;
}
.environment .prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/left1.svg) center no-repeat;
  background-size: 16px;
}
.environment .prev:hover::after {
  background: url(../img/left2.svg) center no-repeat;
  background-size: 16px;
}
.environment .next {
  right: 50%;
  margin-right: -8.54rem;
}
.environment .next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/right1.svg) center no-repeat;
  background-size: 16px;
}
.environment .next:hover::after {
  background: url(../img/right2.svg) center no-repeat;
  background-size: 16px;
}
.aboutP3 .toptop {
  position: relative;
  padding-top: 1.4rem;
  height: 7.5rem;
  overflow: hidden;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.aboutP3 .pageTitle {
  text-align: center;
}
.aboutP3 .pageTitle::after {
  left: 50%;
  margin-left: -0.17rem;
}
.aboutP3 .pageTitle .en {
  background-image: -webkit-linear-gradient(top, #fff, transparent);
  background-image: linear-gradient(to bottom, #fff, transparent);
}
.aboutP3 .pageTitle .cn {
  color: #fff;
}
.aboutP3 .name {
  text-align: center;
  margin-top: 1rem;
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #fff;
  font-weight: bold;
}
.aboutP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP3 .list li {
  width: 33.33%;
  padding: 1.35rem 1.2rem 0;
  min-height: 4.46rem;
  background: #f2f2f2;
  text-align: center;
}
.aboutP3 .list li:nth-child(even) {
  background: #fdfdfd;
}
.aboutP3 .list li .ico {
  height: 0.86rem;
}
.aboutP3 .list li .ico img {
  width: 0.75rem;
}
.aboutP3 .list li .zi {
  font-size: var(--fs30);
  line-height: 0.42rem;
  font-weight: bold;
  color: #333;
}
.aboutP3 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
}
.aboutP4 {
  overflow: hidden;
  padding: 1.3rem 0 1.4rem;
  background: url(../img/historyBg.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP4 .pageTitle {
  text-align: center;
}
.aboutP4 .pageTitle::after {
  left: 50%;
  margin-left: -0.17rem;
}
.brand-wrapper-3 {
  position: relative;
}
.brand-wrapper-3 .box-container {
  position: relative;
  z-index: 1;
}
.brand-wrapper-3 .swiperbtn {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  outline: none;
  top: 58%;
  border-radius: 50%;
  margin-top: -0.25rem;
  border: #d71219 solid 2px;
  background: #fff;
}
.brand-wrapper-3 .swiperbtn:hover {
  border: transparent solid 2px;
  background-image: linear-gradient(90deg, #e2231b 0%, #e2231b 100%);
  background-blend-mode: normal, normal;
}
.brand-wrapper-3 .prev {
  left: 50%;
  margin-left: -8.54rem;
}
.brand-wrapper-3 .prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/left1.svg) center no-repeat;
  background-size: 16px;
}
.brand-wrapper-3 .prev:hover::after {
  background: url(../img/left2.svg) center no-repeat;
  background-size: 16px;
}
.brand-wrapper-3 .next {
  right: 50%;
  margin-right: -8.54rem;
}
.brand-wrapper-3 .next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/right1.svg) center no-repeat;
  background-size: 16px;
}
.brand-wrapper-3 .next:hover::after {
  background: url(../img/right2.svg) center no-repeat;
  background-size: 16px;
}
.brand-wrapper-3 .swiper-box {
  padding-top: 1.2rem;
  position: relative;
}
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide {
  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 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide-active .conDiv,
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide-active .rightDiv {
  display: block;
}
.brand-wrapper-3 .conDiv {
  width: 50%;
  display: none;
  overflow: hidden;
  min-height: 4.7rem;
  transition: All 0.5s ease;
}
.brand-wrapper-3 .conDiv .year {
  color: #d71219;
  font-size: var(--fs72);
  line-height: 0.72rem;
}
.brand-wrapper-3 .conDiv .msg {
  margin-top: 0.1rem;
}
.brand-wrapper-3 .conDiv .msg dd {
  position: relative;
  padding-left: 0.24rem;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.brand-wrapper-3 .conDiv .msg dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  box-sizing: border-box;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  border: #d71219 solid 0.02rem;
}
.brand-wrapper-3 .rightDiv {
  display: none;
  width: 50%;
  transition: All 0.5s ease;
}
.brand-wrapper-3 .year-box {
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}
.brand-wrapper-3 .year-box .swiper-container {
  padding: 0 calc((100% - 15.36rem) / 2);
}
.brand-wrapper-3 .year-box .swiper-slide {
  position: relative;
  font-family: "Poppins-L";
  font-size: var(--fs18);
  line-height: 24px;
  text-align: center;
  color: #666;
  cursor: pointer;
  padding-bottom: 0.25rem;
}
.brand-wrapper-3 .year-box .swiper-slide em {
  position: absolute;
  left: 50%;
  margin-left: -0.1rem;
  bottom: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: #fff;
  box-shadow: 0 0 0.14rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.brand-wrapper-3 .year-box .swiper-slide em::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.08rem;
  height: 0.08rem;
  margin-left: -0.04rem;
  margin-top: -0.04rem;
  background: #d9d9d9;
  border-radius: 50%;
}
.brand-wrapper-3 .year-box .on {
  font-size: var(--fs30);
  color: #d71219;
}
.brand-wrapper-3 .year-box .on em {
  border: #fff solid 1px;
  background: #fff;
}
.brand-wrapper-3 .year-box .on em::after {
  width: 0.14rem;
  height: 0.14rem;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
  background: #d71219;
}
.brand-wrapper-3 .swiper-pagination {
  cursor: pointer;
  width: 100%;
  position: relative;
  margin-top: -0.1rem;
  left: 0;
  top: 0;
  height: 1px;
  z-index: 0;
  background-color: #cbcbcb;
  border-radius: 0;
}
.brand-wrapper-3 .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #d71219;
  border-radius: 0;
  top: -1px;
  position: absolute;
  left: 0;
  z-index: 10;
  transform-origin: left center;
}
.live-action {
  position: relative;
  overflow: hidden;
}
.live-action .imgDiv {
  width: 100%;
  height: 4.7rem;
}
.live-action .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-action .pagination {
  position: absolute;
  width: auto;
  right: 0.38rem;
  left: auto;
  bottom: 0.2rem;
  z-index: 2;
}
.live-action .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-radius: 50%;
  background: #d3d5d5;
  margin-left: 5px!important;
  margin-right: 5px!important;
}
.live-action .swiper-pagination-bullet-active {
  background: #d71219;
}
.aboutP5 {
  padding-top: 0.9rem;
  height: 9.14rem;
  background: url(../img/aboutP5.jpg) center no-repeat;
  background-size: cover;
}
.aboutP5 .pageTitle {
  text-align: center;
}
.aboutP5 .pageTitle::after {
  left: 50%;
  margin-left: -0.17rem;
}
.aboutP5 .secondTab {
  padding-top: 0.4rem;
  text-align: center;
}
.aboutP5 .secondTab li {
  display: inline-block;
  margin: 0 0.5rem;
  cursor: pointer;
}
.aboutP5 .secondTab li .ico {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: #e5e5e5 solid 1px;
  background: #fff;
}
.aboutP5 .secondTab li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.3rem;
  margin-left: -0.15rem;
  margin-top: -0.15rem;
}
.aboutP5 .secondTab li .name {
  margin-top: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.2rem;
  color: #999;
}
.aboutP5 .secondTab .on .ico {
  border: #d71219 solid 1px;
  background: #d71219;
}
.aboutP5 .secondTab .on .ico img {
  filter: brightness(0) invert(1);
}
.aboutP5 .secondTab .on .name {
  color: #333;
}
.honorPic {
  display: none;
  margin-top: 0.5rem;
  position: relative;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .box {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.honorPic .mxfDiv {
  min-width: 3.6rem;
  height: 3.35rem;
  position: relative;
}
.honorPic .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.honorPic .imgDiv img {
  max-width: 3.6rem;
  max-height: 3.35rem;
}
.honorPic .name {
  width: 3.6rem;
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-align: center;
  color: #333;
}
.honorPic .arrowDiv .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
  border: #d71219 solid 2px;
  background: #fff;
}
.honorPic .arrowDiv .se:hover {
  border: transparent solid 2px;
  background-image: linear-gradient(90deg, #e2231b 0%, #e2231b 100%);
  background-blend-mode: normal, normal;
}
.honorPic .arrowDiv .prev {
  left: 50%;
  margin-left: -8.54rem;
}
.honorPic .arrowDiv .prev::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/left1.svg) center no-repeat;
  background-size: 16px;
}
.honorPic .arrowDiv .prev:hover::after {
  background: url(../img/left2.svg) center no-repeat;
  background-size: 16px;
}
.honorPic .arrowDiv .next {
  right: 50%;
  margin-right: -8.54rem;
}
.honorPic .arrowDiv .next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  background: url(../img/right1.svg) center no-repeat;
  background-size: 16px;
}
.honorPic .arrowDiv .next:hover::after {
  background: url(../img/right2.svg) center no-repeat;
  background-size: 16px;
}
.aboutP6 {
  overflow: hidden;
  position: relative;
  padding: 1.4rem 0;
}
.aboutP6::after {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.aboutP6::before {
  content: "";
  width: 2.3rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.aboutP6 .toptop {
  position: relative;
  z-index: 3;
  margin-bottom: 0.55rem;
}
.aboutP6 .toptop .wrap {
  position: relative;
}
.aboutP6 .links {
  position: absolute;
  right: 0;
  top: 0.9rem;
}
.aboutP6 .links li {
  float: left;
  margin-left: 0.1rem;
}
.aboutP6 .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.8rem;
  height: 0.4rem;
  border: #999 solid 1px;
  color: #999;
  font-size: var(--fs16);
  border-radius: 0.48rem;
}
.aboutP6 .links li .on {
  color: #d71219;
  border: #d71219 solid 1px;
}
.aboutP6 .moreBtn {
  margin: 0 auto;
  width: 1.82rem;
}
.aboutP6 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border: #d71219 solid 1px;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #666;
  font-size: var(--fs16);
}
.aboutP6 .moreBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../img/ico4on.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP6 .moreBtn a:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(180deg, #ec311e 0%, #d71219 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.aboutP6 .moreBtn a:hover em {
  background: url(../img/ico4.png) no-repeat;
}
.aboutP6 .leftScroll .list li,
.aboutP6 .rightScroll .list li {
  float: left;
  padding: 0.1rem 0 0.8rem;
  cursor: pointer;
}
.aboutP6 .leftScroll .list li .box,
.aboutP6 .rightScroll .list li .box {
  margin: 0 0.1rem;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP6 .leftScroll .list li .box .limg,
.aboutP6 .rightScroll .list li .box .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 1.2rem;
  width: 2.3rem;
  border-radius: 4px;
  border: #e5e1e1 solid 1px;
}
.aboutP6 .leftScroll .list li .box .limg img,
.aboutP6 .rightScroll .list li .box .limg img {
  max-width: 1.6rem;
  max-height: 1rem;
}
.aboutP6 .leftScroll .list li .box .border-svg,
.aboutP6 .rightScroll .list li .box .border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.aboutP6 .leftScroll .list li .box .border-path,
.aboutP6 .rightScroll .list li .box .border-path {
  fill: none;
  stroke: #1f4590;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s ease-in-out;
  opacity: 0;
}
.aboutP6 .leftScroll .list li .box:hover,
.aboutP6 .rightScroll .list li .box:hover {
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.15);
}
.aboutP6 .leftScroll .list li .box:hover .border-path,
.aboutP6 .rightScroll .list li .box:hover .border-path {
  opacity: 1;
  stroke-dashoffset: 0;
}
.aboutP6 .leftScroll .list li .name,
.aboutP6 .rightScroll .list li .name {
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: 0.48rem;
  overflow: hidden;
  z-index: 1;
}
.aboutP6 .leftScroll .list li:hover .name,
.aboutP6 .rightScroll .list li:hover .name {
  opacity: 1;
  visibility: visible;
  bottom: -0.75rem;
}
.tempWrap {
  width: 100%!important;
}
.aboutP7 {
  padding: 1.3rem 0 1.4rem;
  background: #f5f5f5;
}
.aboutP7 .pageTitle {
  text-align: center;
  margin-bottom: 0.5rem;
}
.aboutP7 .pageTitle::after {
  left: 50%;
  margin-left: -0.17rem;
}
.aboutP7 .imgList {
  overflow: hidden;
}
.aboutP7 .imgList li a {
  display: block;
  padding: 0.6rem 0.55rem 0;
  height: 5.7rem;
  background: #fff;
}
.aboutP7 .imgList li a .imgDiv {
  height: 2.5rem;
  overflow: hidden;
}
.aboutP7 .imgList li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.aboutP7 .imgList li a .time {
  margin-top: 0.32rem;
  line-height: 0.28rem;
  font-size: var(--fs16);
  color: #999;
  font-family: 'Mont-B';
}
.aboutP7 .imgList li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333;
  transition: All 0.5s ease;
}
.aboutP7 .imgList li a .ico {
  margin-top: 0.23rem;
  width: 0.47rem;
  height: 0.32rem;
  border-radius: 0.48rem;
  border: #999 solid 1px;
  background: url(../img/ico9.png) center no-repeat;
  transition: All 0.5s ease;
}
.aboutP7 .imgList li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.aboutP7 .imgList li a:hover .name {
  color: #d71219;
}
.aboutP7 .imgList li a:hover .ico {
  border: #d71219 solid 1px;
  background: #d71219 url(../img/ico9on.png) center no-repeat;
}
.aboutP7 .swiper-pagination {
  margin-top: 0.4rem;
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #eaeaea;
  border-radius: 4px;
  z-index: 1;
}
.aboutP7 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #d71219;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  transform-origin: left center;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP1 .pageTitle {
    margin-bottom: 0.7rem;
  }
  .aboutP1 .midmid {
    padding-bottom: 0.8rem;
  }
  .aboutP1 .midmid::after {
    width: 100%;
  }
  .aboutP1 .leftDiv {
    padding-top: 0.8rem;
    width: auto;
    float: none;
  }
  .aboutP1 .leftDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP1 .leftDiv .content {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .numList {
    padding-top: 0.6rem;
    width: auto;
  }
  .aboutP1 .numList li {
    padding-left: 0.8rem;
    font-size: var(--fs14);
    margin-bottom: 0.4rem;
  }
  .aboutP1 .numList li .ico {
    top: 0.1rem;
  }
  .aboutP1 .numList li .ico img {
    width: 0.7rem;
  }
  .aboutP1 .numList li .pj {
    display: flex;
    height: 0.68rem;
    align-items: flex-end;
    -webkit-align-items: flex-end;
  }
  .aboutP1 .numList li .num i {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP1 .numList li .num span {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .aboutP1 .numList li .numUp {
    font-size: var(--fs30);
    line-height: 0.56rem;
  }
  .aboutP1 .numList li .wen {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP1 .videobox {
    margin-top: 0.7rem;
    height: 4.2rem;
  }
  .aboutP1 .videobox .imgDiv {
    height: 4.2rem;
  }
  .aboutP1 .videobox video {
    max-height: 4.2rem;
  }
  .aboutP1 .videobox .playbox {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: -0.7rem;
    margin-top: -0.7rem;
  }
  .aboutP1 .videobox .playbox img {
    width: 0.86rem;
  }
  .aboutP2 {
    padding: 1rem 0;
  }
  .environment .imgList .imgDiv {
    height: 4.2rem;
  }
  .environment .se {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .environment .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .environment .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .aboutP3 .toptop {
    padding-top: 0.9rem;
    height: 7.5rem;
    background-attachment: scroll;
  }
  .aboutP3 .pageTitle::after {
    margin-left: -0.23rem;
  }
  .aboutP3 .name {
    margin-top: 0.75rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
    padding: 0 0.3rem;
  }
  .aboutP3 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .aboutP3 .list li {
    width: 33.33%;
    padding: 0.45rem 0.2rem 0;
    min-height: 4rem;
  }
  .aboutP3 .list li .ico {
    height: 1rem;
  }
  .aboutP3 .list li .ico img {
    width: 0.86rem;
  }
  .aboutP3 .list li .zi {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .aboutP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP4 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP4 .pageTitle::after {
    margin-left: -0.23rem;
  }
  .brand-wrapper-3 .swiperbtn {
    display: none;
    width: 0.86rem;
    height: 0.86rem;
    top: 58%;
    margin-top: -0.25rem;
  }
  .brand-wrapper-3 .prev {
    left: 50%;
    margin-left: -8.54rem;
  }
  .brand-wrapper-3 .prev::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    margin-left: -3px;
    margin-top: -6px;
    background: url(../img/nimg6_left2.png) no-repeat;
  }
  .brand-wrapper-3 .prev:hover::after {
    background: url(../img/nimg6_left.png) no-repeat;
  }
  .brand-wrapper-3 .next {
    right: 50%;
    margin-right: -8.54rem;
  }
  .brand-wrapper-3 .next::after {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 6px;
    height: 11px;
    margin-right: -3px;
    margin-top: -6px;
    background: url(../img/nimg6_right2.png) no-repeat;
  }
  .brand-wrapper-3 .next:hover::after {
    background: url(../img/nimg6_right.png) no-repeat;
  }
  .brand-wrapper-3 .swiper-box {
    padding-top: 0.65rem;
  }
  .brand-wrapper-3 .swiper-box .history-swiper .swiper-slide {
    display: block;
  }
  .brand-wrapper-3 .conDiv {
    width: 100%;
    min-height: 2rem;
    padding-bottom: 0.5rem;
  }
  .brand-wrapper-3 .conDiv .year {
    font-size: var(--fs32);
    line-height: 0.86rem;
  }
  .brand-wrapper-3 .conDiv .msg dd {
    padding-left: 0.28rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .brand-wrapper-3 .conDiv .msg dd::before {
    top: 0.18rem;
    width: 6px;
    height: 6px;
    border: #d71219 solid 1px;
  }
  .brand-wrapper-3 .rightDiv {
    width: 100%;
  }
  .brand-wrapper-3 .year-box {
    margin-top: 0.5rem;
  }
  .brand-wrapper-3 .year-box .swiper-container {
    padding: 0 0.3rem;
  }
  .brand-wrapper-3 .year-box .swiper-slide {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-bottom: 0.3rem;
  }
  .brand-wrapper-3 .year-box .swiper-slide em {
    margin-left: -5px;
    width: 10px;
    height: 10px;
  }
  .brand-wrapper-3 .year-box .swiper-slide em::after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
  }
  .brand-wrapper-3 .year-box .on {
    font-size: var(--fs18);
  }
  .brand-wrapper-3 .year-box .on em::after {
    width: 0.14rem;
    height: 0.14rem;
    margin-left: -0.07rem;
    margin-top: -0.07rem;
    background: #d71219;
  }
  .brand-wrapper-3 .swiper-pagination-progressbar-fill {
    display: none;
  }
  .live-action .imgDiv {
    height: 4.2rem;
  }
  .aboutP5 {
    padding: 1rem 0;
    height: auto;
    background: #f5f6f9;
  }
  .aboutP5 .pageTitle::after {
    margin-left: -0.23rem;
  }
  .aboutP5 .secondTab ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .aboutP5 .secondTab li {
    float: left;
    width: 33.33%;
    margin: 0 0 0.3rem;
  }
  .aboutP5 .secondTab li .ico {
    width: 0.86rem;
    height: 0.86rem;
  }
  .aboutP5 .secondTab li .ico img {
    width: 0.48rem;
    margin-left: -0.24rem;
    margin-top: -0.24rem;
  }
  .aboutP5 .secondTab li .name {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .honorPic {
    margin-top: 0.3rem;
  }
  .honorPic .imgList {
    padding-bottom: 1.2rem;
  }
  .honorPic .mxfDiv {
    min-width: 2.9rem;
    height: 2.85rem;
  }
  .honorPic .imgDiv img {
    max-width: 2.9rem;
    max-height: 2.85rem;
  }
  .honorPic .name {
    width: auto;
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .honorPic .arrowDiv {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  .honorPic .arrowDiv .se {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    position: relative;
    top: auto;
    margin-top: 0;
  }
  .honorPic .arrowDiv .prev {
    left: 0;
    margin: 0 10px;
  }
  .honorPic .arrowDiv .next {
    right: 0;
    margin: 0 10px;
  }
  .aboutP6 {
    padding: 1rem 0;
  }
  .aboutP6::after {
    display: none;
  }
  .aboutP6::before {
    display: none;
  }
  .aboutP6 .toptop {
    position: relative;
    z-index: 1;
    margin-bottom: 0.55rem;
  }
  .aboutP6 .toptop .wrap {
    position: relative;
  }
  .aboutP6 .links {
    margin-top: 0.6rem;
    position: relative;
    top: 0;
  }
  .aboutP6 .links ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .aboutP6 .links li {
    float: none;
    width: 31%;
    margin-left: 0;
  }
  .aboutP6 .links li a {
    width: 100%;
    height: 0.74rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .aboutP6 .moreBtn {
    margin: 0.5rem auto 0;
    width: 2.82rem;
  }
  .aboutP6 .moreBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .aboutP6 .moreBtn a em {
    width: 12px;
    height: 11px;
    background-size: 12px;
  }
  .aboutP6 .moreBtn a:hover em {
    background-size: 12px;
  }
  .aboutP6 .leftScroll .list li,
  .aboutP6 .rightScroll .list li {
    padding: 0.1rem 0 0.2rem;
  }
  .aboutP6 .leftScroll .list li .box .limg,
  .aboutP6 .rightScroll .list li .box .limg {
    height: 1.2rem;
    width: 2.4rem;
  }
  .aboutP6 .leftScroll .list li .box .limg img,
  .aboutP6 .rightScroll .list li .box .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
  .aboutP6 .leftScroll .list li .box .border-svg,
  .aboutP6 .rightScroll .list li .box .border-svg {
    display: none;
  }
  .aboutP6 .leftScroll .list li .name,
  .aboutP6 .rightScroll .list li .name {
    display: none;
  }
  .aboutP7 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP7 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .aboutP7 .pageTitle::after {
    margin-left: -0.23rem;
  }
  .aboutP7 .imgList li a {
    padding: 0.6rem 0.45rem 0.4rem;
    height: auto;
  }
  .aboutP7 .imgList li a .imgDiv {
    height: 3.8rem;
  }
  .aboutP7 .imgList li a .time {
    margin-top: 0.25rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .aboutP7 .imgList li a .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .aboutP7 .imgList li a .ico {
    display: none;
  }
  .aboutP7 .swiper-pagination {
    height: 3px;
  }
  .aboutP7 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 3px;
  }
}
.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;
  }
}
