.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  width: 7.4rem;
  margin-left: -7.68rem;
  top: 36%;
  z-index: 2;
}
.ind-banner .onebox .cn {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.25rem;
}
.ind-banner .onebox .msg {
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #fff;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  text-align: center;
  width: 100%;
  left: 0;
  bottom: 0.3rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 2rem;
  height: 4px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 8px;
  margin-left: 8px!important;
  margin-right: 8px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transition: All 5s linear;
  -webkit-transition: All 5s linear;
  -moz-transition: All 5s linear;
  -o-transition: All 5s linear;
}
.ind-banner .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.5);
}
.ind-banner .swiper-pagination-bullet-active::after {
  width: 100%;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    top: 32%;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .onebox .msg {
    font-size: var(--fs15);
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
    width: 1rem;
  }
}
.indTitle {
  text-align: center;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #000;
}
.indexP1 {
  padding: 1.2rem 0;
}
.indexP1 .list::after {
  content: '';
  display: block;
  clear: both;
}
.indexP1 .list ul {
  margin-right: -0.2rem;
}
.indexP1 .list li {
  float: left;
  width: 60%;
  margin-top: 0.2rem;
}
.indexP1 .list li:nth-child(2),
.indexP1 .list li:nth-child(3) {
  width: 40%;
}
.indexP1 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.indexP1 .list li .box {
  position: relative;
  margin-right: 0.2rem;
  overflow: hidden;
  border-radius: 0.12rem;
}
.indexP1 .list li .box .imgDiv {
  height: 4.42rem;
  position: relative;
}
.indexP1 .list li .box .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: url(../img/bg1.png) repeat-x;
}
.indexP1 .list li .box .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;
}
.indexP1 .list li .box .layer {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  padding: 0 0.4rem;
  color: #fff;
}
.indexP1 .list li .box .type {
  line-height: 0.32rem;
  font-size: var(--fs18);
}
.indexP1 .list li .box .name {
  line-height: 0.42rem;
  font-size: var(--fs30);
}
.indexP1 .list li .box .msg {
  line-height: 0.36rem;
  font-size: var(--fs18);
}
.indexP1 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indmh {
  width: 100%;
  position: relative;
  height: 400vh;
}
.indmh::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 1;
}
.indmh-sticky {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  overflow: hidden;
}
.indmh-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.indmh-logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.indmh-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indmh-text {
  width: 100%;
  position: absolute;
  z-index: 3;
  justify-content: center;
  left: 0;
  text-align: center;
  top: 52vh;
  transition: all 1s ease;
}
.indmh-text .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #000;
  font-weight: bold;
}
.indmh-text .zz {
  margin-top: 0.6rem;
  padding-bottom: 0.72rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  background: url(../img/nimg40_1.png) center bottom no-repeat;
  background-size: 0.4rem;
}
.indmh-text.active {
  top: 60vh;
  opacity: 0;
}
.indmh-shade {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
}
.indmh-content {
  position: absolute;
  width: 100%;
  z-index: 4;
  height: 100vh;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
}
.indmh-desc {
  max-width: 6.5rem;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.indmh-num {
  width: 100%;
  color: #fff;
}
.indmh-num ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indmh-num li {
  width: 33.33%;
  font-size: var(--fs16);
}
.indmh-num li .num .indTimer {
  font-size: var(--fs72);
  line-height: 0.6rem;
  font-family: 'Poppins-R';
  margin-right: 0.1rem;
}
.indmh-num li .text {
  line-height: 0.3rem;
  max-width: 2.8rem;
  margin-top: 0.1rem;
}
.indmh-more {
  width: 1.66rem;
  margin: 0.9rem 0 1rem;
}
.indmh-more a {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  width: 100%;
  height: 0.54rem;
  border: 2px solid #fff;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
  transition: all 0.4s ease;
}
.indmh-more a em {
  margin-left: 0.1rem;
  width: 0.11rem;
  height: 0.11rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.11rem;
}
.indmh-more a:hover {
  border: #1345fa solid 2px;
  background: #1345fa;
}
.indmh .indTitle {
  text-align: left;
  color: #fff;
  margin-bottom: 0.3rem;
}
/* -- */
.indmh-content {
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease;
}
.indmh-content.active {
  opacity: 1;
  pointer-events: auto;
}
.indmh-content.active .indTitle {
  animation: indmhRun 1s ease both 0.4s;
}
.indmh-content.active .indmh-desc {
  animation: indmhRun 1s ease both 0.6s;
}
.indmh-content.active .indmh-more {
  animation: indmhRun 1s ease both 0.8s;
}
.indmh-content.active .indmh-num {
  animation: indmhRun 1s ease both 1s;
}
@keyframes indmhRun {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.indexP3 {
  padding: 1.2rem 0 0.4rem;
  background: url(../img/indexP3.png) center top no-repeat;
  background-size: 100%;
}
.indexP3 .indTitle {
  margin-bottom: 0.25rem;
}
.indexP3 .msg {
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.3rem;
  width: 6.8rem;
  margin: 0 auto 0.9rem;
}
.indScene {
  position: relative;
  padding: 0 calc((100% - 15.36rem) / 2) 0.95rem;
  overflow: hidden;
}
.indScene .swiper-slide {
  width: 6.2rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.indScene .swiper-slide .cont {
  width: 100%;
  height: 3.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: end;
  transition: all 0.4s ease;
}
.indScene .swiper-slide .cont::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background: url(../img/bg1.png) repeat-x;
  opacity: 0;
  visibility: hidden;
  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;
}
.indScene .swiper-slide .bgimg {
  width: 100%;
  height: 3.8rem;
  max-height: 3.8rem;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.indScene .swiper-slide .text {
  position: relative;
  z-index: 2;
  padding: 0 0.4rem 0.3rem;
  width: 100%;
}
.indScene .swiper-slide .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #fff;
}
.indScene .swiper-slide .zi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0;
  margin-top: 5px;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indScene .swiper-slide:hover .cont {
  height: 100%;
}
.indScene .swiper-slide:hover .cont::after {
  opacity: 1;
  visibility: visible;
}
.indScene .swiper-slide:hover .zi {
  height: 0.3rem;
}
.indScene .se {
  display: block;
  position: absolute;
  bottom: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
  z-index: 1;
  outline: none;
}
.indScene .se::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #fff;
  border-radius: 50%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indScene .prev {
  left: 50%;
  margin-left: -0.65rem;
}
.indScene .prev::before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  background: url(../img/nimg9_left.png) no-repeat;
  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;
}
.indScene .prev:hover::before {
  background: url(../img/nimg9_lefton.png) no-repeat;
}
.indScene .next {
  right: 50%;
  margin-right: -0.65rem;
}
.indScene .next::before {
  content: '';
  position: absolute;
  right: 50%;
  margin-right: -5px;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  background: url(../img/nimg9_right.png) no-repeat;
  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;
}
.indScene .next:hover::before {
  background: url(../img/nimg9_righton.png) no-repeat;
}
.indScene .se:hover::after {
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
}
.indexP4 {
  padding: 1.2rem 0 0.4rem;
}
.indexP4 .indTitle {
  margin-bottom: 0.45rem;
}
.indCase {
  position: relative;
}
.indCase .list {
  overflow: hidden;
}
.indCase .pjDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 5.6rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.indCase .imgDiv {
  width: 50%;
  height: 5.6rem;
}
.indCase .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indCase .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 50%;
  height: 100%;
  padding: 0 1rem 0 0.8rem;
  background-image: linear-gradient(145deg, #1748fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.indCase .conDiv::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5.35rem;
  height: 5.37rem;
  background: url(../img/nimg535Bg.png) no-repeat;
  background-size: contain;
}
.indCase .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: var(--fs30);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #fff;
  font-weight: bold;
}
.indCase .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  height: 1.2rem;
  text-align: justify;
}
.indCase .btnDiv {
  margin-top: 1.3rem;
  position: relative;
  z-index: 1;
}
.indCase .btnDiv dd {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs16);
}
.indCase .btnDiv dd a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.68rem;
  height: 0.54rem;
  border-radius: 0.48rem;
  border: #fff solid 2px;
  color: #fff;
}
.indCase .btnDiv dd a em {
  margin-left: 8px;
  width: 11px;
  height: 11px;
  background: url(../img/ico1.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;
}
.indCase .btnDiv dd a:hover {
  background: #fff;
  color: #1345fa;
}
.indCase .btnDiv dd a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.indCase .se {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
  z-index: 1;
}
.indCase .se::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #fff;
  border-radius: 50%;
  outline: none;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indCase .prev {
  left: 50%;
  margin-left: -8.65rem;
}
.indCase .prev::before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  background: url(../img/nimg9_left.png) no-repeat;
  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;
}
.indCase .prev:hover::before {
  background: url(../img/nimg9_lefton.png) no-repeat;
}
.indCase .next {
  right: 50%;
  margin-right: -8.65rem;
}
.indCase .next::before {
  content: '';
  position: absolute;
  right: 50%;
  margin-right: -5px;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  background: url(../img/nimg9_right.png) no-repeat;
  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;
}
.indCase .next:hover::before {
  background: url(../img/nimg9_righton.png) no-repeat;
}
.indCase .se:hover::after {
  width: 0;
  height: 0;
  left: 50%;
  top: 50%;
}
.indexP5 {
  padding: 1rem 0 1.4rem;
  background: url(../img/indexP5.png) center bottom no-repeat;
  background-size: 100%;
  overflow: hidden;
}
.indexP5 .indTitle {
  margin-bottom: 0.45rem;
}
.indexP5 .leftDiv {
  width: 68.6%;
}
.indexP5 .leftDiv ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP5 .leftDiv li {
  width: calc((100% - 0.88rem) / 2);
  margin-right: 0.44rem;
}
.indexP5 .leftDiv li a {
  width: 100%;
  display: block;
  border-radius: 0.16rem;
  overflow: hidden;
  box-shadow: 0 0 0.2rem rgba(33, 81, 250, 0.08);
}
.indexP5 .leftDiv li a .imgDiv {
  height: 3.08rem;
  overflow: hidden;
}
.indexP5 .leftDiv li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP5 .leftDiv li a .botDiv {
  padding: 0.32rem 0.4rem 0;
  height: 2.82rem;
  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;
}
.indexP5 .leftDiv li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #000;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .leftDiv li a .botDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #999;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .leftDiv li a .botDiv .look {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #26293b;
  padding-right: 0.24rem;
  background: url(../img/ico2.png) right center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .leftDiv li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP5 .leftDiv li a:hover .botDiv {
  background: #1345fa;
}
.indexP5 .leftDiv li a:hover .name,
.indexP5 .leftDiv li a:hover .content {
  color: #fff;
}
.indexP5 .leftDiv li a:hover .look {
  color: #fff;
  background: url(../img/ico1.png) right center no-repeat;
}
.indexP5 .rightDiv {
  width: 31.4%;
  border: #b1d0fc solid 1px;
  background: #fff;
  border-radius: 0.16rem;
  padding: 0.36rem 0.3rem 0;
  height: 5.9rem;
  box-shadow: 0 0 0.2rem rgba(33, 81, 250, 0.08);
}
.indexP5 .rightDiv .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  margin-bottom: 0.15rem;
}
.indexP5 .rightDiv .title {
  font-size: var(--fs20);
  line-height: 0.22rem;
  color: #000;
}
.indexP5 .rightDiv .more a {
  display: block;
  font-size: var(--fs16);
  color: #000;
  padding-right: 16px;
  line-height: 0.2rem;
  background: url(../img/ico3.png) right center no-repeat;
}
.indexP5 .rightDiv .more a:hover {
  color: #1345fa;
  background: url(../img/ico3on.png) right center no-repeat;
}
.indexP5 .rightDiv .list li a {
  padding: 0.16rem 0;
  display: block;
  position: relative;
}
.indexP5 .rightDiv .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.1rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .rightDiv .list li a .time {
  font-size: var(--fs14);
  line-height: 0.16rem;
  color: #999;
  font-family: "Poppins-R";
}
.indexP5 .rightDiv .list li a:hover .name {
  color: #1345fa;
}
.indexP6 {
  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;
  height: 2.78rem;
  background: url(../img/indexP6.jpg) center no-repeat;
  background-size: cover;
}
.indexP6 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
  margin: 0 0 0.24rem;
  text-align: center;
}
.indexP6 .btnDiv {
  width: 1.68rem;
}
.indexP6 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.54rem;
  border: #fff solid 2px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.indexP6 .btnDiv a em {
  margin-left: 8px;
  width: 11px;
  height: 11px;
  background: url(../img/ico1.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;
}
.indexP6 .btnDiv a:hover {
  background: #fff;
  color: #1345fa;
}
.indexP6 .btnDiv a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
@media (max-width: 1600px) {
  .indScene {
    padding: 0 calc((100% - 16rem) / 2) 0.95rem;
  }
  .indmh-more {
    margin: 0.35rem 0 0.7rem;
  }
  .indmh {
    height: 450vh;
  }
}
@media (max-width: 1440px) {
  .indmh {
    height: 500vh;
  }
}
@media (max-width: 1366px) {
  .indmh {
    height: 600vh;
  }
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP1 {
    padding: 0.9rem 0 0.6rem;
  }
  .indexP1 .list ul {
    margin-right: 0;
  }
  .indexP1 .list li {
    float: none;
    width: auto;
    margin-top: 0;
    margin-bottom: 0.3rem;
  }
  .indexP1 .list li:nth-child(2),
  .indexP1 .list li:nth-child(3) {
    width: auto;
  }
  .indexP1 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .indexP1 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .indexP1 .list li .box .imgDiv {
    height: 4rem;
  }
  .indexP1 .list li .box .imgDiv::after {
    height: 200px;
    background: url(../img/bg1.png) top repeat-x;
  }
  .indexP1 .list li .box .layer {
    bottom: 0.3rem;
    padding: 0 0.3rem;
  }
  .indexP1 .list li .box .type {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .indexP1 .list li .box .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .indexP1 .list li .box .msg {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .indmh {
    height: 8.36rem;
  }
  .indmh-bg {
    height: 8.36rem;
  }
  .indmh-logo {
    display: none;
  }
  .indmh-content {
    opacity: 1;
    padding-top: 0.96rem;
    height: 7.4rem;
    pointer-events: auto;
  }
  .indmh-desc {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
    overflow: hidden;
  }
  .indmh-msg {
    width: auto;
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding: 0 0.35rem;
  }
  .indmh-more {
    margin: 0.3rem 0 0.4rem;
    width: 2.2rem;
  }
  .indmh-more a {
    height: 0.86rem;
    border: #fff solid 1px;
    font-size: var(--fs14);
  }
  .indmh-more a em {
    width: 8px;
    height: 8px;
    background-size: 8px;
  }
  .indmh-num li {
    width: 33.33%;
    font-size: var(--fs14);
  }
  .indmh-num li .num .indTimer {
    font-size: var(--fs32);
    line-height: 0.64rem;
  }
  .indmh-num li .text {
    line-height: 0.42rem;
    font-size: var(--fs12);
  }
  .indmh-shade,
  .indmh-text {
    display: none;
  }
  .indexP3 {
    padding: 0.9rem var(--offset) 0.4rem;
  }
  .indexP3 .indTitle {
    margin-bottom: 0.6rem;
  }
  .indexP3 .msg {
    font-size: var(--fs14);
    line-height: 0.52rem;
    width: auto;
    margin: 0 auto 0.7rem;
  }
  .indScene {
    padding: 0 0 1.4rem;
  }
  .indScene .swiper-slide {
    width: 100%;
    height: 4.2rem;
  }
  .indScene .swiper-slide .cont {
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .indScene .swiper-slide .cont::after {
    height: 200px;
    background: url(../img/bg1.png) top repeat-x;
    opacity: 1;
    visibility: visible;
  }
  .indScene .swiper-slide .bgimg {
    height: 4.2rem;
    max-height: 4.2rem;
    top: 0;
    transform: translateY(0);
  }
  .indScene .swiper-slide .text {
    padding: 0 0.3rem 0.3rem;
  }
  .indScene .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indScene .swiper-slide .zi {
    height: 0.48rem;
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indScene .swiper-slide:hover .zi {
    height: 0.48rem;
  }
  .indScene .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .indScene .prev {
    margin-left: -1rem;
  }
  .indScene .next {
    margin-right: -1rem;
  }
  .indexP4 {
    padding: 0.5rem 0 0.1rem;
  }
  .indexP4 .indTitle {
    margin-bottom: 0.6rem;
  }
  .indCase .pjDiv {
    display: block;
    height: auto;
    border-radius: 0.2rem;
  }
  .indCase .imgDiv {
    width: auto;
    height: 4rem;
  }
  .indCase .conDiv {
    display: block;
    width: auto;
    height: auto;
    padding: 0.5rem 0.4rem;
    overflow: hidden;
  }
  .indCase .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indCase .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .indCase .btnDiv {
    margin-top: 0.4rem;
    position: relative;
    z-index: 1;
  }
  .indCase .btnDiv dd {
    font-size: var(--fs14);
  }
  .indCase .btnDiv dd a {
    width: 2.4rem;
    height: 0.82rem;
    border: #fff solid 1px;
  }
  .indCase .btnDiv dd a em {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indCase .btnDiv dd a:hover em {
    background-size: 10px;
  }
  .indCase .se {
    top: 25%;
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .indCase .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .indCase .next {
    right: 0.3rem;
    margin-right: 0;
  }
  .indexP5 {
    padding: 0.8rem 0 0.9rem;
  }
  .indexP5 .indTitle {
    margin-bottom: 0.6rem;
  }
  .indexP5 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP5 .leftDiv li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .indexP5 .leftDiv li:nth-child(2) {
    margin-right: 0;
  }
  .indexP5 .leftDiv li a .imgDiv {
    height: 2.12rem;
  }
  .indexP5 .leftDiv li a .botDiv {
    padding: 0.25rem 0.2rem;
    height: auto;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
  }
  .indexP5 .leftDiv li a .botDiv .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP5 .leftDiv li a .botDiv .content {
    display: none;
  }
  .indexP5 .leftDiv li a .botDiv .look {
    margin-top: 0.15rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
    padding-right: 0.3rem;
    background-size: 10px;
  }
  .indexP5 .leftDiv li a:hover .look {
    background-size: 10px;
  }
  .indexP5 .rightDiv {
    float: none;
    margin-top: 0.3rem;
    width: auto;
    padding: 0.45rem 0.3rem;
    height: auto;
  }
  .indexP5 .rightDiv .toptop {
    margin-bottom: 0.2rem;
  }
  .indexP5 .rightDiv .title {
    font-size: var(--fs18);
    line-height: 0.42rem;
  }
  .indexP5 .rightDiv .more a {
    font-size: var(--fs14);
    line-height: 0.32rem;
    background-size: 6px;
  }
  .indexP5 .rightDiv .more a:hover {
    background-size: 6px;
  }
  .indexP5 .rightDiv .list li a {
    padding: 0.2rem 0;
  }
  .indexP5 .rightDiv .list li a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP5 .rightDiv .list li a .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP6 {
    padding: 0 var(--offset);
    height: 3.8rem;
  }
  .indexP6 .name {
    font-size: var(--fs22);
    margin: 0 0 0.3rem;
  }
  .indexP6 .btnDiv {
    width: 2.4rem;
  }
  .indexP6 .btnDiv a {
    height: 0.82rem;
    border: #fff solid 1px;
    font-size: var(--fs14);
  }
  .indexP6 .btnDiv a em {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP6 .btnDiv a:hover em {
    background-size: 10px;
  }
}
.aboutP1 {
  padding: 1.4rem 0;
}
.aboutP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.aboutP1 .content {
  font-size: var(--fs18);
  line-height: 0.32rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.aboutP1 .lunbo {
  position: relative;
  overflow: hidden;
}
.aboutP1 .lunbo .imgList {
  width: 31.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.8rem;
}
.aboutP1 .lunbo .swiper-slide {
  position: relative;
  overflow: hidden;
  opacity: 0.2;
}
.aboutP1 .lunbo .swiper-slide .img {
  width: 10.24rem;
  height: 5.8rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.aboutP1 .lunbo .swiper-slide .img::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: url(../img/bg2.png) repeat-x;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP1 .lunbo .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP1 .lunbo .swiper-slide .layer {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 0.48rem;
  bottom: -50%;
  color: #fff;
  transition: All 0.5s ease;
}
.aboutP1 .lunbo .swiper-slide .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  margin-bottom: 0.2rem;
}
.aboutP1 .lunbo .swiper-slide .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.aboutP1 .lunbo .swiper-slide-active {
  opacity: 1;
}
.aboutP1 .lunbo .swiper-slide-active .img::after {
  opacity: 1;
  visibility: visible;
}
.aboutP1 .lunbo .swiper-slide-active .layer {
  bottom: 0.3rem;
}
.aboutP1 .lunbo .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.25rem;
}
.aboutP1 .lunbo .prev {
  left: 50%;
  margin-left: -7.68rem;
  background: url(../img/nimg50_left.png) no-repeat;
  background-size: 0.5rem;
}
.aboutP1 .lunbo .prev:hover {
  background: url(../img/nimg50_lefton.png) no-repeat;
  background-size: 0.5rem;
}
.aboutP1 .lunbo .next {
  right: 50%;
  margin-right: -7.68rem;
  background: url(../img/nimg50_right.png) no-repeat;
  background-size: 0.5rem;
}
.aboutP1 .lunbo .next:hover {
  background: url(../img/nimg50_righton.png) no-repeat;
  background-size: 0.5rem;
}
.aboutP2 {
  background: #f5f5f5;
  padding: 1.3rem 0;
  position: relative;
}
.aboutP2::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5.06rem;
  height: 2.35rem;
  background: url(../img/nimg506Bg.png) no-repeat;
  background-size: 5.06rem;
}
.aboutP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.56rem;
}
.aboutP2 .list {
  position: relative;
  z-index: 1;
}
.aboutP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP2 .list li {
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
  background: #fff;
  padding: 0.8rem 0.4rem 0.4rem;
  min-height: 5.1rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP2 .list li .name {
  font-size: var(--fs40);
  line-height: 0.5rem;
  color: #000;
  font-weight: bold;
}
.aboutP2 .list li .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #1345fa;
  margin: 0.1rem 0 0.35rem;
}
.aboutP2 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #999;
}
.aboutP2 .list li:hover {
  box-shadow: 0 0 0.2rem rgba(19, 70, 250, 0.08);
}
.aboutP3 {
  padding-top: 1.35rem;
  height: 9.1rem;
  background: url(../img/aboutP3.jpg) center bottom no-repeat;
  background-size: cover;
}
.aboutP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.honorPic {
  position: relative;
  padding: 0 0.75rem;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .imgList li {
  width: calc((100% - 1.5rem) / 4);
  margin-right: 0.5rem;
}
.honorPic .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.3rem;
  cursor: pointer;
}
.honorPic .imgList li .imgDiv img {
  max-width: 100%;
  max-height: 4.3rem;
}
.honorPic .imgList li .name {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  color: #333;
  text-align: center;
  line-height: 0.4rem;
}
.honorPic .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 3;
  top: 45%;
  border-radius: 50%;
  margin-top: -0.25rem;
  background: rgba(255, 255, 255, 0.4);
  outline: none;
}
.honorPic .se:hover {
  background-image: linear-gradient(90deg, #1347fa 0%, #08ddfa 100%);
  background-blend-mode: normal, normal;
}
.honorPic .prev {
  left: 50%;
  margin-left: -8.68rem;
}
.honorPic .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.09rem;
  height: 0.16rem;
  margin-left: -0.05rem;
  margin-top: -0.08rem;
  background: url(../img/nimg9_left.png) no-repeat;
  background-size: 0.09rem;
}
.honorPic .prev:hover::after {
  background: url(../img/nimg9_lefton.png) no-repeat;
  background-size: 0.09rem;
}
.honorPic .next {
  right: 50%;
  margin-right: -8.68rem;
}
.honorPic .next::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 0.09rem;
  height: 0.16rem;
  margin-right: -0.05rem;
  margin-top: -0.08rem;
  background: url(../img/nimg9_right.png) no-repeat;
  background-size: 0.09rem;
}
.honorPic .next:hover::after {
  background: url(../img/nimg9_righton.png) no-repeat;
  background-size: 0.09rem;
}
@media (max-width: 1600px) {
  .aboutP1 .lunbo .prev {
    margin-left: -8rem;
  }
  .aboutP1 .lunbo .next {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 1rem 0;
  }
  .aboutP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP1 .content {
    padding: 0 var(--offset);
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .lunbo {
    padding: 0 0.3rem 1.2rem;
    overflow: hidden;
  }
  .aboutP1 .lunbo .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .aboutP1 .lunbo .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
    border-radius: 0.24rem;
  }
  .aboutP1 .lunbo .swiper-slide .img::after {
    opacity: 1;
    visibility: visible;
    height: 50%;
    background: url(../img/bg1.png) top repeat-x;
  }
  .aboutP1 .lunbo .swiper-slide .layer {
    padding: 0 0.25rem;
    bottom: 0.3rem;
  }
  .aboutP1 .lunbo .swiper-slide .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP1 .lunbo .swiper-slide .msg {
    font-size: var(--fs12);
    line-height: 0.42rem;
  }
  .aboutP1 .lunbo .se {
    width: 0.86rem;
    height: 0.86rem;
    top: auto;
    bottom: 0;
    margin-top: 0;
  }
  .aboutP1 .lunbo .prev {
    margin-left: -1.1rem;
    background-size: 0.86rem;
  }
  .aboutP1 .lunbo .prev:hover {
    background-size: 0.86rem;
  }
  .aboutP1 .lunbo .next {
    margin-right: -1.1rem;
    background-size: 0.86rem;
  }
  .aboutP1 .lunbo .next:hover {
    background-size: 0.86rem;
  }
  .aboutP2 {
    padding: 1rem 0;
  }
  .aboutP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP2 .list ul {
    display: block;
  }
  .aboutP2 .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.3rem;
    padding: 0.6rem 0.3rem 0.4rem;
    min-height: 4rem;
  }
  .aboutP2 .list li:last-child {
    margin-bottom: 0;
  }
  .aboutP2 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP2 .list li .zi {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .aboutP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
    height: auto;
    background: url(../img/aboutP3.jpg) center bottom no-repeat;
    background-size: cover;
  }
  .aboutP3 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .honorPic {
    padding: 0 0 1.2rem;
  }
  .honorPic .imgList li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .honorPic .imgList li .imgDiv {
    height: 4rem;
  }
  .honorPic .imgList li .imgDiv img {
    max-height: 4rem;
  }
  .honorPic .imgList li .name {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .honorPic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: auto;
    bottom: 0;
    margin-top: 0;
  }
  .honorPic .prev {
    margin-left: -1.1rem;
  }
  .honorPic .next {
    margin-right: -1.1rem;
  }
}
.videoModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: 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 */
  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;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100vh;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #1345fa url(../img/close.png) center no-repeat;
  background-size: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
@media (max-width: 1004px) {
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
}
.case {
  padding: 1.3rem 0 1.6rem;
  background: #efefef;
}
.case .list {
  margin: 0.55rem 0 0.75rem;
}
.case .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.case .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-top: 0.6rem;
}
.case .list li:nth-child(-n+3) {
  margin-top: 0;
}
.case .list li:nth-child(3n) {
  margin-right: 0;
}
.case .list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.case .list li a .imgDiv {
  height: 3.5rem;
  overflow: hidden;
}
.case .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case .list li a .botDiv {
  position: relative;
  padding: 0.3rem 0.4rem 0;
  height: 2.2rem;
  background: #fff;
  overflow: hidden;
}
.case .list li a .botDiv::after {
  content: '';
  position: absolute;
  width: 2.98rem;
  height: 2.22rem;
  right: -2.98rem;
  bottom: -2.22rem;
  background: url(../img/nimg298Bg.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}
.case .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.3rem;
  height: 0.9rem;
  color: #000;
  transition: all 0.5s ease;
}
.case .list li a .more {
  position: relative;
  display: inline-block;
  margin-top: 0.45rem;
  font-size: var(--fs16);
  color: #26293b;
  line-height: 0.2rem;
  padding-right: 0.24rem;
  transition: all 0.5s ease;
}
.case .list li a .more::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
  transition: all 0.5s ease;
}
.case .list li a:hover .botDiv {
  background-image: linear-gradient(145deg, #1748fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.case .list li a:hover .botDiv::after {
  right: 0;
  bottom: 0;
}
.case .list li a:hover .name {
  color: #fff;
}
.case .list li a:hover .more {
  color: #fff;
}
.case .list li a:hover .more::after {
  background: url(../img/ico1.png) no-repeat;
}
@media (max-width: 1004px) {
  .case {
    padding: 0.9rem 0 1rem;
  }
  .case .list {
    margin: 0.55rem 0 0.8rem;
  }
  .case .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
  }
  .case .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .case .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .case .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .case .list li:nth-child(2n) {
    margin-right: 0;
  }
  .case .list li a {
    border-radius: 0.2rem;
  }
  .case .list li a .imgDiv {
    height: 2.2rem;
  }
  .case .list li a .botDiv {
    padding: 0.3rem 0.3rem 0;
    height: 2.2rem;
  }
  .case .list li a .botDiv::after {
    width: 1.98rem;
    height: 1.48rem;
    right: -1.98rem;
    bottom: -1.48rem;
  }
  .case .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.5rem;
    height: 1rem;
  }
  .case .list li a .more {
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.3rem;
    padding-right: 0.24rem;
  }
  .case .list li a .more::after {
    width: 8px;
    height: 8px;
    background-size: 8px;
  }
  .case .list li a:hover .more::after {
    background-size: 8px;
  }
}
.contactP1 {
  padding: 1.4rem 0 1.2rem;
}
.contactP1 .pageTitle {
  margin-bottom: 0.55rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  width: calc((100% - 0.32rem) / 2);
  margin-right: 0.32rem;
  padding: 0.55rem 0.8rem 0.4rem;
  min-height: 2.4rem;
  background: #f1f3f5;
  text-align: center;
  border-radius: 0.16rem;
}
.contactP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.contactP1 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs24);
  color: #333;
}
.contactP1 .list li .name img {
  margin-right: 0.15rem;
  width: 0.25rem;
}
.contactP1 .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #000;
  margin: 0.3rem 0 0.18rem;
}
.contactP1 .list li .goto {
  position: relative;
  display: inline-block;
  padding-right: 0.2rem;
  font-size: var(--fs16);
  color: #1345fa;
}
.contactP1 .list li .goto::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
  width: 0.11rem;
  height: 0.11rem;
  background: url(../img/ico1on.png) no-repeat;
  background-size: 0.11rem;
}
.contactP1 .list li .goto span {
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  overflow: hidden;
  background: url(../img/dot.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.contactP1 .list li .goto:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.contactP1 .botbot {
  margin-top: 0.2rem;
  padding: 0.32rem 0;
  background: #f1f3f5;
  border-radius: 0.16rem;
}
.contactP1 .botbot ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .botbot li {
  width: 50%;
  position: relative;
  min-height: 1.2rem;
  text-align: center;
}
.contactP1 .botbot li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dcdfe1;
}
.contactP1 .botbot li:last-child::after {
  display: none;
}
.contactP1 .botbot li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs24);
  color: #333;
}
.contactP1 .botbot li .name img {
  margin-right: 0.15rem;
  width: 0.25rem;
}
.contactP1 .botbot li .msg {
  font-family: 'Poppins-R';
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #000;
}
.contactP2 {
  position: relative;
  padding: 2.4rem 0 1.4rem;
  background: url(../img/contactBg.jpg) center bottom no-repeat;
  background-size: 100%;
}
.contactP2 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.contactP2 .bg img {
  width: 100%;
}
.contactP2 .wrap {
  position: relative;
  z-index: 1;
}
.contactP2 .pageTitle {
  color: #fff;
  margin-bottom: 0.4rem;
}
.contactP2 .zi {
  font-size: var(--fs18);
  line-height: 0.24rem;
  text-align: center;
  color: #fff;
}
.contactP2 .mxfDiv {
  margin-top: 0.9rem;
  padding: 0.5rem 0.5rem 1.6rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.contactP2 .form {
  position: relative;
}
.contactP2 .form::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .form ul {
  margin-right: -0.32rem;
}
.contactP2 .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.35rem;
}
.contactP2 .form li:last-child {
  width: 40%;
}
.contactP2 .form li:last-child .box {
  padding-right: 1.25rem;
}
.contactP2 .form li .box {
  position: relative;
  margin-right: 0.32rem;
}
.contactP2 .form li .wen {
  font-size: var(--fs16);
  height: 0.32rem;
  color: #000;
}
.contactP2 .form li .wen em {
  color: #1345fa;
}
.contactP2 .form li .input1 {
  width: 100%;
  height: 0.48rem;
  border-radius: 4px;
  border: #dcdcdc solid 1px;
  font-size: var(--fs16);
  padding-left: 0.2rem;
  font-family: 'Poppins-R';
}
.contactP2 .form li textarea {
  width: 100%;
  height: 1rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  padding: 0.1rem 0 0 0.2rem;
  border-radius: 4px;
  border: #dcdcdc solid 1px;
  font-family: inherit;
}
.contactP2 .form li .yzm {
  position: absolute;
  right: 0;
  bottom: 0.04rem;
}
.contactP2 .form li .yzm img {
  height: 0.4rem;
}
.contactP2 .form .li01 {
  width: 100%;
}
.contactP2 .btnDiv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.42rem;
}
.contactP2 .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;
  font-size: var(--fs16);
  color: #fff;
  width: 100%;
  height: 0.48rem;
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 1.1rem 0 1rem;
  }
  .contactP1 .pageTitle {
    margin-bottom: 0.55rem;
  }
  .contactP1 .list ul {
    display: block;
  }
  .contactP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
    padding: 0.55rem 0.4rem 0.4rem;
    min-height: 2.4rem;
    border-radius: 0.2rem;
  }
  .contactP1 .list li .name {
    font-size: var(--fs18);
  }
  .contactP1 .list li .name img {
    width: 0.36rem;
  }
  .contactP1 .list li .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .contactP1 .list li .goto {
    padding-right: 0.3rem;
    font-size: var(--fs14);
  }
  .contactP1 .list li .goto::after {
    margin-top: -0.09rem;
    width: 0.18rem;
    height: 0.18rem;
    background-size: 0.18rem;
  }
  .contactP1 .botbot {
    margin-top: 0.3rem;
    padding: 0.4rem 0;
    border-radius: 0.2rem;
  }
  .contactP1 .botbot ul {
    display: block;
  }
  .contactP1 .botbot li {
    width: auto;
    padding: 0.4rem 0;
  }
  .contactP1 .botbot li::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .contactP1 .botbot li .name {
    font-size: var(--fs18);
  }
  .contactP1 .botbot li .name img {
    width: 0.36rem;
  }
  .contactP1 .botbot li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .contactP2 {
    padding: 0.8rem 0 1.1rem;
  }
  .contactP2 .bg {
    height: 4rem;
  }
  .contactP2 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contactP2 .pageTitle {
    margin-bottom: 0.3rem;
  }
  .contactP2 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP2 .mxfDiv {
    margin-top: 0.65rem;
    padding: 0.5rem 0.3rem 1rem;
    border-radius: 0.24rem;
  }
  .contactP2 .form ul {
    margin-right: 0;
  }
  .contactP2 .form li {
    float: none;
    width: 100%;
  }
  .contactP2 .form li:last-child {
    width: 100%;
  }
  .contactP2 .form li:last-child .box {
    padding-right: 2rem;
  }
  .contactP2 .form li .box {
    margin-right: 0;
  }
  .contactP2 .form li .wen {
    font-size: var(--fs14);
    height: 0.56rem;
  }
  .contactP2 .form li .input1 {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .contactP2 .form li textarea {
    width: 100%;
    height: 2.4rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP2 .form li .yzm {
    bottom: 0.08rem;
  }
  .contactP2 .form li .yzm img {
    height: 0.7rem;
  }
  .contactP2 .btnDiv {
    position: relative;
    width: 2.4rem;
  }
  .contactP2 .btnDiv a {
    font-size: var(--fs15);
    height: 0.86rem;
  }
}
.caseTop {
  padding-top: 0.1rem;
  background: url(../img/newsTop.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 1.2rem;
}
.caseTop .wrap {
  position: relative;
}
.caseTop .pageNow {
  position: relative;
  background: url(../img/nimg10_2.png) left center no-repeat;
  left: 0;
  bottom: 0;
  margin-left: 0;
  line-height: 0.72rem;
  color: #302928;
}
.caseTop .pageNow a {
  color: #302928;
  background: url(../img/ico4on.png) right center no-repeat;
}
.caseTop .pageNow a:hover {
  color: #1345fa;
}
.caseTop .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
  color: #000;
  margin: 0.42rem 0 0.25rem;
  width: 60%;
}
.caseTop .msgList {
  overflow: hidden;
}
.caseTop .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs16);
  font-family: 'Poppins-R';
}
.caseTop .back {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  z-index: 1;
  top: 1.3rem;
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #ced2d9 solid 2px;
  background: url(../img/nimg14_2.png) center no-repeat;
  background-size: 0.14rem;
}
.caseTop .back:hover {
  border: #1345fa solid 2px;
  background: #1345fa url(../img/nimg14_2on.png) center no-repeat;
  background-size: 0.14rem;
}
.caseBot {
  padding: 0.9rem 0 1.2rem;
}
.caseBot .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.caseBot .leftDiv {
  width: 10.4rem;
}
.caseBot .zi {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  font-size: var(--fs30);
  color: #333;
  margin-bottom: 0.2rem;
}
.caseBot .zi .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 0.12rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.caseBot .zi .ico img {
  width: 0.2rem;
}
.caseBot .content {
  padding-bottom: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: justify;
}
.caseBot .content img {
  max-width: 100%;
}
.caseBot .imgDiv {
  text-align: center;
}
.pageDown {
  padding-top: 0.3rem;
}
.pageDown li {
  margin-bottom: 20px;
}
.pageDown li:last-child {
  margin-bottom: 0;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs16);
  padding: 0.2rem 0.4rem 0;
  height: 1.06rem;
  line-height: 0.32rem;
  border: #e1e1e1 solid 1px;
  border-top: none;
}
.pageDown li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #5f5f5f;
}
.pageDown li em {
  display: block;
  color: #000;
}
.pageDown li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  overflow: hidden;
  color: #666;
}
.pageDown li a:hover::before {
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.sideCase {
  position: sticky;
  top: 1rem;
  width: 4rem;
  border-radius: 0.16rem;
  padding: 0.3rem 0.3rem 0.1rem;
  background: #f5f6f8;
}
.sideCase .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  color: #000;
}
.sideCase .list ul {
  margin: 0;
}
.sideCase .list li {
  border-bottom: #e2e2e2 solid 1px;
}
.sideCase .list li:last-child {
  border-bottom: none;
}
.sideCase .list li a {
  display: block;
  padding: 0.3rem 0 0.2rem;
}
.sideCase .list li .name {
  margin-bottom: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  transition: All 0.5s ease;
}
.sideCase .list li .time {
  font-size: var(--fs14);
  color: #999;
}
.sideCase .list li:hover .name {
  color: #1345fa;
}
@media (max-width: 1600px) {
  .caseTop .back {
    margin-right: -8rem;
  }
  .caseBot .leftDiv {
    width: 11rem;
  }
}
@media (max-width: 1004px) {
  .caseTop {
    padding: 0 0 0.6rem;
  }
  .caseTop .pageNow {
    display: none;
  }
  .caseTop .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    margin: 0;
    padding: 0.5rem 0 0.3rem;
    width: auto;
  }
  .caseTop .msgList li {
    font-size: var(--fs14);
  }
  .caseTop .back {
    display: none;
  }
  .caseBot {
    padding: 0.7rem 0 1rem;
  }
  .caseBot .leftDiv {
    width: auto;
    float: none;
  }
  .caseBot .zi {
    font-size: var(--fs17);
    margin-bottom: 0.3rem;
  }
  .caseBot .zi .ico {
    margin-right: 0.15rem;
    width: 0.48rem;
    height: 0.48rem;
  }
  .caseBot .zi .ico img {
    width: 0.24rem;
  }
  .caseBot .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .pageDown li {
    margin-bottom: 0.3rem;
  }
  .pageDown li a {
    font-size: var(--fs14);
    padding: 0.2rem 0.3rem;
    height: auto;
    line-height: 0.52rem;
  }
  .pageDown li p {
    height: 0.52rem;
  }
  .sideCase {
    display: none;
  }
}
.newsBox {
  padding: 1.4rem 0 1.6rem;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .leftDiv {
  width: 10.72rem;
}
.newsBox .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}
.newsBox .msgList {
  padding-bottom: 0.5rem;
  overflow: hidden;
  border-bottom: #e2e2e2 solid 1px;
}
.newsBox .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs16);
  font-family: 'Poppins-R';
}
.newsBox .content {
  padding: 0.5rem 0 0.4rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: justify;
}
.newsBox .content img {
  max-width: 100%;
}
.newsBox .imgDiv {
  text-align: center;
}
.sideNews {
  position: sticky;
  top: 1rem;
  width: 3.4rem;
}
.sideNews .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  font-weight: 500;
  margin: 0 0 0.15rem;
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li {
  border-bottom: #e2e2e2 solid 1px;
}
.sideNews .list li:last-child {
  border-bottom: none;
}
.sideNews .list li a {
  display: block;
  padding: 0.3rem 0 0.2rem;
}
.sideNews .list li .cn {
  margin-bottom: 0.15rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  transition: All 0.5s ease;
}
.sideNews .list li .time {
  font-size: var(--fs14);
  color: #999;
}
.sideNews .list li:hover .cn {
  color: #1345fa;
}
@media (max-width: 1600px) {
  .newsBox .leftDiv {
    width: 11rem;
  }
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.7rem 0 0.9rem;
  }
  .newsBox .leftDiv {
    width: auto;
    float: none;
  }
  .newsBox .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsBox .msgList {
    padding-bottom: 0.3rem;
  }
  .newsBox .msgList li {
    font-size: var(--fs14);
  }
  .newsBox .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .sideNews {
    display: none;
  }
}
.news {
  padding: 1rem 0 1.2rem;
}
.news .zjMxf {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0.6rem;
}
.news .zjMxf::after {
  content: '';
  display: block;
  clear: both;
}
.news .zjMxf .select {
  width: 3.3rem;
  height: 0.6rem;
  position: relative;
}
.news .zjMxf .select .caption {
  border-radius: 0.48rem;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  z-index: 3;
  background: #fff url(../img/selectIco.png) right center no-repeat;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .on {
  border-radius: 0;
  border-top-left-radius: 0.32rem;
  border-top-right-radius: 0.32rem;
}
.news .zjMxf .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background: #fff;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  border-bottom-left-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
}
.news .zjMxf .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.news .zjMxf .select .xlist::-webkit-scrollbar-thumb {
  background-color: #1345fa;
}
.news .zjMxf .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
  border-bottom: 1px solid #ddd;
}
.news .zjMxf .select .xlist a:hover {
  color: #1345fa;
}
.news .zjMxf .select .xlist a:last-child {
  border-bottom: none;
}
.news .zjMxf .select .xlist .on {
  color: #1345fa;
}
.news .zjMxf .form {
  margin-left: 0.3rem;
  width: 3.3rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  box-shadow: 0 0 0.4rem rgba(1, 20, 42, 0.1);
  overflow: hidden;
}
.news .zjMxf .form .input1 {
  width: 100%;
  background: #fff url(../img/nimg20_8.png) 0.2rem center no-repeat;
  padding-left: 0.6rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.6rem;
  line-height: 0.6rem;
  font-family: 'Poppins-R';
}
.news .zjMxf .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.news .zjMxf .btnDiv {
  margin-left: 0.25rem;
}
.news .zjMxf .btnDiv a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 1.4rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.news .list {
  padding-bottom: 0.7rem;
}
.news .list li {
  margin-top: 0.6rem;
}
.news .list li:first-child {
  margin-top: 0;
}
.news .list li a {
  display: block;
  position: relative;
  height: 3.17rem;
  padding: 0 0.75rem 0 4.95rem;
  background: #f6f7f8;
  border-radius: 0.16rem;
  overflow: hidden;
}
.news .list li a .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.35rem;
  height: 3.17rem;
  overflow: hidden;
}
.news .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.news .list li a .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.news .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #000;
  transition: All 0.5s ease;
}
.news .list li a .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #999;
}
.news .list li a .time {
  margin-top: 0.5rem;
}
.news .list li a .time em {
  font-size: var(--fs16);
  color: #26293b;
  padding-right: 0.15rem;
  font-family: 'Poppins-R';
}
.news .list li a:hover {
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(33, 81, 250, 0.1);
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li a:hover .name {
  color: #1345fa;
}
.newsPic {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  background: #f1f3f5;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .imgDiv {
  width: 50%;
  height: 5.6rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.85rem 1rem 0 0.8rem;
}
.newsPic .time {
  font-size: var(--fs14);
  color: #1345fa;
  line-height: 0.24rem;
  font-family: 'Poppins-R';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.1rem 0 0.3rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #000;
  transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #999;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.2rem;
}
.newsPic .mxfDiv:hover .name {
  color: #1345fa;
}
.newsPic .swiper-pagination {
  width: auto;
  left: calc(50% + 0.8rem);
  bottom: 0.9rem;
  z-index: 2;
}
.newsPic .swiper-pagination-bullet {
  float: left;
  position: relative;
  width: 28px;
  height: 3px;
  opacity: 1;
  background: #c0c4c9;
  border: none;
  border-radius: 4px;
  margin-left: 0!important;
  margin-right: 0.1rem !important;
  overflow: hidden;
}
.newsPic .swiper-pagination-bullet-active {
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.9rem 0 1rem;
  }
  .news .zjMxf {
    margin: 0.7rem 0 0.6rem;
  }
  .news .zjMxf .select {
    float: none;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .select .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .news .zjMxf .select .on {
    border-top-left-radius: 0.48rem;
    border-top-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist {
    max-height: 4.3rem;
    border-bottom-left-radius: 0.48rem;
    border-bottom-right-radius: 0.48rem;
  }
  .news .zjMxf .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
  }
  .news .zjMxf .form {
    float: none;
    margin-left: 0;
    margin-top: 0.3rem;
    width: 100%;
    height: 0.9rem;
  }
  .news .zjMxf .form .input1 {
    width: 100%;
    background: #fff url(../img/nimg20_8.png) 0.3rem center no-repeat;
    background-size: 0.36rem;
    padding-left: 0.8rem;
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .news .zjMxf .btnDiv {
    margin-top: 0.3rem;
    margin-left: 0;
    float: none;
  }
  .news .zjMxf .btnDiv a {
    display: block;
    width: 2.1rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs15);
  }
  .news .list {
    padding-bottom: 0.7rem;
  }
  .news .list li {
    margin-top: 0.3rem;
  }
  .news .list li a {
    height: 2rem;
    padding: 0 0.2rem 0 3.1rem;
    border-radius: 0.2rem;
  }
  .news .list li a .imgDiv {
    width: 2.9rem;
    height: 2rem;
  }
  .news .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li a .content {
    display: none;
  }
  .news .list li a .time {
    margin-top: 0.1rem;
  }
  .news .list li a .time em {
    font-size: var(--fs13);
  }
  .newsPic {
    border-radius: 0.2rem;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 3.8rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 1.2rem;
  }
  .newsPic .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 0.5rem;
  }
  .newsPic .swiper-pagination-bullet {
    float: none;
    display: inline-block;
    margin-left: 0.1rem !important;
    margin-right: 0.1rem !important;
  }
}
.productP1 {
  position: relative;
  padding-bottom: 0.5rem;
  background: #fafafa;
}
.productP1 .bigBox {
  position: relative;
  background: url(../img/productBg.jpg) center no-repeat;
  background-size: cover;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 8.2rem;
}
.productP1 .pageNow {
  background: url(../img/nimg10_2.png) left center no-repeat;
  bottom: auto;
  top: 0.1rem;
  line-height: 0.72rem;
  color: #302928;
}
.productP1 .pageNow a {
  color: #302928;
  background: url(../img/ico4on.png) right center no-repeat;
}
.productP1 .pageNow a:hover {
  color: #1345fa;
}
.productP1 .leftDiv,
.productP1 .rightDiv {
  width: 50%;
}
.productP1 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.2rem;
}
.productP1 .msgList li {
  position: relative;
  padding-left: 0.18rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
  font-family: 'Poppins-R';
}
.productP1 .msgList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.14rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.productP1 .btnDiv {
  margin-top: 0.9rem;
}
.productP1 .btnDiv a {
  overflow: hidden;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  width: 1.68rem;
  height: 0.54rem;
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.productP1 .btnDiv a em {
  position: relative;
  z-index: 1;
}
.productP1 .btnDiv a span {
  margin-left: 0.08rem;
  width: 0.11rem;
  height: 0.11rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.11rem;
}
.productP1 .proNav {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  text-align: center;
  bottom: 0;
  width: 15.36rem;
  height: 1rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.productP1 .proNav ul {
  font-size: 0;
}
.productP1 .proNav li {
  font-size: var(--fs18);
  display: inline-block;
  margin: 0 0.48rem;
}
.productP1 .proNav li a {
  position: relative;
  display: block;
  color: #666;
  height: 1rem;
  line-height: 1rem;
}
.productP1 .proNav li a:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.productP1 .proNav li .on {
  color: #1345fa;
}
.productP1 .proNav li .on::after {
  width: 100%;
  left: 0;
}
.productP1 .proNav.fixed {
  position: fixed;
  top: 1rem;
  bottom: auto;
  z-index: 5;
}
.productP1-2 {
  background: none;
}
.proshowImg {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.proshowImg .rightImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.5rem;
}
.proshowImg .rightImg img {
  max-width: 100%;
  max-height: 100%;
}
.proshowImg .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #9e9e9e;
  border: none;
  border-radius: 50%;
  margin-left: 8px!important;
  margin-right: 8px!important;
  overflow: hidden;
}
.proshowImg .swiper-pagination-bullet-active {
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.productP2 {
  background: #fafafa;
  padding: 1.2rem 0 1.1rem;
}
.productP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.productP2 .content {
  width: 9.72rem;
  margin: 0 auto;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.productP3 {
  padding: 1.1rem 0 1.2rem;
}
.productP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.productP3 .list li {
  margin-bottom: 1rem;
}
.productP3 .list li::after {
  content: '';
  display: block;
  clear: both;
}
.productP3 .list li:last-child {
  margin-bottom: 0;
}
.productP3 .list li .imgDiv {
  width: 50%;
  height: 4.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.productP3 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP3 .list li .conDiv {
  position: absolute;
  background: #fff;
  right: 0;
  top: 50%;
  margin-top: -2rem;
  width: calc(50% + 0.6rem);
  height: 4rem;
  z-index: 1;
  border-radius: 0.16rem;
  padding: 0.6rem 0.6rem 0;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.productP3 .list li .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #000;
  margin-bottom: 0.2rem;
}
.productP3 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  padding-right: 5px;
  text-align: justify;
  max-height: 2.1rem;
  overflow: auto;
}
.productP3 .list li .content::-webkit-scrollbar {
  width: 3px;
}
.productP3 .list li .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.productP3 .list li .content::-webkit-scrollbar-thumb {
  background-color: #1345fa;
}
.productP3 .list li:nth-child(even) .conDiv {
  left: 0;
  right: auto;
}
.productP3 .list li:nth-child(even) .imgDiv {
  float: right;
}
.productP4 {
  height: 6.4rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.productP4 .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100%;
}
.productP4 .conDiv {
  width: 6.4rem;
  color: #fff;
}
.productP4 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.productP4 .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  padding-right: 5px;
  max-height: 1.8rem;
  overflow: auto;
}
.productP4 .conDiv .content::-webkit-scrollbar {
  width: 3px;
}
.productP4 .conDiv .content::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.4);
}
.productP4 .conDiv .content::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.productP5 {
  padding: 1.2rem 0;
}
.productP5 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.45rem;
}
.productP5 .table {
  border-top: #1345fa solid 2px;
}
.productP5 .table table th {
  height: 0.98rem;
  background: #f1f3f5;
  font-size: var(--fs24);
  color: #1345fa;
  font-weight: 400;
  text-align: left;
  padding: 0 0.35rem;
}
.productP5 .table table th:nth-child(1) {
  width: 30%;
}
.productP5 .table table th:nth-child(2) {
  width: 38%;
}
.productP5 .table table td {
  border-bottom: #ebebeb solid 1px;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #000;
  padding: 0.2rem 0.35rem;
}
.productP5 .table2 table th:nth-child(1) {
  width: 17.5%;
}
.productP5 .table2 table th:nth-child(2) {
  width: 48%;
}
.productP5 .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs15);
}
.productP6 {
  padding: 1.2rem 0 1.1rem;
}
.productP6 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.35rem;
}
.productP6 .content {
  width: 8.62rem;
  margin: 0 auto;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
}
.productP6 .imgDiv {
  margin-top: 0.9rem;
  text-align: center;
}
.productP6 .imgDiv img {
  max-width: 100%;
}
.productP7 {
  padding: 1.1rem 0 1.2rem;
  background: url(../img/productP7.jpg) center no-repeat;
  background-size: cover;
}
.productP7 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.productP7 .list {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.productP7 .list ul {
  display: block;
  width: auto;
  margin-right: -0.4rem;
}
.productP7 .list li {
  float: left;
  width: 33.33%;
}
.productP7 .list li .box {
  position: relative;
  margin-right: 0.4rem;
  border-radius: 0.16rem;
  text-align: center;
  overflow: hidden;
  background: #fff;
  height: 4.4rem;
  padding: 0.5rem 0.3rem 0;
}
.productP7 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto 0.35rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/nimg120Bg.png) no-repeat;
  background-size: 100%;
}
.productP7 .list li .ico img {
  width: 0.5rem;
}
.productP7 .list li .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
}
.productP7 .list li .msg {
  font-size: var(--fs16);
  margin-top: 0.1rem;
  line-height: 0.24rem;
  color: #666;
}
.productP7 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.productP7 .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
}
.productP7 .swiper-pagination-bullet-active {
  background: #fff;
}
.productP8 .mxfDiv {
  position: sticky;
  top: 0;
}
.productP8 .item {
  display: flex;
  display: -webkit-flex;
  background: #fff;
  height: 100vh;
  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);
}
.productP8 .item .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP8 .item .imgDiv {
  width: 50%;
  height: 5.6rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.productP8 .item .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP8 .item .conDiv {
  width: 42.2%;
}
.productP8 .item .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #000;
  margin-bottom: 0.3rem;
}
.productP8 .item .conDiv .wen {
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.productP8 .item .list {
  margin-top: 0.25rem;
  border-top: #e9e9e9 solid 1px;
}
.productP8 .item .list li {
  padding: 0.2rem 0;
  border-bottom: #e9e9e9 solid 1px;
}
.productP8 .item .list li .msgDiv {
  padding-right: 0.6rem;
  position: relative;
  cursor: pointer;
}
.productP8 .item .list li .ico {
  position: absolute;
  right: 0;
  top: 0.14rem;
  width: 0.18rem;
  height: 0.18rem;
}
.productP8 .item .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.09rem;
  margin-top: -0.01rem;
  width: 0.18rem;
  height: 0.02rem;
  background: #ccc;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP8 .item .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.01rem;
  margin-top: -0.09rem;
  width: 0.02rem;
  height: 0.18rem;
  background: #ccc;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP8 .item .list li .zi {
  color: #333;
  line-height: 0.4rem;
  font-size: var(--fs20);
  font-weight: bold;
}
.productP8 .item .list li .box {
  display: none;
  padding-top: 0.1rem;
}
.productP8 .item .list li .msgDiv.aNow .ico:after {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.productP8 .item .list li .lie dd {
  position: relative;
  padding-left: 0.18rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  font-family: 'Poppins-R';
}
.productP8 .item .list li .lie dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.14rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #1347fa 0%, #03dcfb 100%);
  background-blend-mode: normal, normal;
}
.productP8 .item:nth-child(odd) {
  background: #fafafa;
}
.productP8 .item:nth-child(odd) .imgDiv {
  order: 1;
}
.productP9 {
  padding-top: 1.2rem;
  overflow: hidden;
  background-image: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  background-blend-mode: normal, normal;
}
.productP9 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.55rem;
}
.scenePic {
  position: relative;
}
.scenePic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 7.68rem;
  width: 25%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 3;
}
.scenePic::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 3;
}
.scenePic .imgList li {
  width: calc((100% - 0.48rem) / 3);
  margin-right: 0.24rem;
}
.scenePic .imgList li .imgDiv {
  height: 2.9rem;
  overflow: hidden;
}
.scenePic .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.scenePic .imgList li .name {
  margin-top: 0.18rem;
  line-height: 0.42rem;
  color: #000;
  font-size: var(--fs30);
}
.scenePic .imgList li .zi {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.scenePic .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.scenePic .se {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
}
.scenePic .se:hover {
  background-image: linear-gradient(90deg, #1347fa 0%, #08ddfa 100%);
  background-blend-mode: normal, normal;
}
.scenePic .prev {
  left: 50%;
  margin-left: -8.68rem;
}
.scenePic .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.09rem;
  height: 0.16rem;
  margin-left: -0.05rem;
  margin-top: -0.08rem;
  background: url(../img/nimg9_lefton.png) no-repeat;
  background-size: 0.09rem;
}
.scenePic .next {
  right: 50%;
  margin-right: -8.68rem;
}
.scenePic .next::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 0.09rem;
  height: 0.16rem;
  margin-right: -0.05rem;
  margin-top: -0.08rem;
  background: url(../img/nimg9_righton.png) no-repeat;
  background-size: 0.09rem;
}
@media (max-width: 1600px) {
  .productP1 .proNav {
    margin-left: -8rem;
    width: 16rem;
  }
  .scenePic::before {
    margin-left: 8rem;
  }
  .scenePic::after {
    margin-right: 8rem;
  }
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0;
  }
  .productP1 .mxfDiv {
    padding: 0.8rem 0;
    display: block;
    height: auto;
  }
  .productP1 .pageNow {
    display: none;
  }
  .productP1 .leftDiv,
  .productP1 .rightDiv {
    width: 100%;
  }
  .productP1 .name {
    font-size: var(--fs24);
    margin-bottom: 0.2rem;
  }
  .productP1 .msgList li {
    padding-left: 0.22rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP1 .msgList li::before {
    top: 0.18rem;
    width: 0.08rem;
    height: 0.08rem;
  }
  .productP1 .btnDiv {
    margin-top: 0.5rem;
  }
  .productP1 .btnDiv a {
    font-size: var(--fs14);
    width: 2.8rem;
    height: 0.86rem;
  }
  .productP1 .btnDiv a span {
    margin-left: 0.1rem;
    width: 0.16rem;
    height: 0.16rem;
    background-size: 0.16rem;
  }
  .productP1 .proNav {
    display: none;
  }
  .productP2 {
    padding: 0.9rem 0 0.8rem;
  }
  .productP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .productP2 .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP3 {
    padding: 0.9rem 0 1rem;
  }
  .productP3 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .productP3 .list li {
    margin-bottom: 0.6rem;
  }
  .productP3 .list li .imgDiv {
    width: 100%;
    height: auto;
    border-radius: 0;
    border-top-left-radius: 0.2rem;
    border-top-right-radius: 0.2rem;
  }
  .productP3 .list li .imgDiv img {
    height: auto;
  }
  .productP3 .list li .conDiv {
    position: relative;
    top: auto;
    margin-top: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    padding: 0.6rem 0.4rem;
  }
  .productP3 .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .productP3 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-right: 0;
    max-height: 100%;
  }
  .productP3 .list li:nth-child(even) .imgDiv {
    float: none;
  }
  .productP4 {
    padding: 0.9rem 0;
    height: auto;
  }
  .productP4 .wrap {
    display: block;
  }
  .productP4 .conDiv {
    width: auto;
  }
  .productP4 .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.5rem;
  }
  .productP4 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-right: 0;
    max-height: 100%;
  }
  .productP5 {
    padding: 0.9rem 0;
  }
  .productP5 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .productP5 .longDiv {
    overflow: auto;
  }
  .productP5 .table {
    width: 12rem;
  }
  .productP5 .table table th {
    height: 1.1rem;
    font-size: var(--fs18);
    padding: 0 0.3rem;
  }
  .productP5 .table table td {
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding: 0.2rem 0.3rem;
  }
  .productP6 {
    padding: 0.9rem 0 0.8rem;
  }
  .productP6 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .productP6 .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP6 .imgDiv {
    margin-top: 0.6rem;
  }
  .productP7 {
    padding: 0.9rem 0 1rem;
  }
  .productP7 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .productP7 .list ul {
    display: flex;
    width: 100%;
    margin-right: 0;
  }
  .productP7 .list li {
    float: none;
    width: 100%;
  }
  .productP7 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
    height: 4.8rem;
  }
  .productP7 .list li .ico {
    margin: 0 auto 0.3rem;
    width: 1.3rem;
    height: 1.3rem;
  }
  .productP7 .list li .ico img {
    width: 0.64rem;
  }
  .productP7 .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .productP7 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP7 .swiper-pagination {
    display: block;
  }
  .productP8 .mxfDiv {
    position: relative;
  }
  .productP8 .item {
    position: relative;
    padding: 0.9rem 0;
    height: auto;
  }
  .productP8 .item .baozhe {
    display: block;
  }
  .productP8 .item .imgDiv {
    width: 100%;
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .productP8 .item .conDiv {
    margin-top: 0.6rem;
    width: 100%;
  }
  .productP8 .item .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP8 .item .conDiv .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP8 .item .list li {
    padding: 0.3rem 0;
  }
  .productP8 .item .list li .ico {
    top: 0.12rem;
    width: 12px;
    height: 12px;
  }
  .productP8 .item .list li .ico:before {
    margin-left: -6px;
    margin-top: -1px;
    width: 12px;
    height: 2px;
  }
  .productP8 .item .list li .ico:after {
    margin-left: -1px;
    margin-top: -6px;
    width: 2px;
    height: 12px;
  }
  .productP8 .item .list li .zi {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .productP8 .item .list li .box {
    padding-top: 0.2rem;
  }
  .productP8 .item .list li .lie dd {
    padding-left: 0.22rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .productP8 .item .list li .lie dd::before {
    top: 0.18rem;
    width: 0.08rem;
    height: 0.08rem;
  }
  .productP8 .item:nth-child(odd) {
    background: #fafafa;
  }
  .productP8 .item:nth-child(odd) .imgDiv {
    order: 1;
  }
  .productP9 {
    padding-top: 0.9rem;
  }
  .productP9 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .scenePic::before {
    display: none;
  }
  .scenePic::after {
    display: none;
  }
  .scenePic .imgList {
    overflow: hidden;
  }
  .scenePic .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .scenePic .imgList li .imgDiv {
    height: 4rem;
  }
  .scenePic .imgList li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .scenePic .imgList li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .scenePic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 30%;
  }
  .scenePic .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .scenePic .next {
    right: 0.3rem;
    margin-right: 0;
  }
}
.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;
  }
}
