.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #B98F54;
  }
}
@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #B98F54;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6);
  }
}
.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*/
.indexP0 {
  position: relative;
  overflow: hidden;
}
.indexP0 .iconlist {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.4rem;
  background: rgba(0, 0, 0, 0.35);
}
.indexP0 .botLayer {
  width: 15.36rem;
  margin: 0 auto;
  overflow: hidden;
}
.indexP0 .botLayer ul {
  height: 1.4rem;
}
.indexP0 .botLayer li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.4rem;
}
.indexP0 .botLayer li img {
  max-width: 1.12rem;
  max-height: 0.9rem;
}
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 100vh;
}
.ind-banner .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.ind-banner .onebox .baozhe {
  overflow: hidden;
  width: 0;
}
.ind-banner .onebox .cn {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  margin-bottom: 0.15rem;
  font-weight: bold;
}
.ind-banner .onebox .wen {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  width: 5.82rem;
}
.ind-banner .onebox .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.92rem;
  height: 0.6rem;
  margin-top: 0.4rem;
  background: #175B45;
}
.ind-banner .onebox .more em {
  position: relative;
  z-index: 2;
}
.ind-banner .onebox .more i {
  position: relative;
  z-index: 2;
  margin-left: 0.1rem;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .cn,
.ind-banner .wen,
.ind-banner .more {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .baozhe {
  width: 100%;
}
.ind-banner .swiper-slide-active .cn,
.ind-banner .swiper-slide-active .wen,
.ind-banner .swiper-slide-active .more {
  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 {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  left: auto;
  margin-left: 0;
  bottom: auto;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  opacity: 1;
  background: none;
  border: #fff solid 1px;
  border-radius: 50%;
  margin: 0 0 26px 0!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet:last-child {
  margin: 0!important;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #B98F54;
  border: #B98F54 solid 1px;
}
.explode-circle {
  animation: explode 1s forwards;
}
.desplode-circle {
  animation: desplode 0.5s forwards;
}
.su_button_circle {
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .indexP0 .iconlist {
    height: 1.4rem;
  }
  .indexP0 .botLayer {
    width: 100%;
  }
  .indexP0 .botLayer li img {
    max-width: 1.6rem;
    max-height: 1.1rem;
  }
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs20);
  }
  .ind-banner .onebox .wen {
    font-size: var(--fs15);
    line-height: 0.52rem;
    width: 80%;
  }
  .ind-banner .onebox .more {
    display: none;
  }
  .ind-banner .swiper-pagination {
    right: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 0 0.3rem 0 !important;
  }
}
.indexP1 {
  padding: 1.6rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.indexP1 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 150%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP1 .leftDiv {
  width: 5.6rem;
}
.indexP1 .leftDiv .name {
  position: relative;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: 700;
  padding-bottom: 0.36rem;
}
.indexP1 .leftDiv .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP1 .leftDiv .msg {
  margin-top: 0.36rem;
  color: #666;
  font-size: var(--fs36);
  line-height: 0.48rem;
}
.indexP1 .rightDiv {
  width: 8.3rem;
}
.indexP1 .rightDiv .content {
  color: #848484;
  font-size: var(--fs16);
  line-height: 0.36rem;
  text-align: justify;
}
.indexP1 .rightDiv .more {
  margin-top: 0.9rem;
}
.indexP1 .rightDiv .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.92rem;
  height: 0.6rem;
  margin-top: 0.4rem;
  background: #175B45;
}
.indexP1 .rightDiv .more a em {
  position: relative;
  z-index: 2;
}
.indexP1 .rightDiv .more a i {
  position: relative;
  z-index: 2;
  margin-left: 0.1rem;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 {
  padding: 1.2rem 0 1.5rem;
}
.indexP2 .layerDiv .title {
  position: relative;
  padding-bottom: 0.26rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.indexP2 .layerDiv .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP2 .layerDiv .zi {
  font-size: var(--fs30);
  line-height: 0.42rem;
  font-weight: 300;
}
.indexP2 .mxfDiv {
  margin-top: 0.65rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP2 .leftDiv {
  width: 6.46rem;
}
.indexP2 .rightDiv {
  width: 8.45rem;
}
.indexP2 .videobox {
  border-radius: 0.15rem;
  width: 100%;
  height: 5.38rem;
  position: relative;
  overflow: hidden;
}
.indexP2 .videobox .imgDiv {
  position: relative;
  height: 5.38rem;
}
.indexP2 .videobox .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.indexP2 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .videobox video {
  max-width: 100%;
  max-height: 5.38rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.indexP2 .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.67rem;
  height: 0.67rem;
  margin-left: -0.34rem;
  margin-top: -0.34rem;
  border-radius: 50%;
  z-index: 1;
}
.indexP2 .videobox .playbox img {
  width: 100%;
}
.indexP2 .videobox.cur {
  background: #000;
}
.indexP2 .videobox.cur .imgDiv,
.indexP2 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.indexP2 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.whychoose {
  position: relative;
  padding-left: 1.3rem;
}
.whychoose .list {
  overflow: hidden;
}
.whychoose .list li .conDiv {
  width: 4rem;
}
.whychoose .list li .conDiv .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.whychoose .list li .conDiv .content {
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #333;
  text-align: justify;
}
.whychoose .list li .conDiv .ico {
  margin-top: 0.9rem;
  border-radius: 50%;
  width: 0.8rem;
  height: 0.8rem;
  background: #B98F54 url(../img/ico3.png) center no-repeat;
  background-size: 0.1rem;
}
.whychoose .swiper-pagination {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  margin-left: 0;
  bottom: auto;
  z-index: 2;
}
.whychoose .swiper-pagination-bullet {
  display: block;
  position: relative;
  width: 0.25rem;
  height: 0.25rem;
  opacity: 1;
  background: none;
  border: #B98F54 solid 1px;
  border-radius: 50%;
  margin: 0 0 0.7rem 0 !important;
  overflow: hidden;
}
.whychoose .swiper-pagination-bullet:last-child {
  margin: 0!important;
}
.whychoose .swiper-pagination-bullet-active {
  background: #B98F54;
}
.indexP3 {
  position: relative;
  overflow: hidden;
}
.indexP3 .title {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.2rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: 700;
  padding-bottom: 0.22rem;
  color: #fff;
  z-index: 2;
}
.indexP3 .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP3 .swiper-slide {
  position: relative;
}
.indexP3 .swiper-slide .pic {
  position: relative;
}
.indexP3 .swiper-slide .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.indexP3 .swiper-slide .pic img {
  width: 100%;
  height: 9.6rem;
  object-fit: cover;
}
.indexP3 .swiper-slide .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 2.7rem;
  z-index: 3;
}
.indexP3 .swiper-slide .tabContent2 {
  width: 4.9rem;
  animation: am_top 0.5s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.5s ease-out 0.1s backwards;
}
.indexP3 .swiper-slide .tabContent2 .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.24rem;
}
.indexP3 .swiper-slide .tabContent2 .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.indexP3 .swiper-slide .tabContent2 .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.22rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #fff;
}
.indexP3 .swiper-slide .tabContent2 .more {
  margin-top: 0.3rem;
  width: 1.9rem;
}
.indexP3 .swiper-slide .tabContent2 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.6rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs16);
  color: #fff;
}
.indexP3 .swiper-slide .tabContent2 .more a:hover {
  border: #175B45 solid 1px;
  background: #175B45;
}
.indexP3 .swiper-slide .tabContent2 .more a span {
  position: relative;
  z-index: 1;
}
.indexP3 .swiper-slide .tabContent2 .more a em {
  margin-left: 0.16rem;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
}
.indexP3 .swiper-slide .tab2 {
  margin-top: 1rem;
}
.indexP3 .swiper-slide .tab2 li {
  float: left;
  margin-right: 0.7rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.36rem;
  padding-bottom: 0.16rem;
  color: #fff;
  font-weight: 400;
}
.indexP3 .swiper-slide .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .swiper-slide .tab2 .liNow {
  font-weight: 700;
}
.indexP3 .swiper-slide .tab2 .liNow::after {
  width: 100%;
  left: 0;
}
.indexP3 .swiper-slide .name,
.indexP3 .swiper-slide .msg,
.indexP3 .swiper-slide .more,
.indexP3 .swiper-slide .tab2 {
  transform: translateY(1rem);
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.indexP3 .swiper-slide.swiper-slide-active .name,
.indexP3 .swiper-slide.swiper-slide-active .msg,
.indexP3 .swiper-slide.swiper-slide-active .more,
.indexP3 .swiper-slide.swiper-slide-active .tab2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.indexP3 .tab-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  z-index: 2;
}
.indexP3 .tab-box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  width: 25%;
  background: rgba(51, 51, 51, 0.3);
  text-align: center;
  line-height: 0.32rem;
  font-size: var(--fs24);
  color: #fff;
  height: 1.2rem;
  position: relative;
  z-index: 1;
}
.indexP3 .tab-box a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.indexP3 .tab-box a:last-child::after {
  display: none;
}
.indexP3 .tab-box a.on {
  background: #175B45;
}
.indexP4 {
  padding: 1.2rem 0 1rem;
}
.indexP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  position: relative;
  padding-bottom: 0.25rem;
  font-weight: 600;
}
.indexP4 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.17rem;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP4 .zi {
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.44rem;
  font-weight: 300;
  margin: 0.22rem 0 0.52rem;
}
.indexP4 .list::after {
  content: '';
  display: block;
  clear: both;
}
.indexP4 .list ul {
  margin-right: -0.3rem;
}
.indexP4 .list li {
  float: left;
  width: 16.66%;
}
.indexP4 .list li .box {
  position: relative;
  margin-right: 0.3rem;
  padding-bottom: 0.48rem;
}
.indexP4 .list li .box .gou {
  position: absolute;
  right: -0.25rem;
  top: 0.34rem;
  width: 0.19rem;
  height: 0.17rem;
  background: url(../img/nimg19_1.png) no-repeat;
  background-size: 0.19rem;
}
.indexP4 .list li .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  padding: 0 0.15rem;
  position: relative;
  height: 0.85rem;
  border-radius: 0.1rem;
  overflow: hidden;
  border: #B98F54 solid 2px;
}
.indexP4 .list li .baozhe .num {
  position: absolute;
  right: 0.15rem;
  bottom: 0;
  opacity: 0.5;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: 'Mont-B';
  background: linear-gradient(180deg, #B98F54 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexP4 .list li .baozhe .name {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indexP4 .list li:nth-child(6) .box .gou,
.indexP4 .list li:nth-child(18) .box .gou {
  bottom: 0.14rem;
  right: auto;
  top: auto;
  margin-top: 0;
  left: 50%;
  margin-left: -0.08rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../img/nimg17_1.png) no-repeat;
  background-size: 0.17rem;
}
.indexP4 .list li:nth-child(7),
.indexP4 .list li:nth-child(8),
.indexP4 .list li:nth-child(9),
.indexP4 .list li:nth-child(10),
.indexP4 .list li:nth-child(11),
.indexP4 .list li:nth-child(12),
.indexP4 .list li:nth-child(19),
.indexP4 .list li:nth-child(20),
.indexP4 .list li:nth-child(21),
.indexP4 .list li:nth-child(22),
.indexP4 .list li:nth-child(23),
.indexP4 .list li:nth-child(24) {
  float: right;
}
.indexP4 .list li:nth-child(7) .box .gou,
.indexP4 .list li:nth-child(8) .box .gou,
.indexP4 .list li:nth-child(9) .box .gou,
.indexP4 .list li:nth-child(10) .box .gou,
.indexP4 .list li:nth-child(11) .box .gou,
.indexP4 .list li:nth-child(12) .box .gou,
.indexP4 .list li:nth-child(19) .box .gou,
.indexP4 .list li:nth-child(20) .box .gou,
.indexP4 .list li:nth-child(21) .box .gou,
.indexP4 .list li:nth-child(22) .box .gou,
.indexP4 .list li:nth-child(23) .box .gou,
.indexP4 .list li:nth-child(24) .box .gou {
  right: auto;
  left: -0.25rem;
  background: url(../img/nimg19_2.png) no-repeat;
  background-size: 0.19rem;
}
.indexP4 .list li:nth-child(12) .box .gou {
  bottom: 0.14rem;
  right: auto;
  top: auto;
  margin-top: 0;
  left: 50%;
  margin-left: -0.08rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../img/nimg17_1.png) no-repeat;
  background-size: 0.17rem;
}
.indexP4 .list li:nth-child(24) .box .gou {
  display: none;
}
.indexP5 {
  padding: 1.2rem 0 1.3rem;
  position: relative;
  overflow: hidden;
}
.indexP5 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.5;
}
.indexP5 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  position: relative;
  padding-bottom: 0.25rem;
  font-weight: 600;
}
.indexP5 .title::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.17rem;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP5 .zi {
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.44rem;
  font-weight: 300;
  margin: 0.22rem 0 0.52rem;
}
.indexP5 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP5 .list li {
  width: calc((100% - 0.9rem) / 3);
  position: relative;
  margin-right: 0.45rem;
  margin-top: 0.4rem;
}
.indexP5 .list li:nth-child(3n) {
  margin-right: 0;
}
.indexP5 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.indexP5 .list li a {
  display: block;
  background: #fff;
  border-radius: 0.15rem;
  padding: 0.45rem 0.3rem 0.2rem;
  min-height: 3rem;
}
.indexP5 .list li a .num {
  font-family: 'Mont-B';
  font-size: var(--fs72);
  line-height: 0.86rem;
  opacity: 0.3;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexP5 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  max-height: 0.96rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP5 .list li a:hover {
  background: url(../img/nimg482Bg.png) center no-repeat;
  background-size: cover;
}
.indexP5 .list li a:hover .num {
  background: linear-gradient(180deg, #fff, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexP5 .list li a:hover .name {
  color: #fff;
}
.indexP6 {
  padding: 1.2rem 0 1.5rem;
  overflow: hidden;
}
.indexP6 .toptop {
  position: relative;
}
.indexP6 .toptop .title {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  margin: 0;
  font-weight: 700;
  color: #333;
}
.indexP6 .toptop .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP6 .toptop .msg {
  margin-top: 0.22rem;
  font-size: var(--fs30);
  line-height: 0.44rem;
  font-weight: 300;
}
.indexP6 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0.35rem;
}
.indexP6 .arrowDiv .se {
  position: relative;
  overflow: hidden;
  float: left;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #175B45;
}
.indexP6 .arrowDiv .prev {
  margin-right: 0.3rem;
}
.indexP6 .arrowDiv .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.1rem;
  height: 0.18rem;
  margin-left: -0.05rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
  z-index: 1;
}
.indexP6 .arrowDiv .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.1rem;
  height: 0.18rem;
  margin-left: -0.05rem;
  margin-top: -0.09rem;
  background: url(../img/ico3.png) no-repeat;
  background-size: 0.1rem;
  z-index: 1;
}
.indexTeam {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}
.indexTeam .swiper-container {
  width: 20rem;
  overflow: hidden;
  position: static;
}
.indexTeam .swiper-slide {
  width: auto;
}
.indexTeam .swiper-slide .mxfDiv {
  width: 9rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.15rem;
}
.indexTeam .swiper-slide .imgDiv {
  height: 5.4rem;
}
.indexTeam .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexTeam .swiper-slide .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 1.2rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 1;
}
.indexTeam .swiper-slide .conDiv .name {
  font-weight: 500;
  font-size: var(--fs36);
  line-height: 0.36rem;
}
.indexTeam .swiper-slide .conDiv .zi {
  margin-top: 0.18rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 400;
}
.indexTeam .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP7 {
  height: 7.6rem;
  position: relative;
  overflow: hidden;
}
.indexP7 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP7 .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  height: 100%;
  color: #fff;
  z-index: 1;
}
.indexP7 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.indexP7 .conDiv .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 400;
}
.indexP7 .conDiv .more {
  margin-top: 0.72rem;
}
.indexP7 .conDiv .more 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.9rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs16);
  color: #fff;
}
.indexP7 .conDiv .more a:hover {
  border: #175B45 solid 1px;
  background: #175B45;
}
.indexP7 .conDiv .more a span {
  position: relative;
  z-index: 1;
}
.indexP7 .conDiv .more a em {
  margin-left: 0.16rem;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
}
.indexP8 {
  padding: 1rem 0 1.3rem;
  background: #f2f2f2;
  overflow: hidden;
}
.indexP8 .toptop {
  position: relative;
  margin-bottom: 0.48rem;
}
.indexP8 .toptop .title {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: var(--fs48);
  line-height: 0.6rem;
  margin: 0;
  font-weight: 700;
  color: #333;
}
.indexP8 .toptop .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.35rem;
  height: 0.04rem;
  background: #B98F54;
}
.indexP8 .toptop .msg {
  margin-top: 0.22rem;
  font-size: var(--fs30);
  line-height: 0.44rem;
  font-weight: 300;
}
.indexP8 .links {
  position: absolute;
  right: 0;
  top: 0.3rem;
}
.indexP8 .links li {
  float: left;
  font-size: var(--fs16);
}
.indexP8 .links li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-left: 0.3rem;
  cursor: pointer;
  width: 1.8rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  border: #999 solid 1px;
  color: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP8 .links .on .box {
  border: #B98F54 solid 1px;
  background: #B98F54;
  color: #fff;
}
.indNews {
  display: none;
  position: relative;
  padding-bottom: 1.44rem;
}
.indNews .swiper-slide {
  width: auto;
}
.indNews .swiper-slide .box {
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  width: 4.52rem;
  height: 5.76rem;
  position: relative;
  transition: all 0.4s ease;
}
.indNews .swiper-slide .box .conDiv {
  height: 2.88rem;
  padding: 0.36rem 0.48rem 0;
}
.indNews .swiper-slide .box .time {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #999;
  font-family: 'Poppins-R';
}
.indNews .swiper-slide .box .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.42rem;
  color: #333;
  height: 1.26rem;
  font-weight: 400;
}
.indNews .swiper-slide .box .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 0.1rem;
  max-height: 1.2rem;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.3rem;
  font-weight: 400;
  transition: all 0.4s ease;
}
.indNews .swiper-slide .box .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.88rem;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0.5;
}
.indNews .swiper-slide .box .imgDiv img {
  width: 100%;
  height: 2.88rem;
  max-height: 2.88rem;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}
