.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);
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circle_1 {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08) translate(-2%, 2%);
    opacity: 1;
  }
}
.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 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOfOpacity {
  animation: fadeOfOpacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
.upDown {
  animation: upDown 1.6s cubic-bezier(0.4, 0, 0.2, 1) alternate infinite;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 26%;
  z-index: 2;
}
.ind-banner .twobox {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 40%;
  z-index: 2;
}
.ind-banner .cn {
  font-size: var(--fs72);
  line-height: 1rem;
  color: #fff;
  margin-bottom: 0.16rem;
}
.ind-banner .msg {
  font-size: var(--fs36);
  color: #fff;
  line-height: 0.48rem;
  margin-bottom: 0.5rem;
}
.ind-banner .btnDiv {
  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;
  font-size: var(--fs18);
  height: 0.6rem;
  background: #00913e;
  color: #fff;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ind-banner .btnDiv em {
  margin-left: 0.12rem;
  width: 8px;
  height: 13px;
  background: url(../img/ico2.png) center no-repeat;
}
.ind-banner .onebox,
.ind-banner .twobox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox,
.ind-banner .swiper-slide-active .twobox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.5rem;
  z-index: 2;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet {
  width: 54px;
  height: 5px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  fill: none;
  border-radius: 0;
  opacity: 1;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1004px) {
  .ind-banner {
    max-height: 7rem;
  }
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .swiper-slide video {
    height: 7rem;
    display: none;
  }
  .ind-banner .onebox {
    left: var(--offset);
    right: var(--offset);
    margin-left: 0;
  }
  .ind-banner .twobox {
    padding: 0 0.3rem;
  }
  .ind-banner .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .msg {
    font-size: var(--fs17);
    line-height: 0.56rem;
    margin-bottom: 0.35rem;
  }
  .ind-banner .btnDiv {
    width: 2.3rem;
    font-size: var(--fs14);
    height: 0.82rem;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.4rem;
  }
  .ind-banner .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
  }
}
.wrap-fixed {
  position: relative;
  z-index: 3;
  background: #fff;
}
.indTxt {
  text-align: center;
}
.indTxt .cn {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #333;
  font-weight: bold;
}
.indTxt .wen {
  margin-top: 5px;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #666;
}
.indexP1 {
  display: none;
  padding: 1.1rem 0 1.2rem;
}
.indexP1 .list {
  margin-top: 0.32rem;
}
.indexP1 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP1 .list li {
  width: calc((100% - 0.36rem) / 2);
  margin-right: 0.36rem;
}
.indexP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.indexP1 .list li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.16rem;
}
.indexP1 .list li a .imgDiv img {
  width: 100%;
}
.indexP1 .list li a .layer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.indexP1 .list li a .ico {
  margin-bottom: 0.5rem;
}
.indexP1 .list li a .ico img {
  width: 0.62rem;
}
.indexP1 .list li a .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.indexP1 .list li a .more {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  margin-top: 0.5rem;
}
.indexP1 .list li a .more .hala {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.92rem;
  height: 0.55rem;
  background: #fff;
  border-radius: 0.45rem;
  font-size: var(--fs16);
  color: #00913e;
}
.indexP1 .list li a .more .hala em {
  margin-left: 10px;
  width: 13px;
  height: 12px;
  background: url(../img/ico4.png) no-repeat;
}
.indexP1 .list li a:hover .more {
  max-height: 0.6rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.indexP2 {
  padding-bottom: 1.2rem;
}
.indexP2 .ssDiv {
  position: relative;
  padding-bottom: 1rem;
}
.indexP2 .indTxt {
  position: absolute;
  left: 1rem;
  text-align: left;
  top: 0.9rem;
  z-index: 2;
}
.indexP2 .indTxt .cn {
  color: #fff;
}
.indexP2 .indTxt .wen {
  color: #fff;
}
.indexP2 .swiper-slide {
  position: relative;
}
.indexP2 .swiper-slide .pic {
  position: relative;
  overflow: hidden;
}
.indexP2 .swiper-slide .pic img {
  width: 100%;
  aspect-ratio: 1920 / 920;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 4s ease;
}
.indexP2 .swiper-slide .layer {
  position: absolute;
  left: 1rem;
  top: 2.6rem;
  z-index: 3;
  width: 6.2rem;
  color: #fff;
}
.indexP2 .swiper-slide .layer .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  margin-bottom: 0.2rem;
}
.indexP2 .swiper-slide .layer .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  line-height: 0.3rem;
  min-height: 0.6rem;
}
.indexP2 .swiper-slide .layer .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.3rem;
  width: 1.8rem;
  height: 0.5rem;
  border-radius: 0.45rem;
  border: #fff solid 1px;
  font-size: var(--fs16);
  color: #fff;
}
.indexP2 .swiper-slide .layer .more em {
  margin-left: 0.24rem;
  width: 8px;
  height: 13px;
  background: url(../img/ico3.png) no-repeat;
}
.indexP2 .swiper-slide .layer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.indexP2 .swiper-slide.swiper-slide-active .layer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.indexP2 .swiper-slide.swiper-slide-active .pic::before {
  opacity: 0;
}
.indexP2 .swiper-slide.swiper-slide-active .pic img {
  transform: scale(1);
}
.indexP2 .tab-box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-flow: wrap;
  position: absolute;
  width: 90%;
  padding: 0 0.5rem;
  left: 5%;
  bottom: 0;
  border-radius: 20px;
  z-index: 2;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.indexP2 .tab-box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  color: #333;
  position: relative;
  font-size: var(--fs16);
  padding: 0.3rem 0;
  transition: all 0.4s ease;
}
.indexP2 .tab-box a .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.5rem;
}
.indexP2 .tab-box a .ico img {
  max-width: 36px;
}
.indexP2 .tab-box a .name {
  margin-top: 0.15rem;
}
.indexP2 .tab-box a.on {
  color: #00913e;
}
.indexP3 {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0;
}
.indexP3 .txt {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  font-family: 'Poppins-R';
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: rgba(234, 234, 234, 0.3);
  transform: translateX(0);
  /* 初始位置 */
  will-change: transform;
  /* 性能优化 */
  z-index: 2;
}
.indexP3 .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .conDiv {
  width: 40.36%;
}
.indexP3 .indTxt {
  text-align: left;
}
.indexP3 .imgDiv {
  width: 8rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.indexP3 .imgDiv img {
  width: 100%;
}
.indexP3 .content {
  margin-top: 0.45rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.indexP3 .list {
  margin-top: 0.6rem;
}
.indexP3 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP3 .list li .pj {
  color: #5eb541;
  display: flex;
  height: 0.68rem;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .list li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .list li .num p {
  font-size: var(--fs20);
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .list li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 13px;
  background: url(../img/nimg13_1.png) no-repeat;
}
.indexP3 .list li .numUp {
  font-size: 0.56rem;
  line-height: 0.6rem;
  padding-right: 0.12rem;
  font-weight: bold;
  color: #5eb541;
  font-family: "Poppins-SB";
}
.indexP3 .list li .wen {
  margin-top: 0.12rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
}
.indexP3 .btnDiv {
  display: flex;
  margin-top: 0.6rem;
}
.indexP3 .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;
  padding: 0 0.2rem;
  min-width: 1.9rem;
  height: 0.55rem;
  font-size: var(--fs18);
  color: #fff;
  border-radius: 0.48rem;
  background: #00913e;
}
.indexP3 .btnDiv a em {
  margin-left: 10px;
  width: 16px;
  height: 12px;
  background: url(../img/ico5.png) no-repeat;
}
.indexP4 {
  padding: 1.3rem 0 1.1rem;
  background: url(../img/indexP4.jpg) center no-repeat;
  background-size: cover;
}
.indexP4 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.8rem;
}
.indexP4 .indTxt {
  text-align: left;
}
.indexP4 .tab2 ul {
  display: flex;
}
.indexP4 .tab2 li {
  position: relative;
  margin: 0 0.26rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #333;
  height: 0.45rem;
}
.indexP4 .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #00913e;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .tab2 .liNow {
  color: #00913e;
}
.indexP4 .tab2 .liNow::after {
  left: 0;
  width: 100%;
}
.indexP4 .moreBtn {
  display: flex;
}
.indexP4 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.45rem;
  color: #00913e;
  border: #00913e solid 1px;
}
.indexP4 .moreBtn a em {
  margin-left: 0.2rem;
  width: 20px;
  height: 15px;
  background: url(../img/ico7.png) no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .moreBtn a:hover {
  background: #00913e;
  color: #fff;
}
.indexP4 .moreBtn a:hover em {
  background: url(../img/ico7on.png) no-repeat;
}
.indexP4 .list {
  animation: am_top 0.8s ease-out 0.1s backwards;
}
.indexP4 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP4 .list li {
  width: calc((100% - 1.25rem) / 6);
  margin-right: 0.25rem;
  margin-top: 0.4rem;
}
.indexP4 .list li:nth-child(-n+6) {
  margin-top: 0;
}
.indexP4 .list li:nth-child(6n) {
  margin-right: 0;
}
.indexP4 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.2rem;
  background: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.12rem rgba(135, 135, 135, 0.14);
}
.indexP4 .list li .imgDiv img {
  max-width: 1.5rem;
  max-height: 0.7rem;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .list li .imgDiv:hover img {
  transform: scale(1.1);
}
.indexP5 {
  padding: 1.2rem 0 1.7rem;
  background: #f7f7fa;
}
.indexP5 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.8rem;
}
.indexP5 .indTxt {
  text-align: left;
}
.indexP5 .moreBtn {
  display: flex;
}
.indexP5 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.45rem;
  color: #5eb541;
  border: #5eb541 solid 1px;
}
.indexP5 .moreBtn a em {
  margin-left: 0.2rem;
  width: 20px;
  height: 15px;
  background: url(../img/ico6.png) no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP5 .moreBtn a:hover {
  background: #5eb541;
  color: #fff;
}
.indexP5 .moreBtn a:hover em {
  background: url(../img/ico7on.png) no-repeat;
}
.indHonor {
  position: relative;
}
.indHonor .list {
  overflow: hidden;
}
.indHonor .list li {
  width: calc((100% - 0.9rem) / 4);
  margin-right: 0.3rem;
}
.indHonor .list li .box {
  padding: 0.45rem 0.2rem 0;
  height: 3.76rem;
  border: #eaeaea solid 1px;
  background: #fff;
}
.indHonor .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: relative;
  height: 2.4rem;
}
.indHonor .list li .imgDiv .ico {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: -0.25rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  background: rgba(94, 181, 65, 0.9);
  pointer-events: none;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indHonor .list li .imgDiv .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 14px;
  margin-left: -10px;
  margin-top: -7px;
  background: url(../img/nimg19_1.png) no-repeat;
}
.indHonor .list li .imgDiv img {
  max-width: 100%;
  max-height: 2.4rem;
}
.indHonor .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #999;
  text-align: center;
  margin-top: 0.15rem;
  height: 0.52rem;
  line-height: 0.26rem;
  overflow: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indHonor .list li:hover .imgDiv .ico {
  opacity: 1;
}
.indHonor .list li:hover .name {
  color: #5eb541;
}
.indHonor .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.24rem;
  width: 0.48rem;
  height: 0.48rem;
  border: #5eb541 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.indHonor .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: url(../img/nimg15_left.png) center no-repeat;
}
.indHonor .prev:hover {
  background: #5eb541 url(../img/nimg15_lefton.png) center no-repeat;
}
.indHonor .next {
  right: 50%;
  margin-right: -8.6rem;
  background: url(../img/nimg15_right.png) center no-repeat;
}
.indHonor .next:hover {
  background: #5eb541 url(../img/nimg15_righton.png) center no-repeat;
}
.indexP6 {
  padding: 1.2rem 0;
  overflow: hidden;
}
.indexP6 .toptop {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.8rem;
}
.indexP6 .indTxt {
  text-align: left;
}
.indexP6 .moreBtn {
  display: flex;
}
.indexP6 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.45rem;
  color: #00913e;
  border: #00913e solid 1px;
}
.indexP6 .moreBtn a em {
  margin-left: 0.2rem;
  width: 20px;
  height: 15px;
  background: url(../img/ico7.png) no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .moreBtn a:hover {
  background: #00913e;
  color: #fff;
}
.indexP6 .moreBtn a:hover em {
  background: url(../img/ico7on.png) no-repeat;
}
.indexP6 .leftDiv {
  width: 60.5%;
}
.indexP6 .leftDiv ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP6 .leftDiv li {
  width: calc((100% - 0.3rem) / 2);
  margin-right: 0.3rem;
}
.indexP6 .leftDiv li:nth-child(2n) {
  margin-right: 0;
}
.indexP6 .leftDiv li a {
  width: 100%;
  display: block;
  border-radius: 0.16rem;
  overflow: hidden;
}
.indexP6 .leftDiv li a .imgDiv {
  height: 3.2rem;
  overflow: hidden;
}
.indexP6 .leftDiv li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(1);
  transition: filter 0.6s ease;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .leftDiv li a .botDiv {
  padding: 0.4rem 0.36rem 0;
  height: 2.62rem;
  background: #fafafa;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .leftDiv li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.4rem;
  height: 0.8rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .leftDiv li a .botDiv .time {
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #d6d6d6;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .leftDiv li a .botDiv .look {
  margin-top: 0.25rem;
  width: 0.48rem;
  height: 0.48rem;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
  background: #fff url(../img/ico8.png) center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .leftDiv li a:hover .imgDiv img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.1);
}
.indexP6 .leftDiv li a:hover .botDiv {
  background: #00913e;
}
.indexP6 .leftDiv li a:hover .name {
  color: #fff;
}
.indexP6 .leftDiv li a:hover .time {
  color: rgba(255, 255, 255, 0.2);
}
.indexP6 .leftDiv li a:hover .look {
  border: #00913e solid 1px;
}
.indexP6 .rightDiv {
  width: 37.2%;
}
.indexP6 .rightDiv li {
  margin-bottom: 0.3rem;
}
.indexP6 .rightDiv li:last-child {
  margin-bottom: 0;
}
.indexP6 .rightDiv li a {
  display: block;
  overflow: hidden;
  height: 2.76rem;
  background: #fafafa;
  padding: 0.64rem 0.5rem 0;
  border-radius: 0.16rem;
}
.indexP6 .rightDiv li a .time {
  position: relative;
  font-size: var(--fs18);
  line-height: 0.48rem;
  color: #d6d6d6;
}
.indexP6 .rightDiv li a .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
  background: #fff url(../img/ico8.png) center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .rightDiv li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.5rem;
  font-size: var(--fs24);
  line-height: 0.4rem;
  height: 0.8rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP6 .rightDiv li a:hover {
  background: #00913e;
}
.indexP6 .rightDiv li a:hover .name {
  color: #fff;
}
.indexP6 .rightDiv li a:hover .time {
  color: rgba(255, 255, 255, 0.2);
}
.indexP6 .rightDiv li a:hover .time::after {
  border: #fff solid 1px;
}
.indexP7 {
  padding: 1.2rem 0;
  background: url(../img/indexP7.jpg) center no-repeat;
  background-size: cover;
}
.indexP7 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP7 .conDiv {
  width: 5.2rem;
}
.indexP7 .conDiv .indTxt {
  text-align: left;
}
.indexP7 .conDiv .msg {
  margin-top: 0.5rem;
  font-size: var(--fs72);
  line-height: 0.8rem;
  color: #333;
}
.indexP7 .conDiv .moreBtn {
  margin-top: 0.35rem;
  display: flex;
}
.indexP7 .conDiv .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.45rem;
  color: #00913e;
  border: #00913e solid 1px;
}
.indexP7 .conDiv .moreBtn a em {
  margin-left: 0.2rem;
  width: 20px;
  height: 15px;
  background: url(../img/ico7.png) no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP7 .conDiv .moreBtn a:hover {
  background: #00913e;
  color: #fff;
}
.indexP7 .conDiv .moreBtn a:hover em {
  background: url(../img/ico7on.png) no-repeat;
}
.indexP7 .conDiv .tips {
  padding-top: 1.15rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #333;
}
.indexP7 .conDiv .tips em {
  display: block;
  color: #00913e;
  text-decoration: underline;
}
.indexP7 .list {
  width: 56.5%;
  border-top: #e7e7e7 solid 1px;
}
.indexP7 .list li {
  position: relative;
  border-bottom: #e7e7e7 solid 1px;
}
.indexP7 .list li .msgDiv {
  height: 0.8rem;
  position: relative;
  cursor: pointer;
}
.indexP7 .list li .ico {
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
}
.indexP7 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -1px;
  width: 18px;
  height: 2px;
  background: #333;
  transition: All 0.5s ease;
}
.indexP7 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -9px;
  width: 2px;
  height: 18px;
  background: #333;
  transition: All 0.5s ease;
}
.indexP7 .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs24);
  transition: All 0.5s ease;
}
.indexP7 .list li .wen {
  padding-right: 0.15rem;
  text-transform: uppercase;
}
.indexP7 .list li .box {
  padding-bottom: 0.5rem;
  display: none;
}
.indexP7 .list li .msgDiv.aNow .wen {
  color: #00913e;
}
.indexP7 .list li .msgDiv.aNow .ico:after {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.indexP7 .list li .content {
  color: #999;
  line-height: 0.32rem;
  font-size: var(--fs18);
  text-align: justify;
}
.indexP8 {
  padding: 1.2rem 0;
}
.indexP8 .form {
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
}
.indexP8 .form ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP8 .form li {
  width: calc((100% - 1.2rem) / 5);
  margin-right: 0.3rem;
}
.indexP8 .form li:nth-child(5n) {
  margin-right: 0;
}
.indexP8 .form li .box {
  position: relative;
}
.indexP8 .form li .box .zi {
  position: absolute;
  pointer-events: none;
  padding-left: 0.3rem;
  left: 0;
  top: 0;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: #333;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.indexP8 .form li .box .zi img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.25rem;
  margin-top: -0.12rem;
}
.indexP8 .form li .box .zi em {
  padding-left: 5px;
  color: red;
}
.indexP8 .form li .box:focus-within .zi {
  opacity: 0;
  pointer-events: none;
}
.indexP8 .form li .has-value .zi {
  opacity: 0;
  pointer-events: none;
}
.indexP8 .form li .input1 {
  width: 100%;
  height: 0.54rem;
  background: #fff;
  color: #000;
  font-size: var(--fs14);
  border-bottom: #e3e3e3 solid 1px;
}
.indexP8 .form li .input1::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
.indexP8 .form li .input1:-moz-placeholder {
  color: #000;
  opacity: 1;
}
.indexP8 .form li .input1::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.indexP8 .form li .input1:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
.indexP8 .form li .select {
  width: 100%;
  position: relative;
}
.indexP8 .form li .select .zi {
  height: 0.54rem;
}
.indexP8 .form li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.54rem;
  line-height: 0.54rem;
  border-bottom: #e3e3e3 solid 1px;
  padding-left: 0.35rem;
  font-size: var(--fs16);
  color: #333;
  background: #fff;
  overflow: hidden;
}
.indexP8 .form li .select .caption::after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.indexP8 .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  overflow-y: auto;
  display: none;
  max-height: 2rem;
  border: 1px solid #e3e3e3;
  border-top: none;
}
.indexP8 .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.indexP8 .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.indexP8 .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00913e;
}
.indexP8 .form li .select .xlist a {
  display: block;
  font-size: var(--fs15);
  background: #fff;
  color: #333;
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0 0.35rem;
}
.indexP8 .form li .select .xlist a:hover {
  color: #00913e;
}
.indexP8 .submitBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.6rem;
}
.indexP8 .submitBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.92rem;
  font-size: var(--fs16);
  height: 0.55rem;
  background: #00913e;
  color: #fff;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP8 .submitBtn a em {
  margin-left: 0.12rem;
  width: 15px;
  height: 13px;
  background: url(../img/nimg15_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .indTxt .cn {
    font-size: var(--fs24);
  }
  .indTxt .wen {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP1 {
    padding: 0.9rem 0 1rem;
  }
  .indexP1 .list {
    margin-top: 0.5rem;
  }
  .indexP1 .list ul {
    margin: 0;
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .indexP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .indexP1 .list li:nth-child(2n) {
    margin-bottom: 0;
  }
  .indexP1 .list li a {
    border-radius: 0.24rem;
  }
  .indexP1 .list li a .ico {
    margin-bottom: 0.35rem;
  }
  .indexP1 .list li a .ico img {
    width: 0.8rem;
  }
  .indexP1 .list li a .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .indexP1 .list li a .more {
    opacity: 1;
    visibility: visible;
    max-height: 0.82rem;
    margin-top: 0.35rem;
  }
  .indexP1 .list li a .more .hala {
    width: 2.32rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP1 .list li a .more .hala em {
    margin-left: 0.1rem;
  }
  .indexP1 .list li a:hover .more {
    max-height: 0.82rem;
  }
  .indexP2 {
    padding-bottom: 1rem;
  }
  .indexP2 .indTxt {
    left: var(--offset);
    margin-left: 0;
    top: 0.9rem;
  }
  .indexP2 .ssDiv {
    padding-bottom: 0;
  }
  .indexP2 .swiper-slide .pic img {
    height: 5.6rem;
  }
  .indexP2 .swiper-slide .layer {
    left: var(--offset);
    margin-left: 0;
    top: 2.6rem;
    width: 4.2rem;
  }
  .indexP2 .swiper-slide .layer .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    margin-bottom: 0;
  }
  .indexP2 .swiper-slide .layer .msg {
    display: none;
  }
  .indexP2 .swiper-slide .layer .more {
    margin-top: 0.2rem;
    width: 2.4rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP2 .swiper-slide .layer .more em {
    margin-left: 0.15rem;
  }
  .indexP2 .tab-box {
    position: relative;
    border-radius: 0;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    left: 0;
  }
  .indexP2 .tab-box a {
    width: 25%;
    padding: 0 0.05rem;
    height: 1rem;
    font-size: var(--fs14);
  }
  .indexP2 .tab-box a .ico {
    display: none;
  }
  .indexP2 .tab-box a .name {
    margin-top: 0;
  }
  .indexP3 {
    padding: 0.9rem 0;
  }
  .indexP3 .txt {
    display: none;
  }
  .indexP3 .baozhe {
    display: block;
  }
  .indexP3 .conDiv {
    width: 100%;
  }
  .indexP3 .indTxt {
    text-align: left;
  }
  .indexP3 .imgDiv {
    margin-top: 0.7rem;
    width: auto;
  }
  .indexP3 .content {
    margin-top: 0.5rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP3 .list {
    margin-top: 0.5rem;
  }
  .indexP3 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
    margin-bottom: 0;
  }
  .indexP3 .list li {
    width: 50%;
    padding-right: 0.3rem;
    padding-top: 0.3rem;
  }
  .indexP3 .list li:nth-child(-n+2) {
    padding-top: 0;
  }
  .indexP3 .list li .pj {
    height: 0.75rem;
  }
  .indexP3 .list li .num p {
    font-size: var(--fs14);
    height: 0.64rem;
  }
  .indexP3 .list li .num span {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP3 .list li .numUp {
    font-size: 0.6rem;
    line-height: 0.64rem;
    padding-right: 0.2rem;
  }
  .indexP3 .list li .wen {
    line-height: 0.42rem;
  }
  .indexP3 .btnDiv a {
    padding: 0 0.3rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .indexP3 .btnDiv a em {
    margin-left: 0.15rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP4 {
    padding: 1.3rem 0 1.1rem;
    background: url(../img/indexP4.jpg) center no-repeat;
    background-size: cover;
  }
  .indexP4 .toptop {
    position: relative;
    display: block;
    margin-bottom: 0.35rem;
  }
  .indexP4 .tab2 {
    margin-top: 0.4rem;
  }
  .indexP4 .tab2 ul {
    display: block;
  }
  .indexP4 .tab2 ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .indexP4 .tab2 li {
    float: left;
    margin: 0 0.3rem 0.25rem 0;
    font-size: var(--fs14);
    line-height: 0.32rem;
    height: 0.56rem;
  }
  .indexP4 .tab2 li::after {
    height: 2px;
  }
  .indexP4 .moreBtn {
    position: absolute;
    right: 0;
    top: 0;
  }
  .indexP4 .moreBtn a {
    font-size: var(--fs14);
    width: auto;
    min-width: 1.5rem;
    padding: 0 0.3rem;
    height: 0.82rem;
  }
  .indexP4 .moreBtn a em {
    width: 13px;
    height: 10px;
    background-size: 13px;
  }
  .indexP4 .moreBtn a:hover em {
    background-size: 13px;
  }
  .indexP4 .list li {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .indexP4 .list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .indexP4 .list li:nth-child(4),
  .indexP4 .list li:nth-child(5),
  .indexP4 .list li:nth-child(6) {
    margin-top: 0.3rem;
  }
  .indexP4 .list li:nth-child(6n) {
    margin-right: 0.2rem;
  }
  .indexP4 .list li:nth-child(3n) {
    margin-right: 0;
  }
  .indexP5 {
    padding: 0.9rem 0 1rem;
  }
  .indexP5 .toptop {
    margin-bottom: 0.65rem;
  }
  .indexP5 .moreBtn a {
    font-size: var(--fs14);
    width: auto;
    min-width: 1.5rem;
    padding: 0 0.3rem;
    height: 0.82rem;
  }
  .indexP5 .moreBtn a em {
    width: 13px;
    height: 10px;
    background-size: 13px;
  }
  .indexP5 .moreBtn a:hover em {
    background-size: 13px;
  }
  .indHonor .list li {
    width: 100%;
    margin-right: 0;
  }
  .indHonor .list li .box {
    padding: 0.5rem 0.9rem 0;
    height: 4.2rem;
  }
  .indHonor .list li .imgDiv .ico {
    width: 0.9rem;
    height: 0.9rem;
    margin-left: -0.45rem;
    margin-top: -0.45rem;
  }
  .indHonor .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    height: 0.84rem;
    line-height: 0.42rem;
  }
  .indHonor .se {
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .indHonor .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .indHonor .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .indexP6 {
    padding: 1rem 0;
  }
  .indexP6 .toptop {
    margin-bottom: 0.65rem;
  }
  .indexP6 .moreBtn a {
    font-size: var(--fs14);
    width: auto;
    min-width: 1.5rem;
    padding: 0 0.3rem;
    height: 0.82rem;
  }
  .indexP6 .moreBtn a em {
    width: 13px;
    height: 10px;
    background-size: 13px;
  }
  .indexP6 .moreBtn a:hover em {
    background-size: 13px;
  }
  .indexP6 .leftDiv {
    width: auto;
  }
  .indexP6 .leftDiv li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .indexP6 .leftDiv li a {
    border-radius: 0.2rem;
  }
  .indexP6 .leftDiv li a .imgDiv {
    height: 2.2rem;
  }
  .indexP6 .leftDiv li a .botDiv {
    padding: 0.25rem 0.2rem;
    height: auto;
  }
  .indexP6 .leftDiv li a .botDiv .name {
    margin-bottom: 0.1rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP6 .leftDiv li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .indexP6 .leftDiv li a .botDiv .look {
    display: none;
  }
  .indexP6 .rightDiv {
    margin-top: 0.3rem;
    width: auto;
  }
  .indexP6 .rightDiv li a {
    height: auto;
    padding: 0.5rem 0.35rem;
    border-radius: 0.2rem;
  }
  .indexP6 .rightDiv li a .time {
    font-size: var(--fs13);
    line-height: 0.72rem;
  }
  .indexP6 .rightDiv li a .time::after {
    width: 0.72rem;
    height: 0.72rem;
  }
  .indexP6 .rightDiv li a .name {
    margin-bottom: 0.35rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP7 {
    padding: 1rem 0;
  }
  .indexP7 .mxfDiv {
    display: block;
  }
  .indexP7 .conDiv {
    width: auto;
  }
  .indexP7 .conDiv .msg {
    margin-top: 0.4rem;
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .indexP7 .conDiv .moreBtn a {
    font-size: var(--fs14);
    width: 2.4rem;
    height: 0.82rem;
  }
  .indexP7 .conDiv .moreBtn a em {
    width: 13px;
    height: 10px;
    background-size: 13px;
  }
  .indexP7 .conDiv .moreBtn a:hover em {
    background-size: 13px;
  }
  .indexP7 .conDiv .tips {
    padding-top: 0.7rem;
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .indexP7 .list {
    margin-top: 0.7rem;
    width: auto;
  }
  .indexP7 .list li .msgDiv {
    height: auto;
  }
  .indexP7 .list li .ico {
    width: 28px;
    height: 28px;
    margin-top: -14px;
  }
  .indexP7 .list li .ico:before {
    margin-left: -7px;
    width: 14px;
  }
  .indexP7 .list li .ico:after {
    margin-top: -7px;
    height: 14px;
  }
  .indexP7 .list li .name {
    height: auto;
    line-height: 0.48rem;
    padding: 0.25rem 0.8rem 0.25rem 0;
    font-size: var(--fs17);
  }
  .indexP7 .list li .box {
    padding-bottom: 0.4rem;
  }
  .indexP7 .list li .content {
    line-height: 0.52rem;
    font-size: var(--fs15);
  }
  .indexP8 {
    padding: 1rem 0;
  }
  .indexP8 .form {
    margin-top: 0.65rem;
  }
  .indexP8 .form li {
    width: 100%;
    margin-right: 0;
  }
  .indexP8 .form li .box .zi {
    padding-left: 0.5rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .indexP8 .form li .box .zi img {
    width: 0.36rem;
    margin-top: -0.18rem;
  }
  .indexP8 .form li .input1 {
    height: 0.9rem;
    font-size: var(--fs14);
  }
  .indexP8 .form li .select .zi {
    height: 0.9rem;
  }
  .indexP8 .form li .select .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    padding-left: 0.5rem;
    font-size: var(--fs14);
  }
  .indexP8 .form li .select .xlist {
    max-height: 3.44rem;
  }
  .indexP8 .form li .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
    padding: 0 0.5rem;
  }
  .indexP8 .submitBtn a {
    width: auto;
    min-width: 1.9rem;
    padding: 0 0.4rem;
    font-size: var(--fs14);
    height: 0.82rem;
  }
}
.product {
  padding: 0.9rem 0 0.6rem;
}
.product .title {
  font-weight: 500;
  font-size: var(--fs48);
  line-height: 0.64rem;
  margin-bottom: 0.3rem;
  color: #1e2a21;
}
.product .list {
  padding-bottom: 0.7rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.product .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}
.product .list li:nth-child(-n+3) {
  margin-top: 0;
}
.product .list li:nth-child(3n) {
  margin-right: 0;
}
.product .list li .box {
  position: relative;
  border-radius: 0.16rem;
  display: block;
  transition: 0.3s all;
  background: linear-gradient(to top right, #098a4e, #30b354);
  overflow: hidden;
  padding: 0.5rem;
  height: 3.9rem;
}
.product .list li .box::before {
  position: absolute;
  inset: 0;
  background: #090f16;
  content: "";
  z-index: 2;
  opacity: 0.25;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.product .list li .box .baozhe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product .list li .box .imgDiv {
  position: absolute;
  opacity: 0;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: 1s;
  opacity: 1;
  width: 4rem;
  height: 4rem;
  inset: -0.5rem;
  clip-path: ellipse(40% 40% at 80% 80%);
  z-index: 1;
}
.product .list li .box .hala {
  position: relative;
  height: 100%;
  object-fit: cover;
  background: #f4f5f8;
}
.product .list li .box .hala img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.2rem;
  height: 2.2rem;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.product .list li .box .toptop {
  position: relative;
  z-index: 2;
  padding: 0.35rem 0 0.25rem;
  border-bottom: #fff solid 1px;
}
.product .list li .box .toptop .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-family: 'Barlow-B';
}
.product .list li .box .toptop .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  min-height: 0.72rem;
  overflow: hidden;
  font-size: var(--fs18);
  color: #fff;
}
.product .list li .box .more {
  position: relative;
  z-index: 2;
  margin-top: 0.45rem;
}
.product .list li .box .more a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: var(--fs18);
  line-height: 0.32rem;
  padding-right: 0.35rem;
}
.product .list li .box .more a::after {
  content: '';
  position: absolute;
  right: 0.1rem;
  top: 50%;
  margin-top: -6px;
  width: 15px;
  height: 13px;
  background: url(../img/nimg15_righton.png) right center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.product .list li .box .more a:hover::after {
  right: 0;
}
.product .list li:hover::before {
  opacity: 0;
}
.product .list li:hover .imgDiv {
  clip-path: ellipse(100% 100% at 50% 50%);
}
.product .list li:hover .hala img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1004px) {
  .product {
    padding: 0.9rem 0 0.6rem;
  }
  .product .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .product .list {
    padding-bottom: 0.7rem;
  }
  .product .list li {
    width: 100%;
    margin-right: 0;
  }
  .product .list li:nth-child(1) {
    margin-top: 0;
  }
  .product .list li:nth-child(2),
  .product .list li:nth-child(3) {
    margin-top: 0.5rem;
  }
  .product .list li .box {
    border-radius: 0.24rem;
    padding: 0.35rem;
    height: 4.5rem;
  }
  .product .list li .box .imgDiv {
    border-radius: 0.24rem;
    width: 4.7rem;
    height: 4.7rem;
  }
  .product .list li .box .hala img {
    width: 2.4rem;
    height: 2.4rem;
  }
  .product .list li .box .toptop {
    padding: 0.3rem 0 0.2rem;
  }
  .product .list li .box .toptop .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .product .list li .box .toptop .msg {
    line-height: 0.48rem;
    min-height: 0.96rem;
    font-size: var(--fs14);
  }
  .product .list li .box .more {
    margin-top: 0.3rem;
  }
  .product .list li .box .more a {
    font-size: var(--fs15);
    line-height: 0.42rem;
    padding-right: 0.4rem;
  }
  .product .list li .box .more a::after {
    right: 0;
    margin-top: -5px;
    width: 12px;
    height: 11px;
  }
  .product .list li:hover .hala img {
    width: 100%;
    height: 100%;
  }
}
.productP1 {
  padding: 0.2rem 0 0.9rem;
  background: url(../img/productP1.jpg) center no-repeat;
  background-size: cover;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.7rem;
}
.productP1 .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 5.74rem;
  height: 5.54rem;
  border-radius: 0.16rem;
  background: #fff;
}
.productP1 .imgDiv img {
  max-width: 4.5rem;
  max-height: 4.5rem;
  mix-blend-mode: multiply;
}
.productP1 .conDiv {
  width: calc(100% - 6.5rem);
}
.productP1 .name {
  font-size: var(--fs36);
  color: #0a1f12;
  line-height: 0.48rem;
  padding-bottom: 0.45rem;
  border-bottom: #dcdedd solid 1px;
}
.productP1 .name b {
  display: block;
  font-size: var(--fs48);
}
.productP1 .content {
  margin: 0.3rem 0 0.55rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #2c3e33;
}
.productP1 .list li {
  margin-top: 0.2rem;
}
.productP1 .list li:first-child {
  margin-top: 0;
}
.productP1 .list li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding: 0 0.8rem 0 0.3rem;
  position: relative;
  min-height: 0.7rem;
  font-size: var(--fs16);
  color: #2c3e33;
  background: #fff;
  border-bottom-left-radius: 0.24rem;
}
.productP1 .list li a .zi {
  width: 50%;
  padding: 0.1rem 0.4rem 0.1rem 0;
}
.productP1 .list li a .type {
  width: 40%;
}
.productP1 .list li a .more {
  position: absolute;
  right: 0.45rem;
  top: 50%;
  margin-top: -0.09rem;
  width: 0.16rem;
  height: 0.18rem;
  background: url(../img/nimg16_1.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productP1 .list li a:hover {
  background: #00913e;
  color: #fff;
}
.productP1 .list li a:hover .more {
  filter: brightness(0) invert(1);
}
.productP1 .getbtn {
  margin-top: 0.6rem;
  display: flex;
}
.productP1 .getbtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  min-width: 2rem;
  padding: 0 0.3rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  background: #22a538;
  color: #fff;
}
.productP2 {
  padding: 1.2rem 0 1.3rem;
}
.productP2 .pjDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.35rem;
}
.productP2 .arrowDiv .se {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.productP2 .arrowDiv .prev {
  margin-right: 0.2rem;
  background: #e9edea url(../img/nimg7_left.png) center no-repeat;
}
.productP2 .arrowDiv .prev:hover {
  background: #22a538 url(../img/nimg7_lefton.png) center no-repeat;
}
.productP2 .arrowDiv .next {
  background: #e9edea url(../img/nimg7_right.png) center no-repeat;
}
.productP2 .arrowDiv .next:hover {
  background: #22a538 url(../img/nimg7_righton.png) center no-repeat;
}
.casePic .list {
  overflow: hidden;
}
.casePic .list li .box {
  position: relative;
  border-radius: 0.16rem;
  display: block;
  transition: 0.3s all;
  background: #ebeef0;
  overflow: hidden;
  padding: 0.5rem;
  height: 3.9rem;
}
.casePic .list li .box .baozhe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.casePic .list li .box .imgDiv {
  position: absolute;
  opacity: 0;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: 1s;
  opacity: 1;
  width: 5rem;
  height: 5rem;
  inset: -0.5rem;
  clip-path: ellipse(40% 40% at 80% 80%);
  z-index: 1;
}
.casePic .list li .box .hala {
  position: relative;
  height: 100%;
  object-fit: cover;
  background: #f4f5f8;
}
.casePic .list li .box .hala img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .list li .box .toptop {
  position: relative;
  z-index: 2;
  padding-top: 0.3rem;
  min-height: 1.85rem;
  border-bottom: #333 solid 1px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .list li .box .toptop .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
  font-family: 'Barlow-B';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .list li .box .toptop .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  min-height: 0.72rem;
  overflow: hidden;
  font-size: var(--fs18);
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .list li .box .more {
  position: relative;
  z-index: 2;
  margin-top: 0.45rem;
}
.casePic .list li .box .more a {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.32rem;
  padding-right: 0.35rem;
}
.casePic .list li .box .more a::after {
  content: '';
  position: absolute;
  right: 0.1rem;
  top: 50%;
  margin-top: -6px;
  width: 15px;
  height: 13px;
  background: url(../img/nimg15_right2.png) right center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.casePic .list li .box .more a:hover::after {
  right: 0;
}
.casePic .list li:hover::before {
  opacity: 0;
}
.casePic .list li:hover .toptop {
  border-bottom: #fff solid 1px;
}
.casePic .list li:hover .toptop .name {
  color: #fff;
}
.casePic .list li:hover .toptop .msg {
  color: #fff;
}
.casePic .list li:hover .imgDiv {
  clip-path: ellipse(100% 100% at 50% 50%);
}
.casePic .list li:hover .more a {
  color: #fff;
}
.casePic .list li:hover .more a::after {
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
.productP3 {
  background: #f5f7f6 url(../img/productP3.jpg) center bottom no-repeat;
  background-size: 100%;
  padding: 1.2rem 0 1.3rem;
}
.productP3 .wrap {
  width: 1000px;
}
.productP3 .pageTitle {
  text-align: center;
}
.productP3 .form {
  position: relative;
  z-index: 1;
  margin-top: 0.3rem;
}
.productP3 .form::after {
  content: '';
  display: block;
  clear: both;
}
.productP3 .form ul {
  margin-right: -0.2rem;
  margin-bottom: 0;
}
.productP3 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.2rem;
}
.productP3 .form li .box {
  margin-right: 0.2rem;
  position: relative;
}
.productP3 .form li .box .zi {
  position: absolute;
  pointer-events: none;
  left: 0.4rem;
  top: 0;
  line-height: 0.8rem;
  font-size: var(--fs18);
  color: #333;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.productP3 .form li .box .zi em {
  padding-left: 5px;
}
.productP3 .form li .box:focus-within .zi {
  opacity: 0;
  pointer-events: none;
}
.productP3 .form li .has-value .zi {
  opacity: 0;
  pointer-events: none;
}
.productP3 .form li .input1 {
  padding-left: 0.4rem;
  width: 100%;
  height: 0.8rem;
  background: #fff;
  color: #adadad;
  font-size: var(--fs16);
  border-radius: 4px;
}
.productP3 .form li .input1::-webkit-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li .input1:-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li .input1::-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li .input1:-ms-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li .input2 {
  padding-left: 2rem;
}
.productP3 .form li textarea {
  padding: 0.25rem 0.4rem;
  width: 100%;
  height: 2.4rem;
  background: #fff;
  color: #adadad;
  font-size: var(--fs16);
  line-height: 0.3rem;
  border-radius: 4px;
  font-family: inherit;
}
.productP3 .form li textarea::-webkit-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li textarea:-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li textarea::-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li textarea:-ms-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.productP3 .form li .select {
  width: 100%;
  position: relative;
}
.productP3 .form li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.4rem;
  font-size: var(--fs18);
  color: #000;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.productP3 .form li .select .caption::after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: 15px;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.productP3 .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  overflow-y: auto;
  display: none;
  max-height: 2.5rem;
  box-shadow: 0 0.1rem 0.1rem -0.1rem rgba(0, 0, 0, 0.1);
}
.productP3 .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.productP3 .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.productP3 .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00913e;
}
.productP3 .form li .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #333;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.4rem;
}
.productP3 .form li .select .xlist a:hover {
  color: #00913e;
}
.productP3 .form li .select2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
}
.productP3 .form li .select2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.2rem;
  width: 1px;
  height: 0.4rem;
  background: #c7c7c7;
}
.productP3 .form li .select2 .xlist {
  width: 130%;
}
.productP3 .form .li01 {
  width: 100%;
}
.productP3 .submitBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.4rem;
}
.productP3 .submitBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 2rem;
  padding: 0 0.4rem;
  font-size: var(--fs18);
  height: 0.6rem;
  background: #22a538;
  color: #fff;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.9rem 0;
  }
  .productP1 .mxfDiv {
    display: block;
    margin-top: 0;
  }
  .productP1 .imgDiv {
    width: 100%;
    height: 5.6rem;
    border-radius: 0.24rem;
  }
  .productP1 .conDiv {
    width: 100%;
    padding-top: 0.7rem;
  }
  .productP1 .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .productP1 .name b {
    font-size: var(--fs24);
  }
  .productP1 .content {
    margin: 0.4rem 0 0.6rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .productP1 .list li a {
    display: block;
    padding: 0.2rem 0.3rem;
    font-size: var(--fs14);
    border-bottom-left-radius: 0.24rem;
  }
  .productP1 .list li a .zi {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .productP1 .list li a .type {
    width: auto;
  }
  .productP1 .list li a .more {
    position: absolute;
    right: 0.3rem;
    top: auto;
    margin-top: 0;
    bottom: 0.24rem;
    width: 0.3rem;
    height: 0.32rem;
    background-size: 0.3rem;
  }
  .productP1 .getbtn a {
    font-size: var(--fs15);
    padding: 0 0.5rem;
    height: 0.86rem;
  }
  .productP2 {
    padding: 1.2rem 0 1.3rem;
  }
  .productP2 .pjDiv {
    margin-bottom: 0.5rem;
  }
  .productP2 .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .casePic .list li .box {
    border-radius: 0.24rem;
    padding: 0.35rem;
    height: 4.5rem;
  }
  .casePic .list li .box .imgDiv {
    border-radius: 0.24rem;
    width: 4.7rem;
    height: 4.7rem;
  }
  .casePic .list li .box .toptop {
    padding: 0.3rem 0 0.2rem;
  }
  .casePic .list li .box .toptop .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .casePic .list li .box .toptop .msg {
    line-height: 0.48rem;
    min-height: 0.96rem;
    font-size: var(--fs14);
  }
  .casePic .list li .box .more {
    margin-top: 0.3rem;
  }
  .casePic .list li .box .more a {
    font-size: var(--fs15);
    line-height: 0.42rem;
    padding-right: 0.4rem;
  }
  .casePic .list li .box .more a::after {
    right: 0;
    margin-top: -5px;
    width: 12px;
    height: 11px;
  }
  .productP3 {
    padding: 0.9rem 0 1rem;
  }
  .productP3 .wrap {
    width: 100%;
  }
  .productP3 .form {
    margin-top: 0.5rem;
  }
  .productP3 .form ul {
    margin-right: 0;
  }
  .productP3 .form li {
    float: none;
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .productP3 .form li .box {
    margin-right: 0;
  }
  .productP3 .form li .box .zi {
    left: 0.3rem;
    line-height: 1rem;
    font-size: var(--fs14);
  }
  .productP3 .form li .input1 {
    padding-left: 0.3rem;
    height: 1rem;
    font-size: var(--fs14);
  }
  .productP3 .form li .input2 {
    padding-left: 2.8rem;
  }
  .productP3 .form li textarea {
    padding: 0.3rem;
    height: 3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP3 .form li .select .caption {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
  }
  .productP3 .form li .select .caption::after {
    right: 0.3rem;
  }
  .productP3 .form li .select .xlist {
    max-height: 4.3rem;
  }
  .productP3 .form li .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
    padding: 0 0.3rem;
  }
  .productP3 .form li .select2 {
    width: 2.5rem;
  }
  .productP3 .form li .select2::after {
    margin-top: -0.3rem;
    height: 0.6rem;
  }
  .productP3 .submitBtn {
    margin-top: 0.6rem;
  }
  .productP3 .submitBtn a {
    min-width: 2.5rem;
    padding: 0 0.4rem;
    font-size: var(--fs15);
    height: 0.86rem;
  }
}
.case {
  padding: 0.9rem 0 1.3rem;
}
.case .list {
  padding-bottom: 0.8rem;
}
.case .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin: 0;
}
.case .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}
.case .list li:nth-child(-n+3) {
  margin-top: 0;
}
.case .list li:nth-child(3n) {
  margin-right: 0;
}
.case .list li .box {
  position: relative;
  border-radius: 0.16rem;
  display: block;
  transition: 0.3s all;
  background: #ebeef0;
  overflow: hidden;
  padding: 0.5rem;
  height: 3.9rem;
}
.case .list li .box .baozhe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.case .list li .box .imgDiv {
  position: absolute;
  opacity: 0;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: 1s;
  opacity: 1;
  width: 5rem;
  height: 5rem;
  inset: -0.5rem;
  clip-path: ellipse(40% 40% at 80% 80%);
  z-index: 1;
}
.case .list li .box .hala {
  position: relative;
  height: 100%;
  object-fit: cover;
  background: #f4f5f8;
}
.case .list li .box .hala img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case .list li .box .toptop {
  position: relative;
  z-index: 2;
  padding-top: 0.3rem;
  min-height: 1.85rem;
  border-bottom: #333 solid 1px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case .list li .box .toptop .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
  font-family: 'Barlow-B';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case .list li .box .toptop .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  min-height: 0.72rem;
  overflow: hidden;
  font-size: var(--fs18);
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case .list li .box .more {
  position: relative;
  z-index: 2;
  margin-top: 0.45rem;
}
.case .list li .box .more a {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.32rem;
  padding-right: 0.35rem;
}
.case .list li .box .more a::after {
  content: '';
  position: absolute;
  right: 0.1rem;
  top: 50%;
  margin-top: -6px;
  width: 15px;
  height: 13px;
  background: url(../img/nimg15_right2.png) right center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case .list li .box .more a:hover::after {
  right: 0;
}
.case .list li:hover::before {
  opacity: 0;
}
.case .list li:hover .toptop {
  border-bottom: #fff solid 1px;
}
.case .list li:hover .toptop .name {
  color: #fff;
}
.case .list li:hover .toptop .msg {
  color: #fff;
}
.case .list li:hover .imgDiv {
  clip-path: ellipse(100% 100% at 50% 50%);
}
.case .list li:hover .more a {
  color: #fff;
}
.case .list li:hover .more a::after {
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
@media (max-width: 1004px) {
  .case {
    padding: 0.9rem 0 1rem;
  }
  .case .list {
    padding-bottom: 0.8rem;
  }
  .case .list li {
    width: 100%;
    margin-right: 0;
  }
  .case .list li:nth-child(1) {
    margin-top: 0;
  }
  .case .list li:nth-child(2),
  .case .list li:nth-child(3) {
    margin-top: 0.5rem;
  }
  .case .list li .box {
    border-radius: 0.24rem;
    padding: 0.35rem;
    height: 4.5rem;
  }
  .case .list li .box .imgDiv {
    border-radius: 0.24rem;
    width: 4.7rem;
    height: 4.7rem;
  }
  .case .list li .box .toptop {
    padding: 0.3rem 0 0.2rem;
  }
  .case .list li .box .toptop .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .case .list li .box .toptop .msg {
    line-height: 0.48rem;
    min-height: 0.96rem;
    font-size: var(--fs14);
  }
  .case .list li .box .more {
    margin-top: 0.3rem;
  }
  .case .list li .box .more a {
    font-size: var(--fs15);
    line-height: 0.42rem;
    padding-right: 0.4rem;
  }
  .case .list li .box .more a::after {
    right: 0;
    margin-top: -5px;
    width: 12px;
    height: 11px;
  }
}
.caseshow {
  padding: 1.2rem 0 1.3rem;
  background: #f4f4f4;
}
.caseshow .list {
  margin-top: 0.5rem;
}
.caseshow .list li {
  position: relative;
  margin-top: 0.8rem;
  overflow: hidden;
  padding-bottom: 0.8rem;
}
.caseshow .list li:first-child {
  margin-top: 0;
}
.caseshow .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 85%;
  height: 6.8rem;
  overflow: hidden;
  border-radius: 0.24rem;
  background: #000;
}
.caseshow .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseshow .list li .imgDiv video {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.caseshow .list li .conDiv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  background: #fff;
  padding: 0.35rem 0.3rem;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseshow .list li .name {
  position: relative;
  display: inline-block;
  font-size: var(--fs36);
  line-height: 0.48rem;
  padding: 0.3rem 0.6rem 0 0;
  color: #333;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseshow .list li .name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #22a538;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseshow .list li .content {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.caseshow .list li:nth-child(even) .conDiv {
  right: auto;
  left: 0;
}
.caseshow .list li:nth-child(even) .imgDiv {
  float: right;
}
.caseshow .list li:hover .name {
  color: #00913e;
}
@media (max-width: 1004px) {
  .caseshow {
    padding: 0.9rem 0 1rem;
  }
  .caseshow .list {
    margin-top: 0.6rem;
  }
  .caseshow .list li .imgDiv {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .caseshow .list li .imgDiv img {
    height: auto;
  }
  .caseshow .list li .conDiv {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.8rem 0.3rem;
    border-radius: 0;
  }
  .caseshow .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
    padding: 0.3rem 0.5rem 0 0;
  }
  .caseshow .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .caseshow .list li:nth-child(even) .imgDiv {
    float: none;
  }
}
.news {
  padding: 1rem 0 1.1rem;
}
.news .list {
  padding-bottom: 0.6rem;
}
.news .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 2.6rem;
  margin-top: 0.3rem;
}
.news .list li:first-child {
  margin-top: 0;
}
.news .list li .imgDiv {
  width: 4.8rem;
  height: 2.6rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .list li .conDiv {
  width: calc(100% - 5.16rem);
}
.news .list li .conDiv a {
  display: block;
  height: 2.6rem;
  padding: 0.42rem 0.5rem 0 0.6rem;
  border-radius: 0.16rem;
  background: #fafafa;
}
.news .list li .conDiv a .time {
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Poppins-R';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li .conDiv a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs30);
  line-height: 0.42rem;
  min-height: 0.84rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li .conDiv a .labelDiv {
  display: flex;
  margin-top: 0.1rem;
}
.news .list li .conDiv a .labelDiv em {
  padding: 0 0.2rem;
  background: #e9edea;
  line-height: 0.35rem;
  margin: 0 0.1rem 0.1rem 0;
  border-radius: 6px;
  color: #1e2a21;
  font-size: var(--fs16);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li .conDiv a:hover .name {
  color: #00913e;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.9rem 0 1rem;
  }
  .news .list {
    padding-bottom: 0.7rem;
  }
  .news .list li {
    height: 2rem;
    margin-top: 0.3rem;
  }
  .news .list li .imgDiv {
    width: 2.86rem;
    height: 2rem;
  }
  .news .list li .conDiv {
    width: calc(100% - 3rem);
  }
  .news .list li .conDiv a {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    height: 2rem;
    padding: 0.2rem 0.3rem 0 0.35rem;
    border-radius: 0.2rem;
  }
  .news .list li .conDiv a .time {
    display: none;
  }
  .news .list li .conDiv a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .news .list li .conDiv a .labelDiv {
    display: none;
  }
}
.newshow {
  position: relative;
  padding: 0.2rem 0 1rem;
}
.newshow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5rem;
  background-image: linear-gradient(180deg, #e8f6eb 0%, #fff 100%);
  background-blend-mode: normal, normal;
}
.newshow .w1150 {
  margin: 0 auto;
  width: 11.5rem;
}
.newshow .name {
  position: relative;
  z-index: 1;
  padding: 1rem 0 0.2rem;
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #22a538;
  font-weight: bold;
  margin: 0;
}
.newshow .time {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #999;
  font-family: 'Poppins-R';
}
.newshow .content {
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
}
.newshow .content b {
  display: block;
  color: #22a538;
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.48rem;
}
.newshow .imgDiv {
  text-align: center;
}
.newshow .imgDiv img {
  max-width: 100%;
}
.newshow .botbot {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-top: 1rem;
}
.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: #e9e9e9 solid 1px;
  border-radius: 0.45rem;
}
.newshow .pageDown li .prev:hover,
.newshow .pageDown li .next:hover {
  width: 2.8rem;
  border: #22a538 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: #22a538 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: #22a538 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: #e9e9e9 solid 1px;
  border-radius: 0.45rem;
  font-size: var(--fs18);
  color: #ccc;
}
.newshow .pageDown li .back:hover {
  border: #22a538 solid 1px;
  background: #22a538;
  color: #fff;
}
.newshow .share {
  position: relative;
}
.newshow .share li {
  float: left;
  margin-left: 0.25rem;
}
.newshow .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 0.28rem;
  height: 0.25rem;
}
.newshow .share li a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25rem;
  transition: All 0.5s ease;
}
.newshow .share li a .img1 {
  opacity: 0;
}
.newshow .share li a:hover img {
  opacity: 0;
}
.newshow .share li a:hover .img1 {
  opacity: 1;
}
@media (max-width: 1004px) {
  .newshow {
    padding: 0 0 1rem;
  }
  .newshow .w1150 {
    width: 100%;
  }
  .newshow .name {
    padding: 0.9rem 0 0.2rem;
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .newshow .time {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .newshow .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newshow .content b {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .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: 1.2rem;
    height: 0.8rem;
  }
  .newshow .pageDown li .prev:hover,
  .newshow .pageDown li .next:hover {
    width: 1.2rem;
  }
  .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.5rem;
  }
  .newshow .share li {
    margin-left: 0;
    margin-right: 0.3rem;
  }
  .newshow .share li a {
    width: 0.48rem;
    height: 0.48rem;
  }
  .newshow .share li a img {
    width: 0.48rem;
  }
}
.support {
  padding-top: 1rem;
  background: #efefef;
}
.support .wrap {
  position: relative;
}
.support .wrap::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #22a538;
}
.support .form {
  width: 8rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.48rem;
  height: 0.8rem;
}
.support .form .input1 {
  padding-left: 0.9rem;
  font-size: var(--fs18);
  color: #999;
  line-height: 0.8rem;
  background: url(../img/nimg30_1.png) 0.4rem center no-repeat;
  background-size: 0.3rem;
}
.support .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.support .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.support .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.support .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.support .links {
  padding-top: 0.65rem;
}
.support .links ul {
  display: flex;
}
.support .links li {
  margin-right: 1.1rem;
  font-size: var(--fs24);
}
.support .links li a {
  position: relative;
  display: block;
  height: 0.52rem;
  line-height: 0.26rem;
  color: #666;
}
.support .links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.04rem;
  background: #22a538;
}
.support .links li a:hover {
  color: #22a538;
}
.support .links li .aNow {
  color: #22a538;
}
.support .links li .aNow::after {
  width: 100%;
}
.question {
  padding: 0.7rem 0 1.2rem;
}
.question .list {
  padding: 0.35rem 0 0.8rem;
}
.question .list li {
  position: relative;
  margin-top: 0.2rem;
  background: #f9f9f9;
  cursor: pointer;
  padding: 0.5rem 0.6rem;
  border-radius: 0.16rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li:first-child {
  margin-top: 0;
}
.question .list li .name {
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  font-size: var(--fs30);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li .labelDiv {
  display: flex;
  margin-top: 0.18rem;
}
.question .list li .labelDiv em {
  padding: 0 0.2rem;
  background: #e9edea;
  line-height: 0.35rem;
  margin: 0 0.1rem 0.1rem 0;
  border-radius: 6px;
  color: #1e2a21;
  font-size: var(--fs16);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list li .box {
  display: none;
}
.question .list li .content {
  margin-top: 0.1rem;
  color: #666;
  line-height: 0.3rem;
  font-size: var(--fs16);
  text-align: justify;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.question .list .aNow {
  background: #22a538;
}
.question .list .aNow .name,
.question .list .aNow .content {
  color: #fff;
}
.question .list .aNow .labelDiv em {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 1004px) {
  .support {
    padding-top: 0.9rem;
  }
  .support .wrap::after {
    display: none;
  }
  .support .form {
    width: 100%;
    height: 1rem;
  }
  .support .form .input1 {
    padding-left: 0.8rem;
    font-size: var(--fs15);
    line-height: 1rem;
    background: url(../img/nimg30_1.png) 0.3rem center no-repeat;
    background-size: 0.36rem;
  }
  .support .links::after {
    content: '';
    display: block;
    clear: both;
  }
  .support .links ul {
    display: block;
  }
  .support .links li {
    float: left;
    margin-right: 0.45rem;
    margin-bottom: 0.3rem;
    font-size: var(--fs15);
  }
  .support .links li a {
    height: 0.6rem;
    line-height: 0.32rem;
  }
  .support .links li a::after {
    height: 2px;
  }
  .question {
    padding: 0.7rem 0 1rem;
  }
  .question .list {
    padding: 0.45rem 0 0.8rem;
  }
  .question .list li {
    padding: 0.5rem 0.35rem;
    border-radius: 0.2rem;
  }
  .question .list li .name {
    line-height: 0.56rem;
    font-size: var(--fs18);
  }
  .question .list li .labelDiv {
    margin-top: 0.24rem;
  }
  .question .list li .labelDiv em {
    line-height: 0.52rem;
    margin: 0 0.15rem 0.1rem 0;
    font-size: var(--fs14);
  }
  .question .list li .content {
    line-height: 0.52rem;
    font-size: var(--fs14);
  }
}
.download {
  padding: 0.7rem 0 1.2rem;
}
.download .list {
  padding: 0.35rem 0 0.8rem;
}
.download .list li {
  position: relative;
  margin-top: 0.2rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.download .list li:first-child {
  margin-top: 0;
}
.download .list li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-right: 2.2rem;
  position: relative;
  min-height: 0.9rem;
  font-size: var(--fs16);
  color: #333;
  background: #f9f9f9;
  border-bottom-left-radius: 0.24rem;
}
.download .list li a .name {
  width: 31%;
  padding: 0.1rem 0.4rem 0.1rem 0.3rem;
}
.download .list li a .zi {
  width: 14%;
  padding: 0.1rem 0.3rem 0.1rem 0;
}
.download .list li a .type {
  width: 13%;
  padding: 0.1rem 0.3rem 0.1rem 0;
}
.download .list li a .capacity {
  width: 13%;
  padding: 0.1rem 0.3rem 0.1rem 0;
}
.download .list li a .time {
  width: 14%;
  padding: 0.1rem 0.3rem 0.1rem 0;
}
.download .list li a .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  margin-top: -0.25rem;
  width: 1.4rem;
  height: 0.5rem;
  color: #666;
  background: #f5f5f5;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.download .list li a .more em {
  margin-right: 12px;
  width: 0.24rem;
  height: 0.27rem;
  background: url(../img/nimg24_1.png) no-repeat;
  background-size: 0.24rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.download .list li a:hover {
  background: #22a538;
  color: #fff;
}
.download .list li a:hover .more {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.download .list li a:hover .more em {
  background: url(../img/nimg24_1on.png) no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .download {
    padding: 0.7rem 0 1rem;
  }
  .download .list {
    padding: 0.45rem 0 0.8rem;
  }
  .download .list li {
    border-radius: 0.2rem;
  }
  .download .list li a {
    display: block;
    padding: 0.35rem 0.3rem;
    font-size: var(--fs14);
  }
  .download .list li a .name {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .download .list li a .zi {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .download .list li a .type {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .download .list li a .capacity {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .download .list li a .time {
    width: auto;
    padding: 0 0 0.1rem 0;
  }
  .download .list li a .more {
    right: 0.3rem;
    top: auto;
    margin-top: 0;
    bottom: 0.4rem;
    width: 1.8rem;
    height: 0.8rem;
  }
  .download .list li a .more em {
    margin-right: 0.15rem;
    width: 0.32rem;
    height: 0.37rem;
    background-size: 0.32rem;
  }
  .download .list li a:hover .more em {
    background-size: 0.32rem;
  }
}
.lyb {
  padding: 1.2rem 0;
}
.lyb .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.lyb .conDiv {
  width: 4.1rem;
}
.lyb .conDiv .msg {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.lyb .rightDiv {
  width: 10rem;
}
.lyb .form::after {
  content: '';
  display: block;
  clear: both;
}
.lyb .form ul {
  margin-right: -0.2rem;
  margin-bottom: 0;
}
.lyb .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.2rem;
}
.lyb .form li .box {
  margin-right: 0.2rem;
  position: relative;
}
.lyb .form li .box .zi {
  position: absolute;
  pointer-events: none;
  left: 0.4rem;
  top: 0;
  line-height: 0.8rem;
  font-size: var(--fs18);
  color: #333;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.lyb .form li .box .zi em {
  padding-left: 5px;
}
.lyb .form li .box:focus-within .zi {
  opacity: 0;
  pointer-events: none;
}
.lyb .form li .has-value .zi {
  opacity: 0;
  pointer-events: none;
}
.lyb .form li .input1 {
  padding-left: 0.4rem;
  width: 100%;
  height: 0.8rem;
  background: #f4f6f4;
  color: #adadad;
  font-size: var(--fs16);
  border-radius: 4px;
}
.lyb .form li .input1::-webkit-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li .input1:-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li .input1::-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li .input1:-ms-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li .input2 {
  padding-left: 2rem;
}
.lyb .form li textarea {
  padding: 0.25rem 0.4rem;
  width: 100%;
  height: 2.4rem;
  background: #f4f6f4;
  color: #adadad;
  font-size: var(--fs16);
  line-height: 0.3rem;
  border-radius: 4px;
  font-family: inherit;
}
.lyb .form li textarea::-webkit-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li textarea:-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li textarea::-moz-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li textarea:-ms-input-placeholder {
  color: #adadad;
  opacity: 1;
}
.lyb .form li .select {
  width: 100%;
  position: relative;
}
.lyb .form li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.4rem;
  font-size: var(--fs18);
  color: #000;
  background: #f4f6f4;
  border-radius: 4px;
  overflow: hidden;
}
.lyb .form li .select .caption::after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: 15px;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.lyb .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #f4f6f4;
  overflow-y: auto;
  display: none;
  max-height: 2.5rem;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.lyb .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.lyb .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.lyb .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00913e;
}
.lyb .form li .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #333;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.4rem;
}
.lyb .form li .select .xlist a:hover {
  color: #00913e;
}
.lyb .form li .select2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
}
.lyb .form li .select2::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.2rem;
  width: 1px;
  height: 0.4rem;
  background: #c7c7c7;
}
.lyb .form li .select2 .xlist {
  width: 130%;
}
.lyb .form .li01 {
  width: 100%;
}
.lyb .tips {
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.lyb .submitBtn {
  display: flex;
  margin-top: 0.4rem;
}
.lyb .submitBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 2rem;
  padding: 0 0.4rem;
  font-size: var(--fs18);
  height: 0.6rem;
  background: #5eb541;
  color: #fff;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 1004px) {
  .lyb {
    padding: 1rem 0;
  }
  .lyb .mxfDiv {
    display: block;
  }
  .lyb .conDiv {
    width: auto;
  }
  .lyb .conDiv .msg {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .lyb .rightDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .lyb .form {
    margin-top: 0.5rem;
  }
  .lyb .form ul {
    margin-right: 0;
  }
  .lyb .form li {
    float: none;
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .lyb .form li .box {
    margin-right: 0;
  }
  .lyb .form li .box .zi {
    left: 0.3rem;
    line-height: 1rem;
    font-size: var(--fs14);
  }
  .lyb .form li .input1 {
    padding-left: 0.3rem;
    height: 1rem;
    font-size: var(--fs14);
  }
  .lyb .form li .input2 {
    padding-left: 2.8rem;
  }
  .lyb .form li textarea {
    padding: 0.3rem;
    height: 3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .lyb .form li .select .caption {
    height: 1rem;
    line-height: 1rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
  }
  .lyb .form li .select .caption::after {
    right: 0.3rem;
  }
  .lyb .form li .select .xlist {
    max-height: 4.3rem;
  }
  .lyb .form li .select .xlist a {
    font-size: var(--fs14);
    height: 0.86rem;
    line-height: 0.86rem;
    padding: 0 0.3rem;
  }
  .lyb .form li .select2 {
    width: 2.5rem;
  }
  .lyb .form li .select2::after {
    margin-top: -0.3rem;
    height: 0.6rem;
  }
  .lyb .tips {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .lyb .submitBtn {
    margin-top: 0.6rem;
  }
  .lyb .submitBtn a {
    min-width: 2.5rem;
    padding: 0 0.4rem;
    font-size: var(--fs15);
    height: 0.86rem;
  }
}
.contact {
  padding: 1.2rem 0;
}
.contact .pageTitle {
  margin-bottom: 0.24rem;
}
.contact .list {
  padding-bottom: 0.7rem;
}
.contact .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contact .list li {
  width: calc((100% - 0.5rem) / 2);
  margin-right: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.56rem 0.6rem 0.4rem;
  min-height: 4rem;
  border-radius: 0.2rem;
  background: #f9f9f9;
}
.contact .list li:nth-child(-n+2) {
  margin-top: 0;
}
.contact .list li:nth-child(2n) {
  margin-right: 0;
}
.contact .list li .limg {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  overflow: hidden;
}
.contact .list li .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact .list li .name {
  margin-top: 0.3rem;
  color: #1e2a21;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contact .list li .lie {
  margin-top: 5px;
}
.contact .list li .lie dd {
  font-size: var(--fs18);
  position: relative;
  padding-left: 0.36rem;
  line-height: 0.42rem;
}
.contact .list li .lie dd img {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 0.23rem;
}
.contact .list li a:hover .name {
  color: #00913e;
}
.contact .list2 {
  padding-bottom: 0.7rem;
}
.contact .list2 ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contact .list2 li {
  width: calc((100% - 0.5rem) / 2);
  margin-right: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.5rem 0.6rem 0.4rem;
  min-height: 3.2rem;
  border-radius: 0.2rem;
  background: #f9f9f9;
}
.contact .list2 li:nth-child(-n+2) {
  margin-top: 0;
}
.contact .list2 li:nth-child(2n) {
  margin-right: 0;
}
.contact .list2 li .name {
  color: #1e2a21;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
}
.contact .list2 li .lie {
  margin-top: 5px;
}
.contact .list2 li .lie dd {
  font-size: var(--fs18);
  line-height: 0.32rem;
  margin-bottom: 0.2rem;
}
.contact .list2 li .lie dd:last-child {
  margin-bottom: 0;
}
.contact .list2 li .lie dd em {
  display: block;
  color: #333;
}
.contact .botDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  height: 4rem;
  border-radius: 0.16rem;
  background: center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.contact .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, #22a538 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.contact .botDiv .txtDiv {
  position: relative;
  z-index: 1;
  padding-left: 0.6rem;
}
.contact .botDiv .name {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #fff;
  font-weight: bold;
}
.contact .botDiv .msg {
  color: #fff;
  margin-top: 0.16rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.contact .botDiv .btnDiv {
  display: flex;
  margin-top: 0.55rem;
}
.contact .botDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs18);
  padding: 0 0.4rem;
  min-width: 2rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 0.45rem;
  color: #22a538;
}
.contact .humanlist {
  padding: 1.5rem 0 1.1rem;
}
.contact .humanlist ul {
  display: flex;
  flex-wrap: wrap;
}
.contact .humanlist li {
  width: 50%;
  text-align: center;
}
.contact .humanlist li .imgDiv {
  width: 4rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.contact .humanlist li .imgDiv img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.contact .humanlist li .name {
  font-family: 'Poppins-SB';
  margin: 0.5rem 0 0.15rem;
  color: #1e2a21;
  font-size: var(--fs30);
  line-height: 0.42rem;
}
.contact .humanlist li .email {
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-decoration: underline;
}
.contact .humanlist li .email a {
  color: #00913e;
  text-decoration: underline;
}
.contact .humanlist li .tel {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #00913e;
  text-decoration: underline;
}
.contact2 {
  padding: 0.3rem 0 1.2rem;
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.9rem 0;
  }
  .contact .pageTitle {
    margin-bottom: 0.35rem;
  }
  .contact .list li {
    width: 100%;
    margin-right: 0;
    padding: 0.56rem 0.35rem 0.4rem;
  }
  .contact .list li:nth-child(0) {
    margin-top: 0;
  }
  .contact .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .contact .list li .limg {
    width: 1.1rem;
    height: 1.1rem;
  }
  .contact .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .contact .list li .lie {
    margin-top: 0.15rem;
  }
  .contact .list li .lie dd {
    font-size: var(--fs14);
    padding-left: 0.46rem;
    line-height: 0.64rem;
  }
  .contact .list li .lie dd img {
    top: 0.16rem;
    width: 0.32rem;
  }
  .contact .list2 li {
    width: 100%;
    margin-right: 0;
    padding: 0.5rem 0.45rem 0.4rem;
  }
  .contact .list2 li:nth-child(1) {
    margin-top: 0;
  }
  .contact .list2 li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .contact .list2 li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .contact .list2 li .lie {
    margin-top: 0.15rem;
  }
  .contact .list2 li .lie dd {
    font-size: var(--fs14);
    line-height: 0.56rem;
  }
  .contact .botDiv {
    height: 4.6rem;
    border-radius: 0.24rem;
  }
  .contact .botDiv .txtDiv {
    padding: 0 0.45rem;
  }
  .contact .botDiv .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .contact .botDiv .msg {
    margin-top: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .contact .botDiv .btnDiv {
    margin-top: 0.3rem;
  }
  .contact .botDiv .btnDiv a {
    min-width: 2.4rem;
    font-size: var(--fs14);
    height: 0.82rem;
  }
  .contact .humanlist {
    padding: 0 0 0.7rem;
  }
  .contact .humanlist li .imgDiv {
    width: 2.6rem;
  }
  .contact .humanlist li .name {
    margin: 0.4rem 0 0.15rem;
    font-size: var(--fs16);
    line-height: 0.6rem;
  }
  .contact .humanlist li .email {
    font-size: var(--fs14);
    line-height: 0.54rem;
  }
  .contact .humanlist li .tel {
    font-size: var(--fs14);
    line-height: 0.54rem;
  }
}
.job {
  background: #f5f5f5;
  padding: 1.1rem 0 1.2rem;
}
.job .pageTitle {
  margin-bottom: 0.3rem;
}
.job .selectGroup {
  display: flex;
  position: relative;
  z-index: 2;
}
.job .selectGroup .box {
  margin-right: 0.2rem;
}
.job .selectGroup .select {
  position: relative;
}
.job .selectGroup .select .caption {
  overflow: hidden;
  text-align: left;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  height: 0.62rem;
  line-height: 0.6rem;
  width: 2.4rem;
  padding: 0 0.4rem 0 0.2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs16);
  color: #666;
  background: #fff;
  border: #e2e2e2 solid 1px;
}
.job .selectGroup .select .caption::after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: 15px;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.job .selectGroup .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  overflow-y: auto;
  display: none;
  max-height: 2.5rem;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.job .selectGroup .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.job .selectGroup .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.job .selectGroup .select .xlist::-webkit-scrollbar-thumb {
  background-color: #00913e;
}
.job .selectGroup .select .xlist a {
  display: block;
  font-size: var(--fs16);
  color: #666;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.2rem;
}
.job .selectGroup .select .xlist a:hover {
  color: #00913e;
}
.job .selectGroup .btnDiv a {
  position: relative;
  display: block;
  width: 1.2rem;
  text-align: center;
  font-size: var(--fs18);
  color: #fff;
  height: 0.62rem;
  line-height: 0.62rem;
  border-radius: 4px;
  overflow: hidden;
  background: #22a538;
}
.job .list {
  margin: 0.6rem 0 0.8rem;
}
.job .list li {
  margin-top: 0.2rem;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.job .list li:first-child {
  margin-top: 0;
}
.job .list li .topDiv {
  padding: 0.3rem 0.4rem;
  border-top: #e7e7e7 solid 2px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.job .list li .name {
  display: flex;
}
.job .list li .name .dj {
  font-size: var(--fs22);
  color: #17171d;
  line-height: 0.36rem;
  min-width: 3.26rem;
  padding-right: 0.5rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.job .list li .name .wenList dd {
  display: inline-block;
  position: relative;
  font-size: var(--fs14);
  line-height: 0.36rem;
  color: rgba(0, 0, 0, 0.6);
  padding: 0 10px;
}
.job .list li .name .wenList dd::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 1px;
  height: 14px;
  background: #9e9e9e;
}
.job .list li .name .wenList dd:last-child::after {
  display: none;
}
.job .list li .wenzi {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  max-height: 0.6rem;
  overflow: hidden;
}
.job .list li .ico {
  position: absolute;
  right: 0.4rem;
  top: 0.35rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #f5f5f5;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.job .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  margin-top: -2px;
  width: 18px;
  height: 4px;
  background: #22a538;
  transition: All 0.5s ease;
}
.job .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2px;
  margin-top: -9px;
  width: 4px;
  height: 18px;
  background: #22a538;
  transition: All 0.5s ease;
}
.job .list li .hideBox {
  display: none;
  padding: 0.15rem 0.4rem 0.6rem;
}
.job .list li .txt {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.36rem;
}
.job .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
  padding-bottom: 0.35rem;
}
.job .list li .tips {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #010101;
}
.job .list .liNow .topDiv {
  border-top: #22a538 solid 2px;
}
.job .list .liNow .name .dj {
  color: #22a538;
}
.job .list .liNow .ico {
  background: #22a538;
}
.job .list .liNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
}
@media (max-width: 1004px) {
  .job {
    padding: 0.9rem 0 1rem;
  }
  .job .pageTitle {
    margin-bottom: 0.45rem;
  }
  .job .selectGroup {
    display: block;
  }
  .job .selectGroup .box {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .job .selectGroup .select .caption {
    height: 0.92rem;
    line-height: 0.9rem;
    width: 100%;
    padding: 0 0.4rem 0 0.3rem;
    font-size: var(--fs14);
  }
  .job .selectGroup .select .caption::after {
    right: 0.3rem;
  }
  .job .selectGroup .select .xlist {
    max-height: 3.2rem;
  }
  .job .selectGroup .select .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.3rem;
  }
  .job .selectGroup .btnDiv {
    display: flex;
  }
  .job .selectGroup .btnDiv a {
    width: 1.8rem;
    font-size: var(--fs15);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .job .list li {
    margin-top: 0.3rem;
  }
  .job .list li .topDiv {
    padding: 0.45rem 0.3rem;
  }
  .job .list li .name {
    display: block;
    padding-right: 1rem;
  }
  .job .list li .name .dj {
    font-size: var(--fs17);
    line-height: 0.6rem;
    min-width: auto;
    padding-right: 0;
    padding-bottom: 0.1rem;
  }
  .job .list li .name .wenList dd {
    padding: 0 5px;
    line-height: 0.48rem;
  }
  .job .list li .name .wenList dd:first-child {
    padding: 0 5px 0 0;
  }
  .job .list li .wenzi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 100%;
  }
  .job .list li .ico {
    right: 0.3rem;
    top: 0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .job .list li .ico:before {
    margin-left: -7px;
    margin-top: -1px;
    width: 14px;
    height: 2px;
  }
  .job .list li .ico:after {
    margin-left: -1px;
    margin-top: -7px;
    width: 2px;
    height: 14px;
  }
  .job .list li .hideBox {
    padding: 0.15rem 0.3rem 0.6rem;
  }
  .job .list li .txt {
    font-size: var(--fs16);
    line-height: 0.54rem;
  }
  .job .list li .msg {
    font-size: var(--fs14);
    line-height: 0.56rem;
  }
  .job .list li .tips {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
}
.solution {
  padding: 0.6rem 0 1.4rem;
  background: #f5f7f6;
}
.solution .links {
  display: flex;
  margin-bottom: 0.65rem;
}
.solution .links a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  color: #1e2a21;
  line-height: 0.2rem;
  height: 0.35rem;
  margin-right: 0.5rem;
}
.solution .links a::after {
  content: '';
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #22a538;
}
.solution .links .on {
  color: #22a538;
}
.solution .links .on::after {
  display: block;
}
.solution .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #1e2a21;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.solution .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  margin-bottom: 0.5rem;
}
.solution .lunbo .box-container {
  position: relative;
}
.solution .lunbo .box-container .se {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-indent: 200%;
  z-index: 2;
  overflow: hidden;
}
.solution .lunbo .box-container .swiper-button-prev {
  left: 50%;
  margin-left: -8.8rem;
  background: #e9edea url(../img/nimg7_left.png) center no-repeat;
}
.solution .lunbo .box-container .swiper-button-prev:hover {
  background: #22a538 url(../img/nimg7_lefton.png) center no-repeat;
}
.solution .lunbo .box-container .swiper-button-next {
  right: 50%;
  margin-right: -8.8rem;
  background: #e9edea url(../img/nimg7_right.png) center no-repeat;
}
.solution .lunbo .box-container .swiper-button-next:hover {
  background: #22a538 url(../img/nimg7_righton.png) center no-repeat;
}
.solution .lunbo .year-swiper {
  overflow: hidden;
}
.solution .lunbo .year-swiper .swiper-slide .box {
  cursor: pointer;
  position: relative;
  border-radius: 0.16rem;
  display: block;
  transition: 0.3s all;
  background: #ebeef0;
  overflow: hidden;
  padding: 0.5rem;
  height: 3.9rem;
}
.solution .lunbo .year-swiper .swiper-slide .box .baozhe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.solution .lunbo .year-swiper .swiper-slide .box .imgDiv {
  position: absolute;
  opacity: 0;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: 1s;
  opacity: 1;
  width: 5rem;
  height: 5rem;
  inset: -0.5rem;
  clip-path: ellipse(40% 40% at 80% 80%);
  z-index: 1;
}
.solution .lunbo .year-swiper .swiper-slide .box .hala {
  position: relative;
  height: 100%;
  object-fit: cover;
  background: #f4f5f8;
}
.solution .lunbo .year-swiper .swiper-slide .box .hala img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide .box .toptop {
  position: relative;
  z-index: 2;
  padding-top: 0.3rem;
  min-height: 1.85rem;
  border-bottom: #333 solid 1px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide .box .toptop .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-weight: bold;
  font-family: 'Barlow-B';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide .box .toptop .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.1rem;
  line-height: 0.36rem;
  min-height: 0.72rem;
  overflow: hidden;
  font-size: var(--fs18);
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide .box .more {
  z-index: 2;
  margin-top: 0.45rem;
  display: inline-block;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.solution .lunbo .year-swiper .swiper-slide .box .more em {
  color: #333;
  position: relative;
  padding-right: 0.35rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide .box .more em::after {
  content: '';
  position: absolute;
  right: 0.1rem;
  top: 50%;
  margin-top: -6px;
  width: 15px;
  height: 13px;
  background: url(../img/nimg15_right2.png) right center no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .toptop {
  border-bottom: #fff solid 1px;
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .toptop .name {
  color: #fff;
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .toptop .msg {
  color: #fff;
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .imgDiv {
  clip-path: ellipse(100% 100% at 50% 50%);
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .more em {
  color: #fff;
}
.solution .lunbo .year-swiper .swiper-slide:hover .box .more em::after {
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
.solution .lunbo .year-swiper .on .box .toptop {
  border-bottom: #fff solid 1px;
}
.solution .lunbo .year-swiper .on .box .toptop .name {
  color: #fff;
}
.solution .lunbo .year-swiper .on .box .toptop .msg {
  color: #fff;
}
.solution .lunbo .year-swiper .on .box .imgDiv {
  clip-path: ellipse(100% 100% at 50% 50%);
}
.solution .lunbo .year-swiper .on .box .more em {
  color: #fff;
}
.solution .lunbo .year-swiper .on .box .more em::after {
  background: url(../img/nimg15_righton.png) right center no-repeat;
}
.solution .lunbo .detail-box {
  position: relative;
  margin-top: 0.6rem;
}
.solution .lunbo .detail-box .item {
  display: none;
  position: relative;
}
.solution .lunbo .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.solution .lunbo .detail-box .baozhe {
  border-radius: 0.16rem;
  background: #fff;
  padding: 0.35rem 0.6rem 0.4rem;
  margin-bottom: 0.4rem;
}
.solution .lunbo .detail-box .baozhe .zi {
  font-weight: bold;
  font-size: var(--fs30);
  line-height: 0.48rem;
  color: #0a0f0b;
}
.solution .lunbo .detail-box .baozhe .msg {
  margin-top: 5px;
  font-size: var(--fs18);
  color: #5b6f65;
  line-height: 0.36rem;
}
.solution .lunbo .detail-box .baozhe .imgDiv {
  text-align: center;
  margin-top: 0.6rem;
}
.solution .lunbo .detail-box .baozhe .imgDiv img {
  max-width: 100%;
}
.solution .pageTitle {
  text-align: center;
  padding: 0.7rem 0 0.5rem;
}
.partnerPic {
  position: relative;
}
.partnerPic .list {
  overflow: hidden;
}
.partnerPic .list li {
  width: calc((100% - 1rem) / 6);
  margin-right: 0.2rem;
}
.partnerPic .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.35rem;
  border-radius: 0.12rem;
  background: #fff;
  overflow: hidden;
}
.partnerPic .list li .imgDiv img {
  max-width: 1.8rem;
  max-height: 0.8rem;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.partnerPic .list li .imgDiv:hover img {
  transform: scale(1.1);
}
.partnerPic .se {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 2;
}
.partnerPic .prev {
  left: 50%;
  margin-left: -8.8rem;
  background: #e9edea url(../img/nimg7_left.png) center no-repeat;
}
.partnerPic .prev:hover {
  background: #22a538 url(../img/nimg7_lefton.png) center no-repeat;
}
.partnerPic .next {
  right: 50%;
  margin-right: -8.8rem;
  background: #e9edea url(../img/nimg7_right.png) center no-repeat;
}
.partnerPic .next:hover {
  background: #22a538 url(../img/nimg7_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .solution {
    padding: 0.75rem 0 1.1rem;
  }
  .solution .links {
    display: block;
    margin-bottom: 0.65rem;
  }
  .solution .links::after {
    content: '';
    display: block;
    clear: both;
  }
  .solution .links a {
    float: left;
    font-size: var(--fs14);
    color: #1e2a21;
    line-height: 0.42rem;
    height: 0.5rem;
    margin-right: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .solution .name {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .solution .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solution .lunbo .box-container {
    position: relative;
  }
  .solution .lunbo .box-container .se {
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .solution .lunbo .box-container .swiper-button-prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .solution .lunbo .box-container .swiper-button-next {
    right: 0.2rem;
    margin-right: 0;
  }
  .solution .lunbo .year-swiper .swiper-slide .box {
    border-radius: 0.2rem;
    padding: 0.3rem;
    height: 3.9rem;
  }
  .solution .lunbo .year-swiper .swiper-slide .box .imgDiv {
    border-radius: 0.2rem;
    inset: -0.3rem;
  }
  .solution .lunbo .year-swiper .swiper-slide .box .toptop {
    padding-top: 0.2rem;
    min-height: 1.6rem;
  }
  .solution .lunbo .year-swiper .swiper-slide .box .toptop .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .solution .lunbo .year-swiper .swiper-slide .box .more {
    display: none;
  }
  .solution .lunbo .year-swiper .on .box .imgDiv {
    clip-path: ellipse(100% 100% at 50% 50%);
  }
  .solution .lunbo .detail-box .baozhe {
    border-radius: 0.2rem;
    padding: 0.3rem 0.3rem 0.4rem;
  }
  .solution .lunbo .detail-box .baozhe .zi {
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .solution .lunbo .detail-box .baozhe .msg {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .partnerPic {
    padding-bottom: 1.4rem;
  }
  .partnerPic .list li {
    width: calc((100% - 0.2rem) / 2);
  }
  .partnerPic .list li .imgDiv {
    height: 1.5rem;
    border-radius: 0.16rem;
  }
  .partnerPic .se {
    top: auto;
    bottom: 0;
    margin-top: 0;
    width: 0.86rem;
    height: 0.86rem;
  }
  .partnerPic .prev {
    left: 50%;
    margin-left: -1rem;
  }
  .partnerPic .next {
    right: 50%;
    margin-right: -1rem;
  }
}
.aboutP1 {
  padding: 1.2rem 0;
  background: url(../img/aboutP1.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP1 .imgDiv {
  overflow: hidden;
  border-radius: 0.12rem;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP1 .pageTitle {
  text-align: center;
  margin: 0.7rem 0 0.4rem;
}
.aboutP1 .content {
  margin: 0 auto;
  text-align: center;
  width: 11.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
}
.aboutP1 .list {
  margin-top: 0.7rem;
}
.aboutP1 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP1 .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  min-height: 1.8rem;
  background: #e9edea;
  text-align: center;
  padding: 0.3rem 0;
  border-radius: 0.12rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP1 .list li .num {
  font-size: var(--fs60);
  color: #1e2a21;
  line-height: 0.8rem;
  font-family: 'Barlow-R';
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP1 .list li .zi {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP1 .list li:hover {
  background: #22a538;
}
.aboutP1 .list li:hover .num,
.aboutP1 .list li:hover .zi {
  color: #fff;
}
.aboutP2 {
  padding: 1.1rem 0 2rem;
  background: url(../img/aboutP2.jpg) center no-repeat;
  background-size: cover;
}
.aboutP2 .pageTitle {
  text-align: center;
  color: #fff;
}
.aboutP2 .zi {
  font-size: var(--fs24);
  text-align: center;
  color: #fff;
  line-height: 0.46rem;
  padding-bottom: 0.45rem;
}
.aboutP2 .list ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP2 .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  min-height: 4.5rem;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 0.9rem 0 0.6rem;
  border-radius: 0.2rem;
  backdrop-filter: blur(20px);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP2 .list li .ico img {
  width: 0.94rem;
}
.aboutP2 .list li .name {
  margin-top: 0.65rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
}
.aboutP2 .list li:hover {
  background: #22a538;
}
.aboutP3 {
  padding: 1.2rem 0;
}
.aboutP3 .mxfDiv {
  position: relative;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP3 .conDiv {
  width: 4.8rem;
}
.aboutP3 .conDiv .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.aboutP3 .conDiv .msg {
  margin: 0.4rem 0;
  font-size: var(--fs20);
  line-height: 0.36rem;
  color: #333;
  text-align: justify;
}
.aboutP3 .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.aboutP3 .rightDiv {
  width: 9.68rem;
}
.aboutP3 .lunbo .list {
  overflow: hidden;
  margin: -0.15rem;
  padding: 0.15rem;
}
.aboutP3 .lunbo .list .box {
  padding: 0.1rem 0;
}
.aboutP3 .lunbo .list .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.2rem;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0 0.12rem rgba(135, 135, 135, 0.14);
}
.aboutP3 .lunbo .list .imgDiv img {
  max-width: 1.5rem;
  max-height: 0.7rem;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP3 .lunbo .list .imgDiv:hover img {
  transform: scale(1.1);
}
.aboutP3 .arrowDiv {
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  z-index: 1;
}
.aboutP3 .arrowDiv .se {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: #cecece solid 2px;
}
.aboutP3 .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../img/nimg7_left2.png) center no-repeat;
}
.aboutP3 .arrowDiv .prev:hover {
  border: #22a538 solid 2px;
  background: #22a538 url(../img/nimg7_lefton.png) center no-repeat;
}
.aboutP3 .arrowDiv .next {
  background: url(../img/nimg7_right2.png) center no-repeat;
}
.aboutP3 .arrowDiv .next:hover {
  border: #22a538 solid 2px;
  background: #22a538 url(../img/nimg7_righton.png) center no-repeat;
}
.aboutP4 {
  padding-top: 1.1rem;
  height: 8.68rem;
  background: url(../img/aboutP4.jpg) center no-repeat;
  background-size: cover;
}
.aboutP4 .pageTitle {
  text-align: center;
  color: #000;
  margin-bottom: 0.45rem;
}
.aboutP4 .secondTab {
  display: flex;
  justify-content: center;
}
.aboutP4 .secondTab ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  padding: 3px;
  border-radius: 0.48rem;
}
.aboutP4 .secondTab li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  min-width: 2.45rem;
  padding: 0 0.5rem;
  line-height: 0.54rem;
  font-size: var(--fs18);
  color: #000;
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP4 .secondTab .on {
  background: #22a538;
  color: #fff;
}
.honorPic {
  display: none;
  margin-top: 0.8rem;
  position: relative;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .box {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.honorPic .mxfDiv {
  height: 3.1rem;
  position: relative;
}
.honorPic .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.honorPic .imgDiv img {
  max-width: 2.6rem;
  max-height: 3.1rem;
}
.honorPic .name {
  width: 100%;
  padding: 0 0.15rem;
  margin-top: 0.6rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
  text-align: center;
  color: #333;
}
.honorPic .arrowDiv .se {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 2;
}
.honorPic .arrowDiv .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: #e9edea url(../img/nimg7_left.png) center no-repeat;
}
.honorPic .arrowDiv .prev:hover {
  background: #22a538 url(../img/nimg7_lefton.png) center no-repeat;
}
.honorPic .arrowDiv .next {
  right: 50%;
  margin-right: -8.6rem;
  background: #e9edea url(../img/nimg7_right.png) center no-repeat;
}
.honorPic .arrowDiv .next:hover {
  background: #22a538 url(../img/nimg7_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 1rem 0;
  }
  .aboutP1 .imgDiv {
    border-radius: 0.2rem;
  }
  .aboutP1 .pageTitle {
    margin: 0.7rem 0 0.5rem;
  }
  .aboutP1 .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.2rem;
    min-height: 1.8rem;
    padding: 0.25rem 0;
    border-radius: 0.2rem;
    transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .aboutP1 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .aboutP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .aboutP1 .list li .num {
    font-size: var(--fs26);
    line-height: 0.64rem;
  }
  .aboutP1 .list li .zi {
    padding: 0 0.2rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .aboutP2 {
    padding: 0.9rem 0 1.2rem;
  }
  .aboutP2 .zi {
    font-size: var(--fs15);
    line-height: 0.56rem;
    padding-bottom: 0.6rem;
  }
  .aboutP2 .list li {
    width: calc((100% - 0.4rem) / 3);
    margin-right: 0.2rem;
    min-height: 2.5rem;
    padding: 0.5rem 0 0.6rem;
  }
  .aboutP2 .list li .ico img {
    width: 0.82rem;
  }
  .aboutP2 .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .aboutP3 {
    padding: 1rem 0;
  }
  .aboutP3 .mxfDiv {
    display: block;
  }
  .aboutP3 .conDiv {
    width: auto;
  }
  .aboutP3 .conDiv .zi {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .aboutP3 .conDiv .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .aboutP3 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .rightDiv {
    width: auto;
    margin-top: 0.6rem;
  }
  .aboutP3 .lunbo .list .imgDiv {
    border-radius: 0.2rem;
    box-shadow: 0 0 5px rgba(135, 135, 135, 0.14);
  }
  .aboutP3 .arrowDiv {
    display: none;
  }
  .aboutP4 {
    padding: 1rem 0;
    height: auto;
    background: #f5f6f9;
  }
  .aboutP4 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .aboutP4 .secondTab li {
    min-width: 2.45rem;
    padding: 0 0.3rem;
    line-height: 0.84rem;
    font-size: var(--fs15);
  }
  .honorPic {
    margin-top: 0.65rem;
  }
  .honorPic .imgList {
    padding-bottom: 1.2rem;
  }
  .honorPic .mxfDiv {
    min-width: 2.9rem;
    height: 2.85rem;
  }
  .honorPic .imgDiv img {
    max-width: 2.9rem;
    max-height: 2.85rem;
  }
  .honorPic .name {
    width: auto;
    margin-top: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .honorPic .arrowDiv {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
  .honorPic .arrowDiv .se {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    position: relative;
    top: auto;
    margin-top: 0;
  }
  .honorPic .arrowDiv .prev {
    left: 0;
    margin: 0 20px;
  }
  .honorPic .arrowDiv .next {
    right: 0;
    margin: 0 20px;
  }
}
.goods {
  padding: 0.9rem 0 1.3rem;
}
.goods .links ul {
  display: flex;
  flex-wrap: wrap;
}
.goods .links li {
  font-size: var(--fs24);
  margin-right: 1rem;
}
.goods .links li:last-child {
  margin-right: 0;
}
.goods .links li a {
  display: block;
  position: relative;
  padding-bottom: 0.2rem;
  color: #333;
}
.goods .links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #22a538;
}
.goods .links li .aNow {
  color: #22a538;
}
.goods .links li .aNow::after {
  width: 100%;
}
.goods .list {
  margin-top: 0.6rem;
}
.goods .list ul {
  display: flex;
  flex-wrap: wrap;
}
.goods .list li {
  width: calc((100% - 0.96rem) / 3);
  margin-right: 0.48rem;
  margin-top: 0.5rem;
}
.goods .list li:nth-child(3n) {
  margin-right: 0;
}
.goods .list li:nth-child(-n+3) {
  margin-top: 0;
}
.goods .list li a {
  display: block;
  border: #e3e6e8 solid 1px;
  border-radius: 20px;
  height: 6.2rem;
  overflow: hidden;
}
.goods .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 2.8rem;
  background: #fff;
  overflow: hidden;
}
.goods .list li a .imgDiv img {
  max-width: 2rem;
  max-height: 2rem;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.goods .list li a .conDiv {
  padding: 0 0.4rem;
}
.goods .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.35rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #333;
  font-weight: bold;
}
.goods .list li a .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.18rem;
  color: #999;
  font-size: var(--fs18);
  line-height: 0.28rem;
  height: 0.84rem;
}
.goods .list li a .more {
  margin-top: 0.7rem;
  font-size: var(--fs18);
  color: #666;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.goods .list li a .more em {
  text-decoration: underline;
  padding-right: 25px;
  background: url(../img/ico9.png) right center no-repeat;
}
.goods .list li a:hover {
  border: #22a538 solid 1px;
  background: #f9f9f9;
}
.goods .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.goods .list li a:hover .more {
  color: #22a538;
}
@media (max-width: 1004px) {
  .goods {
    padding: 0.8rem 0 1rem;
  }
  .goods .links li {
    font-size: var(--fs16);
    margin-right: 0.4rem;
    margin-bottom: 0.3rem;
  }
  .goods .links li a::after {
    height: 2px;
  }
  .goods .list {
    margin-top: 0.4rem;
  }
  .goods .list li {
    width: 100%;
    margin-right: 0;
  }
  .goods .list li:nth-child(1) {
    margin-top: 0;
  }
  .goods .list li:nth-child(2),
  .goods .list li:nth-child(3) {
    margin-top: 0.5rem;
  }
  .goods .list li a {
    border-radius: 0.24rem;
    height: auto;
  }
  .goods .list li a .imgDiv {
    height: 3.5rem;
  }
  .goods .list li a .imgDiv img {
    max-width: 3rem;
    max-height: 3rem;
  }
  .goods .list li a .conDiv {
    padding: 0 0.3rem 0.5rem;
  }
  .goods .list li a .name {
    margin-top: 0.3rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
    height: 1.12rem;
  }
  .goods .list li a .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .goods .list li a .more {
    display: none;
  }
}
.pageCon {
  padding: 0.9rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
