.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 .img img {
  width: 100%;
}
.ind-banner .onebox {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
}
.ind-banner .onebox .baozhe {
  width: 5.72rem;
  padding: 0.5rem 0.4rem;
  background: rgba(100, 184, 44, 0.8);
  border-radius: 0.24rem;
}
.ind-banner .onebox .cn {
  margin: 0 0 0.15rem;
  font-size: var(--fs50);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
}
.ind-banner .onebox .zi {
  font-size: var(--fs42);
  line-height: 0.56rem;
  color: #fff;
  margin-bottom: 0.4rem;
  font-weight: 100;
}
.ind-banner .onebox .btnGroup li {
  float: left;
  margin-right: 0.1rem;
}
.ind-banner .onebox .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.56rem;
  height: 0.5rem;
  border: #fff solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .btnGroup li a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.26rem;
  height: 0.21rem;
  background: url(../img/nimg26_1.png) no-repeat;
  background-size: 0.26rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .btnGroup li a:hover {
  border: #0090dd solid 1px;
  background: #0090dd;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .circle-chart__circle {
  stroke-linecap: square;
  fill: none;
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.5rem;
  z-index: 2;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  background: #cdcdcd;
  position: relative;
  fill: none;
  opacity: 1;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet svg {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  margin-top: -19px;
  left: 50%;
  margin-left: -19px;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.ind-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__background {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__circle {
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: square;
  fill: none;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -moz-transform-origin: center;
  animation: circle-chart-fill 3.8s linear reverse;
  -moz-animation: circle-chart-fill 3.8s linear reverse;
  -webkit-animation: circle-chart-fill 3.8s linear reverse;
  -ms-animation: circle-chart-fill 3.8s linear reverse;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet.one .swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 2.4s linear reverse;
  -moz-animation: circle-chart-fill 2.4s linear reverse;
  -webkit-animation: circle-chart-fill 2.4s linear reverse;
  -ms-animation: circle-chart-fill 2.4s linear reverse;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .baozhe {
    width: 85%;
    padding: 0.4rem 0.3rem;
  }
  .ind-banner .onebox .cn {
    margin: 0 0 0.15rem;
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .ind-banner .onebox .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .onebox .btnGroup li a {
    font-size: var(--fs13);
    width: 2.3rem;
    height: 0.72rem;
  }
  .ind-banner .onebox .btnGroup li a em {
    width: 0.32rem;
    height: 0.27rem;
    background-size: 0.32rem;
  }
  .ind-banner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 15px;
  }
  .ind-banner .swiper-pagination .swiper-pagination-bullet svg {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
  }
}
.indexP0 {
  padding: 0.4rem 0.9rem;
}
.indexP0 .title {
  margin-bottom: 0.4rem;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #333;
  font-weight: 400;
  font-family: 'Poppins-R';
}
.indexLogo {
  position: relative;
  padding: 0 0.7rem;
}
.indexLogo .list {
  width: 100%;
  height: 0.8rem;
  position: relative;
  overflow: hidden;
}
.indexLogo .list ul {
  width: 100%;
  height: 0.8rem;
  position: relative;
}
.indexLogo .list li {
  float: left;
  padding: 0 0.1rem;
  width: 1.9rem;
}
.indexLogo .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.8rem;
}
.indexLogo .list li .limg img {
  max-width: 1.6rem;
  max-height: 0.7rem;
}
.indexLogo .wa {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  overflow: hidden;
  z-index: 5;
}
.indexLogo .prev {
  left: 0;
  background: url(../img/nimg9_left.png) no-repeat;
}
.indexLogo .prev:hover {
  background: url(../img/nimg9_lefton.png) no-repeat;
}
.indexLogo .next {
  right: 0;
  background: url(../img/nimg9_right.png) no-repeat;
}
.indexLogo .next:hover {
  background: url(../img/nimg9_righton.png) no-repeat;
}
.indexP1 {
  padding: 1.1rem 0;
  background: url(../img/indexP1.jpg) center no-repeat;
  background-size: cover;
}
.indexP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.2rem;
}
.indexP1 .msg {
  font-size: var(--fs30);
  line-height: 0.42rem;
  text-align: center;
  color: #333;
  font-weight: 100;
}
.indexP1 .list {
  margin-top: 0.55rem;
  margin-right: -0.16rem;
}
.indexP1 .list ul {
  display: inline-flex;
  width: 100%;
}
.indexP1 .list li {
  width: 25%;
  height: 5.62rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.indexP1 .list li .box {
  margin-right: 0.16rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.08rem;
}
.indexP1 .list li .bg {
  position: relative;
  height: 5.62rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP1 .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;
}
.indexP1 .list li .name {
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.42rem;
  text-align: center;
  font-weight: bold;
  opacity: 1;
  visibility: visible;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .list li .after {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 2.25rem;
  color: #fff;
  padding: 0.45rem 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  bottom: -2.25rem;
  background: rgba(0, 0, 0, 0.4);
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP1 .list li .cn {
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin-bottom: 4px;
  font-weight: bold;
}
.indexP1 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 0.64rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.indexP1 .list li .more {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  padding-right: 0.26rem;
  background: url(../img/ico2.png) right center no-repeat;
  background-size: 0.16rem;
}
.indexP1 .list li.on {
  width: 56%;
}
.indexP1 .list li.on .bg::after {
  opacity: 0;
  visibility: hidden;
}
.indexP1 .list li.on .name {
  opacity: 0;
  visibility: hidden;
}
.indexP1 .list li.on .after {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.indexP1 .btnDiv {
  width: 2rem;
  margin: 0.65rem auto 0;
}
.indexP1 .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;
  height: 0.6rem;
  border-radius: 0.48rem;
  font-size: var(--fs18);
  color: #fff;
  background: #65b72d;
}
.indexP1 .btnDiv a em {
  margin-left: 0.15rem;
  width: 0.26rem;
  height: 0.21rem;
  background: url(../img/nimg26_1.png) no-repeat;
  background-size: 0.26rem;
}
.indexP2 {
  padding-top: 1.2rem;
  overflow: hidden;
  position: relative;
  background: center no-repeat;
  background-size: cover;
}
.indexP2 .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-bottom: 0.7rem;
}
.indexP2 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.4rem;
}
.indexP2 .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.4rem;
  height: 0.05rem;
  background: #fff;
  border-radius: 4px;
}
.indexP2 .msg {
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-weight: 100;
  text-align: right;
}
.indexP2 .msg b {
  display: block;
  font-weight: bold;
}
.indexP2 .mxfDiv {
  position: relative;
  padding-left: calc((100% - 15.36rem) / 2);
}
.indexP2 .links {
  position: absolute;
  left: calc((100% - 15.36rem) / 2);
  top: 0;
  z-index: 1;
}
.indexP2 .links li {
  float: left;
  font-size: var(--fs18);
}
.indexP2 .links li .box {
  margin-right: 0.15rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 1.34rem;
  height: 0.48rem;
  border-radius: 0.48rem;
}
.indexP2 .links .on .box {
  background: #fff;
  color: #333;
}
.indexP2 .lunbo {
  padding-top: 1rem;
  display: none;
}
.indexP2 .imgList {
  width: 100%;
  background: #fff;
  border-top-left-radius: 0.32rem;
  overflow: hidden;
  height: 5.85rem;
}
.indexP2 .imgList a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 0.55rem;
}
.indexP2 .imgList a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.34rem;
  width: 1px;
  height: 4.68rem;
  background: #e5e5e5;
}
.indexP2 .imgList a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.indexP2 .imgList a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.35rem auto 0;
  overflow: hidden;
  width: 4rem;
  height: 3.5rem;
}
.indexP2 .imgList a .imgDiv img {
  max-width: 4rem;
  max-height: 3.5rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP2 .imgList a .ico {
  margin: 0.2rem auto 0;
  width: 0.48rem;
  height: 0.34rem;
  border-radius: 0.48rem;
  border: #474747 solid 2px;
  background: url(../img/ico3.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .imgList a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP2 .imgList a:hover .ico {
  border: #0090dd solid 2px;
  background: #0090dd url(../img/ico3on.png) center no-repeat;
}
.indexP2 .arrowDiv {
  position: absolute;
  right: calc((100% - 15.36rem) / 2);
  top: 0;
  z-index: 3;
}
.indexP2 .arrowDiv .se {
  position: relative;
  display: block;
  float: left;
  width: 10px;
  height: 0.48rem;
  opacity: 0.4;
}
.indexP2 .arrowDiv .se:hover {
  opacity: 1;
}
.indexP2 .arrowDiv .prev {
  margin-right: 0.25rem;
  background: url(../img/nimg10_left.png) center no-repeat;
}
.indexP2 .arrowDiv .next {
  background: url(../img/nimg10_right.png) center no-repeat;
}
.indexP3 {
  padding: 1.3rem 0;
  overflow: hidden;
  position: relative;
  background: url(../img/indexP3.jpg) center no-repeat;
  background-size: cover;
}
.indexP3::after {
  content: 'About';
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 1.5rem;
  font-size: 4rem;
  line-height: 3.2rem;
  font-family: 'Poppins-M';
  -webkit-text-stroke: 1px #8a8a8a;
  text-stroke: 1px #8a8a8a;
  opacity: 0.2;
  color: transparent;
}
.indexP3 .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-bottom: 0.35rem;
}
.indexP3 .name {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
}
.indexP3 .msg {
  color: #0090dd;
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-weight: 100;
  text-align: right;
}
.indexP3 .msg b {
  display: block;
  font-weight: bold;
}
.indexP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
}
.indexP3 .conDiv {
  width: 40.2%;
}
.indexP3 .content {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.indexP3 .numList {
  padding-top: 0.1rem;
}
.indexP3 .numList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP3 .numList li {
  position: relative;
  width: 50%;
  padding: 0.7rem 0 0 0.8rem;
  color: #333;
  font-size: var(--fs16);
}
.indexP3 .numList li .ico {
  position: absolute;
  left: 0;
  top: 0.7rem;
}
.indexP3 .numList li .ico img {
  width: 0.54rem;
}
.indexP3 .numList li .pj {
  height: 0.7rem;
}
.indexP3 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num p {
  min-width: 14px;
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .numList li .num span {
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 13px;
  background: url(../img/nimg14_1.png) no-repeat;
}
.indexP3 .numList li .numUp {
  font-size: var(--fs60);
  line-height: 0.56rem;
  padding-right: 0.12rem;
  color: #65b72d;
  font-family: "Din-SB";
}
.indexP3 .numList li .wen {
  line-height: 0.16rem;
}
.indexP3 .imgDiv {
  width: 8.16rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
.indexP3 .imgDiv img {
  width: 100%;
}
.indexP3 .title {
  text-align: center;
  padding: 0.85rem 0 0.45rem;
  font-size: var(--fs40);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.indexP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP3 .list li {
  width: calc((100% - 1.9rem) / 3);
  margin-right: 0.95rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(231, 231, 231, 0.6);
}
.indexP3 .list li:nth-child(3n) {
  margin-right: 0;
}
.indexP3 .list li a {
  padding-top: 0.32rem;
  display: block;
  height: 1.85rem;
}
.indexP3 .list li a .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.7rem;
}
.indexP3 .list li a .limg img {
  max-width: 3.5rem;
  max-height: 0.7rem;
}
.indexP3 .list li a .zi {
  text-align: center;
  margin-top: 0.25rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .list li a:hover .zi {
  color: #0090dd;
}
.indexP4 {
  position: relative;
}
.indexP4 .txtLayer {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.indexP4 .txtLayer .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
}
.indexP4 .txtLayer .msg {
  margin-top: 0.25rem;
  font-size: var(--fs30);
  line-height: 0.3rem;
  font-weight: 100;
}
.indexP4 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP4 .list li {
  width: 33.33%;
  position: relative;
  overflow: hidden;
}
.indexP4 .list li .imgDiv {
  position: relative;
}
.indexP4 .list li .imgDiv::before {
  content: '';
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg2.png) bottom 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;
}
.indexP4 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 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;
}
.indexP4 .list li .imgDiv img {
  width: 100%;
}
.indexP4 .list li .beforeDiv {
  position: absolute;
  left: 30%;
  top: 31%;
  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;
}
.indexP4 .list li .ico {
  height: 1.2rem;
}
.indexP4 .list li .ico img {
  width: 0.57rem;
}
.indexP4 .list li .name {
  font-size: var(--fs40);
  color: #fff;
  font-weight: bold;
  line-height: 0.48rem;
}
.indexP4 .list li .more {
  margin-top: 1.7rem;
  width: 0.48rem;
  height: 0.34rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  background: url(../img/ico3on.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  margin-top: 0.15rem;
  text-align: justify;
}
.indexP4 .list li .afterDiv {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 0.7rem;
  bottom: -100%;
  z-index: 1;
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
}
.indexP4 .list li .afterDiv .ico {
  height: 0.65rem;
}
.indexP4 .list li .afterDiv .more {
  margin-top: 0.35rem;
  border: #65b72d solid 1px;
  background: #65b72d url(../img/ico3on.png) center no-repeat;
}
.indexP4 .list li:hover .imgDiv::before {
  opacity: 1;
  visibility: visible;
}
.indexP4 .list li:hover .imgDiv::after {
  opacity: 0;
  visibility: hidden;
}
.indexP4 .list li:hover .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.indexP4 .list li:hover .afterDiv {
  bottom: 0.6rem;
}
.indexP5 {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.15rem;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
}
.indexP5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.14rem;
  height: 2.74rem;
  background: url(../img/nimg314Bg.png) no-repeat;
  background-size: 3.14rem;
}
.indexP5 .toptop {
  position: relative;
  padding-bottom: 0.4rem;
}
.indexP5 .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
}
.indexP5 .links {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.indexP5 .links li {
  float: left;
  font-size: var(--fs18);
}
.indexP5 .links li a {
  display: block;
  color: #333;
  text-align: center;
  width: 1.5rem;
  height: 0.48rem;
  line-height: 0.48rem;
  border-radius: 0.48rem;
}
.indexP5 .links li a:hover {
  background: #0090dd;
  color: #fff;
}
.indexP5 .tabContent2 {
  position: relative;
  z-index: 1;
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.indexP5 .leftDiv {
  width: 68.6%;
}
.indexP5 .leftDiv ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP5 .leftDiv li {
  width: calc((100% - 0.88rem) / 2);
  margin-right: 0.44rem;
}
.indexP5 .leftDiv li a {
  width: 100%;
  display: block;
}
.indexP5 .leftDiv li a .imgDiv {
  border-top-left-radius: 0.12rem;
  border-top-right-radius: 0.12rem;
  height: 3.12rem;
  overflow: hidden;
}
.indexP5 .leftDiv li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP5 .leftDiv li a .botDiv {
  padding: 0.32rem 0.32rem 0;
  height: 2.76rem;
  background: #fff;
  border: #ebebeb solid 1px;
  border-top: none;
  border-bottom-left-radius: 0.12rem;
  border-bottom-right-radius: 0.12rem;
}
.indexP5 .leftDiv li a .botDiv .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #999;
  font-family: "Poppins-R";
}
.indexP5 .leftDiv li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .leftDiv li a .botDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #333;
}
.indexP5 .leftDiv li a .botDiv .look {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #0090dd;
}
.indexP5 .leftDiv li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP5 .leftDiv li a:hover .name {
  color: #0090dd;
}
.indexP5 .rightDiv {
  width: 31.4%;
  border: #ebebeb solid 1px;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0 0.4rem;
  height: 5.88rem;
}
.indexP5 .rightDiv li a {
  display: block;
  position: relative;
  padding-top: 0.32rem;
  height: 1.46rem;
}
.indexP5 .rightDiv li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.indexP5 .rightDiv li a .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #999;
  font-family: "Poppins-R";
}
.indexP5 .rightDiv li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .rightDiv li a:hover .name {
  color: #0090dd;
}
.indexP5 .rightDiv li:last-child a::after {
  display: none;
}
.indexP6 {
  padding: 1.1rem 0;
  position: relative;
  background: url(../img/indexP6.jpg) center no-repeat;
  background-size: cover;
}
.indexP6::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3.14rem;
  height: 2.98rem;
  background: url(../img/nimg314Bg2.png) no-repeat;
  background-size: 3.14rem;
}
.indexP6 .mxfDiv {
  position: relative;
  z-index: 1;
  width: 9.6rem;
}
.indexP6 .title {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
}
.indexP6 .tel {
  padding: 0.1rem 0 0.3rem;
  color: #0090dd;
  font-size: var(--fs72);
  line-height: 0.72rem;
  font-family: "Din-M";
}
.indexP6 .msg {
  color: #333;
  font-weight: 100;
  font-size: var(--fs36);
  line-height: 0.36rem;
}
.indexP6 .form {
  padding-top: 0.45rem;
}
.indexP6 .form::after {
  content: '';
  display: block;
  clear: both;
}
.indexP6 .form ul {
  margin-right: -0.15rem;
}
.indexP6 .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.18rem;
}
.indexP6 .form li:last-child {
  width: 100%;
}
.indexP6 .form li .box {
  position: relative;
  margin-right: 0.15rem;
  padding-left: 1rem;
  border-radius: 4px;
  border: #b3b3b7 solid 1px;
  background: rgba(255, 255, 255, 0.3);
}
.indexP6 .form li .zi {
  position: absolute;
  left: 0.2rem;
  top: 0;
  line-height: 0.48rem;
  font-size: var(--fs14);
}
.indexP6 .form li .zi em {
  font-size: var(--fs16);
  color: #ff0000;
}
.indexP6 .form li .input1 {
  width: 100%;
  background: none;
  height: 0.48rem;
  line-height: 0.48rem;
  font-size: var(--fs16);
}
.indexP6 .form li textarea {
  width: 100%;
  background: none;
  padding-top: 0.1rem;
  height: 0.9rem;
  line-height: 0.24rem;
  font-size: var(--fs16);
  font-family: inherit;
}
.indexP6 .btnDiv {
  padding-top: 0.26rem;
  overflow: hidden;
}
.indexP6 .btnDiv li {
  float: left;
  margin-right: 0.18rem;
  font-size: var(--fs16);
}
.indexP6 .btnDiv li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 2rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #0090dd;
  color: #fff;
}
.indexP6 .btnDiv li a em {
  margin-left: 0.23rem;
  width: 0.26rem;
  height: 0.21rem;
}
.indexP6 .btnDiv li:nth-child(1) a em {
  background: url(../img/nimg26_2.png) no-repeat;
  background-size: 0.26rem;
}
.indexP6 .btnDiv li:nth-child(2) a {
  background: #65b72d;
}
.indexP6 .btnDiv li:nth-child(2) a em {
  background: url(../img/nimg26_1.png) no-repeat;
  background-size: 0.26rem;
}
.indexP6-2::after {
  display: none;
}
@media (max-width: 1600px) {
  .indexP2 .mxfDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .indexP2 .links {
    left: calc((100% - 16rem) / 2);
  }
  .indexP2 .arrowDiv {
    right: calc((100% - 16rem) / 2);
  }
}
@media (max-width: 1004px) {
  .indexP0 {
    padding: 0.6rem var(--offset);
  }
  .indexP0 .title {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .indexLogo {
    padding: 0 0.6rem;
  }
  .indexLogo .list li {
    padding: 0 0.25rem;
    width: 2.1rem;
  }
  .indexP1 {
    padding: 0.9rem 0;
  }
  .indexP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP1 .msg {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .indexP1 .list {
    margin-right: 0;
  }
  .indexP1 .list ul {
    display: block;
  }
  .indexP1 .list li {
    width: 100%;
    height: 5.2rem;
    margin-bottom: 0.3rem;
  }
  .indexP1 .list li .box {
    margin-right: 0;
    border-radius: 0.12rem;
  }
  .indexP1 .list li .bg {
    height: 5.2rem;
  }
  .indexP1 .list li .bg::after {
    height: 60%;
    background: url(../img/bg1.png) top repeat-x;
  }
  .indexP1 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indexP1 .list li .after {
    padding: 0.35rem 0.3rem 0;
    bottom: -50%;
  }
  .indexP1 .list li .cn {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indexP1 .list li .content {
    height: 0.96rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .indexP1 .list li .more {
    display: none;
  }
  .indexP1 .list li.on {
    width: 100%;
  }
  .indexP1 .btnDiv {
    width: 2.8rem;
    margin: 0.7rem auto 0;
  }
  .indexP1 .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP1 .btnDiv a em {
    width: 0.32rem;
    height: 0.27rem;
    background-size: 0.32rem;
  }
  .indexP2 {
    padding-top: 0.9rem;
  }
  .indexP2 .toptop {
    padding-bottom: 0.7rem;
  }
  .indexP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    padding-bottom: 0.2rem;
  }
  .indexP2 .msg {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .indexP2 .mxfDiv {
    padding-left: 0;
  }
  .indexP2 .links {
    position: relative;
    padding: 0 var(--offset);
    left: 0;
    overflow: hidden;
  }
  .indexP2 .links li {
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .indexP2 .links li .box {
    padding: 0 0.3rem;
    width: auto;
    height: 0.68rem;
  }
  .indexP2 .lunbo {
    padding-top: 0.5rem;
    display: none;
  }
  .indexP2 .imgList {
    height: 5.85rem;
  }
  .indexP2 .imgList a {
    padding-top: 0.4rem;
  }
  .indexP2 .imgList a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2.34rem;
    width: 1px;
    height: 4.68rem;
    background: #e5e5e5;
  }
  .indexP2 .imgList a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP2 .imgList a .imgDiv {
    margin: 0.25rem auto 0;
    width: 3.2rem;
    height: 3.2rem;
  }
  .indexP2 .imgList a .imgDiv img {
    max-width: 3.2rem;
    max-height: 3.2rem;
  }
  .indexP2 .imgList a .ico {
    width: 0.7rem;
    height: 0.5rem;
    border: #474747 solid 1px;
  }
  .indexP2 .imgList a:hover .ico {
    border: #0090dd solid 1px;
  }
  .indexP2 .arrowDiv {
    display: none;
  }
  .indexP3 {
    padding: 0.9rem 0;
  }
  .indexP3::after {
    display: none;
  }
  .indexP3 .toptop {
    padding-bottom: 0.35rem;
  }
  .indexP3 .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP3 .msg {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .conDiv {
    width: auto;
  }
  .indexP3 .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .indexP3 .numList li {
    padding: 0.6rem 0 0 0.8rem;
    font-size: var(--fs14);
  }
  .indexP3 .numList li .ico {
    top: 0.6rem;
  }
  .indexP3 .numList li .ico img {
    width: 0.64rem;
  }
  .indexP3 .numList li .pj {
    height: 0.75rem;
  }
  .indexP3 .numList li .num span {
    top: 0;
  }
  .indexP3 .numList li .numUp {
    font-size: var(--fs32);
    padding-right: 0.1rem;
  }
  .indexP3 .numList li .wen {
    line-height: 0.36rem;
  }
  .indexP3 .imgDiv {
    margin-top: 0.7rem;
    width: auto;
  }
  .indexP3 .title {
    padding: 0.75rem 0 0.4rem;
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .indexP3 .list li {
    width: calc((100% - 0.48rem) / 3);
    margin-right: 0.24rem;
  }
  .indexP3 .list li a {
    padding-top: 0.2rem;
    height: 1.65rem;
  }
  .indexP3 .list li a .limg img {
    max-width: 1.5rem;
  }
  .indexP3 .list li a .zi {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP4 .txtLayer {
    top: 0.5rem;
  }
  .indexP4 .txtLayer .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP4 .txtLayer .msg {
    margin-top: 0.15rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indexP4 .list li .imgDiv {
    height: 50vh;
  }
  .indexP4 .list li .imgDiv::before {
    display: none;
  }
  .indexP4 .list li .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .indexP4 .list li .beforeDiv {
    left: 0;
    top: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .indexP4 .list li .ico {
    height: 0.86rem;
  }
  .indexP4 .list li .ico img {
    width: 0.64rem;
  }
  .indexP4 .list li .name {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP4 .list li .more {
    display: none;
  }
  .indexP4 .list li .afterDiv {
    display: none;
  }
  .indexP4 .list li:hover .imgDiv::after {
    opacity: 1;
    visibility: visible;
  }
  .indexP4 .list li:hover .beforeDiv {
    opacity: 1;
    visibility: visible;
  }
  .indexP5 {
    padding: 0.9rem 0;
    background: url(../img/indexP5.jpg) center top no-repeat;
    background-size: 100%;
  }
  .indexP5 .toptop {
    padding-bottom: 0.6rem;
  }
  .indexP5 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP5 .links {
    position: relative;
    overflow: hidden;
    padding-top: 0.4rem;
  }
  .indexP5 .links li {
    font-size: var(--fs14);
    width: 33.33%;
  }
  .indexP5 .links li a {
    width: 100%;
    height: 0.72rem;
    line-height: 0.72rem;
  }
  .indexP5 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP5 .leftDiv li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .indexP5 .leftDiv li:nth-child(2) {
    margin-right: 0;
  }
  .indexP5 .leftDiv li a .imgDiv {
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    height: 2.12rem;
  }
  .indexP5 .leftDiv li a .botDiv {
    padding: 0.25rem 0.2rem;
    height: auto;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
  }
  .indexP5 .leftDiv li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP5 .leftDiv li a .botDiv .name {
    margin-top: 0.1rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP5 .leftDiv li a .botDiv .content {
    display: none;
  }
  .indexP5 .leftDiv li a .botDiv .look {
    margin-top: 0.15rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP5 .rightDiv {
    margin-top: 0.3rem;
    width: auto;
    float: none;
    border-radius: 0.16rem;
    padding: 0 0.3rem;
    height: auto;
  }
  .indexP5 .rightDiv li a {
    padding: 0.3rem 0;
    height: auto;
  }
  .indexP5 .rightDiv li a .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP5 .rightDiv li a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP6 {
    padding: 0.9rem 0;
    background-size: cover;
  }
  .indexP6 .mxfDiv {
    width: auto;
  }
  .indexP6 .title {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indexP6 .tel {
    font-size: var(--fs36);
  }
  .indexP6 .msg {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .indexP6 .form ul {
    margin-right: 0;
  }
  .indexP6 .form li {
    float: none;
    width: auto;
    margin-bottom: 0.2rem;
  }
  .indexP6 .form li .box {
    margin-right: 0;
    padding-left: 1.6rem;
  }
  .indexP6 .form li .zi {
    line-height: 0.98rem;
    font-size: var(--fs13);
  }
  .indexP6 .form li .zi em {
    font-size: var(--fs14);
  }
  .indexP6 .form li .input1 {
    height: 0.98rem;
    line-height: 0.98rem;
    font-size: var(--fs14);
  }
  .indexP6 .form li textarea {
    padding-top: 0.24rem;
    height: 2.8rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .indexP6 .btnDiv {
    padding-top: 0.3rem;
  }
  .indexP6 .btnDiv li {
    margin-right: 0.2rem;
    font-size: var(--fs14);
  }
  .indexP6 .btnDiv li a {
    width: 2.4rem;
    height: 0.8rem;
  }
  .indexP6 .btnDiv li a em {
    margin-left: 0.15rem;
    width: 0.32rem;
    height: 0.27rem;
  }
  .indexP6 .btnDiv li:nth-child(1) a em {
    background-size: 0.32rem;
  }
  .indexP6 .btnDiv li:nth-child(2) a em {
    background-size: 0.32rem;
  }
}
.case {
  padding: 1.2rem 0 1.3rem;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.case .list {
  padding-bottom: 0.55rem;
}
.case .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.case .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-bottom: 0.45rem;
}
.case .list li:nth-child(3n) {
  margin-right: 0;
}
.case .list li .imgDiv {
  position: relative;
  border-radius: 8px;
  height: 3.05rem;
  overflow: hidden;
}
.case .list li .imgDiv::after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  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;
}
.case .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case .list li .imgDiv .ico {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -0.25rem;
  margin-top: -0.25rem;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  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 .ico::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #65b72d;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -1px;
}
.case .list li .imgDiv .ico::after {
  content: '';
  width: 2px;
  height: 16px;
  background: #65b72d;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -8px;
}
.case .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.case .list li:hover .imgDiv::after {
  opacity: 1;
}
.case .list li:hover .imgDiv .ico {
  opacity: 1;
}
.case .list li:hover .name {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .case {
    padding: 0.9rem 0 1rem;
  }
  .case .list {
    padding-bottom: 0.5rem;
  }
  .case .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .case .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .case .list li:nth-child(2n) {
    margin-right: 0;
  }
  .case .list li .imgDiv {
    border-radius: 0.12rem;
    height: 2.05rem;
  }
  .case .list li .imgDiv .ico {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
  }
  .case .list li .imgDiv .ico::before {
    content: '';
    width: 12px;
    margin-left: -6px;
  }
  .case .list li .imgDiv .ico::after {
    height: 12px;
    margin-top: -6px;
  }
  .case .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs14);
  }
}
.product {
  padding: 1.2rem 0 1.3rem;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.product .list {
  padding-bottom: 0.3rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.product .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-bottom: 0.45rem;
}
.product .list li:nth-child(3n) {
  margin-right: 0;
}
.product .list li a {
  position: relative;
  display: block;
  width: 100%;
  height: 5.95rem;
  background: #fff;
  border: #fff solid 1px;
  padding-top: 0.65rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
.product .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.product .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.35rem auto 0;
  overflow: hidden;
  width: 4rem;
  height: 3.5rem;
}
.product .list li a .imgDiv img {
  max-width: 4rem;
  max-height: 3.5rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.product .list li a .ico {
  margin: 0.2rem auto 0;
  width: 0.48rem;
  height: 0.34rem;
  border-radius: 0.48rem;
  border: #474747 solid 2px;
  background: url(../img/ico3.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li a:hover {
  border: #0090dd solid 1px;
}
.product .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list li a:hover .ico {
  border: #0090dd solid 2px;
  background: #0090dd url(../img/ico3on.png) center no-repeat;
}
@media (max-width: 1004px) {
  .product {
    padding: 0.9rem 0 1rem;
  }
  .product .list {
    padding-bottom: 0.5rem;
  }
  .product .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .product .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(2n) {
    margin-right: 0;
  }
  .product .list li a {
    padding-top: 0.3rem;
    height: 4.8rem;
  }
  .product .list li a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .product .list li a .imgDiv {
    margin: 0.15rem auto 0;
    width: 2.8rem;
    height: 2.8rem;
  }
  .product .list li a .imgDiv img {
    max-width: 2.8rem;
    max-height: 2.8rem;
  }
  .product .list li a .ico {
    width: 0.7rem;
    height: 0.5rem;
    border: #474747 solid 1px;
  }
  .product .list li a:hover .ico {
    border: #0090dd solid 1px;
  }
}
.solution {
  padding: 1.2rem 0 0.3rem;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.solution .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.solution .list li {
  width: calc((100% - 0.8rem) / 2);
  margin-right: 0.8rem;
  margin-bottom: 0.9rem;
}
.solution .list li:nth-child(2n) {
  margin-right: 0;
}
.solution .list li a {
  display: block;
  background: #fff;
  overflow: hidden;
  border-radius: 0.1rem;
}
.solution .list li a .imgDiv {
  border-radius: 0.1rem;
  overflow: hidden;
  height: 4.1rem;
}
.solution .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;
}
.solution .list li a .botDiv {
  position: relative;
  height: 1.9rem;
  padding: 0.42rem 0.6rem 0;
}
.solution .list li a .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #61b17b;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solution .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solution .list li a .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #333;
}
.solution .list li a:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.solution .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.solution .list li a:hover .botDiv::after {
  width: 100%;
}
.solution .list li a:hover .name {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .solution {
    padding: 0.9rem 0 0.3rem;
  }
  .solution .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  .solution .list li a {
    border-radius: 0.2rem;
  }
  .solution .list li a .imgDiv {
    border-radius: 0.2rem;
    height: auto;
  }
  .solution .list li a .imgDiv img {
    height: auto;
  }
  .solution .list li a .botDiv {
    height: auto;
    padding: 0.4rem 0.3rem;
  }
  .solution .list li a .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .solution .list li a .msg {
    display: block;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: auto;
  }
}
.contactP1 {
  padding: 1.2rem 0 0.7rem;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
}
.contactP1 .name {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  margin-bottom: 0.6rem;
}
.contactP1 .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.contactP1 .mxfDiv .conDiv {
  width: 9.2rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contactP1 .mxfDiv .msgList {
  width: 50%;
}
.contactP1 .mxfDiv .msgList li {
  padding-bottom: 0.56rem;
  position: relative;
  padding-left: 0.92rem;
  min-height: 0.64rem;
}
.contactP1 .mxfDiv .msgList li:last-child {
  padding-bottom: 0;
}
.contactP1 .mxfDiv .msgList li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: #0090dd;
  box-shadow: 0 0.06rem 0.16rem 0 rgba(0, 144, 221, 0.5);
}
.contactP1 .mxfDiv .msgList li .ico img {
  width: 0.29rem;
}
.contactP1 .mxfDiv .msgList li .zi {
  font-size: var(--fs18);
  line-height: 0.2rem;
  margin-bottom: 0.15rem;
}
.contactP1 .mxfDiv .msgList li .wen {
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #333;
  font-family: 'Poppins-M';
}
.contactP1 .mxfDiv .imgDiv {
  width: 5.9rem;
  overflow: hidden;
  border-radius: 0.24rem;
}
.contactP1 .mxfDiv .imgDiv img {
  width: 100%;
}
.contactP1 .list {
  padding-top: 0.9rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  position: relative;
  width: calc((100% - 0.8rem) / 2);
  margin-right: 0.8rem;
  margin-bottom: 0.5rem;
  min-height: 3.2rem;
  background: #fff;
  padding: 0.6rem 0.6rem 0.4rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.contactP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.contactP1 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #0090dd;
}
.contactP1 .list li .ico {
  position: absolute;
  right: 0.45rem;
  top: 0.55rem;
}
.contactP1 .list li .ico img {
  width: 1.94rem;
}
.contactP1 .list li .cn {
  position: relative;
  font-size: var(--fs30);
  line-height: 0.32rem;
  padding-bottom: 0.24rem;
  color: #333;
}
.contactP1 .list li .cn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  border-radius: 4px;
  background: #0090dd;
}
.contactP1 .list li .msg {
  padding-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
  position: relative;
  z-index: 1;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.9rem 0 0.5rem;
  }
  .contactP1 .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .contactP1 .mxfDiv .conDiv {
    float: none;
    width: auto;
    display: block;
  }
  .contactP1 .mxfDiv .msgList {
    width: auto;
  }
  .contactP1 .mxfDiv .msgList li {
    padding-bottom: 0.35rem;
    padding-left: 1.2rem;
    min-height: 0.86rem;
  }
  .contactP1 .mxfDiv .msgList li:last-child {
    padding-bottom: 0.35rem;
  }
  .contactP1 .mxfDiv .msgList li .ico {
    width: 0.86rem;
    height: 0.86rem;
  }
  .contactP1 .mxfDiv .msgList li .ico img {
    width: 0.36rem;
  }
  .contactP1 .mxfDiv .msgList li .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
    margin-bottom: 0.1rem;
  }
  .contactP1 .mxfDiv .msgList li .wen {
    font-size: var(--fs17);
    line-height: 0.48rem;
    color: #333;
    font-family: 'Poppins-M';
  }
  .contactP1 .mxfDiv .imgDiv {
    float: none;
    width: auto;
    margin-top: 0.3rem;
  }
  .contactP1 .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.4rem;
    padding: 0.6rem 0.4rem 0.4rem;
    border-radius: 0.16rem;
  }
  .contactP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .contactP1 .list li::after {
    height: 3px;
  }
  .contactP1 .list li .ico {
    right: 0.35rem;
    top: 0.55rem;
  }
  .contactP1 .list li .ico img {
    width: 1.94rem;
  }
  .contactP1 .list li .cn {
    font-size: var(--fs20);
    line-height: 0.52rem;
    padding-bottom: 0.28rem;
  }
  .contactP1 .list li .cn::after {
    width: 0.42rem;
    height: 2px;
  }
  .contactP1 .list li .msg {
    padding-top: 0.24rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.framework {
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
}
.framework .bigBox {
  background: #fff;
  padding: 0.95rem 0 1.15rem;
  border-radius: 0.24rem;
}
.framework .title {
  font-size: var(--fs30);
  text-align: center;
  color: #333;
  line-height: 0.42rem;
  padding-bottom: 0.6rem;
}
.framework .imgDiv {
  text-align: center;
}
.framework .imgDiv img {
  max-width: 13.51rem;
}
.framework .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs14);
}
@media (max-width: 1004px) {
  .framework {
    padding: 0.9rem 0;
  }
  .framework .bigBox {
    padding: 0.75rem 0.3rem 0.85rem;
  }
  .framework .title {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .framework .longDiv {
    overflow: auto;
  }
  .framework .imgDiv {
    width: 12rem;
  }
  .framework .imgDiv img {
    width: 100%;
  }
}
.lyb {
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.lyb .bigBox {
  background: #fff;
  padding: 0.55rem 1.1rem 1.2rem;
  border-radius: 0.2rem;
}
.lyb .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  font-weight: bold;
  padding: 0.45rem 0 0.3rem;
}
.lyb .wen {
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #333;
  padding-bottom: 0.2rem;
}
.lyb .baozhe {
  border-bottom: #e5e5e3 solid 1px;
}
.lyb .form {
  padding-bottom: 0.3rem;
}
.lyb .form::after {
  content: '';
  display: block;
  clear: both;
}
.lyb .form ul {
  margin-right: -0.18rem;
}
.lyb .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.25rem;
}
.lyb .form li .box {
  position: relative;
  margin-right: 0.18rem;
  border: #d1d1d1 solid 1px;
  border-radius: 6px;
  overflow: hidden;
}
.lyb .form li .box .zi {
  position: absolute;
  left: 0.2rem;
  top: 0;
  line-height: 0.48rem;
  font-size: var(--fs14);
}
.lyb .form li .box .zi em {
  color: #ff0000;
}
.lyb .form li .box .input1 {
  width: 100%;
  padding-left: 1rem;
  height: 0.48rem;
  line-height: 0.48rem;
  font-size: var(--fs16);
}
.lyb .form li .box textarea {
  width: 100%;
  height: 1.1rem;
  font-size: var(--fs14);
  line-height: 0.3rem;
  padding: 0.1rem 0 0 1rem;
  font-family: inherit;
}
.lyb .form .li01 {
  width: 100%;
}
.lyb .choose {
  padding-left: 1.1rem;
}
.lyb .choose::after {
  content: '';
  display: block;
  clear: both;
}
.lyb .choose dd {
  position: relative;
  float: left;
  margin-right: 0.25rem;
  padding-left: 24px;
  font-size: var(--fs14);
  line-height: 0.48rem;
  cursor: pointer;
}
.lyb .choose dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: #e5e5e5 solid 1px;
}
.lyb .choose .on::before {
  border: #0090dd solid 1px;
  background: url(../img/ico5.png) center no-repeat;
}
.lyb .choice {
  padding-bottom: 0.75rem;
}
.lyb .choice::after {
  content: '';
  display: block;
  clear: both;
}
.lyb .choice li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  margin-right: 0.18rem;
  cursor: pointer;
  font-size: var(--fs15);
  color: #333;
  border-radius: 6px;
  width: 1.15rem;
  height: 0.48rem;
  border: #eee solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.lyb .choice .on {
  background: #0090dd;
  border: #0090dd solid 1px;
  color: #fff;
}
.lyb .btnDiv {
  margin: 0.7rem auto 0;
  width: 2rem;
}
.lyb .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.6rem;
  border-radius: 0.48rem;
  background: #0090dd;
  color: #fff;
  font-size: var(--fs16);
}
.lyb .btnDiv a em {
  margin-left: 0.2rem;
  width: 0.26rem;
  height: 0.21rem;
  background: url(../img/nimg26_2.png) no-repeat;
  background-size: 0.26rem;
}
@media (max-width: 1004px) {
  .lyb {
    padding: 0.9rem 0;
  }
  .lyb .bigBox {
    padding: 0.55rem 0.3rem 0.9rem;
  }
  .lyb .title {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .lyb .wen {
    font-size: var(--fs15);
    line-height: 0.36rem;
    padding-bottom: 0.25rem;
  }
  .lyb .form ul {
    margin-right: 0;
  }
  .lyb .form li {
    float: none;
    width: auto;
  }
  .lyb .form li .box {
    margin-right: 0;
  }
  .lyb .form li .box .zi {
    line-height: 0.86rem;
  }
  .lyb .form li .box .input1 {
    width: 100%;
    padding-left: 1.6rem;
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .lyb .form li .box textarea {
    height: 2.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.15rem 0 0 1.6rem;
  }
  .lyb .choose {
    padding-left: 1.9rem;
  }
  .lyb .choose dd {
    margin-right: 0.3rem;
    padding-left: 0.4rem;
    font-size: var(--fs14);
    line-height: 0.86rem;
  }
  .lyb .choose dd::before {
    margin-top: -6px;
    width: 12px;
    height: 12px;
    border-radius: 4px;
  }
  .lyb .choice {
    padding-bottom: 0.5rem;
  }
  .lyb .choice li {
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: var(--fs14);
    width: 1.6rem;
    height: 0.8rem;
  }
  .lyb .btnDiv {
    width: 3rem;
  }
  .lyb .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .lyb .btnDiv a em {
    margin-left: 0.2rem;
    width: 0.32rem;
    height: 0.26rem;
    background-size: 0.32rem;
  }
}
.newshow {
  padding: 0.2rem 0 1.2rem;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.newshow .bigBox {
  margin-top: 0.2rem;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.9rem 1rem 1rem;
}
.newshow .name {
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.2rem;
}
.newshow .time {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #999;
  text-align: center;
  padding-bottom: 0.48rem;
  border-bottom: #dcdcdc solid 1px;
  font-family: 'Poppins-M';
}
.newshow .content {
  padding: 0.5rem 0;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.newshow .content img {
  max-width: 100%;
}
.newshow .content2 {
  width: 8rem;
  margin: 0 auto;
}
.newshow .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-top: #dcdcdc solid 1px;
  padding-top: 0.6rem;
}
.newshow .pageDown::after {
  content: '';
  display: block;
  clear: both;
}
.newshow .pageDown li {
  float: left;
  margin-right: 0.2rem;
}
.newshow .pageDown li .prev,
.newshow .pageDown li .next {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 0.62rem;
  border: #d2d2d2 solid 1px;
  border-radius: 6px;
}
.newshow .pageDown li .prev:hover,
.newshow .pageDown li .next:hover {
  width: 2.8rem;
  border: #0090dd solid 1px;
}
.newshow .pageDown li .prev {
  background: url(../img/nimg22_left.png) center no-repeat;
  background-size: 0.22rem;
}
.newshow .pageDown li .prev:hover {
  background: #0090dd url(../img/nimg22_lefton.png) center no-repeat;
  background-size: 0.22rem;
}
.newshow .pageDown li .next {
  background: url(../img/nimg22_right.png) center no-repeat;
  background-size: 0.22rem;
}
.newshow .pageDown li .next:hover {
  background: #0090dd url(../img/nimg22_righton.png) center no-repeat;
  background-size: 0.22rem;
}
.newshow .pageDown li .back {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.8rem;
  height: 0.62rem;
  border: #0090dd solid 1px;
  border-radius: 6px;
  font-size: var(--fs16);
  color: #0090dd;
}
.newshow .pageDown li .back em {
  margin-left: 0.32rem;
  width: 0.15rem;
  height: 0.14rem;
  background: url(../img/back.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newshow .pageDown li .back:hover {
  background: #0090dd;
  color: #fff;
}
.newshow .pageDown li .back:hover em {
  background: url(../img/backon.png) no-repeat;
  background-size: 0.15rem;
}
.newshow .share {
  position: relative;
  padding-left: 0.4rem;
}
.newshow .share em {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.4rem;
  color: #333;
  font-size: var(--fs16);
}
.newshow .share li {
  float: left;
  margin-left: 0.12rem;
}
.newshow .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
}
.newshow .share li a img {
  width: 0.32rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newshow .share li a:hover {
  background: #65b72d;
}
.newshow .share li a:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1004px) {
  .newshow {
    padding: 0.9rem 0;
  }
  .newshow .pageNow {
    display: none;
  }
  .newshow .bigBox {
    margin-top: 0;
    padding: 0.7rem 0.3rem 0.8rem;
  }
  .newshow .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
    margin: 0 0 0.3rem;
  }
  .newshow .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .newshow .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newshow .content2 {
    width: 100%;
  }
  .newshow .botbot {
    display: block;
    padding-top: 0.5rem;
  }
  .newshow .pageDown li {
    float: left;
    margin-right: 0.2rem;
  }
  .newshow .pageDown li .prev,
  .newshow .pageDown li .next {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1rem;
    height: 0.8rem;
  }
  .newshow .pageDown li .prev:hover,
  .newshow .pageDown li .next:hover {
    width: 1rem;
  }
  .newshow .pageDown li .back {
    width: 2.5rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .newshow .pageDown li .back em {
    margin-left: 0.2rem;
    width: 0.22rem;
    height: 0.21rem;
    background-size: 0.22rem;
  }
  .newshow .pageDown li .back:hover em {
    background-size: 0.22rem;
  }
  .newshow .share {
    overflow: hidden;
    margin-top: 0.3rem;
    padding-left: 0.64rem;
  }
  .newshow .share em {
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .newshow .share li {
    margin-left: 0.2rem;
  }
  .newshow .share li a {
    width: 0.86rem;
    height: 0.86rem;
  }
  .newshow .share li a img {
    width: 0.48rem;
  }
}
.newsP1 {
  position: relative;
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
}
.newsP1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.14rem;
  height: 2.6rem;
  background: url(../img/nimg314Bg.png) left top no-repeat;
  background-size: 3.14rem;
}
.newsP1 .links {
  padding-bottom: 0.6rem;
}
.newsP1 .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.newsP1 .links li {
  margin: 0 0.2rem;
  font-size: var(--fs18);
}
.newsP1 .links li a {
  display: block;
  color: #333;
  width: 1.5rem;
  text-align: center;
  height: 0.48rem;
  line-height: 0.48rem;
  border-radius: 0.48rem;
  background: #fff;
}
.newsP1 .links li a:hover {
  background: #0090dd;
  color: #fff;
}
.newsP1 .links li .aNow {
  background: #0090dd;
  color: #fff;
}
.newsPic {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.65rem;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsPic .mxfDiv {
  position: relative;
  padding: 0 0.75rem 0 8.68rem;
  height: 4.96rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.1rem;
}
.newsPic .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 4.96rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsPic .time {
  padding: 0.9rem 0 0.2rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Poppins-R';
}
.newsPic .name {
  font-size: var(--fs30);
  color: #333;
  line-height: 0.36rem;
  height: 0.72rem;
  font-weight: bold;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  margin-top: 0.32rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.3rem;
  height: 0.9rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.newsPic .more {
  margin-top: 0.6rem;
  color: #0090dd;
  font-size: var(--fs16);
  line-height: 0.18rem;
}
.newsPic .swiper-pagination {
  bottom: 0;
}
.newsPic .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 5px!important;
  background: #dcdcdc;
  opacity: 1;
}
.newsPic .swiper-pagination .swiper-pagination-bullet-active {
  background: #0090dd;
}
.newsPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic .swiper-slide:hover .name {
  color: #0090dd;
}
.newsP2 {
  padding: 1.2rem 0 1rem;
  border-bottom: #ccc solid 1px;
}
.newsP2 .list {
  padding-bottom: 0.25rem;
}
.newsP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.newsP2 .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-bottom: 0.5rem;
}
.newsP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.newsP2 .list li a {
  width: 100%;
  display: block;
}
.newsP2 .list li a .imgDiv {
  border-top-left-radius: 0.12rem;
  border-top-right-radius: 0.12rem;
  height: 3.12rem;
  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 .botDiv {
  padding: 0.32rem;
  background: #fff;
  border: #ebebeb solid 1px;
  border-top: none;
  border-bottom-left-radius: 0.12rem;
  border-bottom-right-radius: 0.12rem;
}
.newsP2 .list li a .botDiv .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #999;
  font-family: "Poppins-R";
}
.newsP2 .list li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li a .botDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #333;
}
.newsP2 .list li a .botDiv .look {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #0090dd;
}
.newsP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsP2 .list li a:hover .name {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.9rem 0;
  }
  .newsP1 .links li {
    margin: 0 0.2rem;
    font-size: var(--fs14);
  }
  .newsP1 .links li a {
    width: 2rem;
    height: 0.72rem;
    line-height: 0.72rem;
  }
  .newsPic {
    padding-bottom: 0.8rem;
  }
  .newsPic .mxfDiv {
    padding: 0;
    height: auto;
    border-radius: 0.2rem;
  }
  .newsPic .imgDiv {
    position: relative;
    width: auto;
    height: 4rem;
    border-radius: 0.2rem;
  }
  .newsPic .conDiv {
    padding: 0 0.3rem 0.5rem;
  }
  .newsPic .time {
    padding: 0.5rem 0 0.2rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .content {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .newsPic .more {
    display: none;
  }
  .newsP2 {
    padding: 0.9rem 0 0.8rem;
  }
  .newsP2 .list {
    padding-bottom: 0.45rem;
  }
  .newsP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .newsP2 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .newsP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .newsP2 .list li a .imgDiv {
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    height: 2.12rem;
  }
  .newsP2 .list li a .botDiv {
    padding: 0.25rem 0.2rem;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
  }
  .newsP2 .list li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .newsP2 .list li a .botDiv .name {
    margin-top: 0.1rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsP2 .list li a .botDiv .content {
    display: none;
  }
  .newsP2 .list li a .botDiv .look {
    margin-top: 0.15rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
}
.knowledge {
  padding: 1.2rem 0 1rem;
  border-bottom: #ccc solid 1px;
}
.knowledge .list {
  padding-bottom: 0.2rem;
}
.knowledge .list li {
  margin-bottom: 0.6rem;
}
.knowledge .list li a {
  position: relative;
  display: block;
  height: 2.24rem;
  padding: 0.3rem 1.5rem 0 3.95rem;
}
.knowledge .list li .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.4rem;
  height: 2.24rem;
  overflow: hidden;
  border-radius: 0.1rem;
}
.knowledge .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;
}
.knowledge .list li .time {
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  font-family: 'Poppins-M';
  color: #999;
}
.knowledge .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 6px;
  font-size: var(--fs18);
  color: #000;
  font-weight: bold;
  line-height: 0.32rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.knowledge .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.28rem;
  height: 0.84rem;
}
.knowledge .list li .ico {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.48rem;
  height: 0.48rem;
  border: #bfbfbf solid 2px;
  border-radius: 50%;
  background: url(../img/nimg12_1.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.knowledge .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.knowledge .list li a:hover .name {
  color: #0090dd;
}
.knowledge .list li a:hover .ico {
  border: #0090dd solid 2px;
  background: #0090dd url(../img/nimg12_1on.png) center no-repeat;
}
@media (max-width: 1004px) {
  .knowledge {
    padding: 0.9rem 0 0.8rem;
  }
  .knowledge .list {
    padding-bottom: 0.45rem;
  }
  .knowledge .list li {
    margin-bottom: 0.3rem;
  }
  .knowledge .list li a {
    height: 1.6rem;
    padding: 0 0 0 2.7rem;
  }
  .knowledge .list li .imgDiv {
    width: 2.4rem;
    height: 1.6rem;
    border-radius: 0.2rem;
  }
  .knowledge .list li .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .knowledge .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .knowledge .list li .content,
  .knowledge .list li .ico {
    display: none;
  }
}
.videoBox {
  position: relative;
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
}
.videoBox::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.14rem;
  height: 2.6rem;
  background: url(../img/nimg314Bg.png) left top no-repeat;
  background-size: 3.14rem;
}
.videoBox .links {
  padding-bottom: 0.6rem;
}
.videoBox .links ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.videoBox .links li {
  margin: 0 0.2rem;
  font-size: var(--fs18);
}
.videoBox .links li a {
  display: block;
  color: #333;
  width: 1.5rem;
  text-align: center;
  height: 0.48rem;
  line-height: 0.48rem;
  border-radius: 0.48rem;
  background: #fff;
}
.videoBox .links li a:hover {
  background: #0090dd;
  color: #fff;
}
.videoBox .links li .aNow {
  background: #0090dd;
  color: #fff;
}
.videoBox .list {
  padding-bottom: 0.2rem;
}
.videoBox .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.videoBox .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
  margin-bottom: 0.6rem;
  position: relative;
}
.videoBox .list li:nth-child(3n) {
  margin-right: 0;
}
.videoBox .list li .box {
  cursor: pointer;
}
.videoBox .list li .imgDiv {
  height: 2.8rem;
  position: relative;
}
.videoBox .list li .imgDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.videoBox .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  width: 42px;
  height: 42px;
  background: url(../img/play.png) no-repeat;
}
.videoBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoBox .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.25rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #000;
  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;
}
.videoBox .list li .videoDiv {
  display: none;
}
.videoBox .list li:nth-child(-n+3)::after {
  display: none;
}
.videoBox .list li:hover .name {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .videoBox {
    padding: 0.9rem 0;
  }
  .videoBox .links li {
    margin: 0 0.2rem;
    font-size: var(--fs14);
  }
  .videoBox .links li a {
    width: 2rem;
    height: 0.72rem;
    line-height: 0.72rem;
  }
  .videoBox .list {
    padding-bottom: 0.3rem;
  }
  .videoBox .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .videoBox .list li .imgDiv {
    height: 2rem;
  }
  .videoBox .list li .imgDiv::after {
    margin-left: -0.45rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.9rem;
  }
  .videoBox .list li .name {
    margin-top: 0.1rem;
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .videoBox .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .videoBox .list li:nth-child(2n) {
    margin-right: 0;
  }
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.shipinLayer {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  position: relative;
}
.shipinLayer .close {
  position: absolute;
  display: block;
  opacity: 1;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 1;
  background: url(../img/close2.png) center no-repeat;
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.6rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
@media (max-width: 1004px) {
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.42rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
}
.productP1 {
  overflow: hidden;
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
}
.productP1 .bn {
  display: none;
  height: 0.15rem;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.productP1 .leftDiv {
  width: 7.2rem;
  padding-left: 1.15rem;
  position: relative;
}
.productP1 .baozhe {
  position: absolute;
  height: 4.8rem;
  left: 0;
  top: 0;
  width: 0.92rem;
}
.productP1 .img-swiper {
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.92rem;
  height: 3.74rem;
  overflow: hidden;
}
.productP1 .img-swiper .swiper-slide {
  height: 0.82rem !important;
}
.productP1 .img-swiper .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  height: 0.82rem;
  background: #fff;
}
.productP1 .img-swiper .limg img {
  opacity: 0.3;
  max-width: 0.7rem;
  max-height: 0.7rem;
}
.productP1 .img-swiper .swiper-slide-active .limg img {
  opacity: 1;
}
.productP1 .img-swiper.three {
  height: 2.76rem;
}
.productP1 .img-swiper.two {
  height: 1.78rem;
}
.productP1 .detail-box {
  width: 100%;
  position: relative;
}
.productP1 .detail-box .item {
  display: none;
  position: relative;
}
.productP1 .detail-box .item .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.8rem;
  background: #fff;
}
.productP1 .detail-box .item .imgDiv img {
  max-width: 5rem;
  max-height: 4rem;
}
.productP1 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.productP1 .swiper-btn {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 6px;
  border: #eaeaea solid 1px;
  z-index: 2;
}
.productP1 .swiper-btn:hover {
  border: #0090dd solid 1px;
}
.productP1 .prev {
  top: 0;
  background: #fff url(../img/nimg10_top.png) center no-repeat;
}
.productP1 .prev:hover {
  background: #0090dd url(../img/nimg10_topon.png) center no-repeat;
}
.productP1 .next {
  bottom: 0;
  background: #fff url(../img/nimg10_bot.png) center no-repeat;
}
.productP1 .next:hover {
  background: #0090dd url(../img/nimg10_boton.png) center no-repeat;
}
.productP1 .rightDiv {
  width: 7.15rem;
}
.productP1 .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  padding-bottom: 0.25rem;
  margin: 0;
  border-bottom: #dedfdf solid 1px;
}
.productP1 .msgList {
  padding: 0.2rem 0;
  border-bottom: #dedfdf solid 1px;
}
.productP1 .msgList li {
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.productP1 .btnDiv {
  padding-top: 0.5rem;
  overflow: hidden;
}
.productP1 .btnDiv li {
  float: left;
  margin-right: 0.12rem;
  font-size: var(--fs16);
}
.productP1 .btnDiv li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.54rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.productP1 .btnDiv li a em {
  margin-left: 0.12rem;
  width: 0.26rem;
  height: 0.21rem;
}
.productP1 .btnDiv li:nth-child(1) a {
  background: #0090dd;
}
.productP1 .btnDiv li:nth-child(1) a em {
  background: url(../img/nimg26_3.png) no-repeat;
  background-size: 0.26rem;
}
.productP1 .btnDiv li:nth-child(2) a {
  background: #65b72d;
}
.productP1 .btnDiv li:nth-child(2) a em {
  background: url(../img/nimg26_2.png) no-repeat;
  background-size: 0.26rem;
}
.productP2 {
  padding: 1.2rem 0;
  border-bottom: #dcdcdc solid 1px;
}
.productP2 .title {
  font-weight: bold;
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #333;
  margin: 0 0 0.5rem;
}
.productP2 .bigImg {
  text-align: center;
}
.productP2 img,
.productP2 input {
  max-width: 100%;
}
.productP2 .pageDown {
  padding-top: 0.7rem;
}
.productP2 .pageDown ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.productP2 .pageDown li {
  margin: 0 0.1rem;
}
.productP2 .pageDown li .prev,
.productP2 .pageDown li .next {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 0.62rem;
  border: #d2d2d2 solid 1px;
  border-radius: 6px;
}
.productP2 .pageDown li .prev:hover,
.productP2 .pageDown li .next:hover {
  width: 2.8rem;
  border: #0090dd solid 1px;
}
.productP2 .pageDown li .prev {
  background: url(../img/nimg22_left.png) center no-repeat;
  background-size: 0.22rem;
}
.productP2 .pageDown li .prev:hover {
  background: #0090dd url(../img/nimg22_lefton.png) center no-repeat;
  background-size: 0.22rem;
}
.productP2 .pageDown li .next {
  background: url(../img/nimg22_right.png) center no-repeat;
  background-size: 0.22rem;
}
.productP2 .pageDown li .next:hover {
  background: #0090dd url(../img/nimg22_righton.png) center no-repeat;
  background-size: 0.22rem;
}
.productP2 .pageDown li .back {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.8rem;
  height: 0.62rem;
  border: #0090dd solid 1px;
  border-radius: 6px;
  font-size: var(--fs16);
  color: #0090dd;
}
.productP2 .pageDown li .back em {
  margin-left: 0.32rem;
  width: 0.15rem;
  height: 0.14rem;
  background: url(../img/back.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .pageDown li .back:hover {
  background: #0090dd;
  color: #fff;
}
.productP2 .pageDown li .back:hover em {
  background: url(../img/backon.png) no-repeat;
  background-size: 0.15rem;
}
.productP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP2 .list li {
  width: calc((100% - 0.9rem) / 3);
  margin-right: 0.45rem;
}
.productP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.productP2 .list li .imgDiv {
  position: relative;
  border-radius: 8px;
  height: 3.05rem;
  overflow: hidden;
}
.productP2 .list li .imgDiv::after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  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;
}
.productP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP2 .list li .imgDiv .ico {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -0.25rem;
  margin-top: -0.25rem;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li .imgDiv .ico::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #65b72d;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -1px;
}
.productP2 .list li .imgDiv .ico::after {
  content: '';
  width: 2px;
  height: 16px;
  background: #65b72d;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -8px;
}
.productP2 .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .list li:hover .imgDiv::after {
  opacity: 1;
}
.productP2 .list li:hover .imgDiv .ico {
  opacity: 1;
}
.productP2 .list li:hover .name {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.9rem 0;
  }
  .productP1 .mxfDiv {
    display: block;
  }
  .productP1 .leftDiv {
    width: auto;
    padding-left: 0;
  }
  .productP1 .baozhe {
    position: relative;
    height: auto;
    width: 100%;
  }
  .productP1 .img-swiper {
    position: relative;
    margin-top: 0.3rem;
    top: 0;
    width: 100%;
    height: 1.2rem;
  }
  .productP1 .img-swiper .limg {
    height: 1.2rem;
  }
  .productP1 .img-swiper.three {
    height: 1.2rem;
  }
  .productP1 .img-swiper.two {
    width: 68.66%;
    height: 1.2rem;
  }
  .productP1 .detail-box .item .imgDiv {
    height: 5.2rem;
  }
  .productP1 .swiper-btn {
    left: 0;
    width: 0.4rem;
    height: calc(100% - 2px);
  }
  .productP1 .prev {
    display: block;
    top: 1px;
    background: #fff url(../img/nimg8_left.png) center no-repeat;
  }
  .productP1 .prev:hover {
    background: #0090dd url(../img/nimg8_lefton.png) center no-repeat;
  }
  .productP1 .next {
    left: auto;
    right: 0;
    top: 1px;
    bottom: auto;
    background: #fff url(../img/nimg8_right.png) center no-repeat;
  }
  .productP1 .next:hover {
    background: #0090dd url(../img/nimg8_righton.png) center no-repeat;
  }
  .productP1 .rightDiv {
    width: auto;
    padding-top: 0.8rem;
  }
  .productP1 .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
    padding-bottom: 0.25rem;
  }
  .productP1 .msgList {
    padding: 0.3rem 0;
  }
  .productP1 .msgList li {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .productP1 .btnDiv li {
    margin-right: 0.2rem;
    font-size: var(--fs14);
  }
  .productP1 .btnDiv li a {
    width: 2.4rem;
    height: 0.8rem;
  }
  .productP1 .btnDiv li a em {
    margin-left: 0.15rem;
    width: 0.32rem;
    height: 0.26rem;
  }
  .productP1 .btnDiv li:nth-child(1) a em {
    background-size: 0.32rem;
  }
  .productP1 .btnDiv li:nth-child(2) a em {
    background-size: 0.32rem;
  }
  .productP2 {
    padding: 0.9rem 0;
  }
  .productP2 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP2 .bigImg {
    text-align: center;
  }
  .productP2 img,
  .productP2 input {
    max-width: 100%;
  }
  .productP2 .pageDown {
    padding-top: 0.5rem;
  }
  .productP2 .pageDown li .prev,
  .productP2 .pageDown li .next {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1rem;
    height: 0.8rem;
  }
  .productP2 .pageDown li .prev:hover,
  .productP2 .pageDown li .next:hover {
    width: 1rem;
  }
  .productP2 .pageDown li .back {
    width: 2.5rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .productP2 .pageDown li .back em {
    margin-left: 0.2rem;
    width: 0.22rem;
    height: 0.21rem;
    background-size: 0.22rem;
  }
  .productP2 .pageDown li .back:hover em {
    background-size: 0.22rem;
  }
  .productP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.3rem;
  }
  .productP2 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .productP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP2 .list li .imgDiv {
    border-radius: 0.12rem;
    height: 2.05rem;
  }
  .productP2 .list li .imgDiv .ico {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
  }
  .productP2 .list li .imgDiv .ico::before {
    content: '';
    width: 12px;
    margin-left: -6px;
  }
  .productP2 .list li .imgDiv .ico::after {
    height: 12px;
    margin-top: -6px;
  }
  .productP2 .list li .name {
    line-height: 0.52rem;
    font-size: var(--fs14);
  }
}
.aboutP1 {
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  background: url(../img/indexP3.jpg) center no-repeat;
  background-size: cover;
}
.aboutP1::after {
  content: 'About';
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 1.3rem;
  font-size: 4rem;
  line-height: 3.2rem;
  font-family: 'Poppins-M';
  -webkit-text-stroke: 1px #8a8a8a;
  text-stroke: 1px #8a8a8a;
  opacity: 0.2;
  color: transparent;
}
.aboutP1 .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-bottom: 0.35rem;
}
.aboutP1 .name {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
}
.aboutP1 .msg {
  color: #0090dd;
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-weight: 100;
  text-align: right;
}
.aboutP1 .msg b {
  display: block;
  font-weight: bold;
}
.aboutP1 .mxfDiv {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.aboutP1 .conDiv {
  width: 52.9%;
}
.aboutP1 .content {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.32rem;
}
.aboutP1 .numList {
  padding-top: 0.6rem;
}
.aboutP1 .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-flow: wrap;
}
.aboutP1 .numList li {
  position: relative;
  width: 26%;
  padding-left: 0.8rem;
  color: #333;
  font-size: var(--fs16);
}
.aboutP1 .numList li:last-child {
  width: auto;
}
.aboutP1 .numList li .ico {
  position: absolute;
  left: 0;
  top: 0.06rem;
}
.aboutP1 .numList li .ico img {
  width: 0.54rem;
}
.aboutP1 .numList li .pj {
  height: 0.7rem;
}
.aboutP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num p {
  min-width: 14px;
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 13px;
  background: url(../img/nimg14_1.png) no-repeat;
}
.aboutP1 .numList li .numUp {
  font-size: var(--fs60);
  line-height: 0.56rem;
  padding-right: 0.12rem;
  color: #65b72d;
  font-family: "Din-SB";
}
.aboutP1 .numList li .wen {
  line-height: 0.16rem;
}
.aboutP1 .imgDiv {
  width: 6.7rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP1-1 {
  padding: 0.8rem 0 0;
  background: none;
}
.aboutP1-1 .content {
  font-size: var(--fs28);
  line-height: 0.42rem;
}
.aboutP1-1 .content span {
  font-size: var(--fs32);
  line-height: 0.48rem;
}
.aboutP2 {
  padding: 1.2rem 0 0.8rem;
  background: url(../img/aboutP2.png) center bottom no-repeat;
  background-size: 100%;
}
.aboutP2 .title {
  text-align: center;
  font-size: var(--fs40);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.aboutP2 .list {
  padding: 0.4rem 0 1.2rem;
}
.aboutP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP2 .list li {
  width: calc((100% - 1.9rem) / 3);
  margin-right: 0.95rem;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(231, 231, 231, 0.6);
}
.aboutP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP2 .list li a {
  padding-top: 0.32rem;
  display: block;
  height: 1.85rem;
}
.aboutP2 .list li a .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.7rem;
}
.aboutP2 .list li a .limg img {
  max-width: 3.5rem;
  max-height: 0.7rem;
}
.aboutP2 .list li a .zi {
  text-align: center;
  margin-top: 0.25rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li a:hover .zi {
  color: #0090dd;
}
.aboutP3 {
  background: url(../img/aboutP3.jpg) center no-repeat;
  background-size: cover;
  padding: 1.6rem 0 1.5rem;
}
.aboutP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP3 .conDiv {
  width: 6.1rem;
  padding-top: 0.2rem;
}
.aboutP3 .title {
  font-size: var(--fs40);
  line-height: 0.48rem;
  color: #fff;
  font-weight: bold;
  margin: 0 0 0.36rem;
}
.aboutP3 .content {
  font-size: var(--fs16);
  line-height: 0.36rem;
  text-align: justify;
  color: #fff;
}
.aboutP3 .numList {
  padding-top: 0.85rem;
}
.aboutP3 .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-flow: wrap;
}
.aboutP3 .numList li {
  position: relative;
  width: 33.33%;
  color: #fff;
  font-size: var(--fs16);
}
.aboutP3 .numList li .pj {
  height: 0.7rem;
}
.aboutP3 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP3 .numList li .num p {
  min-width: 14px;
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP3 .numList li .num span {
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 14px;
  background: url(../img/nimg15_1.png) no-repeat;
}
.aboutP3 .numList li .numUp {
  font-size: var(--fs60);
  line-height: 0.56rem;
  padding-right: 0.12rem;
  font-family: "Din-SB";
}
.aboutP3 .numList li .wen {
  line-height: 0.16rem;
}
.aboutP3 .imgDiv {
  width: 7.16rem;
}
.aboutP3 .imgDiv img {
  width: 100%;
}
.aboutP4 {
  position: relative;
  padding-top: 1.2rem;
  height: 8.4rem;
  background: url(../img/aboutP4.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP4 .title {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs40);
  line-height: 0.42rem;
  color: #333;
  font-weight: bold;
}
.aboutP4 .pjDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: calc((100% - 15.36rem) / 2);
  overflow: hidden;
}
.aboutP4 .pjDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.15rem;
  background: url(../img/honorBg.jpg) top repeat-x;
}
.aboutP4 .tips {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.65rem;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}
.aboutP4 .tips img {
  margin-left: 15px;
}
.honorPic {
  position: relative;
  z-index: 1;
  width: 100%;
}
.honorPic .swiper-container {
  padding-top: 1.5rem;
  width: 100%;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.honorPic .swiper-slide {
  width: auto;
}
.honorPic .swiper-slide .box {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.honorPic .swiper-slide .mxfDiv {
  min-width: 2.64rem;
  height: 3.68rem;
  position: relative;
}
.honorPic .swiper-slide .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.64rem;
}
.honorPic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.honorPic .swiper-slide .name {
  margin-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  height: 0.28rem;
  overflow: hidden;
  color: #333;
}
.honorPic .layerDiv {
  position: absolute;
  right: 50%;
  margin-right: -6.68rem;
  width: 4.8rem;
  top: 0;
  padding-top: 0.4rem;
}
.honorPic .swiper-pagination {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
}
.honorPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 5px;
  background-color: #65b72d;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.honorPic .num {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: var(--fs24);
  color: #080808;
  font-family: 'Poppins-M';
}
.honorPic .num span {
  font-size: var(--fs14);
  color: #999;
}
.aboutP5 {
  padding: 1.1rem 0 0.8rem;
  position: relative;
}
.aboutP5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.24rem;
  height: 3.55rem;
  background: url(../img/nimg424Bg.png) no-repeat;
  background-size: 100%;
}
.aboutP5 .toptop {
  position: relative;
  padding-bottom: 0.5rem;
}
.aboutP5 .toptop .title {
  line-height: 0.48rem;
  color: #333;
  margin: 0;
  font-size: var(--fs40);
  font-weight: bold;
}
.aboutP5 .toptop .tab2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.aboutP5 .toptop .tab2 li {
  font-size: var(--fs18);
  float: left;
  margin-left: 0.15rem;
  width: 1.34rem;
  height: 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  border-radius: 0.48rem;
  background: #b2b2b2;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP5 .toptop .tab2 .liNow {
  background: #65b72d;
}
.aboutP5 .tabContent2 {
  position: relative;
  z-index: 1;
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.aboutP5 .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
}
.aboutP5 .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.aboutP5 .imgList {
  padding-top: 0.32rem;
}
.aboutP5 .imgList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP5 .imgList li {
  width: calc((100% - 0.56rem) / 2);
  margin-right: 0.56rem;
  margin-bottom: 0.4rem;
}
.aboutP5 .imgList li:nth-child(2n) {
  margin-right: 0;
}
.aboutP5 .imgList li .imgDiv {
  height: 4.02rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.aboutP5 .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP6 {
  padding: 1.1rem 0 2.1rem;
  background: url(../img/aboutP6.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP6 .title {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  margin: 0 0 0.8rem;
}
.historyPic {
  position: relative;
}
.historyPic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.historyPic .imgList {
  position: relative;
  overflow: hidden;
}
.historyPic .imgList::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1px;
  height: calc(100% - 0.5rem);
  background: rgba(255, 255, 255, 0.2);
}
.historyPic .imgList li {
  width: 25%;
  padding-top: 0.5rem;
}
.historyPic .imgList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.historyPic .imgList li .box {
  padding: 0.9rem 0.6rem 0;
  height: 3.42rem;
  position: relative;
  color: #fff;
}
.historyPic .imgList li .box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.historyPic .imgList li .box .year {
  font-size: var(--fs72);
  font-family: 'Din-M';
  line-height: 0.64rem;
}
.historyPic .imgList li .box .msg {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.historyPic .imgList li:hover::before {
  width: 100%;
}
.historyPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.46rem;
  height: 0.46rem;
  top: 50%;
  margin-top: -0.23rem;
  border: #fff solid 2px;
  border-radius: 50%;
  z-index: 2;
}
.historyPic .se:hover {
  background: #fff;
}
.historyPic .prev {
  left: 50%;
  margin-left: -8.68rem;
}
.historyPic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  width: 16px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg16_left.png) no-repeat;
}
.historyPic .prev:hover::before {
  background: url(../img/nimg16_lefton.png) no-repeat;
}
.historyPic .next {
  right: 50%;
  margin-right: -8.68rem;
}
.historyPic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -8px;
  width: 16px;
  height: 12px;
  margin-top: -6px;
  background: url(../img/nimg16_right.png) no-repeat;
}
.historyPic .next:hover::before {
  background: url(../img/nimg16_righton.png) no-repeat;
}
.aboutP7 {
  padding: 1.2rem 0;
  background: url(../img/aboutP7.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP7 .title {
  text-align: center;
  color: #333;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
  margin: 0;
}
.aboutP7 .list {
  padding-top: 1.9rem;
}
.aboutP7 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP7 .list li {
  width: calc((100% - 1.04rem) / 3);
  margin-right: 0.52rem;
  padding: 0.7rem 0 0.5rem;
  border-radius: 0.06rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aboutP7 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP7 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #fff 0%, #199ae0 100%);
  background-blend-mode: normal, normal;
  opacity: 0.4;
}
.aboutP7 .list li .ico {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  background: #fff;
}
.aboutP7 .list li .ico img {
  width: 0.38rem;
}
.aboutP7 .list li .name {
  position: relative;
  z-index: 1;
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  margin-top: 0.32rem;
  padding-bottom: 0.2rem;
}
.aboutP7 .list li .name::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #65b7ff;
}
.aboutP7 .list li .msg {
  position: relative;
  z-index: 1;
  margin-top: 0.15rem;
  padding: 0 0.4rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.aboutP7-1 {
  padding: 0.8rem 0;
}
.aboutP7-1 .list {
  padding-top: 1rem;
}
.aboutP7-1 .list li {
  width: calc((100% - 1.56rem) / 4);
  padding: 0.3rem 0 0.4rem;
}
.aboutP7-1 .list li:nth-child(3n) {
  margin-right: 0.52rem;
}
.aboutP7-1 .list li:nth-child(4n) {
  margin-right: 0;
}
.aboutP7-1 .list li .msg {
  font-size: var(--fs20);
}
.aboutP8 {
  padding-top: 1.3rem;
  height: 8.4rem;
  background: center no-repeat;
  background-size: cover;
}
.aboutP8 .title {
  text-align: center;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.5rem;
  margin: 0 0 0.35rem;
}
.aboutP8 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.4rem;
  margin-left: -0.2rem;
  height: 5px;
  background: #fff;
  border-radius: 4px;
}
.aboutP8 .content {
  color: #fff;
  width: 9rem;
  margin: 0 auto;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
}
@media (max-width: 1600px) {
  .aboutP4 .pjDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .aboutP4 .tips {
    bottom: 0.4rem;
  }
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 0.4rem;
  }
  .aboutP1::after {
    display: none;
  }
  .aboutP1 .toptop {
    padding-bottom: 0.35rem;
  }
  .aboutP1 .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP1 .msg {
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .aboutP1 .conDiv {
    width: auto;
    float: none;
  }
  .aboutP1 .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .aboutP1 .numList {
    padding-top: 0.7rem;
  }
  .aboutP1 .numList li {
    width: 50%;
    padding: 0 0 0.5rem 0.8rem;
    font-size: var(--fs14);
  }
  .aboutP1 .numList li .ico img {
    width: 0.64rem;
  }
  .aboutP1 .numList li .pj {
    height: 0.75rem;
  }
  .aboutP1 .numList li .num span {
    top: 0;
  }
  .aboutP1 .numList li .numUp {
    font-size: var(--fs30);
    padding-right: 0.1rem;
  }
  .aboutP1 .numList li .wen {
    line-height: 0.36rem;
  }
  .aboutP1 .imgDiv {
    margin-top: 0.7rem;
    width: auto;
    float: none;
  }
  .aboutP1-1 {
    background: none;
  }
  .aboutP1-1 .content {
    font-size: var(--fs17);
  }
  .aboutP1-1 .content span {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .aboutP2 {
    padding: 0.9rem 0 0.8rem;
  }
  .aboutP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP2 .list {
    padding: 0.5rem 0 0.7rem;
  }
  .aboutP2 .list li {
    width: calc((100% - 0.48rem) / 3);
    margin-right: 0.24rem;
  }
  .aboutP2 .list li a {
    padding-top: 0.2rem;
    height: 1.65rem;
  }
  .aboutP2 .list li a .limg img {
    max-width: 1.5rem;
  }
  .aboutP2 .list li a .zi {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP3 {
    padding: 1.1rem 0 1rem;
  }
  .aboutP3 .mxfDiv {
    display: block;
  }
  .aboutP3 .conDiv {
    width: auto;
    padding-top: 0;
  }
  .aboutP3 .title {
    font-size: var(--fs20);
    line-height: 0.6rem;
    margin: 0 0 0.4rem;
  }
  .aboutP3 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .numList {
    padding-top: 0.7rem;
  }
  .aboutP3 .numList ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-flow: wrap;
  }
  .aboutP3 .numList li {
    font-size: var(--fs13);
  }
  .aboutP3 .numList li .pj {
    height: 0.75rem;
  }
  .aboutP3 .numList li .num p {
    height: 0.64rem;
  }
  .aboutP3 .numList li .num span {
    top: 3px;
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .aboutP3 .numList li .numUp {
    font-size: var(--fs32);
    line-height: 0.64rem;
  }
  .aboutP3 .numList li .wen {
    line-height: 0.32rem;
  }
  .aboutP3 .imgDiv {
    width: auto;
    margin-top: 0.6rem;
  }
  .aboutP4 {
    padding: 0.9rem var(--offset);
    height: auto;
  }
  .aboutP4 .title {
    left: 0;
    font-size: var(--fs20);
    line-height: 0.6rem;
  }
  .aboutP4 .pjDiv {
    position: relative;
    padding-left: 0;
  }
  .aboutP4 .pjDiv::after {
    display: none;
  }
  .aboutP4 .tips {
    position: relative;
    left: 0;
    width: 100%;
    bottom: 0.65rem;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
  }
  .aboutP4 .tips img {
    margin-left: 15px;
  }
  .honorPic .swiper-container {
    padding-top: 1.2rem;
    padding-bottom: 0;
  }
  .honorPic .swiper-slide {
    width: 50%;
  }
  .honorPic .swiper-slide .mxfDiv {
    width: 96%;
    margin: 0 auto;
    height: 4.2rem;
    position: relative;
  }
  .honorPic .swiper-slide .imgDiv {
    width: 100%;
  }
  .honorPic .swiper-slide .imgDiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .honorPic .swiper-slide .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.15rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .honorPic .layerDiv {
    right: 0;
    margin-right: 0;
    width: 3.8rem;
    padding-top: 0.5rem;
  }
  .honorPic .swiper-pagination {
    height: 3px;
  }
  .honorPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 3px;
  }
  .honorPic .num {
    font-size: var(--fs18);
  }
  .honorPic .num span {
    font-size: var(--fs13);
  }
  .aboutP5 {
    padding: 0.9rem 0 0.8rem;
  }
  .aboutP5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4.24rem;
    height: 3.55rem;
    background: url(../img/nimg424Bg.png) no-repeat;
    background-size: 100%;
  }
  .aboutP5 .toptop .title {
    line-height: 0.56rem;
    font-size: var(--fs20);
  }
  .aboutP5 .toptop .tab2 {
    padding-top: 0.4rem;
    position: relative;
  }
  .aboutP5 .toptop .tab2::after {
    content: '';
    display: block;
    clear: both;
  }
  .aboutP5 .toptop .tab2 li {
    font-size: var(--fs15);
    float: left;
    margin-left: 0;
    margin-right: 0.2rem;
    width: 1.8rem;
    height: 0.78rem;
    line-height: 0.78rem;
  }
  .aboutP5 .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.3rem;
  }
  .aboutP5 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP5 .imgList {
    padding-top: 0.45rem;
  }
  .aboutP5 .imgList ul {
    display: block;
  }
  .aboutP5 .imgList li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
  .aboutP5 .imgList li .imgDiv {
    height: auto;
    border-radius: 0.2rem;
  }
  .aboutP5 .imgList li .imgDiv img {
    width: 100%;
    height: auto;
  }
  .aboutP6 {
    padding: 0.9rem 0 1.2rem;
  }
  .aboutP6 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.8rem;
  }
  .historyPic::before {
    height: 1px;
  }
  .historyPic .imgList li {
    width: 100%;
  }
  .historyPic .imgList li::before {
    height: 3px;
  }
  .historyPic .imgList li .box {
    padding: 0.6rem 0.9rem 0;
  }
  .historyPic .imgList li .box .year {
    font-size: var(--fs36);
    line-height: 0.72rem;
  }
  .historyPic .imgList li .box .msg {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .historyPic .se {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
    border: #fff solid 1px;
  }
  .historyPic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .historyPic .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .aboutP7 {
    padding: 0.9rem 0;
  }
  .aboutP7 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP7 .list {
    padding-top: 0.75rem;
  }
  .aboutP7 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    padding: 0.5rem 0;
    border-radius: 0.12rem;
  }
  .aboutP7 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .aboutP7 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .aboutP7 .list li .ico {
    width: 0.86rem;
    height: 0.86rem;
  }
  .aboutP7 .list li .ico img {
    width: 0.48rem;
  }
  .aboutP7 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-top: 0.2rem;
  }
  .aboutP7 .list li .msg {
    padding: 0 0.2rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .aboutP8 {
    padding: 1rem 0;
    height: auto;
  }
  .aboutP8 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    padding-bottom: 0.4rem;
    margin: 0 0 0.5rem;
  }
  .aboutP8 .title::after {
    width: 0.6rem;
    margin-left: -0.3rem;
    height: 2px;
  }
  .aboutP8 .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.notice {
  padding: 1.2rem 0;
  background: #f6f7f7 url(../img/commonBg.png) center top no-repeat;
  background-size: 100%;
  border-bottom: #ccc solid 1px;
}
.notice .toptop {
  margin-bottom: 0.2rem;
  height: 0.8rem;
  background: #0090dd;
  overflow: hidden;
}
.notice .toptop li {
  float: left;
  color: #fff;
  font-size: var(--fs20);
  line-height: 0.8rem;
}
.notice .toptop li:nth-child(1) {
  width: 20%;
  padding-left: 0.5rem;
}
.notice .toptop li:nth-child(2) {
  width: 60%;
}
.notice .toptop li:nth-child(3) {
  width: 20%;
}
.notice .list {
  margin-bottom: 0.8rem;
}
.notice .list ul {
  margin: 0;
}
.notice .list li {
  margin-bottom: 0.2rem;
}
.notice .list li .msgDiv {
  font-size: var(--fs18);
  overflow: hidden;
}
.notice .list li .msgDiv a {
  display: block;
  height: 0.8rem;
  background: #fff;
  color: #333;
}
.notice .list li .msgDiv a .num {
  float: left;
  width: 20%;
  padding-left: 0.5rem;
  line-height: 0.8rem;
  font-family: 'Poppins-M';
}
.notice .list li .msgDiv a .num em {
  display: none;
}
.notice .list li .msgDiv a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  padding-right: 0.6rem;
  width: 60%;
  height: 0.8rem;
}
.notice .list li .msgDiv a .name em {
  display: none;
}
.notice .list li .msgDiv a .time {
  float: left;
  width: 20%;
  line-height: 0.8rem;
  font-family: 'Poppins-M';
}
.notice .list li .msgDiv a .time em {
  display: none;
}
.notice .list li .msgDiv a:hover {
  color: #0090dd;
}
@media (max-width: 1004px) {
  .notice {
    padding: 0.9rem 0;
  }
  .notice .list li .msgDiv {
    font-size: var(--fs14);
  }
  .notice .list li .msgDiv a {
    padding: 0.3rem;
    height: auto;
  }
  .notice .list li .msgDiv a .num {
    float: none;
    width: auto;
    padding-left: 0;
    line-height: 0.56rem;
  }
  .notice .list li .msgDiv a .num em {
    display: inline-block;
  }
  .notice .list li .msgDiv a .name {
    display: block;
    float: none;
    padding-right: 0;
    width: auto;
    height: auto;
    line-height: 0.56rem;
  }
  .notice .list li .msgDiv a .name em {
    display: inline-block;
  }
  .notice .list li .msgDiv a .time {
    float: none;
    width: auto;
    line-height: 0.56rem;
  }
  .notice .list li .msgDiv a .time em {
    display: inline-block;
  }
}
.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;
  }
}