.indNews .swiper-slide .box:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.indNews .swiper-slide .box:hover .time {
  color: #B98F54;
}
.indNews .swiper-slide .box:hover .name {
  color: #175B45;
}
.indNews .swiper-slide .box:hover .msg {
  max-height: 0.6rem;
}
.indNews .swiper-slide .box:hover .imgDiv {
  height: 2.88rem;
  opacity: 1;
}
.indNews .pjDiv {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  width: 15.36rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indNews .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indNews .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indNews .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 4px;
  background-color: #e6e6e6;
}
.indNews .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #B98F54;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.indNews .num1,
.indNews .num2 {
  font-family: 'Poppins-R';
  font-size: var(--fs18);
  color: #848484;
  width: 32px;
  text-align: center;
}
.indNews .num1 {
  font-size: var(--fs24);
  padding-right: 0.08rem;
  color: #000;
}
.indNews .num2 {
  padding-left: 0.08rem;
}
.indNews .arrowDiv {
  margin-right: 0.2rem;
}
.indNews .arrowDiv .se {
  position: relative;
  float: left;
  margin-right: 0.26rem;
  display: block;
  overflow: hidden;
  background: #fff;
  width: 0.8rem;
  height: 0.8rem;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.indNews .arrowDiv .se:hover {
  background: #B98F54;
}
.indNews .arrowDiv .prev::before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_lefton.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .prev:hover::before {
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .next::before {
  content: '';
  z-index: 2;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -0.05rem;
  width: 0.1rem;
  height: 0.18rem;
  margin-top: -0.09rem;
  background: url(../img/ico3on.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .arrowDiv .next:hover::before {
  background: url(../img/ico3.png) no-repeat;
  background-size: 0.1rem;
}
.indNews .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 1.9rem;
  height: 0.6rem;
  background: #175B45;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.indNews .moreBtn a em {
  margin-left: 0.15rem;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
  background-size: 12px;
}
@media (max-width: 1600px) {
  .indexP3 .title {
    margin-left: -8rem;
  }
  .indexP3 .swiper-slide .info {
    margin-left: -8rem;
  }
  .indexP7 .conDiv {
    margin-left: -8rem;
  }
  .indNews .pjDiv {
    margin-left: -8rem;
    width: 16rem;
  }
}
@media (max-width: 1004px) {
  .indexP1 {
    padding: 0.8rem 0 1.2rem;
  }
  .indexP1 .parallax-bg {
    position: absolute;
    top: -60%;
    left: 0;
    width: 100%;
    height: 150%;
    /* 比容器高，便于移动 */
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .indexP1 .leftDiv {
    float: none;
    width: auto;
    padding-bottom: 0.5rem;
  }
  .indexP1 .leftDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
    padding-bottom: 0.3rem;
  }
  .indexP1 .leftDiv .name::after {
    width: 0.52rem;
  }
  .indexP1 .leftDiv .msg {
    margin-top: 0.4rem;
    font-size: 0.36rem;
    line-height: 0.48rem;
  }
  .indexP1 .rightDiv {
    float: none;
    width: auto;
  }
  .indexP1 .rightDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .rightDiv .more a {
    font-size: var(--fs14);
    width: 2.62rem;
    height: 0.86rem;
  }
  .indexP2 {
    padding: 0.9rem 0 1rem;
  }
  .indexP2 .layerDiv {
    text-align: center;
  }
  .indexP2 .layerDiv .title {
    position: relative;
    padding-bottom: 0.3rem;
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP2 .layerDiv .title::after {
    left: 50%;
    margin-left: -0.26rem;
    width: 0.52rem;
  }
  .indexP2 .layerDiv .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .indexP2 .mxfDiv {
    display: block;
    margin-top: 0.6rem;
  }
  .indexP2 .leftDiv {
    width: auto;
  }
  .indexP2 .rightDiv {
    width: 100%;
    margin-top: 0.6rem;
  }
  .indexP2 .videobox {
    border-radius: 0.2rem;
    height: 4.2rem;
  }
  .indexP2 .videobox .imgDiv {
    height: 4.2rem;
  }
  .indexP2 .videobox video {
    max-height: 4.2rem;
  }
  .indexP2 .videobox .playbox {
    width: 1rem;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .whychoose {
    padding-left: 0.8rem;
  }
  .whychoose .list li .conDiv {
    width: auto;
    padding-right: 0.8rem;
    padding-bottom: 0;
  }
  .whychoose .list li .conDiv .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    margin-bottom: 0.3rem;
  }
  .whychoose .list li .conDiv .content {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .whychoose .list li .conDiv .ico {
    display: none;
  }
  .whychoose .swiper-pagination {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    margin-left: 0;
    bottom: auto;
    z-index: 2;
  }
  .whychoose .swiper-pagination-bullet {
    margin: 0 0 0.35rem 0 !important;
  }
  .indexP3 .title {
    left: var(--offset);
    margin-left: 0;
    top: 7%;
    font-size: var(--fs22);
    line-height: 0.64rem;
    padding-bottom: 0.25rem;
  }
  .indexP3 .title::after {
    width: 0.52rem;
  }
  .indexP3 .swiper-slide .pic img {
    height: 100vh;
  }
  .indexP3 .swiper-slide .info {
    left: 0.3rem;
    margin-left: 0;
    top: 2.5rem;
  }
  .indexP3 .swiper-slide .tabContent2 {
    width: 75%;
  }
  .indexP3 .swiper-slide .tabContent2 .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .indexP3 .swiper-slide .tabContent2 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP3 .swiper-slide .tabContent2 .more {
    margin-top: 0.3rem;
    width: 2.6rem;
  }
  .indexP3 .swiper-slide .tabContent2 .more a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP3 .swiper-slide .tab2 {
    margin-top: 1rem;
  }
  .indexP3 .swiper-slide .tab2 li {
    margin-right: 0.3rem;
    line-height: 0.4rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding-bottom: 0.2rem;
  }
  .indexP3 .swiper-slide .tab2 li::after {
    height: 2px;
  }
  .indexP3 .tab-box {
    height: 1.4rem;
  }
  .indexP3 .tab-box a {
    line-height: 0.4rem;
    font-size: var(--fs15);
    height: 1.4rem;
  }
  .indexP4 {
    padding: 0.8rem 0 0.9rem;
  }
  .indexP4 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP4 .title::after {
    margin-left: -0.26rem;
    width: 0.52rem;
  }
  .indexP4 .zi {
    font-size: var(--fs15);
    line-height: 0.47rem;
    margin: 0.28rem 0 0.52rem;
  }
  .indexP4 .list ul {
    margin-right: -0.3rem;
  }
  .indexP4 .list li {
    width: 50%;
  }
  .indexP4 .list li .box {
    margin-right: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .indexP4 .list li .box .gou {
    display: none;
  }
  .indexP4 .list li .baozhe {
    height: 1.65rem;
    border-radius: 0.16rem;
  }
  .indexP4 .list li .baozhe .num {
    font-size: var(--fs32);
    line-height: 0.56rem;
  }
  .indexP4 .list li .baozhe .name {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP4 .list li:nth-child(7),
  .indexP4 .list li:nth-child(8),
  .indexP4 .list li:nth-child(9),
  .indexP4 .list li:nth-child(10),
  .indexP4 .list li:nth-child(11),
  .indexP4 .list li:nth-child(12),
  .indexP4 .list li:nth-child(19),
  .indexP4 .list li:nth-child(20),
  .indexP4 .list li:nth-child(21),
  .indexP4 .list li:nth-child(22),
  .indexP4 .list li:nth-child(23),
  .indexP4 .list li:nth-child(24) {
    float: left;
  }
  .indexP4 .list li:nth-child(7) .baozhe::after,
  .indexP4 .list li:nth-child(8) .baozhe::after,
  .indexP4 .list li:nth-child(9) .baozhe::after,
  .indexP4 .list li:nth-child(10) .baozhe::after,
  .indexP4 .list li:nth-child(11) .baozhe::after,
  .indexP4 .list li:nth-child(12) .baozhe::after,
  .indexP4 .list li:nth-child(19) .baozhe::after,
  .indexP4 .list li:nth-child(20) .baozhe::after,
  .indexP4 .list li:nth-child(21) .baozhe::after,
  .indexP4 .list li:nth-child(22) .baozhe::after,
  .indexP4 .list li:nth-child(23) .baozhe::after,
  .indexP4 .list li:nth-child(24) .baozhe::after {
    background: linear-gradient(90deg, #B98F54 0%, rgba(185, 143, 84, 0.3) 100%);
  }
  .indexP5 {
    padding: 0.8rem 0 0.9rem;
  }
  .indexP5 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP5 .title::after {
    margin-left: -0.26rem;
    width: 0.52rem;
  }
  .indexP5 .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin: 0.28rem 0 0.52rem;
  }
  .indexP5 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .indexP5 .list li {
    width: calc((100% - 0.3rem) / 2);
    margin-right: 0.3rem;
    margin-top: 0.4rem;
  }
  .indexP5 .list li:nth-child(3n) {
    margin-right: 0.3rem;
  }
  .indexP5 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .indexP5 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .indexP5 .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .indexP5 .list li a {
    border-radius: 0.2rem;
    padding: 0.3rem 0.3rem 0.2rem;
  }
  .indexP5 .list li a .num {
    font-size: var(--fs26);
    line-height: 0.64rem;
  }
  .indexP5 .list li a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .indexP6 {
    padding: 0.8rem 0 1rem;
  }
  .indexP6 .toptop .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP6 .toptop .title::after {
    width: 0.52rem;
  }
  .indexP6 .toptop .msg {
    margin-top: 0.28rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP6 .arrowDiv {
    top: 0.15rem;
  }
  .indexP6 .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .indexP6 .arrowDiv .prev {
    margin-right: 0.2rem;
  }
  .indexTeam {
    margin-top: 0.65rem;
  }
  .indexTeam .swiper-container {
    width: 100%;
  }
  .indexTeam .swiper-slide {
    width: auto;
  }
  .indexTeam .swiper-slide .mxfDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .indexTeam .swiper-slide .imgDiv {
    height: 3.8rem;
  }
  .indexTeam .swiper-slide .conDiv {
    left: 0.3rem;
  }
  .indexTeam .swiper-slide .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .indexTeam .swiper-slide .conDiv .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP7 {
    height: 6.4rem;
  }
  .indexP7 .conDiv {
    left: 0.3rem;
    margin-left: 0;
  }
  .indexP7 .conDiv .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP7 .conDiv .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP7 .conDiv .more {
    margin-top: 0.5rem;
  }
  .indexP7 .conDiv .more a {
    width: 2.6rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP8 {
    padding: 0.9rem 0 1rem;
  }
  .indexP8 .toptop {
    position: relative;
    margin-bottom: 0.6rem;
  }
  .indexP8 .toptop .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .indexP8 .toptop .title::after {
    width: 0.52rem;
  }
  .indexP8 .toptop .msg {
    margin-top: 0.28rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP8 .links {
    top: 0.1rem;
  }
  .indexP8 .links li {
    font-size: var(--fs14);
  }
  .indexP8 .links li .box {
    margin-left: 0.2rem;
    width: 1.86rem;
    height: 0.72rem;
  }
  .indNews {
    padding-bottom: 1.35rem;
  }
  .indNews .swiper-slide .box {
    border-radius: 0.24rem;
    width: 100%;
    height: 6.08rem;
  }
  .indNews .swiper-slide .box .conDiv {
    padding: 0.42rem 0.3rem 0;
  }
  .indNews .swiper-slide .box .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indNews .swiper-slide .box .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.56rem;
  }
  .indNews .swiper-slide .box .msg {
    display: none;
  }
  .indNews .swiper-slide .box .imgDiv {
    height: 3.2rem;
  }
  .indNews .swiper-slide .box .imgDiv img {
    height: 3.2rem;
    max-height: 3.2rem;
  }
  .indNews .swiper-slide .box:hover .imgDiv {
    height: 3.2rem;
  }
  .indNews .pjDiv {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .indNews .swiper-pagination {
    display: none;
  }
  .indNews .num1,
  .indNews .num2 {
    display: none;
  }
  .indNews .arrowDiv {
    margin-right: 0;
  }
  .indNews .arrowDiv .se {
    margin-right: 0.2rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .indNews .moreBtn a {
    width: 2.6rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
}
.videoModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100vh;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #B98F54 url(../img/close.png) center no-repeat;
  background-size: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
@media (max-width: 1004px) {
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
}
.team {
  padding: 1.2rem 0 1.3rem;
  background: #f2f2f2;
}
.team .list {
  padding-top: 0.6rem;
}
.team .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.team .list li {
  position: relative;
  width: calc((100% - 0.45rem) / 2);
  margin-right: 0.45rem;
  margin-top: 0.4rem;
  overflow: hidden;
}
.team .list li:nth-child(-n+2) {
  margin-top: 0;
}
.team .list li:nth-child(2n) {
  margin-right: 0;
}
.team .list li a {
  display: block;
  position: relative;
  border-radius: 0.15rem;
  height: 4.47rem;
  overflow: hidden;
}
.team .list li a .imgDiv {
  height: 100%;
}
.team .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.team .list li a .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 1rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 1;
}
.team .list li a .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.36rem;
  font-weight: 600;
  transition: All 0.5s ease;
}
.team .list li a .conDiv .zi {
  margin-top: 0.18rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 400;
}
.team .list li a:hover .imgDiv img {
  transform: scale(1.05);
}
.team .list li a:hover .name {
  color: #175B45;
}
@media (max-width: 1004px) {
  .team {
    padding: 0.9rem 0 1rem;
  }
  .team .list li {
    width: 100%;
    margin-right: 0;
  }
  .team .list li:nth-child(-n+1) {
    margin-top: 0;
  }
  .team .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .team .list li:nth-child(2n) {
    margin-right: 0;
  }
  .team .list li a {
    border-radius: 0.2rem;
    height: 100%;
  }
  .team .list li a .imgDiv {
    height: auto;
  }
  .team .list li a .imgDiv img {
    height: auto;
  }
  .team .list li a .conDiv {
    left: 0.3rem;
  }
  .team .list li a .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .team .list li a .conDiv .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.teamshow {
  padding-top: 1.2rem;
  min-height: 7rem;
  background: #f9f7f5 url(../img/teamshow.jpg) center bottom no-repeat;
  background-size: 100%;
  position: relative;
}
.teamshow .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.teamshow .leftDiv {
  width: 50%;
  float: left;
  padding-bottom: 1.2rem;
}
.teamshow .name {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: 700;
  margin: 0;
}
.teamshow .zi {
  font-size: var(--fs20);
  line-height: 0.6rem;
}
.teamshow .list {
  padding-top: 0.25rem;
  width: 7.68rem;
}
.teamshow .list li {
  margin-bottom: 0.3rem;
}
.teamshow .list li:last-child {
  margin-bottom: 0;
}
.teamshow .list li .msg {
  font-size: var(--fs32);
  line-height: 0.6rem;
  color: #333;
}
.teamshow .list li .content {
  margin-top: 7px;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  font-family: 'Poppins-R';
}
.teamshow .imgDiv {
  float: right;
  position: sticky;
  top: 0.9rem;
}
.teamshow .imgDiv img {
  width: 6.6rem;
}
.teamshow .pageDown {
  margin-top: 0.6rem;
}
.teamshow .pageDown::after {
  content: '';
  display: block;
  clear: both;
}
.teamshow .pageDown li {
  float: left;
  margin-right: 0.2rem;
}
.teamshow .pageDown li .prev,
.teamshow .pageDown li .next {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.92rem;
  height: 0.62rem;
  font-size: var(--fs16);
  border: #175B45 solid 1px;
  border-radius: 0.48rem;
  color: #175B45;
}
.teamshow .pageDown li .prev:hover,
.teamshow .pageDown li .next:hover {
  width: 2.4rem;
  background: #175B45;
  color: #fff;
}
.teamshow .pageDown li .prev em {
  width: 12px;
  height: 11px;
  margin-right: 0.2rem;
  background: url(../img/prev.png) no-repeat;
  transition: All 0.5s ease;
}
.teamshow .pageDown li .prev:hover em {
  background: url(../img/prevon.png) no-repeat;
}
.teamshow .pageDown li .next em {
  width: 12px;
  height: 11px;
  margin-left: 0.2rem;
  background: url(../img/next.png) no-repeat;
  transition: All 0.5s ease;
}
.teamshow .pageDown li .next:hover em {
  background: url(../img/nexton.png) no-repeat;
}
.teamshow .pageDown li .back {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.92rem;
  height: 0.62rem;
  border: #175B45 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #175B45;
}
.teamshow .pageDown li .back:hover {
  width: 1.92rem;
  background: #175B45;
  color: #fff;
}
@media (max-width: 1004px) {
  .teamshow {
    padding-top: 0.9rem;
  }
  .teamshow .leftDiv {
    width: auto;
    padding-bottom: 1rem;
  }
  .teamshow .name {
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .teamshow .zi {
    font-size: var(--fs15);
    line-height: 0.64rem;
  }
  .teamshow .list {
    padding-top: 0.25rem;
    width: auto;
  }
  .teamshow .list li .msg {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .teamshow .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .teamshow .imgDiv {
    position: relative;
    top: 0;
    right: auto;
    text-align: center;
    margin-bottom: 0.6rem;
  }
  .teamshow .imgDiv img {
    width: 70%;
  }
  .teamshow .pageDown ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .teamshow .pageDown li {
    width: 32%;
    margin-right: 0;
  }
  .teamshow .pageDown li .prev,
  .teamshow .pageDown li .next {
    font-size: var(--fs14);
    width: 100%;
    height: 0.86rem;
  }
  .teamshow .pageDown li .prev:hover,
  .teamshow .pageDown li .next:hover {
    width: 100%;
  }
  .teamshow .pageDown li .prev em {
    display: none;
  }
  .teamshow .pageDown li .next em {
    display: none;
  }
  .teamshow .pageDown li .back {
    width: 100%;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .teamshow .pageDown li .back:hover {
    width: 100%;
  }
}
.works {
  padding: 1.1rem 0 1.3rem;
  background: #f2f2f2;
}
.works .pageTitle {
  text-align: left;
}
.works .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.works .list {
  padding-top: 0.6rem;
}
.works .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.works .list li {
  position: relative;
  width: calc((100% - 1.04rem) / 3);
  margin-right: 0.52rem;
  margin-top: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.15rem;
}
.works .list li:nth-child(-n+3) {
  margin-top: 0;
}
.works .list li:nth-child(3n) {
  margin-right: 0;
}
.works .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: url(../img/nimg478Bg.jpg) center no-repeat;
  background-size: cover;
  height: 3.26rem;
}
.works .list li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
  transition: All 1s ease;
}
.works .list li .conDiv {
  background: #fff;
  height: 3.24rem;
  padding: 0.5rem 0.4rem 0.3rem;
}
.works .list li .conDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #1E293B;
  font-size: var(--fs30);
  line-height: 0.36rem;
  height: 0.72rem;
  font-weight: 500;
}
.works .list li .conDiv .brief {
  margin-top: 0.3rem;
}
.works .list li .conDiv .brief dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0.42rem;
  position: relative;
  font-size: var(--fs16);
  line-height: 0.26rem;
  margin-bottom: 0.17rem;
  font-family: 'Poppins-R';
}
.works .list li .conDiv .brief dd:nth-child(3) {
  display: none;
}
.works .list li .conDiv .brief dd img {
  position: absolute;
  left: 0;
  top: 1px;
  width: 0.24rem;
}
.works .list li .conDiv .more {
  margin-top: 0.25rem;
  width: 0.5rem;
  height: 0.3rem;
  border-radius: 0.48rem;
  border: #B98F54 solid 1px;
  background: url(../img/ico4.png) center no-repeat;
  transition: All 0.5s ease;
}
.works .list li .conDiv .content,
.works .list li .conDiv .catalog {
  display: none;
}
.works .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.works .list li:hover .more {
  border: #175B45 solid 1px;
  background: #175B45 url(../img/ico4on.png) center no-repeat;
}
.cardModal-box {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 99;
  background: rgba(80, 80, 80, 0.6);
  display: none;
}
.cardModal-box .close {
  display: block;
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  width: 0.49rem;
  height: 0.49rem;
  z-index: 5;
}
.cardModal-box .close img {
  max-width: 100%;
}
.card-box {
  width: 100%;
  height: 100vh;
  position: relative;
}
.card-box .baozhe {
  position: relative;
  width: 15.36rem;
  height: calc(100vh - 1rem);
  margin: 1rem auto 0;
  overflow: hidden;
  border-radius: 0.15rem;
  background: #fff;
}
.card-box .mxfDiv {
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 0.8rem 0.7rem;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow-y: auto;
}
.card-box .mxfDiv::-webkit-scrollbar {
  width: 3px;
}
.card-box .mxfDiv::-webkit-scrollbar-track {
  background-color: #eee;
}
.card-box .mxfDiv::-webkit-scrollbar-thumb {
  background-color: #B98F54;
}
.card-box .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.card-box .toptop .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 6rem;
  height: 4.66rem;
}
.card-box .toptop .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.card-box .toptop .conDiv {
  width: 6.4rem;
}
.card-box .toptop .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #175B45;
  font-weight: bold;
}
.card-box .toptop .conDiv .content {
  margin-top: 0.28rem;
  font-size: var(--fs20);
  line-height: 0.42rem;
  font-weight: 400;
}
.card-box .brief {
  padding: 0.65rem 0;
  border-bottom: #d9d9d9 solid 2px;
}
.card-box .brief dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 0.42rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.3rem;
  margin-bottom: 0.3rem;
  font-family: 'Poppins-R';
}
.card-box .brief dd:last-child {
  margin-bottom: 0;
}
.card-box .brief dd img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.12rem;
  width: 0.24rem;
}
.card-box .zi {
  margin-top: 0.5rem;
  font-size: var(--fs32);
  line-height: 0.42rem;
  color: #333;
  font-weight: 500;
}
.card-box .catalog {
  margin-top: 0.28rem;
  font-size: var(--fs20);
  line-height: 0.42rem;
}
.card-box .catalog b {
  display: block;
}
@media (max-width: 1004px) {
  .works {
    padding: 0.9rem 0 1rem;
  }
  .works .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.4rem;
    border-radius: 0.2rem;
  }
  .works .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .works .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .works .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .works .list li:nth-child(2n) {
    margin-right: 0;
  }
  .works .list li .imgDiv {
    height: 2.4rem;
  }
  .works .list li .conDiv {
    height: 3.3rem;
    padding: 0.4rem 0.3rem 0.24rem;
  }
  .works .list li .conDiv .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .works .list li .conDiv .brief {
    margin-top: 0.2rem;
  }
  .works .list li .conDiv .brief dd {
    padding-left: 0.42rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
    margin-bottom: 0.12rem;
  }
  .works .list li .conDiv .brief dd img {
    width: 0.3rem;
  }
  .works .list li .conDiv .more {
    margin-top: 0.25rem;
    width: 0.64rem;
    height: 0.42rem;
  }
  .cardModal-box .close {
    right: 0.3rem;
    top: 0.3rem;
    width: 0.6rem;
    height: 0.6rem;
  }
  .card-box .baozhe {
    position: relative;
    width: 94%;
    height: calc(100vh - 1rem);
    margin: 0.6rem auto 0;
    border-radius: 0.2rem;
  }
  .card-box .mxfDiv {
    padding: 1.2rem 0.4rem 0.7rem;
  }
  .card-box .toptop {
    display: block;
  }
  .card-box .toptop .imgDiv {
    height: 4.2rem;
  }
  .card-box .toptop .conDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .card-box .toptop .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .card-box .toptop .conDiv .content {
    margin-top: 0.32rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .card-box .brief {
    padding: 0.5rem 0;
  }
  .card-box .brief dd {
    padding-left: 0.45rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .card-box .brief dd img {
    margin-top: -0.16rem;
    width: 0.32rem;
  }
  .card-box .zi {
    margin-top: 0.4rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .card-box .catalog {
    margin-top: 0.32rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.bigdata {
  padding: 1.1rem 0;
  background: #f2f2f2;
}
.bigdata .pageTitle {
  text-align: left;
}
.bigdata .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.bigdata .list {
  padding-top: 0.6rem;
}
.bigdata .list li {
  margin-top: 0.2rem;
}
.bigdata .list li:first-child {
  margin-top: 0;
}
.bigdata .list li a {
  display: block;
  height: 1.8rem;
  border-radius: 0.15rem;
  background: #fff;
  position: relative;
  padding: 0 3.3rem 0 3rem;
  overflow: hidden;
}
.bigdata .list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #175B45 0%, rgba(23, 91, 69, 0.35) 100%);
  transition: All 0.5s ease;
}
.bigdata .list li a::after {
  content: '';
  position: absolute;
  right: 0.9rem;
  top: 50%;
  margin-top: -0.1rem;
  width: 0.29rem;
  height: 0.2rem;
  background: url(../img/ico5.png) no-repeat;
  background-size: 100%;
  z-index: 1;
  transition: All 0.5s ease;
}
.bigdata .list li a .time {
  position: absolute;
  z-index: 1;
  font-size: var(--fs20);
  line-height: 0.4rem;
  color: #175B45;
  font-family: 'Poppins-R';
  top: 50%;
  margin-top: -0.2rem;
  left: 0.66rem;
  transition: All 0.5s ease;
}
.bigdata .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
  height: 1.8rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  transition: All 0.5s ease;
}
.bigdata .list li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.bigdata .list li a:hover::after {
  background: url(../img/ico5on.png) no-repeat;
  background-size: 100%;
}
.bigdata .list li a:hover .time,
.bigdata .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1004px) {
  .bigdata {
    padding: 0.9rem 0;
  }
  .bigdata .list li a {
    height: auto;
    border-radius: 0.2rem;
    padding: 0.3rem;
  }
  .bigdata .list li a::after {
    display: none;
  }
  .bigdata .list li a .time {
    position: relative;
    font-size: var(--fs15);
    line-height: 0.52rem;
    top: 0;
    margin-top: 0;
    left: 0;
  }
  .bigdata .list li a .name {
    display: block;
    height: auto;
    font-size: var(--fs16);
    line-height: 0.6rem;
  }
  .bigdata .list li a:hover::before {
    width: 100%;
  }
  .bigdata .list li a:hover::after {
    background: url(../img/ico5on.png) no-repeat;
    background-size: 100%;
  }
  .bigdata .list li a:hover .time,
  .bigdata .list li a:hover .name {
    color: #fff;
  }
}
.process {
  padding: 1.2rem 0 0.82rem;
  background: #f2f2f2;
}
.process .list {
  padding-top: 0.6rem;
}
.process .list::after {
  content: '';
  display: block;
  clear: both;
}
.process .list ul {
  margin-right: -0.3rem;
}
.process .list li {
  float: left;
  width: 20%;
}
.process .list li .box {
  position: relative;
  margin-right: 0.3rem;
  padding-bottom: 0.48rem;
}
.process .list li .box .gou {
  position: absolute;
  right: -0.25rem;
  top: 0.34rem;
  width: 0.19rem;
  height: 0.17rem;
  background: url(../img/nimg19_1.png) no-repeat;
  background-size: 0.19rem;
}
.process .list li .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  padding: 0 0.4rem;
  position: relative;
  height: 0.85rem;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #fff;
  border: #B98F54 solid 2px;
}
.process .list li .baozhe .num {
  position: absolute;
  right: 0.2rem;
  bottom: 0;
  opacity: 0.5;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: 'Mont-B';
  background: linear-gradient(180deg, #B98F54 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process .list li .baozhe .name {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.process .list li:nth-child(5) .box .gou,
.process .list li:nth-child(15) .box .gou,
.process .list li:nth-child(25) .box .gou {
  bottom: 0.14rem;
  right: auto;
  top: auto;
  margin-top: 0;
  left: 50%;
  margin-left: -0.08rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../img/nimg17_1.png) no-repeat;
  background-size: 0.17rem;
}
.process .list li:nth-child(6),
.process .list li:nth-child(7),
.process .list li:nth-child(8),
.process .list li:nth-child(9),
.process .list li:nth-child(10),
.process .list li:nth-child(16),
.process .list li:nth-child(17),
.process .list li:nth-child(18),
.process .list li:nth-child(19),
.process .list li:nth-child(20) {
  float: right;
}
.process .list li:nth-child(6) .box .gou,
.process .list li:nth-child(7) .box .gou,
.process .list li:nth-child(8) .box .gou,
.process .list li:nth-child(9) .box .gou,
.process .list li:nth-child(10) .box .gou,
.process .list li:nth-child(16) .box .gou,
.process .list li:nth-child(17) .box .gou,
.process .list li:nth-child(18) .box .gou,
.process .list li:nth-child(19) .box .gou,
.process .list li:nth-child(20) .box .gou {
  right: auto;
  left: -0.25rem;
  background: url(../img/nimg19_2.png) no-repeat;
  background-size: 0.19rem;
}
.process .list li:nth-child(10) .box .gou,
.process .list li:nth-child(20) .box .gou {
  bottom: 0.14rem;
  right: auto;
  top: auto;
  margin-top: 0;
  left: 50%;
  margin-left: -0.08rem;
  width: 0.17rem;
  height: 0.19rem;
  background: url(../img/nimg17_1.png) no-repeat;
  background-size: 0.17rem;
}
.process .list li:nth-child(24) .box .gou {
  display: none;
}
@media (max-width: 1004px) {
  .process {
    padding: 0.9rem 0 0.7rem;
  }
  .process .list ul {
    margin-right: -0.3rem;
  }
  .process .list li {
    width: 50%;
  }
  .process .list li .box {
    margin-right: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .process .list li .box .gou {
    display: none;
  }
  .process .list li .baozhe {
    height: 1.65rem;
    padding: 0 0.2rem;
    border-radius: 0.16rem;
  }
  .process .list li .baozhe .num {
    font-size: var(--fs32);
    line-height: 0.56rem;
  }
  .process .list li .baozhe .name {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .process .list li:nth-child(7),
  .process .list li:nth-child(8),
  .process .list li:nth-child(9),
  .process .list li:nth-child(10),
  .process .list li:nth-child(11),
  .process .list li:nth-child(12),
  .process .list li:nth-child(19),
  .process .list li:nth-child(20),
  .process .list li:nth-child(21),
  .process .list li:nth-child(22),
  .process .list li:nth-child(23),
  .process .list li:nth-child(24) {
    float: left;
  }
  .process .list li:nth-child(7) .baozhe::after,
  .process .list li:nth-child(8) .baozhe::after,
  .process .list li:nth-child(9) .baozhe::after,
  .process .list li:nth-child(10) .baozhe::after,
  .process .list li:nth-child(11) .baozhe::after,
  .process .list li:nth-child(12) .baozhe::after,
  .process .list li:nth-child(19) .baozhe::after,
  .process .list li:nth-child(20) .baozhe::after,
  .process .list li:nth-child(21) .baozhe::after,
  .process .list li:nth-child(22) .baozhe::after,
  .process .list li:nth-child(23) .baozhe::after,
  .process .list li:nth-child(24) .baozhe::after {
    background: linear-gradient(90deg, #B98F54 0%, rgba(185, 143, 84, 0.3) 100%);
  }
}
.service {
  background: #f2f2f2;
  padding: 0.8rem 0 0.58rem;
}
.service .links {
  position: sticky;
  top: 1rem;
  padding-bottom: 0.78rem;
  z-index: 2;
}
.service .links ul {
  display: flex;
  background: #f2f2f2;
}
.service .links li {
  margin-right: 0.74rem;
  font-size: var(--fs24);
}
.service .links li a {
  position: relative;
  display: block;
  line-height: 0.58rem;
  color: #333;
}
.service .links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.04rem;
  background: #B98F54;
  transition: All 0.5s ease;
}
.service .links li .aNow {
  color: #B98F54;
}
.service .links li .aNow::after {
  width: 0.45rem;
}
.serviceDiv {
  padding-bottom: 0.72rem;
}
.serviceDiv .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.serviceDiv .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.serviceDiv .list li {
  width: calc((100% - 0.96rem) / 3);
  margin-right: 0.48rem;
  margin-top: 0.3rem;
}
.serviceDiv .list li:nth-child(-n+3) {
  margin-top: 0;
}
.serviceDiv .list li:nth-child(3n) {
  margin-right: 0;
}
.serviceDiv .list li a {
  display: block;
  position: relative;
  overflow: hidden;
  background: url(../img/nimg482Bg.png) center no-repeat;
  background-size: cover;
  height: 2.6rem;
  border-radius: 0.15rem;
}
.serviceDiv .list li a .beforeDiv {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.7rem 0.6rem 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  transition: All 0.5s ease;
}
.serviceDiv .list li a .beforeDiv .ico img {
  width: 0.55rem;
}
.serviceDiv .list li a .beforeDiv .name {
  margin-top: 0.2rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
}
.serviceDiv .list li a .afterDiv {
  padding: 0.3rem 0.6rem 0;
  color: #fff;
}
.serviceDiv .list li a .afterDiv .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs30);
  line-height: 0.4rem;
}
.serviceDiv .list li a .afterDiv .msg {
  margin-top: 0.16rem;
  height: 0.9rem;
  overflow: hidden;
}
.serviceDiv .list li a .afterDiv .msg dd {
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.serviceDiv .list li a .afterDiv .more {
  margin-top: 0.23rem;
  width: 0.5rem;
  height: 0.3rem;
  border-radius: 0.48rem;
  background: #fff url(../img/ico4off.png) center no-repeat;
}
.serviceDiv .list li a:hover .beforeDiv {
  top: 100%;
}
@media (max-width: 1004px) {
  .service {
    padding: 0.8rem 0 0.5rem;
  }
  .service .links {
    top: 1.2rem;
  }
  .service .links ul {
    display: block;
  }
  .service .links ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .service .links li {
    float: left;
    margin-right: 0.3rem;
    font-size: var(--fs15);
  }
  .service .links li a {
    line-height: 0.64rem;
  }
  .serviceDiv {
    padding-bottom: 0.6rem;
  }
  .serviceDiv .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .serviceDiv .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .serviceDiv .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .serviceDiv .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .serviceDiv .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .serviceDiv .list li:nth-child(2n) {
    margin-right: 0;
  }
  .serviceDiv .list li a {
    height: 2.6rem;
    border-radius: 0.2rem;
  }
  .serviceDiv .list li a .beforeDiv {
    display: none;
  }
  .serviceDiv .list li a .afterDiv {
    padding: 0.3rem 0.2rem 0;
  }
  .serviceDiv .list li a .afterDiv .name {
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .serviceDiv .list li a .afterDiv .msg {
    display: none;
  }
  .serviceDiv .list li a .afterDiv .more {
    margin-top: 0.2rem;
    width: 0.6rem;
    height: 0.4rem;
  }
}
.serviceP1 {
  padding: 0.4rem 0 0.8rem;
}
.serviceP1 .toptop {
  padding-top: 0.7rem;
}
.serviceP1 .toptop::after {
  content: '';
  display: block;
  clear: both;
}
.serviceP1 .toptop .conDiv {
  width: 6.8rem;
}
.serviceP1 .toptop .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: bold;
  margin-bottom: 0.32rem;
}
.serviceP1 .toptop .conDiv .list li {
  margin-bottom: 0.32rem;
}
.serviceP1 .toptop .conDiv .list li:last-child {
  margin-bottom: 0;
}
.serviceP1 .toptop .conDiv .list li .wen {
  border-radius: 5px;
  background: #F5F0E8;
  padding: 0.15rem 0.25rem;
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #175B45;
}
.serviceP1 .toptop .conDiv .list li .msg {
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
  padding: 0.15rem 0.25rem;
}
.serviceP1 .toptop .rightImg {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0.15rem;
}
.serviceP1 .toptop .rightImg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.serviceP1 .toptop .rightImg img {
  width: 100%;
}
.serviceP2 {
  padding: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.serviceP2 .flex {
  display: flex;
  gap: 0.46rem;
  white-space: nowrap;
  transform: translateX(0);
  will-change: transform;
}
.serviceP2 .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.serviceP2 .liDiv {
  position: relative;
  border-radius: 0.15rem;
  overflow: hidden;
  width: 7.45rem;
  height: 4.47rem;
  flex-shrink: 0;
}
.serviceP2 .liDiv .imgDiv {
  height: 100%;
}
.serviceP2 .liDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.serviceP2 .liDiv .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 1rem;
  top: 0;
  height: 100%;
  color: #fff;
  z-index: 1;
}
.serviceP2 .liDiv .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.36rem;
  font-weight: 600;
  transition: All 0.5s ease;
}
.serviceP2 .liDiv .conDiv .zi {
  margin-top: 0.18rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: 400;
}
.serviceP2 .liDiv:hover .imgDiv img {
  transform: scale(1.05);
}
.serviceP2 .liDiv:hover .name {
  color: #175B45;
}
.serviceP2 .liDiv.one {
  margin-left: calc((100% - 15.36rem) / 2);
}
@media (max-width: 1600px) {
  .serviceP2 .liDiv.one {
    margin-left: calc((100% - 16rem) / 2);
  }
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding: 0.8rem 0;
  }
  .serviceP1 .toptop {
    padding-top: 0;
  }
  .serviceP1 .toptop .conDiv {
    float: none;
    width: auto;
  }
  .serviceP1 .toptop .conDiv .name {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .serviceP1 .toptop .conDiv .list li .wen {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .serviceP1 .toptop .conDiv .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP1 .toptop .rightImg {
    float: none;
    width: auto;
    margin-top: 0.6rem;
    border-radius: 0.2rem;
  }
  .serviceP2 {
    height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .serviceP2 .flex {
    gap: 0.3rem;
  }
  .serviceP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.65rem;
  }
  .serviceP2 .liDiv {
    border-radius: 0.2rem;
    width: 6.4rem;
    height: 3.84rem;
  }
  .serviceP2 .liDiv .conDiv {
    left: 0.3rem;
  }
  .serviceP2 .liDiv .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .serviceP2 .liDiv .conDiv .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .serviceP2 .liDiv.one {
    margin-left: 0.3rem;
  }
}
.newsP1 {
  padding: 1.2rem 0 1.4rem;
  background: #f2f2f2;
}
.newsPic {
  position: relative;
  margin-top: 0.6rem;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .imgList a {
  background: #fff;
  display: block;
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .mxfDiv:hover .name {
  color: #175B45;
}
.newsPic .mxfDiv:hover .more {
  background: #B98F54;
}
.newsPic .bigImg {
  width: 100%;
  height: 5.2rem;
}
.newsPic .bigImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .imgDiv {
  order: 1;
  width: 50%;
  height: 5.2rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.7rem 1.4rem 0 1.1rem;
}
.newsPic .time {
  font-size: var(--fs20);
  color: #175B45;
  line-height: 0.26rem;
  font-family: 'Poppins-R';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.24rem;
  font-size: var(--fs30);
  line-height: 0.4rem;
  height: 1.2rem;
  font-weight: 500;
  color: #333;
  transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.24rem;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  text-align: justify;
}
.newsPic .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.5rem;
  width: 1.92rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #175B45;
  font-size: var(--fs16);
  color: #fff;
  transition: All 0.5s ease;
}
.newsPic .more em {
  margin-left: 0.1rem;
  width: 12px;
  height: 11px;
  background: url(../img/ico2.png) no-repeat;
}
.newsPic .se {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  border-radius: 50%;
  z-index: 2;
}
.newsPic .prev {
  left: 50%;
  margin-left: -8.3rem;
  background: url(../img/nimg40_left.png) no-repeat;
  background-size: 100%;
}
.newsPic .prev:hover {
  background: url(../img/nimg40_lefton.png) no-repeat;
  background-size: 100%;
}
.newsPic .next {
  right: 50%;
  margin-right: -8.3rem;
  background: url(../img/nimg40_right.png) no-repeat;
  background-size: 100%;
}
.newsPic .next:hover {
  background: url(../img/nimg40_righton.png) no-repeat;
  background-size: 100%;
}
.newsP2 {
  padding: 1rem 0 0.8rem;
}
.newsP2 .selectYear {
  width: 2.4rem;
  position: relative;
  z-index: 2;
}
.newsP2 .selectYear .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.4rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  color: #175B45;
  background: #fff;
  border-radius: 0.36rem;
  border: #175B45 solid 1px;
  font-family: 'Poppins-R';
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.07);
}
.newsP2 .selectYear .caption::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/selectIco.png) no-repeat;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -6px;
  z-index: 2;
}
.newsP2 .selectYear .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 3;
  background: #fff;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.07);
  border-radius: 10px;
}
.newsP2 .selectYear .xlist::-webkit-scrollbar {
  width: 4px;
}
.newsP2 .selectYear .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.newsP2 .selectYear .xlist::-webkit-scrollbar-thumb {
  background-color: #B98F54;
}
.newsP2 .selectYear .xlist a {
  display: block;
  font-size: var(--fs16);
  height: 0.6rem;
  color: #999;
  line-height: 0.6rem;
  padding: 0 0.4rem;
  font-family: 'Poppins-R';
}
.newsP2 .selectYear .xlist a:hover {
  color: #175B45;
}
.newsP2 .list {
  padding-top: 0.6rem;
}
.newsP2 .list li {
  margin-top: 0.3rem;
}
.newsP2 .list li:first-child {
  margin-top: 0;
}
.newsP2 .list li a {
  display: block;
  position: relative;
  height: 2.6rem;
  padding-left: 5.06rem;
}
.newsP2 .list li a .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.8rem;
  height: 2.6rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.newsP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.newsP2 .list li a .conDiv {
  height: 2.6rem;
  border-radius: 0.15rem;
  background: #f6f6f6;
  padding: 0.6rem 0.7rem 0;
  transition: All 0.5s ease;
}
.newsP2 .list li a .time {
  font-size: var(--fs20);
  line-height: 0.26rem;
  color: #175B45;
  font-family: 'Poppins-R';
  transition: All 0.5s ease;
}
.newsP2 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.3rem;
  line-height: 0.4rem;
  height: 0.8rem;
  font-size: var(--fs30);
  color: #333;
  font-weight: 400;
  transition: All 0.5s ease;
}
.newsP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.newsP2 .list li a:hover .conDiv {
  background: #175B45;
}
.newsP2 .list li a:hover .time,
.newsP2 .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1600px) {
  .newsPic .prev {
    margin-left: -8.7rem;
  }
  .newsPic .next {
    margin-right: -8.7rem;
  }
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.9rem 0 1rem;
  }
  .newsPic .imgList a {
    border-radius: 0.2rem;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .bigImg {
    height: auto;
  }
  .newsPic .bigImg img {
    height: auto;
  }
  .newsPic .imgDiv {
    width: auto;
    height: 4.2rem;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem;
  }
  .newsPic .time {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .newsPic .name {
    margin-top: 0.2rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.56rem;
  }
  .newsPic .content {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .more {
    display: none;
  }
  .newsPic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 50%;
    margin-top: -0.43rem;
  }
  .newsPic .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .newsPic .next {
    right: 0.3rem;
    margin-right: 0;
  }
  .newsP2 {
    padding: 0.8rem 0 1rem;
  }
  .newsP2 .selectYear {
    width: 100%;
  }
  .newsP2 .selectYear .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .newsP2 .selectYear .xlist {
    max-height: 3.6rem;
  }
  .newsP2 .selectYear .xlist a {
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
    padding: 0 0.3rem;
  }
  .newsP2 .list li a {
    height: auto;
    padding-left: 0;
  }
  .newsP2 .list li a .imgDiv {
    display: none;
  }
  .newsP2 .list li a .conDiv {
    height: auto;
    border-radius: 0.2rem;
    padding: 0.25rem 0.3rem;
  }
  .newsP2 .list li a .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsP2 .list li a .name {
    margin-top: 0.1rem;
    line-height: 0.48rem;
    height: 0.96rem;
    font-size: var(--fs16);
  }
}
.newshow {
  padding: 0.5rem 0 1.4rem;
  position: relative;
}
.newshow::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 7rem;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(185, 143, 84, 0.5) 0%, rgba(102, 102, 102, 0) 100%);
}
.newshow .w1152 {
  width: 11.52rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newshow .name {
  margin: 1.1rem 0 0.4rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  text-align: center;
  color: #B98F54;
  font-weight: 500;
}
.newshow .time {
  text-align: center;
  color: #175B45;
  padding-bottom: 0.48rem;
  font-size: var(--fs20);
  font-family: 'Poppins-R';
}
.newshow .content {
  padding-bottom: 0.48rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.newshow .content img {
  max-width: 100%;
}
.newshow .imgDiv {
  overflow: hidden;
  border-radius: 0.15rem;
}
.newshow .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.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: 1.92rem;
  height: 0.62rem;
  font-size: var(--fs16);
  border: #175B45 solid 1px;
  border-radius: 0.48rem;
  color: #175B45;
}
.newshow .pageDown li .prev:hover,
.newshow .pageDown li .next:hover {
  width: 2.4rem;
  background: #175B45;
  color: #fff;
}
.newshow .pageDown li .prev em {
  width: 12px;
  height: 11px;
  margin-right: 0.2rem;
  background: url(../img/prev.png) no-repeat;
  transition: All 0.5s ease;
}
.newshow .pageDown li .prev:hover em {
  background: url(../img/prevon.png) no-repeat;
}
.newshow .pageDown li .next em {
  width: 12px;
  height: 11px;
  margin-left: 0.2rem;
  background: url(../img/next.png) no-repeat;
  transition: All 0.5s ease;
}
.newshow .pageDown li .next:hover em {
  background: url(../img/nexton.png) no-repeat;
}
.newshow .pageDown li .back {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.92rem;
  height: 0.62rem;
  border: #175B45 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #175B45;
}
.newshow .pageDown li .back:hover {
  width: 1.92rem;
  background: #175B45;
  color: #fff;
}
.newshow .share {
  position: relative;
}
.newshow .share li {
  float: left;
  margin-left: 0.34rem;
  position: relative;
}
.newshow .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border: #e8e8e8 solid 1px;
  border-radius: 50%;
}
.newshow .share li a img {
  width: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newshow .share li a:hover {
  background: #B98F54;
  border: #B98F54 solid 1px;
}
.newshow .share li a:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 1004px) {
  .newshow {
    padding: 0.8rem 0 1rem;
    position: relative;
  }
  .newshow::after {
    height: 5rem;
  }
  .newshow .w1152 {
    width: 100%;
    padding: 0 var(--offset);
  }
  .newshow .name {
    margin: 0 0 0.4rem;
    font-size: var(--fs20);
  }
  .newshow .time {
    font-size: var(--fs14);
  }
  .newshow .content {
    padding-bottom: 0.6rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newshow .imgDiv {
    border-radius: 0.2rem;
  }
  .newshow .botbot {
    display: block;
  }
  .newshow .pageDown ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .newshow .pageDown li {
    width: 32%;
    margin-right: 0;
  }
  .newshow .pageDown li .prev,
  .newshow .pageDown li .next {
    font-size: var(--fs14);
    width: 100%;
    height: 0.86rem;
  }
  .newshow .pageDown li .prev:hover,
  .newshow .pageDown li .next:hover {
    width: 100%;
  }
  .newshow .pageDown li .prev em {
    display: none;
  }
  .newshow .pageDown li .next em {
    display: none;
  }
  .newshow .pageDown li .back {
    width: 100%;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .newshow .pageDown li .back:hover {
    width: 100%;
  }
  .newshow .share {
    padding-top: 0.5rem;
  }
  .newshow .share ul {
    display: flex;
  }
  .newshow .share li {
    float: none;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .newshow .share li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 0.86rem;
    height: 0.86rem;
  }
  .newshow .share li a img {
    width: 0.32rem;
  }
}
.contact {
  padding: 1.2rem 0;
  background: url(../img/contactBg.jpg) center no-repeat;
  background-size: cover;
}
.contact .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contact .conDiv {
  width: 5rem;
}
.contact .pageTitle {
  text-align: left;
  color: #fff;
}
.contact .pageTitle::after {
  background: #fff;
  left: 0;
  margin-left: 0;
}
.contact .msglist {
  padding-top: 0.45rem;
}
.contact .msglist li {
  color: #fff;
  padding-bottom: 0.2rem;
}
.contact .msglist li:last-child {
  padding-bottom: 0;
}
.contact .msglist li .wen {
  font-size: var(--fs30);
  line-height: 0.6rem;
}
.contact .msglist li .zi {
  font-size: var(--fs16);
  line-height: 0.24rem;
  font-family: 'Poppins-R';
}
.contact .msglist li .ewm {
  width: 1.45rem;
}
.contact .msglist li .ewm .limg img {
  width: 100%;
}
.contact .msglist li .ewm p {
  padding-top: 0.2rem;
  text-align: center;
  font-size: var(--fs15);
  line-height: 0.24rem;
}
.contact .rightDiv {
  width: 8.22rem;
}
.contact .rightDiv .title {
  font-size: var(--fs36);
  line-height: 0.6rem;
  color: #fff;
  margin-bottom: 0.24rem;
}
.contact .form::after {
  content: '';
  display: block;
  clear: both;
}
.contact .form ul {
  margin-right: -0.3rem;
}
.contact .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.42rem;
}
.contact .form li:last-child {
  width: 100%;
  margin-bottom: 0.3rem;
}
.contact .form li .box {
  margin-right: 0.4rem;
}
.contact .form li .zi {
  margin-bottom: 0.16rem;
  line-height: 0.28rem;
  font-size: var(--fs18);
  color: #fff;
}
.contact .form li .zi em {
  padding-left: 0.08rem;
  color: #f00;
}
.contact .form li .select {
  width: 100%;
  position: relative;
}
.contact .form li .select .caption {
  position: relative;
  cursor: pointer;
  padding-left: 0.16rem;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: #808080;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.contact .form li .select .caption::after {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.12rem;
  background: url(../img/selectIco2.png) no-repeat left center;
  background-size: 0.16rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.06rem;
  z-index: 1;
}
.contact .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  background: #f8f8f8;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border-radius: 6px;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.contact .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.contact .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.contact .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #B98F54;
}
.contact .form li .select .xlist em {
  display: block;
  cursor: pointer;
  font-size: var(--fs16);
  color: #808080;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.2rem;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Poppins-R';
}
.contact .form li .select .xlist em:hover {
  color: #B98F54;
}
.contact .form li .select .xlist em:last-child {
  border-bottom: none;
}
.contact .form li .input1 {
  width: 100%;
  padding-left: 0.16rem;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs16);
  color: #808080;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.contact .form li .input1::-webkit-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1::-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li .input1:-ms-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea {
  background: #f8f8f8;
  width: 100%;
  padding: 0.15rem 0 0 0.16rem;
  height: 1.88rem;
  font-family: inherit;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #808080;
  border-radius: 6px;
}
.contact .form li textarea::-webkit-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea::-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .form li textarea:-ms-input-placeholder {
  color: #808080;
  opacity: 1;
}
.contact .agree {
  font-size: var(--fs18);
  line-height: 0.28rem;
  color: #fff;
}
.contact .agree a {
  color: #fff;
  text-decoration: underline;
}
.contact .agree a:hover {
  color: #175B45;
}
.contact .agree input {
  position: relative;
  top: -0.02rem;
  margin: 0 0.16rem 0 0;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 4px;
  background: none;
  border: 1px solid #fff;
  /* 边框颜色 */
  -webkit-appearance: none;
  /* 移除默认样式 */
  -moz-appearance: none;
  /* 移除默认样式 */
  appearance: none;
  /* 移除默认样式 */
  outline: none;
  /* 移除点击后的轮廓 */
}
.contact .agree input:checked {
  border: 1px solid #B98F54;
  background: #B98F54 url(../img/gou.png) center no-repeat;
  /* 选中时的背景颜色 */
}
.contact .submit {
  padding-top: 0.48rem;
}
.contact .submit a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.8rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #fff;
  color: #B98F54;
  font-size: var(--fs20);
  font-weight: 100;
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.9rem 0;
    background: url(../img/contactBg.jpg) center no-repeat;
    background-size: cover;
  }
  .contact .mxfDiv {
    display: block;
  }
  .contact .conDiv {
    width: auto;
  }
  .contact .msglist {
    padding-top: 0.45rem;
  }
  .contact .msglist li {
    color: #fff;
    padding-bottom: 0.2rem;
  }
  .contact .msglist li:last-child {
    padding-bottom: 0;
  }
  .contact .msglist li .wen {
    font-size: var(--fs18);
    line-height: 0.72rem;
  }
  .contact .msglist li .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contact .msglist li .ewm {
    width: 2.6rem;
  }
  .contact .msglist li .ewm p {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contact .rightDiv {
    padding-top: 0.7rem;
    width: auto;
  }
  .contact .rightDiv .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.3rem;
  }
  .contact .form ul {
    margin-right: 0;
  }
  .contact .form li {
    float: none;
    width: auto;
    margin-bottom: 0.35rem;
  }
  .contact .form li .box {
    margin-right: 0;
  }
  .contact .form li .zi {
    margin-bottom: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs15);
  }
  .contact .form li .zi em {
    padding-left: 0.1rem;
  }
  .contact .form li .select .caption {
    padding-left: 0.2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .contact .form li .select .caption::after {
    width: 0.7rem;
    height: 0.16rem;
    background-size: 0.28rem;
    margin-top: -0.08rem;
  }
  .contact .form li .select .xlist {
    max-height: 4rem;
  }
  .contact .form li .select .xlist em {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .contact .form li .input1 {
    padding-left: 0.2rem;
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .contact .form li textarea {
    padding: 0.2rem 0 0 0.2rem;
    height: 3.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contact .agree {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contact .agree input {
    width: 0.3rem;
    height: 0.3rem;
  }
  .contact .submit a {
    width: 2.4rem;
    height: 0.8rem;
    font-size: var(--fs16);
  }
}
.aboutP1 {
  padding: 1.2rem 0 2.4rem;
  background: #f8f7f7 url(../img/aboutP1.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP1 .content {
  width: 13.6rem;
  margin: 0.4rem auto 0;
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #848484;
}
.aboutP1 .imgDiv {
  margin-top: 0.65rem;
  text-align: center;
}
.aboutP1 .imgDiv img {
  max-width: 100%;
}
.aboutP2 {
  padding: 1.2rem 0 1.3rem;
}
.aboutP2 .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #B98F54;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aboutP2 .mxfDiv {
  position: relative;
  padding: 0.66rem 0 0.72rem 0.8rem;
  background: center no-repeat;
  background-size: cover;
  border-radius: 0.15rem;
}
.aboutP2 .conDiv {
  position: relative;
  z-index: 1;
  width: 7.42rem;
}
.aboutP2 .name {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #fff;
  font-weight: 500;
}
.aboutP2 .msg {
  font-size: var(--fs24);
  line-height: 0.6rem;
  color: #fff;
}
.aboutP2 .content {
  margin-top: 0.38rem;
  padding-top: 0.85rem;
  position: relative;
  color: #fff;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.aboutP2 .content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.6rem;
  height: 0.58rem;
  background: url(../img/nimg95Bg.png) no-repeat;
  background-size: 0.6rem;
}
.aboutP2 .imgDiv {
  position: absolute;
  right: 1.34rem;
  bottom: 0;
  z-index: 1;
}
.aboutP2 .imgDiv img {
  width: 4.38rem;
}
.aboutP3 {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 1.65rem;
}
.aboutP3 .parallax-bg {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  height: 130%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.aboutP3 .pageTitle {
  color: #fff;
}
.aboutP3 .pageTitle::after {
  background: #fff;
}
.aboutP3 .list {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 0.7rem;
}
.aboutP3 .list ul {
  display: block;
  width: auto;
  margin-right: -0.48rem;
}
.aboutP3 .list li {
  float: left;
  width: 33.33%;
}
.aboutP3 .list li .box {
  position: relative;
  margin-right: 0.48rem;
  border-radius: 0.15rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  background: linear-gradient(133deg, rgba(255, 255, 255, 0.65) 1.48%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(7.19999981px);
  -webkit-backdrop-filter: blur(7.19999981px);
  height: 4.2rem;
  padding: 1rem 0.3rem 0;
}
.aboutP3 .list li .ico {
  position: relative;
  z-index: 1;
  height: 1rem;
}
.aboutP3 .list li .ico img {
  width: 0.6rem;
}
.aboutP3 .list li .name {
  position: relative;
  z-index: 1;
  font-size: var(--fs40);
  line-height: 0.6rem;
  color: #333;
  font-weight: bold;
}
.aboutP3 .list li .msg {
  position: relative;
  z-index: 1;
  font-size: var(--fs20);
  margin-top: 0.3rem;
  line-height: 0.3rem;
  color: #333;
}
.aboutP3 .swiper-pagination {
  display: none;
  margin-top: 0.6rem;
  position: relative;
  bottom: 0;
}
.aboutP3 .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
}
.aboutP3 .swiper-pagination-bullet-active {
  background: #175B45;
}
.aboutP4 {
  padding-top: 1.3rem;
  height: 9.12rem;
  background: url(../img/aboutP4.jpg) center bottom no-repeat;
  background-size: cover;
}
.aboutP4 .pageTitle {
  margin-bottom: 0.6rem;
}
.honorPic {
  position: relative;
  padding: 0 0.15rem;
}
.honorPic .imgList {
  overflow: hidden;
}
.honorPic .imgList li {
  width: calc((100% - 1.8rem) / 4);
  margin-right: 0.6rem;
}
.honorPic .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.65rem;
  cursor: pointer;
}
.honorPic .imgList li .imgDiv img {
  max-width: 100%;
  max-height: 4.65rem;
}
.honorPic .se {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  z-index: 3;
  top: 45%;
  border-radius: 50%;
  margin-top: -0.25rem;
  background: #E9C490;
}
.honorPic .se:hover {
  background: #175B45;
}
.honorPic .prev {
  left: 50%;
  margin-left: -8.9rem;
}
.honorPic .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.1rem;
  height: 0.18rem;
  margin-left: -0.05rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_left.png) no-repeat;
  background-size: 0.1rem;
}
.honorPic .next {
  right: 50%;
  margin-right: -8.9rem;
}
.honorPic .next::after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 0.1rem;
  height: 0.18rem;
  margin-right: -0.05rem;
  margin-top: -0.09rem;
  background: url(../img/nimg10_right.png) no-repeat;
  background-size: 0.1rem;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 2rem;
    background: #f8f8f8 url(../img/aboutP1.jpg) center bottom no-repeat;
    background-size: 100%;
  }
  .aboutP1 .content {
    width: auto;
    margin: 0.6rem auto 0;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP2 .mxfDiv {
    height: auto;
    padding: 0.8rem 0.3rem 0.8rem;
    border-radius: 0.2rem;
  }
  .aboutP2 .mxfDiv::after {
    width: 100%;
    border-radius: 0.2rem;
  }
  .aboutP2 .conDiv {
    width: auto;
    padding-top: 0.65rem;
    z-index: 2;
  }
  .aboutP2 .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .aboutP2 .msg {
    font-size: var(--fs17);
  }
  .aboutP2 .content {
    margin-top: 0.6rem;
    padding-top: 1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 .imgDiv {
    right: 0;
    bottom: auto;
    top: -1.2rem;
  }
  .aboutP2 .imgDiv img {
    width: 3.8rem;
  }
  .aboutP3 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP3 .list {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0.7rem;
  }
  .aboutP3 .list ul {
    display: flex;
    width: 100%;
    margin-right: 0;
  }
  .aboutP3 .list li {
    float: none;
    width: 100%;
  }
  .aboutP3 .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
    height: 4.2rem;
    padding: 0.75rem 0.3rem 0;
  }
  .aboutP3 .list li .ico {
    height: 1.2rem;
  }
  .aboutP3 .list li .ico img {
    width: 0.86rem;
  }
  .aboutP3 .list li .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .aboutP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .swiper-pagination {
    display: block;
  }
  .aboutP4 {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
    height: auto;
    background: url(../img/aboutP4.jpg) center bottom no-repeat;
    background-size: cover;
  }
  .aboutP4 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .honorPic {
    padding: 0 0 1.2rem;
  }
  .honorPic .imgList li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .honorPic .imgList li .imgDiv {
    height: 4rem;
  }
  .honorPic .imgList li .imgDiv img {
    max-height: 4rem;
  }
  .honorPic .imgList li .name {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .honorPic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: auto;
    bottom: 0;
    margin-top: 0;
  }
  .honorPic .prev {
    margin-left: -1.1rem;
  }
  .honorPic .next {
    margin-right: -1.1rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
