.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 {
  height: calc(100vh - 1.2rem);
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .swiper-slide video {
  display: block;
  width: 100%;
  height: 9.6rem;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 45%;
  z-index: 2;
}
.ind-banner .onebox .cn {
  font-size: var(--fs56);
  line-height: 0.9rem;
  color: #fff;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.ind-banner .onebox .playbox {
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: url(../img/play.png) no-repeat;
  background-size: 0.8rem;
  z-index: 1;
}
.ind-banner .twobox {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 20%;
  z-index: 2;
}
.ind-banner .twobox .cn {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
}
.ind-banner .twobox .msg {
  margin-top: 0.12rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
}
.ind-banner .threebox {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 10%;
  z-index: 2;
}
.ind-banner .threebox .cn {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
}
.ind-banner .threebox .msg {
  margin-top: 0.14rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #fff;
}
.ind-banner .onebox,
.ind-banner .twobox,
.ind-banner .threebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox,
.ind-banner .swiper-slide-active .twobox,
.ind-banner .swiper-slide-active .threebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: auto;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.24rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 1.2rem;
  height: 0.06rem;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 6px;
  margin: 0 0.32rem 0 0 !important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #fff;
}
.ind-banner .videoDiv {
  display: none;
}
.ind-banner .mouse {
  position: absolute;
  left: 50%;
  margin-left: -0.55rem;
  bottom: 0.3rem;
  z-index: 3;
  width: 1.1rem;
}
.ind-banner .mouse p {
  font-size: var(--fs24);
  color: #fff;
  line-height: 0.36rem;
  text-align: center;
  font-weight: 100;
  margin-bottom: 0.25rem;
}
.ind-banner .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 28px;
  height: 48px;
  border-radius: 0.48rem;
  border: 1px solid #fff;
}
.ind-banner .mouse .kuang span {
  left: 50%;
  margin-left: -2px;
  position: absolute;
  top: 18px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
@media (max-width: 1600px) {
  .ind-banner .swiper-pagination {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 7rem;
    object-fit: cover;
  }
  .ind-banner .swiper-slide .img video {
    height: 7rem;
    display: none;
  }
  .ind-banner .onebox {
    top: 40%;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    padding: 0 0.3rem;
    line-height: 0.64rem;
  }
  .ind-banner .onebox .playbox {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
  .ind-banner .twobox {
    padding: 0 0.3rem;
    top: 35%;
  }
  .ind-banner .twobox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .ind-banner .twobox .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .ind-banner .threebox {
    top: 10%;
  }
  .ind-banner .threebox .cn {
    font-size: var(--fs24);
  }
  .ind-banner .threebox .msg {
    margin-top: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .ind-banner .swiper-pagination {
    width: 100%;
    left: 0;
    margin-left: 0;
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 0.6rem;
    margin: 0 0.12rem !important;
  }
  .ind-banner .mouse {
    display: none;
    width: 2rem;
    margin-left: -1rem;
  }
  .ind-banner .mouse p {
    font-size: var(--fs15);
    line-height: 0.38rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .mouse .kuang {
    width: 0.28rem;
    height: 0.48rem;
  }
  .ind-banner .mouse .kuang span {
    margin-left: -1px;
    top: 0.15rem;
    width: 2px;
    height: 2px;
  }
}
.indTitle {
  position: relative;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #152244;
  text-align: center;
  padding-bottom: 0.26rem;
}
.indTitle::after {
  content: '';
  width: 0.35rem;
  height: 0.04rem;
  position: absolute;
  left: 50%;
  margin-left: -0.18rem;
  bottom: 0;
  background: #E94419;
}
.indexP1 {
  padding: 0.6rem 0 2rem;
}
.indexP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0 0.48rem;
}
.indexP1 .leftDiv {
  width: 34%;
}
.indexP1 .leftDiv .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.65rem;
}
.indexP1 .leftDiv .content {
  font-size: var(--fs18);
  color: #7f7f7f;
  line-height: 0.28rem;
}
.indexP1 .leftDiv .content b {
  font-size: var(--fs20);
}
.indexP1 .rightDiv {
  position: relative;
  width: 52.8%;
}
.indexP1 .rightDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -3.12rem;
  top: 0;
  width: 6.24rem;
  height: 6.24rem;
  background: url(../img/nimg624Bg.png) no-repeat;
  background-size: 6.24rem;
}
.indexP1 .rightDiv .list {
  position: relative;
  z-index: 1;
  padding-top: 0.38rem;
}
.indexP1 .rightDiv .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP1 .rightDiv .list li {
  position: relative;
  width: calc((100% - 0.16rem) / 2);
  padding: 0.32rem;
  margin-bottom: 0.16rem;
  margin-right: 0.16rem;
  min-height: 2.46rem;
  border: rgba(0, 0, 0, 0.07) solid 1px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.16rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.indexP1 .rightDiv .list li:nth-child(2n) {
  margin-right: 0;
}
.indexP1 .rightDiv .list li .ico img {
  width: 0.48rem;
}
.indexP1 .rightDiv .list li .msg {
  position: absolute;
  right: 0.32rem;
  bottom: 0.18rem;
  text-align: center;
}
.indexP1 .rightDiv .list li .num {
  font-size: var(--fs60);
  line-height: 0.8rem;
  color: #000;
  font-family: 'Poppins-M';
}
.indexP1 .rightDiv .list li .zi {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #7f7f7f;
}
.indexP1-2 {
  padding: 1.45rem 0 1.75rem;
}
.indexP2 {
  padding: 0.58rem 0;
}
.indexP2 .msg {
  font-size: var(--fs30);
  line-height: 0.44rem;
  color: #152244;
  text-align: center;
  margin: 0.22rem 0 0.6rem;
}
.indexP2 .list {
  margin-right: -0.2rem;
}
.indexP2 .list ul {
  display: inline-flex;
  width: 100%;
}
.indexP2 .list li {
  width: 33.33%;
  height: 7.52rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.indexP2 .list li .box {
  margin-right: 0.2rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.15rem;
}
.indexP2 .list li .bg {
  position: relative;
  height: 7.52rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP2 .list li .bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 225px;
  background: url(../img/bg1.png) repeat-x;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .list li .layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0.42rem;
  height: 1.34rem;
  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;
}
.indexP2 .list li .name a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
}
.indexP2 .list li .name a:hover {
  color: #E94419;
}
.indexP2 .list li .more {
  margin-top: 0.12rem;
  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;
}
.indexP2 .list li .more a {
  display: inline-block;
  font-family: 'Poppins-R';
  color: #fff;
  padding-right: 0.3rem;
  font-size: var(--fs14);
  line-height: 0.2rem;
  background: url(../img/ico2.png) right center no-repeat;
  background-size: 0.18rem;
}
.indexP2 .list li .more a:hover {
  color: #E94419;
  background: url(../img/ico2on.png) right center no-repeat;
  background-size: 0.18rem;
}
.indexP2 .list li .playbox {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background: url(../img/play.png) no-repeat;
  background-size: 0.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .list li .videoDiv {
  display: none;
}
.indexP2 .list li.on {
  width: 72%;
}
.indexP2 .list li.on .bg::after {
  opacity: 0;
  visibility: hidden;
}
.indexP2 .list li.on .layer {
  padding: 0 0.22rem;
}
.indexP2 .list li.on .more,
.indexP2 .list li.on .playbox {
  opacity: 1;
  visibility: visible;
}
.indexP3 {
  padding: 0.64rem 0.48rem 0.8rem;
}
.indexP3 .msg {
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #152244;
  text-align: center;
  margin: 0.24rem 0 0.7rem;
}
.indSolution {
  position: relative;
  overflow: hidden;
  border-radius: 0.3rem;
}
.indSolution .imgList {
  width: 40rem;
  position: relative;
  left: 50%;
  margin-left: -20rem;
}
.indSolution .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.indSolution .swiper-slide .img {
  width: 12.86rem;
  height: 8.32rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.3rem;
  overflow: hidden;
  opacity: 0.3;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolution .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 225px;
  background: url(../img/bg1.png) repeat-x;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indSolution .swiper-slide .img 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;
}
.indSolution .swiper-slide .layer {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 0.45rem;
  bottom: 0.48rem;
  color: #fff;
}
.indSolution .swiper-slide .name {
  font-size: var(--fs28);
  line-height: 0.42rem;
}
.indSolution .swiper-slide-active .img {
  opacity: 1;
}
.indSolution .swiper-slide-active .img::after {
  opacity: 1;
}
.indSolution .swiper-slide-active .img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indSolution .se {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -0.4rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.indSolution .se:hover {
  background: #E94419;
}
.indSolution .prev {
  left: 50%;
  margin-left: -6.43rem;
}
.indSolution .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.17rem;
  height: 0.31rem;
  margin-left: -0.09rem;
  margin-top: -0.15rem;
  background: url(../img/nimg17_left.png) no-repeat;
  background-size: 0.17rem;
}
.indSolution .next {
  right: 50%;
  margin-right: -6.43rem;
}
.indSolution .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.17rem;
  height: 0.31rem;
  margin-left: -0.09rem;
  margin-top: -0.15rem;
  background: url(../img/nimg17_right.png) no-repeat;
  background-size: 0.17rem;
}
.indexP4 {
  padding: 0.8rem 0 0.6rem;
  overflow: hidden;
}
.indexP4 .links {
  padding: 0.4rem 0 0.7rem;
  text-align: center;
}
.indexP4 .links ul {
  font-size: 0;
}
.indexP4 .links li {
  display: inline-block;
  font-size: var(--fs16);
}
.indexP4 .links li .box {
  margin: 0 0.15rem;
}
.indexP4 .links li .box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.44rem;
  height: 0.44rem;
  border-radius: 0.48rem;
  border: #cacfda solid 1px;
  color: #666;
}
.indexP4 .links li .box a:hover {
  border: #E94419 solid 1px;
  background: #E94419;
  color: #fff;
}
.indNews {
  position: relative;
  padding-bottom: 1.3rem;
}
.indNews .swiper-slide {
  width: auto;
}
.indNews .swiper-slide .box {
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  width: 4.5rem;
  height: 5.76rem;
  position: relative;
  transition: all 0.4s ease;
}
.indNews .swiper-slide .box .conDiv {
  height: 2.88rem;
  padding: 0.36rem 0.48rem 0;
}
.indNews .swiper-slide .box .time {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
  font-family: 'Poppins-R';
}
.indNews .swiper-slide .box .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #666;
  height: 1.68rem;
  font-weight: 100;
}
.indNews .swiper-slide .box .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.88rem;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0.5;
}
.indNews .swiper-slide .box .imgDiv img {
  width: 100%;
  height: 2.88rem;
  max-height: 2.88rem;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.indNews .swiper-slide .box:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.indNews .swiper-slide .box:hover .time {
  color: #E94419;
}
.indNews .swiper-slide .box:hover .name {
  color: #152244;
}
.indNews .swiper-slide .box:hover .imgDiv {
  height: 2.88rem;
  opacity: 1;
}
.indNews .pjDiv {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  width: 15.36rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indNews .baozhe {
  padding-left: 1.3rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indNews .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indNews .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 4px;
  background-color: #daddea;
}
.indNews .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #152244;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.indNews .num1,
.indNews .num2 {
  font-family: 'Poppins-R';
  font-size: var(--fs18);
  color: #9499af;
  width: 32px;
  text-align: center;
}
.indNews .num1 {
  padding-right: 0.08rem;
  color: #152244;
}
.indNews .num2 {
  padding-left: 0.08rem;
}
.indNews .arrowDiv {
  margin-right: 0.35rem;
}
.indNews .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.13rem;
  display: block;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.indNews .arrowDiv .se:hover {
  background: #E94419;
}
.indNews .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .prev:hover::before {
  background: url(../img/nimg10_lefton.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_right.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .next:hover::before {
  background: url(../img/nimg10_righton.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 1.5rem;
  height: 0.5rem;
  background: #E94419;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.indNews .moreBtn a em {
  margin-left: 0.15rem;
  width: 0.15rem;
  height: 0.15rem;
  background: url(../img/ico3.png) no-repeat;
  background-size: 0.15rem;
}
.indexP5 {
  position: relative;
  padding-top: 1rem;
  height: 100vh;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.indexP5 .layerDiv {
  position: absolute;
  left: 0;
  bottom: 0.8rem;
  width: 100%;
  padding: 0 0.3rem;
  z-index: 1;
}
.indexP5 .titleDiv {
  position: relative;
  color: #fff;
  text-align: center;
  padding-bottom: 0.15rem;
  margin-bottom: 0.45rem;
}
.indexP5 .titleDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.17rem;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #E94419;
}
.indexP5 .titleDiv .cn {
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
}
.indexP5 .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
  text-align: center;
  font-weight: 100;
}
.indexP6 .list ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 9rem;
  overflow: hidden;
}
.indexP6 .list li {
  position: relative;
  width: 50%;
  height: 9rem;
  overflow: hidden;
  background-size: 11rem;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.indexP6 .list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.indexP6 .list li a .imgDiv img {
  width: 100%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP6 .list li a .btnDiv {
  position: absolute;
  left: 50%;
  margin-left: -1rem;
  bottom: 0.7rem;
  width: 2rem;
  height: 0.82rem;
  border: #fff solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs32);
  color: #fff;
  text-align: center;
  line-height: 0.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP6 .list li a:hover .imgDiv img {
  opacity: 0.8;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.indexP6 .list li a:hover .btnDiv {
  border: #E94419 solid 1px;
  background: #E94419;
}
.indexP6 .list li:hover {
  width: 60%;
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs24);
    line-height: 0.64rem;
    padding-bottom: 0.3rem;
  }
  .indTitle::after {
    width: 0.46rem;
    height: 2px;
    margin-left: -0.23rem;
  }
  .indexP1 {
    padding: 0.8rem 0 1rem;
  }
  .indexP1 .mxfDiv {
    display: block;
    padding: 0.65rem 0 0;
  }
  .indexP1 .leftDiv {
    width: auto;
  }
  .indexP1 .leftDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.5rem;
  }
  .indexP1 .leftDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .leftDiv .content b {
    font-size: var(--fs16);
  }
  .indexP1 .rightDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .indexP1 .rightDiv .list {
    padding-top: 0.5rem;
  }
  .indexP1 .rightDiv .list li {
    width: calc((100% - 0.2rem) / 2);
    padding: 0.3rem;
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
    min-height: 2.5rem;
    border-radius: 0.2rem;
  }
  .indexP1 .rightDiv .list li .ico img {
    width: 0.64rem;
  }
  .indexP1 .rightDiv .list li .msg {
    right: 0.3rem;
    bottom: 0.2rem;
  }
  .indexP1 .rightDiv .list li .num {
    font-size: var(--fs24);
  }
  .indexP1 .rightDiv .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1-2 {
    padding: 0.2rem 0 1rem;
  }
  .indexP2 {
    padding: 0.6rem 0;
  }
  .indexP2 .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
    margin: 0.25rem 0 0.6rem;
  }
  .indexP2 .list {
    margin-right: 0;
  }
  .indexP2 .list ul {
    display: block;
  }
  .indexP2 .list li {
    width: 100%;
    height: 5.2rem;
    margin-bottom: 0.3rem;
  }
  .indexP2 .list li:last-child {
    margin-bottom: 0;
  }
  .indexP2 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .indexP2 .list li .bg {
    height: 5.2rem;
  }
  .indexP2 .list li .bg::after {
    height: 60%;
    background: url(../img/bg1.png) top repeat-x;
  }
  .indexP2 .list li .layer {
    padding: 0 0.3rem;
    height: auto;
    bottom: 0.3rem;
  }
  .indexP2 .list li .name a {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .indexP2 .list li .more {
    margin-top: 0.1rem;
    opacity: 1;
    visibility: visible;
  }
  .indexP2 .list li .more a {
    padding-right: 0.4rem;
    line-height: 0.42rem;
    background-size: 0.24rem;
  }
  .indexP2 .list li .more a:hover {
    background-size: 0.24rem;
  }
  .indexP2 .list li .playbox {
    opacity: 1;
    visibility: visible;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
  .indexP2 .list li.on {
    width: 100%;
  }
  .indexP2 .list li.on .bg::after {
    opacity: 1;
    visibility: visible;
  }
  .indexP2 .list li.on .layer {
    padding: 0 0.3rem;
  }
  .indexP2 .list li.on .more,
  .indexP2 .list li.on .playbox {
    opacity: 1;
    visibility: visible;
  }
  .indexP3 {
    padding: 0.4rem var(--offset) 0.8rem;
  }
  .indexP3 .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
    margin: 0.25rem 0 0.6rem;
  }
  .indSolution {
    border-radius: 0;
  }
  .indSolution .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .indSolution .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
  }
  .indSolution .swiper-slide .img::after {
    height: 60%;
    background: url(../img/bg1.png) top repeat-x;
  }
  .indSolution .swiper-slide .layer {
    padding: 0 0.3rem;
    bottom: 0.3rem;
  }
  .indSolution .swiper-slide .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .indSolution .se {
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
  }
  .indSolution .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .indSolution .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .indexP4 {
    padding: 0.4rem 0 0.6rem;
  }
  .indexP4 .links {
    padding: 0.4rem 0;
  }
  .indexP4 .links::after {
    content: '';
    display: block;
    clear: both;
  }
  .indexP4 .links ul {
    font-size: 0;
    margin-right: -0.2rem;
  }
  .indexP4 .links li {
    float: left;
    width: 33.33%;
    display: block;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .indexP4 .links li .box {
    margin: 0 0.2rem 0 0;
  }
  .indexP4 .links li .box a {
    width: 100%;
    height: 0.8rem;
  }
  .indNews {
    padding-bottom: 1.4rem;
  }
  .indNews .swiper-slide .box {
    border-radius: 0.2rem;
    width: 5.8rem;
  }
  .indNews .swiper-slide .box .conDiv {
    height: 2.88rem;
    padding: 0.4rem 0.3rem 0;
  }
  .indNews .swiper-slide .box .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indNews .swiper-slide .box .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .indNews .swiper-slide .box .imgDiv {
    height: 2.18rem;
  }
  .indNews .pjDiv {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .indNews .baozhe {
    padding-left: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .indNews .temeDiv {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .indNews .swiper-pagination {
    display: none;
  }
  .indNews .num1,
  .indNews .num2 {
    display: none;
  }
  .indNews .arrowDiv {
    margin-right: 0;
  }
  .indNews .arrowDiv .se {
    margin: 0 0.1rem;
    width: 1rem;
    height: 1rem;
  }
  .indNews .arrowDiv .prev::before {
    margin-left: -3px;
    width: 6px;
    height: 11px;
    margin-top: -5px;
    background-size: 6px;
  }
  .indNews .arrowDiv .prev:hover::before {
    background-size: 6px;
  }
  .indNews .arrowDiv .next::before {
    margin-right: -3px;
    width: 6px;
    height: 11px;
    margin-top: -5px;
    background-size: 6px;
  }
  .indNews .arrowDiv .next:hover::before {
    background-size: 6px;
  }
  .indNews .moreBtn a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .indNews .moreBtn a em {
    margin-left: 0.1rem;
    width: 0.2rem;
    height: 0.2rem;
    background-size: 0.2rem;
  }
  .indexP5 {
    padding-top: 0.85rem;
    background-attachment: scroll;
    height: 80vh;
  }
  .indexP5 .titleDiv .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP5 .msg {
    bottom: 0.4rem;
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .indexP6 .list ul {
    height: 4.5rem;
  }
  .indexP6 .list li {
    height: 4.5rem;
    background-size: 6.4rem;
  }
  .indexP6 .list li a .btnDiv {
    margin-left: -1.2rem;
    bottom: 0.3rem;
    width: 2.4rem;
    font-size: var(--fs16);
  }
}
.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: 100%;
}
.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: #E94419 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);
}
@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;
  }
}
.soluBanner {
  position: relative;
  overflow: hidden;
}
.soluBanner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #fff 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.soluBanner .bg {
  height: calc(100vh - 1.2rem);
}
.soluBanner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.soluBanner .info {
  position: absolute;
  left: 0;
  width: 100%;
  top: 15%;
  height: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
}
.soluBanner .cn {
  margin: 0 0 0.12rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
}
.soluBanner .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 100;
}
.soluBanner .msg {
  text-align: left;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.soluBanner2::after {
  height: 30%;
  background-image: linear-gradient(360deg, #f6f6f6 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .soluBanner .bg {
    height: 7rem;
  }
  .soluBanner .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .soluBanner .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
    padding: 0 0.5rem;
  }
}
.industryP1 {
  padding: 0.8rem 0;
}
.industryP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.82rem;
}
.industryP1 .list {
  position: relative;
  z-index: 1;
}
.industryP1 .list ul {
  width: auto;
  display: block;
  margin-right: -0.6rem;
}
.industryP1 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.industryP1 .list li {
  float: left;
  width: 25%;
}
.industryP1 .list li .box {
  margin-right: 0.6rem;
  border-radius: 0.2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  height: 3.2rem;
  overflow: hidden;
  padding: 0.45rem 0.25rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.industryP1 .list li .box:hover {
  box-shadow: 0px 4px 9.2px 0px rgba(0, 0, 0, 0.25);
}
.industryP1 .list li .ico {
  height: 0.9rem;
  text-align: center;
}
.industryP1 .list li .ico img {
  width: 0.6rem;
}
.industryP1 .list li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  text-align: center;
  font-weight: bold;
}
.industryP1 .list li .msg {
  margin-top: 0.32rem;
  line-height: 0.26rem;
  font-size: var(--fs18);
  color: #000;
}
.industryP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.industryP1 .swiper-pagination-bullet {
  background: #eee;
  opacity: 1;
}
.industryP1 .swiper-pagination-bullet-active {
  background: #E94419;
}
.industryP2 {
  padding: 0.8rem 0 0.54rem;
}
.industryP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.16rem;
}
.industryP2 .msg {
  font-size: var(--fs18);
  line-height: 0.28rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.54rem;
}
.industryP2 .list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.6rem;
}
.industryP2 .list .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.industryP2 .list .conDiv {
  width: 3.6rem;
}
.industryP2 .list .name {
  position: relative;
  padding-left: 0.72rem;
  line-height: 0.6rem;
  font-size: var(--fs32);
  color: #000;
}
.industryP2 .list .name img {
  position: absolute;
  left: 0.06rem;
  top: 50%;
  margin-top: -0.24rem;
  width: 0.48rem;
}
.industryP2 .list .content {
  margin-top: 0.7rem;
  width: 2.72rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
}
.industryP2 .list .imgDiv {
  width: 11rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.industryP2 .list .imgDiv img {
  width: 100%;
}
.industryP2 .swiper-pagination {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 11rem;
  left: auto;
  right: 0;
  position: absolute;
  bottom: 0;
}
.industryP2 .swiper-pagination-bullet {
  width: 1.2rem;
  height: 0.06rem;
  border-radius: 0.2rem;
  background: #d9d9d9;
  opacity: 1;
  margin: 0;
}
.industryP2 .swiper-pagination-bullet-active {
  background: #E94419;
}
.industryP3 {
  padding: 0.8rem 0 1.2rem;
  background: #f6f6f6;
}
.industryP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.industryP3 .list {
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
}
.industryP3 .list ul {
  width: auto;
  display: block;
  margin-right: -1.6rem;
}
.industryP3 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.industryP3 .list li {
  float: left;
  width: 33.33%;
}
.industryP3 .list li .box {
  position: relative;
  margin-right: 1.6rem;
  border-radius: 0.2rem;
  background: #fff;
  height: 3.6rem;
  overflow: hidden;
  padding: 0.32rem 0.4rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.industryP3 .list li .box:hover {
  box-shadow: 0px 4px 9.2px 0px rgba(0, 0, 0, 0.25);
}
.industryP3 .list li .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #000;
  text-align: center;
}
.industryP3 .list li .msg {
  margin-top: 0.42rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #000;
}
.industryP3 .list li .num {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
  font-size: var(--fs40);
  line-height: 0.48rem;
  font-family: 'Poppins-M';
  color: #E94419;
}
.industryP3 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.industryP3 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.industryP3 .swiper-pagination-bullet-active {
  background: #E94419;
}
.industryP4 {
  padding: 0.8rem 0 0.72rem;
  background: #f6f6f6;
}
.industryP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.68rem;
}
.hardcore {
  position: relative;
}
.hardcore .list {
  overflow: hidden;
}
.hardcore .list li {
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
}
.hardcore .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 5.32rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.hardcore .list li .imgDiv img {
  max-width: 3.8rem;
  max-height: 4rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.hardcore .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.46rem;
  color: #000;
  font-size: var(--fs36);
  line-height: 0.54rem;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hardcore .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.hardcore .list li:hover .name {
  color: #E94419;
}
.hardcore .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  top: 44%;
  margin-top: -0.4rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  z-index: 2;
}
.hardcore .se:hover {
  background: #E94419;
}
.hardcore .prev {
  left: 50%;
  margin-left: -9rem;
}
.hardcore .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.09rem;
  width: 0.17rem;
  height: 0.31rem;
  margin-top: -0.16rem;
  background: url(../img/nimg17_left.png) no-repeat;
  background-size: 0.17rem;
}
.hardcore .next {
  right: 50%;
  margin-right: -9rem;
}
.hardcore .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.09rem;
  width: 0.17rem;
  height: 0.31rem;
  margin-top: -0.16rem;
  background: url(../img/nimg17_right.png) no-repeat;
  background-size: 0.17rem;
}
.industryP5 {
  padding: 0.8rem 0;
  background: #f6f6f6;
}
.industryP5 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.82rem;
}
.industryP5 .list {
  padding: 0 0.3rem;
  position: relative;
  z-index: 1;
}
.industryP5 .list ul {
  width: auto;
  display: block;
  margin-right: -1rem;
}
.industryP5 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.industryP5 .list li {
  float: left;
  width: 33.33%;
}
.industryP5 .list li .box {
  margin-right: 1rem;
  border-radius: 0.2rem;
  background: #fff;
  height: 4rem;
  overflow: hidden;
  padding: 0.45rem 0.5rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.industryP5 .list li .box:hover {
  box-shadow: 0px 4px 9.2px 0px rgba(0, 0, 0, 0.25);
}
.industryP5 .list li .ico {
  height: 0.9rem;
  text-align: center;
}
.industryP5 .list li .ico img {
  width: 0.6rem;
}
.industryP5 .list li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  text-align: center;
  font-weight: bold;
}
.industryP5 .list li .msg {
  margin-top: 0.32rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #000;
}
.industryP5 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.industryP5 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.industryP5 .swiper-pagination-bullet-active {
  background: #E94419;
}
@media (max-width: 1600px) {
  .industryP1 .list li .box {
    height: 3.5rem;
    padding: 0.45rem 0.2rem 0;
  }
}
@media (max-width: 1004px) {
  .industryP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .industryP1 .list {
    overflow: hidden;
  }
  .industryP1 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .industryP1 .list li {
    width: auto;
  }
  .industryP1 .list li .box {
    margin-right: 0;
    height: 4.5rem;
    padding: 0.45rem 0.3rem 0;
  }
  .industryP1 .list li .box:hover {
    box-shadow: none;
  }
  .industryP1 .list li .ico {
    height: 1.2rem;
  }
  .industryP1 .list li .ico img {
    width: 0.86rem;
  }
  .industryP1 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .industryP1 .list li .msg {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .industryP1 .swiper-pagination {
    display: block;
  }
  .industryP2 {
    padding: 0.8rem 0 0.65rem;
  }
  .industryP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.25rem;
  }
  .industryP2 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.6rem;
  }
  .industryP2 .list {
    padding-bottom: 0.6rem;
  }
  .industryP2 .list .mxfDiv {
    display: block;
  }
  .industryP2 .list .conDiv {
    width: auto;
    margin-bottom: 0.5rem;
  }
  .industryP2 .list .name {
    padding-left: 0.78rem;
    line-height: 0.64rem;
    font-size: var(--fs18);
  }
  .industryP2 .list .name img {
    left: 0;
    margin-top: -0.32rem;
    width: 0.64rem;
  }
  .industryP2 .list .content {
    margin-top: 0.5rem;
    width: auto;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .industryP2 .list .imgDiv {
    width: auto;
    border-radius: 0.2rem;
  }
  .industryP2 .swiper-pagination {
    width: 100%;
  }
  .industryP2 .swiper-pagination-bullet {
    width: 0.6rem;
    height: 2px;
  }
  .industryP3 {
    padding: 0.8rem 0 0.9rem;
  }
  .industryP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .industryP3 .list {
    overflow: hidden;
    padding: 0;
  }
  .industryP3 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .industryP3 .list li {
    width: auto;
  }
  .industryP3 .list li .box {
    margin-right: 0;
    height: 4.2rem;
    padding: 0.45rem 0.3rem 0;
  }
  .industryP3 .list li .box:hover {
    box-shadow: none;
  }
  .industryP3 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .industryP3 .list li .msg {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .industryP3 .list li .num {
    right: 0.3rem;
    bottom: 0.3rem;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .industryP3 .swiper-pagination {
    display: block;
  }
  .industryP4 {
    padding: 0.85rem 0 0.8rem;
  }
  .industryP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .hardcore .list {
    overflow: hidden;
  }
  .hardcore .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .hardcore .list li .imgDiv {
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .hardcore .list li .imgDiv img {
    max-width: 2.8rem;
    max-height: 3rem;
  }
  .hardcore .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs15);
    line-height: 0.64rem;
  }
  .hardcore .se {
    top: 42%;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
  }
  .hardcore .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .hardcore .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .industryP5 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.65rem;
  }
  .industryP5 .list {
    padding: 0;
    overflow: hidden;
  }
  .industryP5 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .industryP5 .list li {
    width: auto;
  }
  .industryP5 .list li .box {
    margin-right: 0;
    height: 4.5rem;
    padding: 0.45rem 0.3rem 0;
  }
  .industryP5 .list li .box:hover {
    box-shadow: none;
  }
  .industryP5 .list li .ico {
    height: 1.2rem;
  }
  .industryP5 .list li .ico img {
    width: 0.86rem;
  }
  .industryP5 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .industryP5 .list li .msg {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .industryP5 .swiper-pagination {
    display: block;
  }
}
.powerstationP1 {
  padding: 0.8rem 0;
  background: #f6f6f6;
}
.powerstationP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.64rem;
}
.powerstationP1 .list {
  padding: 0 0.3rem;
  position: relative;
  z-index: 1;
}
.powerstationP1 .list ul {
  width: auto;
  display: block;
  margin-right: -1rem;
}
.powerstationP1 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.powerstationP1 .list li {
  float: left;
  width: 33.33%;
}
.powerstationP1 .list li .box {
  margin-right: 1rem;
  border-radius: 0.2rem;
  background: #fff;
  height: 4rem;
  overflow: hidden;
  padding: 0.62rem 0.6rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.powerstationP1 .list li .box:hover {
  box-shadow: 0px 4px 9.2px 0px rgba(0, 0, 0, 0.25);
}
.powerstationP1 .list li .ico {
  height: 1.12rem;
  text-align: center;
}
.powerstationP1 .list li .ico img {
  width: 0.6rem;
}
.powerstationP1 .list li .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  text-align: center;
  font-weight: bold;
}
.powerstationP1 .list li .msg {
  margin-top: 0.45rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #000;
}
.powerstationP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.powerstationP1 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.powerstationP1 .swiper-pagination-bullet-active {
  background: #E94419;
}
.powerstationP2 {
  padding-top: 0.9rem;
}
.powerstationP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.powerstationP2 .list ul {
  width: auto;
  display: block;
}
.powerstationP2 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.powerstationP2 .list li {
  float: left;
  width: 33.33%;
  position: relative;
}
.powerstationP2 .list li .imgDiv {
  position: relative;
}
.powerstationP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.powerstationP2 .list li .imgDiv img {
  width: 100%;
}
.powerstationP2 .list li .layer {
  position: absolute;
  top: 41%;
  left: 0;
  width: 100%;
  padding: 0 0.8rem;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.powerstationP2 .list li .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  font-weight: bold;
}
.powerstationP2 .list li .msg {
  margin: 0.24rem auto 0;
  width: 2.8rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  min-height: 1.8rem;
}
.powerstationP2 .list li .zi {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 2rem;
  height: 0.68rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs28);
  color: #fff;
}
.powerstationP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.powerstationP2 .swiper-pagination-bullet {
  background: #eee;
  opacity: 1;
}
.powerstationP2 .swiper-pagination-bullet-active {
  background: #E94419;
}
.powerstationP3 {
  padding: 0.8rem 0;
  background: #f6f6f6;
}
.powerstationP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.powerstationP3-2 {
  background: #f7f7f7;
}
.hotProduct {
  position: relative;
}
.hotProduct .list {
  overflow: hidden;
}
.hotProduct .list li {
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
}
.hotProduct .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 5.32rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.hotProduct .list li .imgDiv img {
  max-width: 3.8rem;
  max-height: 4rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.hotProduct .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.34rem;
  color: #000;
  font-size: var(--fs36);
  line-height: 0.54rem;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hotProduct .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.hotProduct .list li:hover .name {
  color: #E94419;
}
.hotProduct .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  top: 44%;
  margin-top: -0.4rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  z-index: 2;
}
.hotProduct .se:hover {
  background: #E94419;
}
.hotProduct .prev {
  left: -0.4rem;
}
.hotProduct .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.09rem;
  width: 0.17rem;
  height: 0.31rem;
  margin-top: -0.16rem;
  background: url(../img/nimg17_left.png) no-repeat;
  background-size: 0.17rem;
}
.hotProduct .next {
  right: -0.4rem;
}
.hotProduct .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.09rem;
  width: 0.17rem;
  height: 0.31rem;
  margin-top: -0.16rem;
  background: url(../img/nimg17_right.png) no-repeat;
  background-size: 0.17rem;
}
.powerstationP4 {
  padding: 0.8rem 0.8rem 0.96rem;
}
.powerstationP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.64rem;
}
.powerstationP4 .list {
  position: relative;
  z-index: 1;
}
.powerstationP4 .list ul {
  width: auto;
  display: block;
  margin-right: -0.53rem;
}
.powerstationP4 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.powerstationP4 .list li {
  float: left;
  width: 25%;
}
.powerstationP4 .list li .box {
  margin-right: 0.53rem;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.powerstationP4 .list li .topDiv {
  height: 3.75rem;
  position: relative;
}
.powerstationP4 .list li .imgDiv {
  height: 3.75rem;
  position: relative;
}
.powerstationP4 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.powerstationP4 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.powerstationP4 .list li .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
}
.powerstationP4 .list li .ico img {
  width: 0.8rem;
}
.powerstationP4 .list li .botDiv {
  border-top: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 3.75rem;
  padding-top: 0.6rem;
  color: #152244;
  text-align: center;
  border-bottom-left-radius: 0.16rem;
  border-bottom-right-radius: 0.16rem;
}
.powerstationP4 .list li .name {
  font-size: var(--fs48);
  line-height: 0.72rem;
  font-weight: bold;
}
.powerstationP4 .list li .zi {
  margin-top: 0.2rem;
  font-size: var(--fs28);
  line-height: 0.42rem;
  min-height: 0.84rem;
  padding: 0 0.75rem;
}
.powerstationP4 .list li .msg {
  margin-top: 0.2rem;
  padding: 0 0.5rem;
  line-height: 0.3rem;
  font-size: var(--fs20);
  font-weight: 100;
}
.powerstationP4 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.powerstationP4 .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
}
.powerstationP4 .swiper-pagination-bullet-active {
  background: #E94419;
}
.powerstationP5 {
  padding: 0.8rem 0 0.9rem;
}
.powerstationP5 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.96rem;
}
.powerstationP5 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.powerstationP5 .list li {
  width: calc((100% - 1.56rem) / 4);
  margin-right: 0.52rem;
}
.powerstationP5 .list li:nth-child(4n) {
  margin-right: 0;
}
.powerstationP5 .list li .imgDiv {
  border-radius: 0.16rem;
  overflow: hidden;
}
.powerstationP5 .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.powerstationP5 .list li .name {
  margin-top: 0.4rem;
  text-align: center;
  font-size: var(--fs32);
  line-height: 0.48rem;
  color: #000;
}
.powerstationP5 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.powerstationP6 {
  padding: 0.8rem 0 0.54rem;
}
.powerstationP6 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.16rem;
}
.powerstationP6 .msg {
  font-size: var(--fs18);
  line-height: 0.28rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.54rem;
}
.powerstationP6 .list {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.6rem;
}
.powerstationP6 .list .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.powerstationP6 .list .conDiv {
  width: 3.6rem;
}
.powerstationP6 .list .name {
  position: relative;
  padding-left: 0.72rem;
  line-height: 0.6rem;
  font-size: var(--fs32);
  color: #000;
}
.powerstationP6 .list .name img {
  position: absolute;
  left: 0.06rem;
  top: 50%;
  margin-top: -0.24rem;
  width: 0.48rem;
}
.powerstationP6 .list .zi {
  margin-top: 0.4rem;
  width: 2.72rem;
  color: #E94419;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.powerstationP6 .list .content {
  margin-top: 0.64rem;
  width: 2.72rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
}
.powerstationP6 .list .imgDiv {
  width: 11rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.powerstationP6 .list .imgDiv img {
  width: 100%;
}
.powerstationP6 .swiper-pagination {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 11rem;
  left: auto;
  right: 0;
  position: absolute;
  bottom: 0;
}
.powerstationP6 .swiper-pagination-bullet {
  width: 1.2rem;
  height: 0.06rem;
  border-radius: 0.2rem;
  background: #d9d9d9;
  opacity: 1;
  margin: 0;
}
.powerstationP6 .swiper-pagination-bullet-active {
  background: #E94419;
}
.powerstationP7 {
  padding: 0.8rem 0;
}
.powerstationP7 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.powerstationP7 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.powerstationP7 .list li {
  width: calc((100% - 0.74rem) / 3);
  margin-right: 0.37rem;
}
.powerstationP7 .list li:nth-child(3n) {
  margin-right: 0;
}
.powerstationP7 .list li a {
  display: block;
  background: #f8f8f8;
  border-radius: 0.16rem;
  padding-top: 0.7rem;
  height: 4rem;
  text-align: center;
}
.powerstationP7 .list li a .imgDiv img {
  width: 0.8rem;
}
.powerstationP7 .list li a .name {
  margin-top: 0.48rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #152244;
}
.powerstationP7 .list li a .msg {
  margin-top: 0.12rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #797979;
}
.powerstationP7 .list li a .zi {
  position: relative;
  margin-top: 0.48rem;
  display: inline-block;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #E94419;
  padding-right: 0.26rem;
}
.powerstationP7 .list li a .zi::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/nimg20_0.png) no-repeat;
  background-size: 0.2rem;
}
.powerstationP7 .list li a:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1004px) {
  .powerstationP1 {
    padding: 0.8rem 0;
  }
  .powerstationP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .powerstationP1 .list {
    overflow: hidden;
    padding: 0;
  }
  .powerstationP1 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .powerstationP1 .list li {
    width: auto;
  }
  .powerstationP1 .list li .box {
    margin-right: 0;
    height: 4.2rem;
    padding: 0.45rem 0.3rem 0;
  }
  .powerstationP1 .list li .box:hover {
    box-shadow: none;
  }
  .powerstationP1 .list li .ico {
    height: 1.2rem;
  }
  .powerstationP1 .list li .ico img {
    width: 0.86rem;
  }
  .powerstationP1 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .powerstationP1 .list li .msg {
    margin-top: 0.25rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .powerstationP1 .swiper-pagination {
    display: block;
  }
  .powerstationP2 {
    padding: 0.9rem var(--offset) 0.8rem;
  }
  .powerstationP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .powerstationP2 .list {
    overflow: hidden;
  }
  .powerstationP2 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .powerstationP2 .list li {
    width: auto;
  }
  .powerstationP2 .list li .layer {
    top: 32%;
    padding: 0 0.4rem;
  }
  .powerstationP2 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .powerstationP2 .list li .msg {
    margin: 0.24rem auto 0;
    width: 70%;
    font-size: var(--fs15);
    line-height: 0.48rem;
    min-height: 2.5rem;
  }
  .powerstationP2 .list li .zi {
    width: 2.4rem;
    height: 0.8rem;
    font-size: var(--fs16);
  }
  .powerstationP2 .swiper-pagination {
    display: block;
  }
  .powerstationP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .hotProduct .list {
    overflow: hidden;
  }
  .hotProduct .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .hotProduct .list li .imgDiv {
    height: 4.2rem;
    border-radius: 0.2rem;
  }
  .hotProduct .list li .imgDiv img {
    max-width: 2.8rem;
    max-height: 3rem;
  }
  .hotProduct .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs15);
    line-height: 0.64rem;
  }
  .hotProduct .se {
    top: 42%;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
  }
  .hotProduct .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .hotProduct .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .powerstationP4 {
    padding: 0.8rem var(--offset) 0.9rem;
  }
  .powerstationP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .powerstationP4 .list {
    overflow: hidden;
    padding: 0;
  }
  .powerstationP4 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .powerstationP4 .list li {
    width: auto;
  }
  .powerstationP4 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .powerstationP4 .list li .ico {
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .powerstationP4 .list li .ico img {
    width: 1rem;
  }
  .powerstationP4 .list li .botDiv {
    height: 4.5rem;
    padding-top: 0.45rem;
  }
  .powerstationP4 .list li .name {
    font-size: var(--fs22);
  }
  .powerstationP4 .list li .zi {
    font-size: var(--fs18);
    line-height: 0.48rem;
    min-height: 0.96rem;
    padding: 0 0.3rem;
  }
  .powerstationP4 .list li .msg {
    margin-top: 0.2rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .powerstationP4 .swiper-pagination {
    display: block;
  }
  .powerstationP5 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .powerstationP5 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .powerstationP5 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .powerstationP5 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .powerstationP5 .list li .imgDiv {
    border-radius: 0.2rem;
  }
  .powerstationP5 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .powerstationP6 {
    padding: 0.8rem 0 0.65rem;
  }
  .powerstationP6 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.25rem;
  }
  .powerstationP6 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.6rem;
  }
  .powerstationP6 .list {
    padding-bottom: 0.6rem;
  }
  .powerstationP6 .list .mxfDiv {
    display: block;
  }
  .powerstationP6 .list .conDiv {
    width: auto;
    margin-bottom: 0.5rem;
  }
  .powerstationP6 .list .name {
    padding-left: 0.78rem;
    line-height: 0.64rem;
    font-size: var(--fs18);
  }
  .powerstationP6 .list .name img {
    left: 0;
    margin-top: -0.32rem;
    width: 0.64rem;
  }
  .powerstationP6 .list .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
    min-height: 1.04rem;
    width: auto;
  }
  .powerstationP6 .list .content {
    margin-top: 0.4rem;
    width: auto;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .powerstationP6 .list .imgDiv {
    width: auto;
    border-radius: 0.2rem;
  }
  .powerstationP6 .swiper-pagination {
    width: 100%;
  }
  .powerstationP6 .swiper-pagination-bullet {
    width: 0.6rem;
    height: 2px;
  }
  .powerstationP7 {
    padding: 0.8rem 0 0.7rem;
  }
  .powerstationP7 .title {
    font-size: var(--fs24);
    margin-bottom: 0.45rem;
  }
  .powerstationP7 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .powerstationP7 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .powerstationP7 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .powerstationP7 .list li a {
    border-radius: 0.2rem;
    padding-top: 0.6rem;
    height: 4.2rem;
  }
  .powerstationP7 .list li a .name {
    margin-top: 0.24rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .powerstationP7 .list li a .msg {
    margin-top: 0.12rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
    padding: 0 0.3rem;
    min-height: 0.84rem;
  }
  .powerstationP7 .list li a .zi {
    margin-top: 0.2rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
    padding-right: 0.4rem;
  }
  .powerstationP7 .list li a .zi::after {
    margin-top: -0.15rem;
    width: 0.3rem;
    height: 0.3rem;
    background-size: 0.3rem;
  }
}
.microgridP1 {
  padding-top: 0.8rem;
}
.microgridP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.16rem;
}
.microgridP1 .msg {
  font-size: var(--fs18);
  line-height: 0.28rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.6rem;
}
.microgridP1 .imgDiv img {
  width: 100%;
}
.microgridP2 {
  padding: 0.52rem 0 0.54rem;
}
.microgridP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.52rem;
}
.microgridP2 .imgDiv {
  border-radius: 0.1rem;
  overflow: hidden;
}
.microgridP2 .imgDiv img {
  width: 100%;
}
.microgridP2 .links {
  margin-top: 0.5rem;
}
.microgridP2 .links ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.microgridP2 .links li {
  width: 4.5rem;
}
.microgridP2 .links li .name {
  font-size: var(--fs32);
  line-height: 0.48rem;
  padding-bottom: 0.1rem;
  position: relative;
  color: #a9a9a9;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.microgridP2 .links li .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #a9a9a9;
  border-radius: 0.16rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.microgridP2 .links li .msg {
  margin-top: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #a9a9a9;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.microgridP2 .links li:hover .name {
  color: #000;
}
.microgridP2 .links li:hover .name::after {
  background: #E94419;
}
.microgridP2 .links li:hover .msg {
  color: #000;
}
.microgridP3 {
  padding: 0.7rem 0 0.6rem;
}
.microgridP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.microgridP3 .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.36rem;
}
.casePic {
  position: relative;
  overflow: hidden;
}
.casePic .imgList {
  width: 43rem;
  position: relative;
  left: 50%;
  margin-left: -21.5rem;
}
.casePic .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.casePic .swiper-slide .img {
  width: 14rem;
  height: 7.55rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.3rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.casePic .swiper-slide .img 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;
}
.casePic .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: #152244;
  font-weight: bold;
  margin-top: 0.25rem;
  font-size: var(--fs48);
  line-height: 0.72rem;
}
.casePic .swiper-slide-active .img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.casePic .se {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -0.4rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.casePic .se:hover {
  background: #E94419;
}
.casePic .prev {
  left: 50%;
  margin-left: -7.4rem;
}
.casePic .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.17rem;
  height: 0.31rem;
  margin-left: -0.09rem;
  margin-top: -0.15rem;
  background: url(../img/nimg17_left.png) no-repeat;
  background-size: 0.17rem;
}
.casePic .next {
  right: 50%;
  margin-right: -7.4rem;
}
.casePic .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.17rem;
  height: 0.31rem;
  margin-left: -0.09rem;
  margin-top: -0.15rem;
  background: url(../img/nimg17_right.png) no-repeat;
  background-size: 0.17rem;
}
.casePic .swiper-pagination {
  position: relative;
  width: 100%;
  margin-top: 0.35rem;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.casePic .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: none;
  border: #E94419 solid 1px;
  border-radius: 50%;
  margin-left: 6px!important;
  margin-right: 6px!important;
  overflow: hidden;
}
.casePic .swiper-pagination-bullet-active {
  background: #E94419;
}
@media (max-width: 1004px) {
  .microgridP1 {
    padding-top: 0.8rem;
  }
  .microgridP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.2rem;
  }
  .microgridP1 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0 var(--offset);
  }
  .microgridP2 {
    padding: 0.7rem 0;
  }
  .microgridP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .microgridP2 .imgDiv {
    border-radius: 0.16rem;
  }
  .microgridP2 .links {
    margin-top: 0.65rem;
  }
  .microgridP2 .links ul {
    display: block;
  }
  .microgridP2 .links li {
    width: auto;
    margin-bottom: 0.4rem;
  }
  .microgridP2 .links li:last-child {
    margin-bottom: 0;
  }
  .microgridP2 .links li .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    padding-bottom: 0.15rem;
  }
  .microgridP2 .links li .name::after {
    height: 2px;
  }
  .microgridP2 .links li .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .microgridP3 {
    padding: 0.8rem var(--offset) 0.7rem;
  }
  .microgridP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.32rem;
  }
  .microgridP3 .msg {
    font-size: var(--fs16);
    line-height: 0.56rem;
    margin-bottom: 0.5rem;
  }
  .casePic .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .casePic .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
  }
  .casePic .swiper-slide .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .casePic .se {
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
  }
  .casePic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .casePic .next {
    right: 0.2rem;
    margin-right: 0;
  }
}
.errorDiv {
  padding-top: 1rem;
  text-align: center;
  background: #f4f4f4;
  height: calc(100vh - 1.2rem);
}
.errorDiv .limg img {
  width: 5rem;
}
.errorDiv .zi {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  font-weight: 100;
}
@media (max-width: 1004px) {
  .errorDiv {
    height: calc(100vh - 2rem);
  }
  .errorDiv .zi {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
}
.legal {
  padding: 1.1rem 0;
  background: #f4f4f4;
}
.legal .w1200 {
  width: 12rem;
  margin: 0 auto;
}
.legal .title {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.9rem;
  color: #000;
  margin-bottom: 0.6rem;
}
.legal .content {
  color: #696969;
  font-size: var(--fs20);
  line-height: 0.3rem;
  font-weight: 100;
}
.legal .content em {
  color: #000;
}
.legal .zi {
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #000;
  margin-bottom: 0.15rem;
  font-weight: normal;
}
.legal .time {
  color: #696969;
  font-size: var(--fs20);
  line-height: 0.3rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}
.legal2 {
  padding: 0.8rem 0 1.1rem;
}
@media (max-width: 1004px) {
  .legal {
    padding: 0.8rem var(--offset);
  }
  .legal .w1200 {
    width: 100%;
  }
  .legal .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .legal .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .legal .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
}
.searchTop {
  position: relative;
  padding-top: 1.2rem;
  height: calc(100vh - 1.2rem);
  background: url(../img/searchBg.jpg) bottom center no-repeat;
  background-size: cover;
}
.searchTop::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #fff 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.searchTop .form {
  position: relative;
  z-index: 1;
  width: 9rem;
  height: 1rem;
  border-radius: 0.48rem;
  margin: 0 auto;
  border: #fff solid 1px;
}
.searchTop .form .input1 {
  width: 100%;
  padding-left: 0.56rem;
  color: #fff;
  font-size: var(--fs30);
  line-height: 1rem;
  background: none;
}
.searchTop .form .input1::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.searchTop .form .input1:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.searchTop .form .input1::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.searchTop .form .input1:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.searchTop .form .btn1 {
  position: absolute;
  right: 0.56rem;
  top: 50%;
  margin-top: -0.18rem;
  width: 0.36rem;
  height: 0.36rem;
  background: url(../img/nimg36_1.png) center no-repeat;
  background-size: 100%;
}
.searchTop .links {
  text-align: center;
  padding-top: 0.78rem;
}
.searchTop .links ul {
  font-size: 0;
}
.searchTop .links li {
  display: inline-block;
  margin: 0 0.08rem;
}
.searchTop .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  min-width: 1.3rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs24);
  color: #fff;
}
.searchTop .links li a:hover {
  color: #E94419;
}
.searchTop .links li .on {
  background: #E94419;
  border: #E94419 solid 1px;
  color: #fff !important;
}
.searchDiv {
  padding: 0.8rem 0;
}
.searchDiv .result {
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #848484;
  margin-bottom: 0.4rem;
}
.searchDiv .result em {
  color: #152244;
  font-family: 'Poppins-R';
}
.searchDiv .list {
  padding-bottom: 0.8rem;
}
.searchDiv .list li {
  margin-bottom: 0.25rem;
}
.searchDiv .list li:last-child {
  margin-bottom: 0;
}
.searchDiv .list li .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #152244;
  margin-bottom: 0.12rem;
}
.searchDiv .list li .more a {
  display: inline-block;
  padding-right: 0.32rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #686868;
  background: url(../img/nimg24_7.png) right center no-repeat;
  background-size: 0.24rem;
}
.searchDiv .list li .more a:hover {
  color: #E94419;
  background: url(../img/nimg24_7on.png) right center no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .searchTop {
    padding: 1rem var(--offset) 0;
    height: calc(100vh - 2rem);
  }
  .searchTop .form {
    width: 100%;
  }
  .searchTop .form .input1 {
    padding-left: 0.3rem;
    font-size: var(--fs18);
  }
  .searchTop .form .btn1 {
    right: 0.3rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.48rem;
  }
  .searchTop .links {
    text-align: left;
    padding-top: 0.65rem;
  }
  .searchTop .links::after {
    content: '';
    display: block;
    clear: both;
  }
  .searchTop .links li {
    display: block;
    float: left;
    margin: 0 0.15rem 0.2rem 0;
  }
  .searchTop .links li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    min-width: 1.6rem;
    height: 0.78rem;
    font-size: var(--fs15);
  }
  .searchDiv .result {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .searchDiv .list li {
    margin-bottom: 0.3rem;
  }
  .searchDiv .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin-bottom: 0.15rem;
  }
  .searchDiv .list li .more a {
    padding-right: 0.48rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    background-size: 0.36rem;
  }
  .searchDiv .list li .more a:hover {
    background-size: 0.36rem;
  }
}
.partnerBan {
  position: relative;
  overflow: hidden;
}
.partnerBan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #fff 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.partnerBan .bg {
  height: calc(100vh - 1.2rem);
}
.partnerBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partnerBan .info {
  position: absolute;
  left: 0;
  width: 100%;
  top: 15%;
  height: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
}
.partnerBan .cn {
  margin: 0 0 0.12rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
}
.partnerBan .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 100;
}
.partnerBan .btnDiv {
  margin: 0.16rem auto 0;
  width: 1.4rem;
}
.partnerBan .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.36rem;
  border-radius: 0.48rem;
  color: #E94419;
  border: #E94419 solid 1px;
  font-size: var(--fs20);
}
.partnerBan .btnDiv a:hover {
  background: #E94419;
  color: #fff;
}
@media (max-width: 1004px) {
  .partnerBan .bg {
    height: 7rem;
  }
  .partnerBan .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .partnerBan .btnDiv {
    margin: 0.3rem auto 0;
    width: 2.1rem;
  }
  .partnerBan .btnDiv a {
    width: 100%;
    height: 0.6rem;
    font-size: var(--fs15);
  }
}
.partnerP1 {
  padding-top: 0.8rem;
}
.partnerP1 .links {
  text-align: center;
  padding-bottom: 0.6rem;
}
.partnerP1 .links ul {
  font-size: 0;
}
.partnerP1 .links li {
  display: inline-block;
  margin: 0 0.24rem;
  font-size: var(--fs48);
}
.partnerP1 .links li a {
  position: relative;
  display: block;
  color: #000;
  line-height: 0.72rem;
  padding-bottom: 0.2rem;
}
.partnerP1 .links li a::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64%;
  margin-left: -32%;
  background: #E94419;
  height: 4px;
  border-radius: 0.12rem;
}
.partnerP1 .links li .on {
  font-weight: bold;
}
.partnerP1 .links li .on::after {
  opacity: 1;
  visibility: visible;
}
.partnerP1 .mxfDiv {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.partnerP1 .mxfDiv .imgDiv {
  width: 58.5%;
}
.partnerP1 .mxfDiv .imgDiv img {
  width: 100%;
}
.partnerP1 .mxfDiv .conDiv {
  padding-left: calc((100% - 14.6rem) / 2);
}
.partnerP1 .mxfDiv .baozhe {
  width: 4rem;
}
.partnerP1 .mxfDiv .name {
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.partnerP1 .mxfDiv .content {
  margin-top: 0.24rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  letter-spacing: 2px;
  color: #000;
  font-weight: 100;
}
.partnerP1-2 .mxfDiv .conDiv {
  order: 1;
  padding-right: calc((100% - 14.6rem) / 2);
}
.partnerP2 {
  padding: 0.8rem 0.8rem 0.96rem;
  background: #f6f6f6;
}
.partnerP2 .title {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.9rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.64rem;
}
.partnerP2 .list {
  position: relative;
  z-index: 1;
}
.partnerP2 .list ul {
  width: auto;
  display: block;
  margin-right: -0.53rem;
}
.partnerP2 .list ul::after {
  content: '';
  display: block;
  clear: both;
}
.partnerP2 .list li {
  float: left;
  width: 25%;
}
.partnerP2 .list li .box {
  margin-right: 0.53rem;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.partnerP2 .list li .topDiv {
  height: 3.75rem;
  position: relative;
}
.partnerP2 .list li .imgDiv {
  height: 3.75rem;
  position: relative;
}
.partnerP2 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.partnerP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partnerP2 .list li .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
}
.partnerP2 .list li .ico img {
  width: 0.8rem;
}
.partnerP2 .list li .botDiv {
  height: 3.75rem;
  padding-top: 0.6rem;
  color: #152244;
  text-align: center;
}
.partnerP2 .list li .name {
  font-size: var(--fs48);
  line-height: 0.72rem;
  font-weight: bold;
}
.partnerP2 .list li .msg {
  margin-top: 0.48rem;
  padding: 0 0.75rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  font-weight: 100;
}
.partnerP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.partnerP2 .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
}
.partnerP2 .swiper-pagination-bullet-active {
  background: #E94419;
}
.partnerP3 {
  padding: 0.7rem 0 0.8rem;
}
.partnerP3 .title {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.9rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.82rem;
}
.partnerP3-2 {
  padding: 1.75rem 0 1.1rem;
  background: #f3f4f9;
}
.partnerP4 {
  padding: 0.8rem 0 0.5rem;
}
.partnerP4 .title {
  text-align: center;
  font-size: var(--fs60);
  line-height: 0.9rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.52rem;
}
.partnerP4 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.partnerP4 .leftImg {
  width: 56%;
}
.partnerP4 .leftImg img {
  width: 100%;
}
.partnerP4 .rightDiv {
  width: 40%;
  padding-top: 0.4rem;
}
.partnerP4 .form ul {
  margin-right: -0.35rem;
}
.partnerP4 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.32rem;
}
.partnerP4 .form li:last-child {
  width: 100%;
}
.partnerP4 .form li .box {
  margin-right: 0.35rem;
  border-radius: 0.1rem;
  background: #f3f3f3;
}
.partnerP4 .form li .box .input1 {
  background: none;
  width: 100%;
  height: 0.62rem;
  padding-left: 0.36rem;
  font-size: var(--fs24);
  line-height: 0.62rem;
  color: #717171;
}
.partnerP4 .form li .box .input1::-webkit-input-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box .input1:-moz-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box .input1::-moz-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box .input1:-ms-input-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box textarea {
  background: none;
  width: 100%;
  padding: 0.2rem 0 0 0.36rem;
  height: 3.06rem;
  font-family: inherit;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #717171;
}
.partnerP4 .form li .box textarea::-webkit-input-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box textarea:-moz-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box textarea::-moz-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .form li .box textarea:-ms-input-placeholder {
  color: #717171;
  opacity: 1;
}
.partnerP4 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.62rem;
  border-radius: 0.1rem;
  background: #E94419;
  color: #fff;
  font-size: var(--fs24);
}
.partnerP4 .msgList {
  padding-top: 0.9rem;
}
.partnerP4 .msgList li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  padding-left: 0.46rem;
  min-height: 0.36rem;
  margin-bottom: 0.18rem;
}
.partnerP4 .msgList li:last-child {
  margin-bottom: 0;
}
.partnerP4 .msgList li .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
}
.partnerP4 .msgList li .ico img {
  width: 0.3rem;
}
.partnerP4 .msgList li .zi {
  color: #000;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .partnerP1 .links li {
    font-size: var(--fs18);
  }
  .partnerP1 .links li a::after {
    height: 2px;
  }
  .partnerP1 .mxfDiv {
    display: block;
  }
  .partnerP1 .mxfDiv .imgDiv {
    width: 100%;
  }
  .partnerP1 .mxfDiv .conDiv {
    padding: 0 var(--offset) 0.6rem;
  }
  .partnerP1 .mxfDiv .baozhe {
    width: auto;
  }
  .partnerP1 .mxfDiv .name {
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .partnerP1 .mxfDiv .content {
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .partnerP1-2 .mxfDiv .conDiv {
    padding: 0 var(--offset) 0.6rem;
  }
  .partnerP2 {
    padding: 0.8rem var(--offset) 0.9rem;
  }
  .partnerP2 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .partnerP2 .list {
    overflow: hidden;
    padding: 0;
  }
  .partnerP2 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .partnerP2 .list li {
    width: auto;
  }
  .partnerP2 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .partnerP2 .list li .ico {
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .partnerP2 .list li .ico img {
    width: 1rem;
  }
  .partnerP2 .list li .botDiv {
    height: 3.5rem;
    padding-top: 0.45rem;
  }
  .partnerP2 .list li .name {
    font-size: var(--fs22);
  }
  .partnerP2 .list li .msg {
    margin-top: 0.2rem;
    line-height: 0.52rem;
    font-size: var(--fs16);
    padding: 0 0.4rem;
  }
  .partnerP2 .swiper-pagination {
    display: block;
  }
  .partnerP3 {
    padding: 0.7rem var(--offset) 0.8rem;
  }
  .partnerP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .partnerP4 {
    padding: 0.8rem 0 0.75rem;
  }
  .partnerP4 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .partnerP4 .mxfDiv {
    display: block;
  }
  .partnerP4 .leftImg {
    width: auto;
  }
  .partnerP4 .rightDiv {
    width: auto;
    padding-top: 0.65rem;
  }
  .partnerP4 .form ul {
    margin-right: 0;
  }
  .partnerP4 .form li {
    float: none;
    width: 100%;
  }
  .partnerP4 .form li .box {
    margin-right: 0;
    border-radius: 0.16rem;
  }
  .partnerP4 .form li .box .input1 {
    height: 0.9rem;
    padding-left: 0.3rem;
    font-size: var(--fs16);
    line-height: 0.9rem;
  }
  .partnerP4 .form li .box textarea {
    padding: 0.2rem 0 0 0.3rem;
    height: 3.5rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .partnerP4 .btnDiv a {
    height: 0.9rem;
    border-radius: 0.16rem;
    font-size: var(--fs18);
  }
  .partnerP4 .msgList {
    padding-top: 0.65rem;
  }
  .partnerP4 .msgList li {
    padding-left: 0.56rem;
    min-height: 0.36rem;
    margin-bottom: 0.25rem;
  }
  .partnerP4 .msgList li .ico {
    margin-top: -0.2rem;
  }
  .partnerP4 .msgList li .ico img {
    width: 0.4rem;
  }
  .partnerP4 .msgList li .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
}
.inquireBan {
  position: relative;
  overflow: hidden;
}
.inquireBan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #efefef 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.inquireBan .bg {
  height: calc(100vh - 1.2rem);
}
.inquireBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inquireBan .info {
  position: absolute;
  left: 50%;
  margin-left: -7rem;
  width: 14rem;
  top: 15%;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.inquireBan .cn {
  margin: 0 0 0.12rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
}
.inquireBan .msg {
  padding-top: 1rem;
  text-align: left;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
@media (max-width: 1004px) {
  .inquireBan .bg {
    height: 7rem;
  }
  .inquireBan .info {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    width: auto;
  }
  .inquireBan .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .inquireBan .msg {
    padding-top: 0.45rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
}
.inquire {
  padding: 0.8rem 1.2rem;
  background: #efefef;
}
.inquire .selectArea {
  width: 3rem;
  position: relative;
  z-index: 1;
}
.inquire .selectArea .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.56rem;
  padding-right: 0.8rem;
  font-size: var(--fs30);
  border: #666 solid 1px;
  color: #5c5c5c;
  border-radius: 0.48rem;
}
.inquire .selectArea .caption::after {
  content: "";
  width: 0.64rem;
  height: 0.12rem;
  background: url(../img/selectIco.png) no-repeat left center;
  background-size: 0.22rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
}
.inquire .selectArea .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  border: #666 solid 1px;
  background: #efefef;
  max-height: 3rem;
  border-radius: 0.1rem;
  overflow-y: auto;
  display: none;
}
.inquire .selectArea .xlist::-webkit-scrollbar {
  width: 4px;
}
.inquire .selectArea .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.inquire .selectArea .xlist::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.inquire .selectArea .xlist a {
  display: block;
  font-size: var(--fs18);
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.3rem;
}
.inquire .selectArea .xlist a:hover {
  color: #E94419;
}
.inquire .list {
  padding-top: 0.7rem;
}
.inquire .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.inquire .list li {
  width: calc((100% - 0.72rem) / 4);
  margin-right: 0.24rem;
  margin-top: 0.42rem;
  min-height: 3.74rem;
  background: #fff;
  border-radius: 0.16rem;
  padding: 0.2rem;
}
.inquire .list li:nth-child(-n+4) {
  margin-top: 0;
}
.inquire .list li:nth-child(4n) {
  margin-right: 0;
}
.inquire .list li .logo {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.2rem;
  height: 0.66rem;
  background: #d9d9d9;
}
.inquire .list li .logo img {
  max-width: 1rem;
  max-height: 0.54rem;
}
.inquire .list li .name {
  padding: 0.23rem 0 0 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  font-weight: bold;
}
.inquire .list li .msg {
  padding-top: 0.23rem;
}
.inquire .list li .msg dd {
  font-size: var(--fs20);
  color: #606060;
  line-height: 0.3rem;
  position: relative;
  padding-left: 0.32rem;
  margin-bottom: 0.12rem;
  font-family: 'Poppins-R';
}
.inquire .list li .msg dd:last-child {
  margin-bottom: 0;
}
.inquire .list li .msg dd img {
  position: absolute;
  left: 0;
  top: 0.03rem;
  width: 0.24rem;
}
@media (max-width: 1004px) {
  .inquire {
    padding: 0.8rem var(--offset);
  }
  .inquire .selectArea {
    width: 80%;
  }
  .inquire .selectArea .caption {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .inquire .selectArea .xlist {
    max-height: 3.6rem;
  }
  .inquire .selectArea .xlist a {
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
    padding: 0 0.3rem;
  }
  .inquire .list {
    padding-top: 0.5rem;
  }
  .inquire .list ul {
    display: block;
  }
  .inquire .list li {
    width: auto;
    margin-right: 0;
    margin-top: 0.3rem;
    min-height: 3.74rem;
    border-radius: 0.2rem;
    padding: 0.3rem;
  }
  .inquire .list li:nth-child(-n+4) {
    margin-top: 0.3rem;
  }
  .inquire .list li .logo {
    width: 1.8rem;
    height: 0.86rem;
  }
  .inquire .list li .logo img {
    max-width: 1.5rem;
    max-height: 0.74rem;
  }
  .inquire .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .inquire .list li .msg dd {
    font-size: var(--fs15);
    line-height: 0.56rem;
    padding-left: 0.5rem;
    margin-bottom: 0.18rem;
  }
  .inquire .list li .msg dd img {
    top: 0.1rem;
    width: 0.36rem;
  }
}
.contact {
  padding: 1.38rem 0 1rem;
  background: #efefef;
  position: relative;
}
.contact .bg {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.contact .bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #efefef 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.contact .bg img {
  width: 100%;
}
.contact .title {
  position: relative;
  z-index: 2;
  font-size: var(--fs48);
  line-height: 0.64rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.contact .bigBox {
  position: relative;
  z-index: 2;
  margin-top: 3.9rem;
  border-radius: 0.3rem;
  background: #fff;
  padding: 0.6rem 1.2rem 0.7rem;
}
.contact .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  padding: 0.42rem 0.8rem;
  border: #E94419 solid 1px;
  border-radius: 0.16rem;
}
.contact .leftDiv {
  width: 50%;
}
.contact .leftDiv li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  padding-left: 0.84rem;
  min-height: 0.3rem;
  margin-bottom: 0.16rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  font-family: 'Poppins-R';
  color: #000;
}
.contact .leftDiv li:last-child {
  margin-bottom: 0;
}
.contact .leftDiv li .zi {
  position: absolute;
  padding-left: 0.28rem;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
}
.contact .leftDiv li .zi img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.06rem;
  width: 0.12rem;
}
.contact .rightDiv {
  padding-left: 0.65rem;
  width: 50%;
}
.contact .rightDiv ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contact .rightDiv li {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.3rem;
  font-family: 'Poppins-R';
}
.contact .subtitle {
  margin: 0.6rem 0 0.32rem;
  position: relative;
  padding-left: 0.22rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  font-weight: bold;
}
.contact .subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.08rem;
  height: 0.3rem;
  background: #E94419;
}
.contact .form::after {
  content: '';
  display: block;
  clear: both;
}
.contact .form ul {
  margin-right: -0.4rem;
}
.contact .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.42rem;
}
.contact .form li .box {
  margin-right: 0.4rem;
}
.contact .form li .zi {
  margin-bottom: 0.16rem;
  line-height: 0.28rem;
  font-size: var(--fs18);
  color: #000;
}
.contact .form li .zi em {
  padding-left: 0.08rem;
  color: #f00;
}
.contact .form li .select {
  width: 100%;
  position: relative;
}
.contact .form li .select .caption {
  position: relative;
  cursor: pointer;
  padding-left: 0.16rem;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: #808080;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.contact .form li .select .caption::after {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.12rem;
  background: url(../img/selectIco.png) no-repeat left center;
  background-size: 0.22rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
  z-index: 1;
}
.contact .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background: #f8f8f8;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border-radius: 6px;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.contact .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.contact .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.contact .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.contact .form li .select .xlist em {
  display: block;
  cursor: pointer;
  font-size: var(--fs16);
  color: #808080;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.2rem;
  border-bottom: 1px solid #e0e0e0;
}
.contact .form li .select .xlist em:hover {
  color: #E94419;
}
.contact .form li .select .xlist em:last-child {
  border-bottom: none;
}
.contact .form li .input1 {
  width: 100%;
  padding-left: 0.16rem;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: #808080;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.contact .form li .input1::-webkit-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1::-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1:-ms-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea {
  background: #f8f8f8;
  width: 100%;
  padding: 0.15rem 0 0 0.16rem;
  height: 2.56rem;
  font-family: inherit;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #808080;
  border-radius: 6px;
}
.contact .form li textarea::-webkit-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea::-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea:-ms-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form .li01 {
  width: 20%;
}
.contact .form .li02 {
  width: 30%;
}
.contact .form .li03 {
  width: 100%;
}
.contact .form .li04 {
  width: 25%;
}
.contact .agree {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.contact .agree a {
  color: #E94419;
  text-decoration: underline;
}
.contact .agree input {
  position: relative;
  top: -0.02rem;
  margin: 0 0.16rem 0 0;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #000;
  /* 边框颜色 */
  -webkit-appearance: none;
  /* 移除默认样式 */
  -moz-appearance: none;
  /* 移除默认样式 */
  appearance: none;
  /* 移除默认样式 */
  outline: none;
  /* 移除点击后的轮廓 */
}
.contact .agree input:checked {
  border: 1px solid #E94419;
  background: #E94419 url(../img/gou.png) center no-repeat;
  /* 选中时的背景颜色 */
}
.contact .submit {
  padding-top: 0.6rem;
}
.contact .submit a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.8rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #E94419;
  color: #fff;
  font-size: var(--fs24);
  font-weight: 100;
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.9rem 0 1rem;
  }
  .contact .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .contact .bigBox {
    margin-top: 0.65rem;
    border-radius: 0.2rem;
    padding: 0.6rem 0.3rem 0.7rem;
  }
  .contact .toptop {
    display: block;
    padding: 0.42rem 0.3rem;
    border-radius: 0.2rem;
  }
  .contact .leftDiv {
    width: auto;
  }
  .contact .leftDiv li {
    padding-left: 1.2rem;
    min-height: 0.48rem;
    margin-bottom: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .contact .leftDiv li .zi {
    padding-left: 0.42rem;
    margin-top: -0.24rem;
  }
  .contact .leftDiv li .zi img {
    margin-top: -0.12rem;
    width: 0.24rem;
  }
  .contact .rightDiv {
    padding-left: 0;
    padding-top: 0.6rem;
    width: auto;
  }
  .contact .rightDiv ul {
    display: block;
  }
  .contact .rightDiv li {
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
    line-height: 0.42rem;
  }
  .contact .subtitle {
    margin: 0.7rem 0 0.45rem;
    padding-left: 0.24rem;
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .contact .subtitle::before {
    margin-top: -0.2rem;
    width: 3px;
    height: 0.4rem;
  }
  .contact .form ul {
    margin-right: 0;
  }
  .contact .form li {
    float: none;
    width: auto;
    margin-bottom: 0.35rem;
  }
  .contact .form li .box {
    margin-right: 0;
  }
  .contact .form li .zi {
    margin-bottom: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs15);
  }
  .contact .form li .zi em {
    padding-left: 0.1rem;
  }
  .contact .form li .select .caption {
    padding-left: 0.2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .contact .form li .select .caption::after {
    width: 0.7rem;
    height: 0.16rem;
    background-size: 0.28rem;
    margin-top: -0.08rem;
  }
  .contact .form li .select .xlist {
    max-height: 4rem;
  }
  .contact .form li .select .xlist em {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .contact .form li .input1 {
    padding-left: 0.2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .contact .form li textarea {
    padding: 0.2rem 0 0 0.2rem;
    height: 3.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contact .form .li01 {
    width: 100%;
  }
  .contact .form .li02 {
    width: 100%;
  }
  .contact .form .li04 {
    width: 100%;
  }
  .contact .agree {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contact .agree input {
    width: 0.3rem;
    height: 0.3rem;
  }
  .contact .submit a {
    width: 2.4rem;
    height: 0.8rem;
    font-size: var(--fs16);
  }
}
.joinBan {
  position: relative;
  overflow: hidden;
}
.joinBan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(360deg, #efefef 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.joinBan .bg {
  height: calc(100vh - 1.2rem);
}
.joinBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinBan .info {
  position: absolute;
  left: 50%;
  margin-left: -7rem;
  width: 14rem;
  top: 15%;
  color: #fff;
  z-index: 2;
}
.joinBan .cn {
  margin: 0 0 0.24rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
}
.joinBan .msg {
  font-size: var(--fs32);
  line-height: 0.48rem;
  opacity: 0.5;
  font-family: 'Poppins-L';
}
@media (max-width: 1004px) {
  .joinBan .bg {
    height: 7rem;
  }
  .joinBan .info {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    width: auto;
  }
  .joinBan .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .joinBan .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.joinP1 {
  padding-top: 0.9rem;
  background: #efefef;
}
.joinP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.joinP1 .mxfDiv {
  position: relative;
  height: 11rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.joinP1 .mxfDiv .botLayer {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  width: 14.4rem;
  margin-left: -7.2rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.54rem 1.68rem 0.84rem;
  color: #000;
  z-index: 1;
}
.joinP1 .mxfDiv .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  font-weight: bold;
}
.joinP1 .mxfDiv .msg {
  margin-top: 0.24rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
}
.joinP2 {
  padding: 0.8rem 0;
}
.joinP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.88rem;
}
.joinP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.joinP2 .list li {
  position: relative;
  width: calc((100% - 0.82rem) / 3);
  margin-right: 0.41rem;
  margin-top: 0.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.joinP2 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.joinP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.joinP2 .list li .name {
  position: absolute;
  z-index: 1;
  left: 0.24rem;
  bottom: 0.18rem;
  padding-left: 0.42rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
}
.joinP2 .list li .name img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
}
.joinP2 .list li .msg {
  padding: 0.74rem 0.65rem 0 0.24rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
}
.joinP2 .list li .imgDiv {
  height: 3.5rem;
}
.joinP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinP3 {
  padding-top: 1rem;
  height: 100vh;
  background: center top no-repeat;
  background-size: cover;
}
.joinP3 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.24rem;
}
.joinP3 .btnDiv {
  margin: 0 auto;
  width: 2.02rem;
}
.joinP3 .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.5rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs24);
  color: #fff;
}
.joinP3 .btnDiv a em {
  margin-left: 0.12rem;
  width: 0.28rem;
  height: 0.28rem;
  background: url(../img/ico4.png) center no-repeat;
  background-size: contain;
}
.joinP3 .btnDiv a:hover {
  background: #E94419;
  border: #E94419 solid 1px;
}
.joinP4 {
  padding: 1.2rem 0;
}
.joinP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #152244;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.joinP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.joinP4 .list li {
  width: calc((100% - 2rem) / 3);
  margin-right: 1rem;
}
.joinP4 .list li:nth-child(3n) {
  margin-right: 0;
}
.joinP4 .list li .imgDiv {
  border-radius: 0.16rem;
  overflow: hidden;
}
.joinP4 .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.joinP4 .list li .name {
  margin-top: 0.28rem;
  text-align: center;
  font-size: var(--fs36);
  line-height: 0.54rem;
  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;
}
.joinP4 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.joinP4 .list li:hover .name {
  color: #E94419;
}
@media (max-width: 1004px) {
  .joinP1 .title {
    font-size: var(--fs24);
    margin-bottom: 0.65rem;
  }
  .joinP1 .mxfDiv {
    background-attachment: scroll;
    height: 11rem;
  }
  .joinP1 .mxfDiv .botLayer {
    left: 0.3rem;
    bottom: 0.4rem;
    width: calc(100% - 0.6rem);
    margin-left: 0;
    border-radius: 0.24rem;
    padding: 0.5rem 0.3rem 0.6rem;
  }
  .joinP1 .mxfDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .joinP1 .mxfDiv .msg {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .joinP2 .title {
    font-size: var(--fs24);
    margin-bottom: 0.65rem;
  }
  .joinP2 .list ul {
    display: block;
  }
  .joinP2 .list li {
    width: auto;
    margin-right: 0;
    margin-top: 0.3rem;
  }
  .joinP2 .list li:nth-child(-n+3) {
    margin-top: 0.3rem;
  }
  .joinP2 .list li:nth-child(3n) {
    margin-right: 0;
  }
  .joinP2 .list li .name {
    left: 0.3rem;
    bottom: 0.3rem;
    padding-left: 0.56rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .joinP2 .list li .name img {
    margin-top: -0.21rem;
    width: 0.42rem;
  }
  .joinP2 .list li .msg {
    padding: 0.2rem 0.3rem 0.5rem 0.3rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .joinP2 .list li .imgDiv {
    height: 3.8rem;
  }
  .joinP3 {
    padding-top: 0.8rem;
    height: 60vh;
  }
  .joinP3 .title {
    font-size: var(--fs24);
    margin-bottom: 0.3rem;
  }
  .joinP3 .btnDiv {
    width: 2.8rem;
  }
  .joinP3 .btnDiv a {
    height: 0.8rem;
    font-size: var(--fs17);
    color: #fff;
  }
  .joinP3 .btnDiv a em {
    width: 0.4rem;
    height: 0.4rem;
    background-size: 0.4rem;
  }
  .joinP4 {
    padding: 0.8rem 0 0.7rem;
  }
  .joinP4 .title {
    font-size: var(--fs24);
    margin-bottom: 0.45rem;
  }
  .joinP4 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .joinP4 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .joinP4 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .joinP4 .list li .imgDiv {
    border-radius: 0.2rem;
  }
  .joinP4 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
}
.becomeDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100vh;
}
.becomeDiv .leftDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 26%;
  padding-top: 0.6rem;
  height: 100%;
  background: #e3e3e3;
}
.becomeDiv .leftDiv .logo {
  text-align: center;
}
.becomeDiv .leftDiv .step {
  margin-top: 0.8rem;
  position: relative;
}
.becomeDiv .leftDiv .step::after {
  content: '';
  position: absolute;
  left: 0.14rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d0d0d0;
}
.becomeDiv .leftDiv .step ul {
  height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.becomeDiv .leftDiv .step li {
  z-index: 1;
  padding-left: 0.42rem;
  position: relative;
  line-height: 0.3rem;
}
.becomeDiv .leftDiv .step li .num {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  width: 0.27rem;
  height: 0.27rem;
  background: #d9d9d9;
  border-radius: 50%;
  color: #333;
  overflow: hidden;
  font-family: 'Poppins-L';
  font-size: var(--fs16);
}
.becomeDiv .leftDiv .step li .zi {
  font-size: var(--fs20);
  color: #000;
}
.becomeDiv .leftDiv .step .on .num {
  background: #E94419;
  color: #fff;
}
.becomeDiv .leftDiv .step .ok .num {
  background: url(../img/success.png) center no-repeat;
  background-size: cover;
  text-indent: 40px;
}
.becomeDiv .rightDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  width: 74%;
  height: 100%;
}
.becomeDiv .pageDown ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.becomeDiv .pageDown li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.64rem;
  height: 0.33rem;
  border: #a7a7a7 solid 1px;
  font-size: 12px;
  color: #000;
  border-radius: 5px;
}
.becomeDiv .pageDown li a:hover {
  border: #E94419 solid 1px;
  background: #E94419;
  color: #fff;
}
.becomeDiv .chooseType {
  width: 4.9rem;
}
.becomeDiv .chooseType .title {
  font-size: var(--fs32);
  line-height: 0.48rem;
  color: #000;
}
.becomeDiv .chooseType .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.becomeDiv .chooseType .list {
  margin-top: 0.28rem;
}
.becomeDiv .chooseType .list li {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: relative;
  padding-left: 0.76rem;
  margin-bottom: 0.28rem;
  height: 0.72rem;
  border: #ececec solid 1px;
  border-radius: 0.06rem;
}
.becomeDiv .chooseType .list li:last-child {
  margin-bottom: 0;
}
.becomeDiv .chooseType .list li .ico {
  position: absolute;
  left: 0.15rem;
  top: 50%;
  margin-top: -0.21rem;
}
.becomeDiv .chooseType .list li .ico img {
  width: 0.42rem;
  filter: brightness(0) invert(0);
}
.becomeDiv .chooseType .list li .name {
  font-size: var(--fs14);
  line-height: 0.22rem;
  color: #000;
}
.becomeDiv .chooseType .list li .cn {
  font-size: 11px;
  color: #a7a7a7;
}
.becomeDiv .chooseType .list .on {
  border: #E94419 solid 1px;
}
.becomeDiv .chooseType .list .on .ico img {
  filter: brightness(1) invert(0);
}
.becomeDiv .chooseType .list .on .name {
  color: #E94419;
}
.becomeDiv .chooseType .pageDown {
  margin-top: 2.1rem;
}
.becomeDiv .distributor {
  width: 4.9rem;
}
.becomeDiv .distributor .title {
  font-size: var(--fs32);
  line-height: 0.48rem;
  color: #000;
}
.becomeDiv .distributor .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.becomeDiv .distributor .form {
  margin-top: 0.15rem;
}
.becomeDiv .distributor .form::after {
  content: '';
  display: block;
  clear: both;
}
.becomeDiv .distributor .form ul {
  margin-right: -0.16rem;
}
.becomeDiv .distributor .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.16rem;
}
.becomeDiv .distributor .form li .box {
  margin-right: 0.16rem;
  position: relative;
}
.becomeDiv .distributor .form li .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #333;
  margin-bottom: 5px;
}
.becomeDiv .distributor .form li .zi em {
  color: #f00;
  padding-left: 5px;
}
.becomeDiv .distributor .form li .input1 {
  width: 100%;
  padding-left: 0.1rem;
  font-size: var(--fs16);
  height: 0.45rem;
  border-radius: 5px;
  border: #a7a7a7 solid 1px;
}
.becomeDiv .distributor .form li .eyes {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  width: 0.45rem;
  height: 0.45rem;
  z-index: 1;
  cursor: pointer;
}
.becomeDiv .distributor .form li .shut {
  background: url(../img/nimg16_2.png) center no-repeat;
}
.becomeDiv .distributor .form li .open {
  background: url(../img/nimg16_1.png) center no-repeat;
}
.becomeDiv .distributor .form li .tips {
  font-size: var(--fs14);
  color: #757575;
  font-weight: 100;
  line-height: 0.22rem;
}
.becomeDiv .distributor .form li .yzm {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.24rem;
  height: 0.45rem;
  border-radius: 5px;
  border: #a7a7a7 solid 1px;
  font-size: 12px;
  color: #a7a7a7;
}
.becomeDiv .distributor .form li .yzm:hover {
  background: #E94419;
  border: #E94419 solid 1px;
  color: #fff;
}
.becomeDiv .distributor .form .li01 {
  width: 100%;
}
.becomeDiv .distributor .form .li01 .box {
  padding-right: 1.3rem;
}
.becomeDiv .distributor .form .li02 {
  width: 100%;
}
.becomeDiv .distributor .pageDown {
  margin-top: 0.88rem;
}
.becomeDiv .distributor .pageDown2 {
  margin-top: 0.2rem;
}
.becomeDiv .installer {
  width: 8.42rem;
}
.becomeDiv .installer .title {
  font-size: var(--fs32);
  line-height: 0.48rem;
  color: #000;
}
.becomeDiv .installer .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #000;
}
.becomeDiv .installer .form {
  margin-top: 0.15rem;
}
.becomeDiv .installer .form::after {
  content: '';
  display: block;
  clear: both;
}
.becomeDiv .installer .form ul {
  margin-right: -0.42rem;
}
.becomeDiv .installer .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.16rem;
}
.becomeDiv .installer .form li .box {
  margin-right: 0.42rem;
  position: relative;
}
.becomeDiv .installer .form li .zi {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #333;
  margin-bottom: 5px;
}
.becomeDiv .installer .form li .zi em {
  color: #f00;
  padding-left: 5px;
}
.becomeDiv .installer .form li .input1 {
  width: 100%;
  padding-left: 0.1rem;
  font-size: var(--fs16);
  height: 0.45rem;
  border-radius: 5px;
  border: #a7a7a7 solid 1px;
}
.becomeDiv .installer .form li .tips {
  width: 6rem;
  font-size: var(--fs16);
  color: #757575;
  font-weight: 100;
  line-height: 0.24rem;
}
.becomeDiv .installer .form .li01 {
  float: none;
}
.becomeDiv .installer .agree {
  font-size: var(--fs20);
  line-height: 0.28rem;
  color: #000;
}
.becomeDiv .installer .agree a {
  color: #E94419;
  text-decoration: underline;
}
.becomeDiv .installer .agree input {
  position: relative;
  top: -0.02rem;
  margin: 0 0.28rem 0 0;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #000;
  /* 边框颜色 */
  -webkit-appearance: none;
  /* 移除默认样式 */
  -moz-appearance: none;
  /* 移除默认样式 */
  appearance: none;
  /* 移除默认样式 */
  outline: none;
  /* 移除点击后的轮廓 */
}
.becomeDiv .installer .agree input:checked {
  border: 1px solid #E94419;
  background: #E94419 url(../img/gou.png) center no-repeat;
  /* 选中时的背景颜色 */
}
.becomeDiv .installer .pageDown {
  width: 4.92rem;
  margin-top: 0.5rem;
}
@media (max-width: 1004px) {
  .becomeDiv {
    display: block;
    height: auto;
  }
  .becomeDiv .leftDiv {
    width: 100%;
    padding: 0.8rem 0;
    height: auto;
  }
  .becomeDiv .leftDiv .logo img {
    width: 2.4rem;
  }
  .becomeDiv .leftDiv .step {
    margin-top: 0.65rem;
  }
  .becomeDiv .leftDiv .step::after {
    left: 0.24rem;
  }
  .becomeDiv .leftDiv .step li {
    padding-left: 0.64rem;
    line-height: 0.48rem;
  }
  .becomeDiv .leftDiv .step li .num {
    top: 0;
    width: 0.48rem;
    height: 0.48rem;
    font-size: var(--fs14);
  }
  .becomeDiv .leftDiv .step li .zi {
    font-size: var(--fs17);
  }
  .becomeDiv .rightDiv {
    display: block;
    width: auto;
    padding: 1rem var(--offset);
  }
  .becomeDiv .pageDown li a {
    width: 1.2rem;
    height: 0.64rem;
    font-size: var(--fs14);
  }
  .becomeDiv .chooseType {
    width: auto;
  }
  .becomeDiv .chooseType .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .becomeDiv .chooseType .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .becomeDiv .chooseType .list {
    margin-top: 0.35rem;
  }
  .becomeDiv .chooseType .list li {
    padding-left: 1.16rem;
    margin-bottom: 0.3rem;
    height: 1.2rem;
  }
  .becomeDiv .chooseType .list li .ico {
    left: 0.25rem;
    margin-top: -0.32rem;
  }
  .becomeDiv .chooseType .list li .ico img {
    width: 0.64rem;
  }
  .becomeDiv .chooseType .list li .name {
    font-size: var(--fs15);
    line-height: 0.38rem;
  }
  .becomeDiv .chooseType .list li .cn {
    font-size: var(--fs13);
  }
  .becomeDiv .chooseType .pageDown {
    margin-top: 1rem;
  }
  .becomeDiv .distributor {
    width: auto;
  }
  .becomeDiv .distributor .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .becomeDiv .distributor .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .becomeDiv .distributor .form {
    margin-top: 0.25rem;
  }
  .becomeDiv .distributor .form ul {
    margin-right: 0;
  }
  .becomeDiv .distributor .form li {
    float: none;
    width: auto;
    margin-bottom: 0.25rem;
  }
  .becomeDiv .distributor .form li .box {
    margin-right: 0;
  }
  .becomeDiv .distributor .form li .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .becomeDiv .distributor .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs14);
    height: 0.9rem;
  }
  .becomeDiv .distributor .form li .eyes {
    width: 0.9rem;
    height: 0.9rem;
  }
  .becomeDiv .distributor .form li .tips {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .becomeDiv .distributor .form li .yzm {
    width: 2rem;
    height: 0.9rem;
    font-size: var(--fs13);
  }
  .becomeDiv .distributor .form .li01 .box {
    padding-right: 2.1rem;
  }
  .becomeDiv .distributor .pageDown {
    margin-top: 0.8rem;
  }
  .becomeDiv .installer {
    width: auto;
  }
  .becomeDiv .installer .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .becomeDiv .installer .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .becomeDiv .installer .form {
    margin-top: 0.25rem;
  }
  .becomeDiv .installer .form ul {
    margin-right: 0;
  }
  .becomeDiv .installer .form li {
    float: none;
    width: auto;
    margin-bottom: 0.25rem;
  }
  .becomeDiv .installer .form li .box {
    margin-right: 0;
  }
  .becomeDiv .installer .form li .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .becomeDiv .installer .form li .input1 {
    padding-left: 0.2rem;
    font-size: var(--fs14);
    height: 0.9rem;
  }
  .becomeDiv .installer .form li .tips {
    width: auto;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .becomeDiv .installer .agree {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .becomeDiv .installer .agree input {
    width: 0.3rem;
    height: 0.3rem;
  }
  .becomeDiv .installer .pageDown {
    width: auto;
    margin-top: 0.8rem;
  }
}
.success-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 59;
}
.successLayer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2.18rem;
  margin-top: -2.18rem;
  width: 4.36rem;
  height: 4.36rem;
}
.successLayer .limg img {
  width: 100%;
}
.successLayer .zi {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.72rem;
  color: #fff;
}
@media (max-width: 1004px) {
  .successLayer .zi {
    font-size: var(--fs24);
  }
}
.serviceBan {
  position: relative;
  overflow: hidden;
}
.serviceBan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #e9eaeb 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.serviceBan .bg {
  height: calc(100vh - 1.2rem);
}
.serviceBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serviceBan .info {
  position: absolute;
  left: 50%;
  margin-left: -7.36rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.serviceBan .cn {
  margin: 0;
  font-size: var(--fs60);
  line-height: 0.9rem;
}
@media (max-width: 1004px) {
  .serviceBan .bg {
    height: 7rem;
  }
  .serviceBan .info {
    left: 0.3rem;
    margin-left: 0;
  }
  .serviceBan .cn {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
}
.serviceBox {
  background: #E9EAEB;
  padding: 0.8rem 0 1rem;
}
.serviceBox .bigTitle {
  text-align: center;
  color: #000;
  font-size: var(--fs48);
  line-height: 0.72rem;
}
.serviceBox .links {
  padding: 0.32rem 0 0.62rem;
  text-align: center;
}
.serviceBox .links::after {
  content: '';
  display: block;
  clear: both;
}
.serviceBox .links ul {
  font-size: 0;
}
.serviceBox .links li {
  display: inline-block;
  margin: 0 0.2rem;
  font-size: var(--fs24);
}
.serviceBox .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.64rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #000;
  border: #929293 solid 1px;
}
.serviceBox .links li a:hover {
  color: #E94419;
}
.serviceBox .links li .on {
  color: #fff !important;
  border: #E94419 solid 1px;
  background: #E94419;
}
.warranty .toptop {
  position: relative;
  margin-bottom: 0.3rem;
  z-index: 2;
}
.warranty .title {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
}
.warranty .selectLan {
  width: 2rem;
  position: absolute;
  right: 0;
  top: 0.12rem;
  z-index: 1;
}
.warranty .selectLan .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  height: 0.48rem;
  line-height: 0.48rem;
  padding-left: 0.16rem;
  padding-right: 0.4rem;
  font-size: var(--fs18);
  border: #757575 solid 1px;
  color: #757575;
  border-radius: 0.48rem;
}
.warranty .selectLan .caption::after {
  content: "";
  width: 0.32rem;
  height: 0.12rem;
  background: url(../img/selectIco.png) no-repeat left center;
  background-size: 0.12rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
}
.warranty .selectLan .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  border: #666 solid 1px;
  background: #efefef;
  max-height: 2rem;
  border-radius: 0.1rem;
  overflow-y: auto;
  display: none;
}
.warranty .selectLan .xlist::-webkit-scrollbar {
  width: 4px;
}
.warranty .selectLan .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.warranty .selectLan .xlist::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.warranty .selectLan .xlist a {
  display: block;
  font-size: var(--fs18);
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0 0.3rem;
}
.warranty .selectLan .xlist a:hover {
  color: #E94419;
}
.warranty .list {
  padding: 0.8rem;
  background: #fff;
  border-radius: 0.2rem;
}
.warranty .list li {
  margin-bottom: 0.5rem;
}
.warranty .list li:last-child {
  margin-bottom: 0;
}
.warranty .list li a {
  position: relative;
  display: block;
  padding-right: 1.5rem;
}
.warranty .list li a .name {
  position: relative;
  padding-left: 0.56rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  background: url(../img/nimg30_9.png) left 0.03rem no-repeat;
  background-size: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.warranty .list li a .more {
  font-size: var(--fs18);
  color: #757575;
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 0.32rem;
  line-height: 0.36rem;
  background: url(../img/ico5.png) right center no-repeat;
  background-size: 0.2rem;
}
.warranty .list li a:hover .name {
  color: #E94419;
}
@media (max-width: 1004px) {
  .serviceBox {
    padding: 0.8rem 0;
  }
  .serviceBox .bigTitle {
    font-size: var(--fs24);
  }
  .serviceBox .links {
    padding: 0.45rem 0 0.62rem;
  }
  .serviceBox .links ul {
    margin-right: -0.3rem;
  }
  .serviceBox .links li {
    display: block;
    float: left;
    width: 33.33%;
    margin: 0 0 0.3rem 0;
    font-size: var(--fs15);
  }
  .serviceBox .links li .box {
    margin-right: 0.3rem;
  }
  .serviceBox .links li a {
    width: 100%;
    height: 0.8rem;
  }
  .warranty .toptop {
    margin-bottom: 0.45rem;
  }
  .warranty .title {
    font-size: var(--fs22);
    line-height: 0.84rem;
  }
  .warranty .selectLan {
    top: 0;
    width: 50%;
  }
  .warranty .selectLan .caption {
    height: 0.84rem;
    line-height: 0.84rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .warranty .selectLan .caption::after {
    width: 0.6rem;
    height: 0.16rem;
    margin-top: -0.08rem;
    background-size: 0.32rem;
  }
  .warranty .selectLan .xlist {
    max-height: 4rem;
  }
  .warranty .selectLan .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.3rem;
  }
  .warranty .list {
    padding: 0.6rem 0.3rem;
    border-radius: 0.24rem;
  }
  .warranty .list li {
    margin-bottom: 0.35rem;
  }
  .warranty .list li a {
    padding-right: 0;
  }
  .warranty .list li a .name {
    padding-left: 0.56rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
    background: url(../img/nimg30_9.png) left 0.05rem no-repeat;
    background-size: 0.42rem;
  }
  .warranty .list li a .more {
    display: inline-block;
    font-size: var(--fs14);
    position: relative;
    margin-top: 0.2rem;
    padding-right: 0.5rem;
    line-height: 0.48rem;
    background-size: 0.36rem;
  }
}
.question .title {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.question .bigBox {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.86rem 1.2rem 0.74rem 1rem;
}
.question .bigBox::after {
  content: '';
  display: block;
  clear: both;
}
.question .leftDiv {
  width: 4.6rem;
  padding-right: 0.88rem;
  min-height: 7.6rem;
  position: relative;
}
.question .leftDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d9d9d9;
}
.question .screenDiv li {
  margin-bottom: 0.16rem;
}
.question .screenDiv li:last-child {
  margin-bottom: 0;
}
.question .screenDiv li .zi {
  cursor: pointer;
  padding-left: 8px;
  font-weight: bold;
  font-size: var(--fs24);
  color: #000;
  line-height: 0.36rem;
  background: url(../img/selectIco.png) right center no-repeat;
  background-size: 16px;
}
.question .screenDiv li .hideBox {
  display: none;
  padding: 0.32rem 0 0.28rem 0.36rem;
}
.question .screenDiv li .hideBox dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
  cursor: pointer;
  color: #000;
  background: url(../img/nimg18_1.png) right center no-repeat;
}
.question .screenDiv li .hideBox dd:last-child {
  margin-bottom: 0;
}
.question .screenDiv li .hideBox .on {
  font-weight: bold;
  background: url(../img/nimg18_1on.png) right center no-repeat;
}
.question .rightDiv {
  width: 6.74rem;
}
.question .rightDiv .toptop {
  height: 0.7rem;
  position: relative;
}
.question .rightDiv .mxfDiv {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 0.8rem;
}
.question .rightDiv .mxfDiv em {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
}
.question .rightDiv .selectSort {
  width: 1.3rem;
  position: relative;
  z-index: 1;
}
.question .rightDiv .selectSort .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  height: 0.3rem;
  line-height: 0.3rem;
  padding-left: 0.16rem;
  padding-right: 0.4rem;
  font-size: var(--fs15);
  border: #757575 solid 1px;
  color: #757575;
  border-radius: 0.48rem;
}
.question .rightDiv .selectSort .caption::after {
  content: "";
  width: 0.32rem;
  height: 0.12rem;
  background: url(../img/selectIco.png) no-repeat left center;
  background-size: 0.12rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
}
.question .rightDiv .selectSort .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  border: #666 solid 1px;
  background: #fff;
  max-height: 1.5rem;
  border-radius: 0.1rem;
  overflow-y: auto;
  display: none;
}
.question .rightDiv .selectSort .xlist::-webkit-scrollbar {
  width: 4px;
}
.question .rightDiv .selectSort .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.question .rightDiv .selectSort .xlist::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.question .rightDiv .selectSort .xlist a {
  display: block;
  font-size: var(--fs14);
  height: 0.3rem;
  line-height: 0.3rem;
  padding: 0 0.3rem;
}
.question .rightDiv .selectSort .xlist a:hover {
  color: #E94419;
}
.question .rightDiv .list {
  padding-bottom: 0.78rem;
}
.question .rightDiv .list li {
  padding: 0.26rem 0;
  border-bottom: #d8d8d8 solid 1px;
}
.question .rightDiv .list li .msgDiv {
  padding-right: 0.6rem;
  position: relative;
  cursor: pointer;
}
.question .rightDiv .list li .ico {
  position: absolute;
  right: 10px;
  top: 0.06rem;
  width: 22px;
  height: 22px;
}
.question .rightDiv .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -1px;
  width: 22px;
  height: 2px;
  border-radius: 8px;
  background: #262626;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .rightDiv .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -11px;
  width: 2px;
  height: 22px;
  border-radius: 8px;
  background: #262626;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .rightDiv .list li .name {
  color: #262626;
  line-height: 0.36rem;
  font-size: var(--fs24);
  font-weight: 100;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .rightDiv .list li .box {
  display: none;
}
.question .rightDiv .list li .msgDiv.aNow .name {
  font-weight: bold;
}
.question .rightDiv .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);
}
.question .rightDiv .list li .content {
  line-height: 0.28rem;
  font-size: var(--fs18);
  color: #000;
  text-align: justify;
  padding-top: 0.24rem;
  font-weight: 100;
}
.download .title {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.download .bigBox {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.4rem 0.36rem 0.7rem 0.6rem;
}
.download .bigBox::after {
  content: '';
  display: block;
  clear: both;
}
.download .baozhe {
  overflow: hidden;
}
.download .form {
  float: right;
  margin-bottom: 0.42rem;
  width: 5.76rem;
  height: 0.44rem;
  background: #eee;
  border-radius: 0.48rem;
  overflow: hidden;
  position: relative;
}
.download .form .input1 {
  background: none;
  width: 100%;
  height: 0.44rem;
  font-size: var(--fs16);
  padding-left: 0.2rem;
}
.download .form .btn1 {
  cursor: pointer;
  position: absolute;
  right: 0.2rem;
  top: 0;
  width: 0.44rem;
  height: 0.44rem;
  background: url(../img/nimg24_12.png) center no-repeat;
  background-size: 0.24rem;
  z-index: 1;
}
.download .leftDiv {
  width: 5rem;
  padding-right: 1.25rem;
  min-height: 6.6rem;
  position: relative;
}
.download .leftDiv::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d9d9d9;
}
.download .tab2 {
  padding-bottom: 0.5rem;
}
.download .tab2 ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.download .tab2 li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs24);
  color: #000;
  width: 1.44rem;
  height: 0.44rem;
  border-radius: 0.48rem;
  border: #a7a7a7 solid 1px;
}
.download .tab2 .liNow {
  border: #E94419 solid 1px;
  background: #E94419;
  color: #fff;
  font-weight: bold;
}
.download .screenDiv li {
  margin-bottom: 0.16rem;
}
.download .screenDiv li:last-child {
  margin-bottom: 0;
}
.download .screenDiv li .zi {
  cursor: pointer;
  padding-left: 8px;
  font-weight: bold;
  font-size: var(--fs24);
  color: #000;
  line-height: 0.36rem;
  background: url(../img/selectIco.png) right center no-repeat;
  background-size: 16px;
}
.download .screenDiv li .hideBox {
  display: none;
  padding: 0.32rem 0 0.28rem 0.36rem;
}
.download .screenDiv li .hideBox dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
  cursor: pointer;
  color: #000;
  background: url(../img/nimg18_1.png) right center no-repeat;
}
.download .screenDiv li .hideBox dd:last-child {
  margin-bottom: 0;
}
.download .screenDiv li .hideBox .on {
  font-weight: bold;
  background: url(../img/nimg18_1on.png) right center no-repeat;
}
.download .rightDiv {
  width: 7.4rem;
  padding-top: 0.58rem;
  padding-right: 0.64rem;
}
.download .rightDiv .toptop {
  padding-bottom: 0.5rem;
  position: relative;
}
.download .rightDiv .zi {
  color: #000;
  font-size: var(--fs20);
  line-height: 0.3rem;
  font-family: 'Poppins-R';
}
.download .rightDiv .mxfDiv {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 0.8rem;
}
.download .rightDiv .mxfDiv em {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
}
.download .rightDiv .selectSort {
  width: 1.3rem;
  position: relative;
  z-index: 1;
}
.download .rightDiv .selectSort .caption {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  height: 0.3rem;
  line-height: 0.3rem;
  padding-left: 0.16rem;
  padding-right: 0.4rem;
  font-size: var(--fs15);
  border: #757575 solid 1px;
  color: #757575;
  border-radius: 0.48rem;
}
.download .rightDiv .selectSort .caption::after {
  content: "";
  width: 0.32rem;
  height: 0.12rem;
  background: url(../img/selectIco.png) no-repeat left center;
  background-size: 0.12rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
}
.download .rightDiv .selectSort .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  border: #666 solid 1px;
  background: #fff;
  max-height: 1.5rem;
  border-radius: 0.1rem;
  overflow-y: auto;
  display: none;
}
.download .rightDiv .selectSort .xlist::-webkit-scrollbar {
  width: 4px;
}
.download .rightDiv .selectSort .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.download .rightDiv .selectSort .xlist::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.download .rightDiv .selectSort .xlist a {
  display: block;
  font-size: var(--fs14);
  height: 0.3rem;
  line-height: 0.3rem;
  padding: 0 0.3rem;
}
.download .rightDiv .selectSort .xlist a:hover {
  color: #E94419;
}
.download .rightDiv .list {
  padding-bottom: 0.8rem;
}
.download .rightDiv .list li {
  margin-bottom: 0.16rem;
}
.download .rightDiv .list li:last-child {
  margin-bottom: 0;
}
.download .rightDiv .list li a {
  padding-right: 1.4rem;
  display: block;
  position: relative;
}
.download .rightDiv .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0.45rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 100;
  background: url(../img/nimg29_1.png) left center no-repeat;
  background-size: 0.29rem;
  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;
}
.download .rightDiv .list li a .time {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 0.44rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #757575;
  font-family: 'Poppins-L';
  background: url(../img/nimg20_2.png) right center no-repeat;
  background-size: 0.2rem;
}
.download .rightDiv .list li a:hover .name {
  color: #E94419;
}
.noquestion {
  height: 5.2rem;
  background: center no-repeat;
  background-size: cover;
}
.noquestion .wrap2 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100%;
}
.noquestion .name {
  color: #fff;
  font-size: var(--fs80);
  line-height: 1.2rem;
}
.noquestion .zi {
  margin-top: 0.24rem;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.noquestion .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.02rem;
  height: 0.52rem;
  border-radius: 0.1rem;
  border: #fff solid 1px;
  font-size: var(--fs20);
  letter-spacing: 5px;
  color: #fff;
}
.noquestion .btnDiv a em {
  margin-left: 0.06rem;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_13.png) no-repeat;
  background-size: 0.24rem;
}
.noquestion .btnDiv a:hover {
  border: #E94419 solid 1px;
  background: #E94419;
}
.screenOpen {
  position: fixed;
  z-index: 7;
  left: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #E94419;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.screenOpen em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.36rem;
  top: 50%;
  transform: translateY(-50%);
}
.screenOpen.off {
  left: -0.8rem;
}
.screenClose {
  position: fixed;
  z-index: 7;
  right: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #E94419;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.screenClose em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.36rem;
  top: 50%;
  transform: translateY(-50%);
}
.screenClose.on {
  right: 0;
}
@media (max-width: 1004px) {
  .question .title {
    font-size: var(--fs22);
    line-height: 0.72rem;
    margin-bottom: 0.45rem;
  }
  .question .bigBox {
    border-radius: 0.24rem;
    padding: 0.7rem 0.3rem;
  }
  .question .leftDiv {
    background: #fff;
    width: 100%;
    padding: 0.5rem 0.3rem;
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 6;
    overflow: auto;
  }
  .question .leftDiv::after {
    display: none;
  }
  .question .screenDiv li {
    margin-bottom: 0.24rem;
  }
  .question .screenDiv li .zi {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .question .screenDiv li .hideBox {
    display: none;
    padding: 0.36rem 0 0.3rem 0.42rem;
  }
  .question .screenDiv li .hideBox dd {
    padding-right: 0.56rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
    background-size: 14px;
  }
  .question .screenDiv li .hideBox .on {
    background-size: 14px;
  }
  .question .rightDiv {
    float: none;
    width: auto;
  }
  .question .rightDiv .toptop {
    height: 1rem;
  }
  .question .rightDiv .mxfDiv {
    padding-left: 0.9rem;
  }
  .question .rightDiv .mxfDiv em {
    font-size: var(--fs15);
    line-height: 0.7rem;
  }
  .question .rightDiv .selectSort {
    width: 2.4rem;
  }
  .question .rightDiv .selectSort .caption {
    height: 0.7rem;
    line-height: 0.7rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .question .rightDiv .selectSort .caption::after {
    width: 0.6rem;
    height: 0.16rem;
    margin-top: -0.08rem;
    background-size: 0.32rem;
  }
  .question .rightDiv .selectSort .xlist {
    max-height: 3rem;
  }
  .question .rightDiv .selectSort .xlist a {
    font-size: var(--fs14);
    height: 0.6rem;
    line-height: 0.6rem;
    padding: 0 0.3rem;
  }
  .question .rightDiv .list {
    padding-bottom: 0.7rem;
  }
  .question .rightDiv .list li {
    padding: 0.24rem 0;
  }
  .question .rightDiv .list li .msgDiv {
    padding-right: 0.6rem;
    position: relative;
    cursor: pointer;
  }
  .question .rightDiv .list li .ico {
    right: 0;
    width: 12px;
    height: 12px;
  }
  .question .rightDiv .list li .ico:before {
    margin-left: -6px;
    width: 12px;
  }
  .question .rightDiv .list li .ico:after {
    margin-top: -6px;
    height: 12px;
  }
  .question .rightDiv .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .question .rightDiv .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs14);
    padding-top: 0.3rem;
  }
  .download .title {
    font-size: var(--fs22);
    line-height: 0.72rem;
    margin-bottom: 0.45rem;
  }
  .download .bigBox {
    border-radius: 0.24rem;
    padding: 0.7rem 0.3rem;
  }
  .download .form {
    float: none;
    margin-bottom: 0.5rem;
    width: 100%;
    height: 0.9rem;
  }
  .download .form .input1 {
    height: 0.9rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .download .form .btn1 {
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.36rem;
  }
  .download .leftDiv {
    background: #fff;
    width: 100%;
    padding: 0.5rem 0.3rem;
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 6;
    overflow: auto;
  }
  .download .leftDiv::after {
    display: none;
  }
  .download .tab2 {
    padding-bottom: 0.5rem;
  }
  .download .tab2 li {
    font-size: var(--fs16);
    width: 2.2rem;
    height: 0.74rem;
  }
  .download .screenDiv li {
    margin-bottom: 0.24rem;
  }
  .download .screenDiv li .zi {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .download .screenDiv li .hideBox {
    display: none;
    padding: 0.36rem 0 0.3rem 0.42rem;
  }
  .download .screenDiv li .hideBox dd {
    padding-right: 0.56rem;
    font-size: var(--fs16);
    line-height: 0.52rem;
    background-size: 14px;
  }
  .download .screenDiv li .hideBox .on {
    background-size: 14px;
  }
  .download .rightDiv {
    float: none;
    width: auto;
    padding: 0;
  }
  .download .rightDiv .toptop {
    padding-bottom: 0.65rem;
  }
  .download .rightDiv .zi {
    font-size: var(--fs15);
    line-height: 0.7rem;
  }
  .download .rightDiv .mxfDiv {
    padding-left: 0.9rem;
  }
  .download .rightDiv .mxfDiv em {
    font-size: var(--fs15);
    line-height: 0.7rem;
  }
  .download .rightDiv .selectSort {
    width: 2.4rem;
  }
  .download .rightDiv .selectSort .caption {
    height: 0.7rem;
    line-height: 0.7rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .download .rightDiv .selectSort .caption::after {
    width: 0.6rem;
    height: 0.16rem;
    margin-top: -0.08rem;
    background-size: 0.32rem;
  }
  .download .rightDiv .selectSort .xlist {
    max-height: 3rem;
  }
  .download .rightDiv .selectSort .xlist a {
    font-size: var(--fs14);
    height: 0.6rem;
    line-height: 0.6rem;
    padding: 0 0.3rem;
  }
  .download .rightDiv .list {
    padding-bottom: 0.7rem;
  }
  .download .rightDiv .list li {
    margin-bottom: 0.2rem;
  }
  .download .rightDiv .list li a {
    padding-right: 0;
  }
  .download .rightDiv .list li a .name {
    padding-left: 0.56rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
    background-size: 0.36rem;
  }
  .download .rightDiv .list li a .time {
    display: inline-block;
    position: relative;
    padding-right: 0.48rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    background-size: 0.28rem;
  }
  .screenOpen {
    left: 0;
  }
  .noquestion {
    height: 4.2rem;
    padding-top: 0.7rem;
  }
  .noquestion .wrap2 {
    display: block;
  }
  .noquestion .name {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .noquestion .zi {
    margin-top: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .noquestion .btnDiv {
    margin-top: 0.3rem;
  }
  .noquestion .btnDiv a {
    width: 2.8rem;
    height: 0.82rem;
    font-size: var(--fs15);
    letter-spacing: 3px;
  }
  .noquestion .btnDiv a em {
    margin-left: 0.1rem;
    width: 0.28rem;
    height: 0.28rem;
    background-size: 0.28rem;
  }
}
.caseBan {
  position: relative;
  overflow: hidden;
}
.caseBan::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, #fff 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.caseBan .bg {
  height: calc(100vh - 1.2rem);
}
.caseBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseBan .info {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-justify-content: center;
}
.caseBan .cn {
  text-align: center;
  margin: 0;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.64rem;
}
@media (max-width: 1004px) {
  .caseBan .bg {
    height: 7rem;
  }
  .caseBan .cn {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
}
.case {
  padding: 1rem 0 0.84rem;
}
.case .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.case .leftDiv,
.case .rightDiv {
  width: 5.28rem;
}
.case .leftDiv::after,
.case .rightDiv::after {
  content: '';
  display: block;
  clear: both;
}
.case .leftDiv b,
.case .rightDiv b {
  display: block;
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  margin-bottom: 0.32rem;
}
.case .leftDiv ul,
.case .rightDiv ul {
  margin-right: -0.16rem;
}
.case .leftDiv li,
.case .rightDiv li {
  float: left;
  width: 25%;
  font-size: var(--fs18);
  margin-bottom: 0.16rem;
}
.case .leftDiv li .lbox,
.case .rightDiv li .lbox {
  margin-right: 0.16rem;
}
.case .leftDiv li .lbox a,
.case .rightDiv li .lbox a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #000;
  width: 1.2rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: #7d7d7d solid 1px;
}
.case .leftDiv li .lbox a:hover,
.case .rightDiv li .lbox a:hover {
  color: #E94419;
}
.case .leftDiv li .lbox .on,
.case .rightDiv li .lbox .on {
  background: #E94419;
  border: #E94419 solid 1px;
  color: #fff !important;
}
.case .list {
  padding: 0.32rem 0 0.44rem;
}
.case .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.case .list li {
  width: calc((100% - 1rem) / 2);
  margin-right: 1rem;
  margin-bottom: 0.36rem;
}
.case .list li:nth-child(2n) {
  margin-right: 0;
}
.case .list li .mxfDiv {
  height: 4.6rem;
  border-radius: 0.16rem;
  position: relative;
  overflow: hidden;
}
.case .list li .mxfDiv::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 41, 41, 0.4);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.case .list li .imgDiv {
  height: 4.6rem;
}
.case .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.case .list li .moreBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  opacity: 0;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.65rem;
  margin-top: -0.25rem;
  width: 1.3rem;
  height: 0.5rem;
  text-align: center;
  border-radius: 0.48rem;
  background: #fff;
  font-size: var(--fs24);
  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;
}
.case .list li .moreBtn em {
  width: 0.28rem;
  height: 0.28rem;
  background: url(../img/ico5.png) no-repeat;
  background-size: 0.28rem;
}
.case .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.18rem;
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #000;
  font-weight: 100;
}
.case .list li .zi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.18rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #000;
  padding-left: 0.36rem;
  background: url(../img/nimg24_14.png) left center no-repeat;
  background-size: 0.24rem;
}
.case .list li .content,
.case .list li .brief {
  display: none;
}
.case .list li:hover .mxfDiv::after {
  opacity: 1;
  visibility: visible;
}
.case .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.case .list li:hover .moreBtn {
  opacity: 1;
}
.case .list li:hover .name {
  font-weight: bold;
}
.cardModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 99;
  background: rgba(80, 80, 80, 0.6);
  display: none;
}
.cardModal-box .close {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -0.3rem;
  top: 3vh;
  width: 0.6rem;
  height: 0.6rem;
  z-index: 5;
}
.cardModal-box .close img {
  max-width: 100%;
}
.cardModal-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.card-box {
  width: 14rem;
  border-radius: 0.2rem;
  margin: 0 auto;
  padding: 0.6rem 0.8rem 0;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.card-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(153, 153, 153, 0.3) 0%, #000 100%);
  background-blend-mode: normal, normal;
}
.card-box .content {
  position: relative;
  z-index: 1;
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #fff;
  max-height: 4.2rem;
  overflow: auto;
  padding-right: 5px;
}
.card-box .content img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.16rem;
}
.card-box .content::-webkit-scrollbar {
  width: 3px;
}
.card-box .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.card-box .content::-webkit-scrollbar-thumb {
  background-color: #E94419;
}
.card-box .brief {
  position: relative;
  z-index: 1;
  padding-top: 0.65rem;
}
.card-box .brief dl {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.card-box .brief dd {
  color: #fff;
  font-size: var(--fs28);
  line-height: 0.42rem;
  text-align: center;
}
.card-box .brief dd em {
  display: block;
  margin-bottom: 0.3rem;
}
@media (max-width: 1004px) {
  .case {
    padding: 0.8rem 0 0.9rem;
  }
  .case .toptop {
    display: block;
  }
  .case .leftDiv,
  .case .rightDiv {
    width: auto;
    margin-bottom: 0.45rem;
  }
  .case .leftDiv b,
  .case .rightDiv b {
    font-size: var(--fs17);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .case .leftDiv ul,
  .case .rightDiv ul {
    margin-right: -0.2rem;
  }
  .case .leftDiv li,
  .case .rightDiv li {
    width: 33.33%;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .case .leftDiv li .lbox,
  .case .rightDiv li .lbox {
    margin-right: 0.2rem;
  }
  .case .leftDiv li .lbox a,
  .case .rightDiv li .lbox a {
    width: 100%;
    height: 0.78rem;
  }
  .case .list {
    padding: 0.1rem 0 0.45rem;
  }
  .case .list ul {
    display: block;
  }
  .case .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .case .list li .mxfDiv {
    height: 4.2rem;
    border-radius: 0.24rem;
  }
  .case .list li .imgDiv {
    height: 4.2rem;
  }
  .case .list li .moreBtn {
    margin-left: -1.05rem;
    margin-top: -0.43rem;
    width: 2.1rem;
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .case .list li .moreBtn em {
    width: 0.42rem;
    height: 0.42rem;
    background-size: 0.42rem;
  }
  .case .list li .name {
    margin-top: 0.24rem;
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .case .list li .zi {
    margin-top: 0.24rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-left: 0.42rem;
    background-size: 0.32rem;
  }
  .cardModal-box .close {
    top: 2vh;
    margin-left: -0.4rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .card-box {
    width: 94%;
    border-radius: 0.24rem;
    padding: 0.45rem 0.3rem 0;
    height: 86vh;
  }
  .card-box .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 4.5rem;
  }
  .card-box .content img {
    border-radius: 0.2rem;
  }
  .card-box .brief {
    padding-top: 0.2rem;
    overflow: hidden;
  }
  .card-box .brief dl {
    display: block;
  }
  .card-box .brief dd {
    margin-top: 0.3rem;
    float: left;
    width: 50%;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .card-box .brief dd em {
    margin-bottom: 0.1rem;
  }
}
.newsP1 {
  background: #ebebeb;
  padding: 0.5rem 0 0.7rem;
}
.newsP1 .title {
  text-align: center;
  line-height: 0.64rem;
  font-size: var(--fs48);
  color: #000;
  font-weight: bold;
  margin-bottom: 0.45rem;
}
.newsP1 .zi {
  padding-left: 0.76rem;
  font-size: var(--fs36);
  line-height: 0.54rem;
  color: #000;
  margin-bottom: 0.45rem;
}
.newsPic {
  position: relative;
  padding: 0 0.76rem;
}
.newsPic .swiper-container {
  overflow: hidden;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #fff;
}
.newsPic .imgDiv {
  order: 1;
  width: 50%;
  height: 5.1rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 1.12rem 1.2rem 0 0.8rem;
}
.newsPic .time {
  font-size: var(--fs16);
  color: #000;
  line-height: 0.26rem;
  font-family: 'Poppins-L';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.24rem 0;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: bold;
  height: 0.72rem;
  color: #152244;
  word-break: break-all;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #000;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.2rem;
}
.newsPic .more {
  display: inline-block;
  padding-right: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  color: #000;
  background: url(../img/nimg21_1.png) right center no-repeat;
  background-size: 0.21rem;
}
.newsPic .mxfDiv:hover .name {
  color: #E94419;
}
.newsPic .swiper-pagination {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.newsPic .swiper-pagination-bullet {
  position: relative;
  width: 0.2rem;
  height: 0.2rem;
  opacity: 1;
  background: #d9d9d9;
  border: none;
  border-radius: 50%;
  margin-left: 0.2rem !important;
  margin-right: 0.2rem !important;
  overflow: hidden;
}
.newsPic .swiper-pagination-bullet-active {
  background: #E94419;
}
.newsPic .se {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  top: 45%;
  margin-top: -0.2rem;
}
.newsPic .prev {
  left: 0;
  background: url(../img/nimg40_left.png) no-repeat;
  background-size: 0.4rem;
}
.newsPic .prev:hover {
  background: url(../img/nimg40_lefton.png) no-repeat;
  background-size: 0.4rem;
}
.newsPic .next {
  right: 0;
  background: url(../img/nimg40_right.png) no-repeat;
  background-size: 0.4rem;
}
.newsPic .next:hover {
  background: url(../img/nimg40_righton.png) no-repeat;
  background-size: 0.4rem;
}
.newsP2 {
  padding: 0.56rem 0 0.6rem;
}
.newsP2 .zi {
  padding-left: 0.76rem;
  color: #152244;
  font-size: var(--fs36);
  line-height: 0.54rem;
  margin-bottom: 0.36rem;
}
.newsP2 .list {
  padding: 0 1.24rem 0.72rem;
}
.newsP2 .list li {
  margin-bottom: 0.2rem;
}
.newsP2 .list li:last-child {
  margin-bottom: 0;
}
.newsP2 .list li a {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 2.8rem;
}
.newsP2 .list li a .imgDiv {
  width: 5.3rem;
  height: 2.8rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.newsP2 .list 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;
}
.newsP2 .list li a .conDiv {
  width: 6.3rem;
}
.newsP2 .list li a .time {
  font-size: var(--fs16);
  line-height: 0.26rem;
  color: #000;
  font-family: 'Poppins-L';
}
.newsP2 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.24rem 0;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: bold;
  height: 0.72rem;
  color: #152244;
  word-break: break-all;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li a .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #000;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.72rem;
}
.newsP2 .list li a .more {
  display: inline-block;
  padding-right: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  color: #000;
  background: url(../img/nimg21_1.png) right center no-repeat;
  background-size: 0.21rem;
}
.newsP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsP2 .list li a:hover .name {
  color: #E94419;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.7rem 0;
  }
  .newsP1 .title {
    line-height: 0.72rem;
    font-size: var(--fs24);
  }
  .newsP1 .zi {
    padding-left: 0;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .newsPic {
    position: relative;
    padding: 0;
  }
  .newsPic .mxfDiv {
    display: block;
    border-radius: 0.16rem;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 4.2rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.5rem 0.3rem;
  }
  .newsPic .time {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .newsPic .more {
    display: none;
  }
  .newsPic .swiper-pagination {
    margin-top: 0.6rem;
  }
  .newsPic .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .newsPic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 30%;
    margin-top: -0.43rem;
  }
  .newsPic .prev {
    left: 0.2rem;
    background-size: 0.86rem;
  }
  .newsPic .prev:hover {
    background-size: 0.86rem;
  }
  .newsPic .next {
    right: 0.2rem;
    background-size: 0.86rem;
  }
  .newsPic .next:hover {
    background-size: 0.86rem;
  }
  .newsP2 {
    padding: 0.7rem 0 0.8rem;
  }
  .newsP2 .zi {
    padding-left: 0;
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .newsP2 .list {
    padding: 0 0 0.7rem;
  }
  .newsP2 .list li a {
    display: block;
    padding-left: 2.8rem;
    height: 1.8rem;
  }
  .newsP2 .list li a .imgDiv {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 1.8rem;
    border-radius: 0.2rem;
  }
  .newsP2 .list li a .conDiv {
    width: auto;
  }
  .newsP2 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsP2 .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0.12rem 0 0;
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .newsP2 .list li a .content {
    display: none;
  }
  .newsP2 .list li a .more {
    display: none;
  }
}
.newShow {
  padding: 1rem 0 0.55rem;
}
.newShow .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Poppins-L';
  margin-bottom: 0.32rem;
}
.newShow .name {
  color: #152244;
  font-size: var(--fs60);
  line-height: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.7rem;
}
.newShow .content {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: rgba(0, 0, 0, 0.8);
  text-align: justify;
  word-break: break-all;
}
.newShow .content img {
  max-width: 100%;
}
.newShow .botbot {
  margin-top: 0.54rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.newShow .share::after {
  content: '';
  display: block;
  clear: both;
}
.newShow .share em {
  display: block;
  color: #152244;
  font-size: var(--fs20);
  line-height: 0.3rem;
  margin-bottom: 0.16rem;
}
.newShow .share li {
  float: left;
  margin-right: 0.24rem;
}
.newShow .share li img {
  width: 0.42rem;
}
.newShow .pageDown a {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #152244;
  font-weight: bold;
  background: url(../img/nimg24_15.png) right center no-repeat;
  background-size: 0.24rem;
}
.newShow .pageDown a:hover {
  color: #E94419;
  background: url(../img/nimg24_7on.png) right center no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .newShow {
    padding: 0.8rem 0;
  }
  .newShow .time {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.45rem;
  }
  .newShow .name {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.6rem;
  }
  .newShow .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newShow .botbot {
    margin-top: 0.6rem;
    display: block;
  }
  .newShow .share em {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .newShow .share li {
    margin-right: 0.2rem;
  }
  .newShow .share li img {
    width: 0.7rem;
  }
  .newShow .pageDown {
    margin-top: 0.35rem;
  }
  .newShow .pageDown a {
    padding-right: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.6rem;
    background-size: 0.36rem;
  }
  .newShow .pageDown a:hover {
    background-size: 0.36rem;
  }
}
.aboutBan {
  position: relative;
  overflow: hidden;
}
.aboutBan .bg {
  height: calc(100vh - 1.2rem);
}
.aboutBan .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutBan .info {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 28%;
  color: #fff;
  z-index: 2;
}
.aboutBan .cn {
  font-size: var(--fs48);
  line-height: 1.2rem;
  font-weight: bold;
}
.aboutBan .msg {
  font-size: var(--fs32);
  line-height: 0.48rem;
  font-family: 'Poppins-L';
}
.aboutP1 {
  position: relative;
}
.aboutP1 .title {
  position: absolute;
  left: 0;
  top: 2rem;
  width: 100%;
  text-align: center;
  line-height: 0.6rem;
  font-size: var(--fs40);
  color: #fff;
  font-weight: bold;
  z-index: 2;
}
.aboutP1 .list ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 9.4rem;
  overflow: hidden;
}
.aboutP1 .list li {
  position: relative;
  width: 20%;
  height: 9.4rem;
  overflow: hidden;
  background-size: 5rem;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.aboutP1 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.aboutP1 .list li::before {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4.2rem;
  background: linear-gradient(144deg, rgba(233, 68, 25, 0) 36.08%, rgba(233, 68, 25, 0.9) 96.79%);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP1 .list li .name {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: var(--fs24);
  transform: translateY(-50%);
  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;
}
.aboutP1 .list li .zi {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  color: #fff;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.24rem;
  top: 58%;
  width: 100%;
  padding: 0 0.4rem;
  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;
}
.aboutP1 .list li:hover {
  width: 24%;
}
.aboutP1 .list li:hover::before {
  opacity: 1;
  visibility: visible;
}
.aboutP1 .list li:hover .name {
  color: #E94419;
}
.aboutP1 .list li:hover .zi {
  opacity: 1;
  visibility: visible;
}
.aboutP2 .list ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 7.52rem;
  overflow: hidden;
}
.aboutP2 .list li {
  position: relative;
  width: 50%;
  height: 7.52rem;
  overflow: hidden;
  background-size: 11rem;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.aboutP2 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.aboutP2 .list li .layerDiv {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.aboutP2 .list li .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  font-weight: bold;
}
.aboutP2 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.aboutP2 .list li:hover {
  width: 60%;
}
@media (max-width: 1004px) {
  .aboutBan .bg {
    height: 7rem;
  }
  .aboutBan .info {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    width: auto;
  }
  .aboutBan .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .aboutBan .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP1 .title {
    top: 0.65rem;
    line-height: 0.64rem;
    font-size: var(--fs20);
  }
  .aboutP1 .list ul {
    display: block;
    height: auto;
  }
  .aboutP1 .list li {
    float: left;
    width: 50%;
    height: 4.5rem;
    background-size: cover;
  }
  .aboutP1 .list li:last-child {
    width: 100%;
  }
  .aboutP1 .list li:last-child:hover {
    width: 100%;
  }
  .aboutP1 .list li::before {
    height: 30%;
  }
  .aboutP1 .list li .name {
    top: 40%;
    font-size: var(--fs16);
  }
  .aboutP1 .list li .zi {
    opacity: 1;
    visibility: visible;
    top: 50%;
    font-size: var(--fs12);
    line-height: 0.4rem;
    padding: 0 0.2rem;
  }
  .aboutP1 .list li:hover {
    width: 50%;
  }
  .aboutP2 .list ul {
    display: block;
    height: auto;
  }
  .aboutP2 .list li {
    width: 100%;
    height: 4.9rem;
    background-size: 100%;
  }
  .aboutP2 .list li .layerDiv {
    top: 20%;
    padding: 0 0.4rem;
  }
  .aboutP2 .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 .list li:hover {
    width: 100%;
  }
}
.productImg img {
  width: 100%;
}
.pageCon {
  padding: 1.2rem 0;
  border-bottom: #ccc solid 1px;
}
.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;
  }
}
