.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes circle_1 {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08) translate(-2%, 2%);
    opacity: 1;
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOfOpacity {
  animation: fadeOfOpacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
.upDown {
  animation: upDown 1.6s cubic-bezier(0.4, 0, 0.2, 1) alternate infinite;
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  max-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
}
.ind-banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img {
  height: 100vh;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.ind-banner .swiper-slide video {
  display: block;
  width: 100%;
  height: 8.2rem;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 26%;
  z-index: 2;
}
.ind-banner .twobox {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  top: 40%;
  z-index: 2;
}
.ind-banner .en {
  width: 13.14rem;
  font-size: var(--fs48);
  line-height: 0.72rem;
  font-family: 'Poppins-SB';
  color: #fff;
  margin: 0 auto 0.34rem;
}
.ind-banner .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 1.5rem;
  font-size: var(--fs18);
  height: 0.5rem;
  background: #fff;
  color: #333;
  font-family: 'Poppins-M';
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.ind-banner .btnDiv:hover {
  background: #A98F7B;
  color: #fff;
}
.ind-banner .onebox,
.ind-banner .twobox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox,
.ind-banner .swiper-slide-active .twobox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.8rem;
  z-index: 2;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  fill: none;
  opacity: 1;
}
.ind-banner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
@media (max-width: 1004px) {
  .ind-banner {
    max-height: 7rem;
  }
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .swiper-slide video {
    height: 7rem;
    display: none;
  }
  .ind-banner .onebox {
    padding: 0 0.3rem;
  }
  .ind-banner .twobox {
    padding: 0 0.3rem;
  }
  .ind-banner .en {
    width: 100%;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .ind-banner .btnDiv {
    width: 2.66rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .ind-banner .swiper-pagination {
    bottom: 0.4rem;
  }
  .ind-banner .swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}
.wrap-fixed {
  position: relative;
  z-index: 3;
  background: #fff;
}
.indTitle {
  font-size: var(--fs48);
  line-height: 0.8rem;
  color: #333;
  font-family: 'Barlow-B';
}
.indMsg {
  margin-top: 5px;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #999;
}
@keyframes waterDrop {
  0%,
  100% {
    border-radius: 50%;
  }
  25% {
    border-radius: 44% 56% 46% 54%;
  }
  50% {
    border-radius: 56% 44% 50% 50%;
  }
  75% {
    border-radius: 46% 54% 55% 45%;
  }
}
.indexP1 {
  padding: 1.96rem 0 1.76rem;
}
.indexP1 .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP1 .conDiv {
  width: 27.6%;
}
.indexP1 .imgDiv {
  width: 5.68rem;
  border-radius: 50%;
  overflow: hidden;
  animation: waterDrop 6s ease-in-out infinite;
}
.indexP1 .imgDiv img {
  width: 100%;
}
.indexP1 .name {
  color: #231815;
  font-size: var(--fs30);
  line-height: 0.36rem;
  margin-bottom: 0.66rem;
  font-weight: 500;
}
.indexP1 .content {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #534E4D;
}
.indexP1 .btnDiv {
  display: flex;
  margin-top: 1.2rem;
}
.indexP1 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 0.2rem;
  min-width: 1.7rem;
  height: 0.5rem;
  font-size: var(--fs18);
  color: #fff;
  border-radius: 0.48rem;
  background: #A98F7B;
}
.indexP1 .numlist {
  width: 3.9rem;
}
.indexP1 .numlist ul {
  margin-bottom: 0;
}
.indexP1 .numlist li {
  padding-top: 0.82rem;
}
.indexP1 .numlist li:first-child {
  padding-top: 0;
}
.indexP1 .numlist li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.indexP1 .numlist li .num em {
  font-family: 'Barlow-B';
  font-size: var(--fs72);
  color: #534E4D;
  line-height: 0.86rem;
}
.indexP1 .numlist li .num span {
  padding-left: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.48rem;
}
.indexP1 .numlist li .zi {
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #534E4D;
}
.indexP2 {
  position: relative;
  overflow: hidden;
}
.indexP2::after {
  content: '';
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  bottom: -8rem;
  right: -2.5rem;
  background: rgba(169, 143, 123, 0.8);
  z-index: 1;
  animation: circle_1 5s infinite alternate-reverse;
}
.indexP2 .txt {
  position: absolute;
  right: -20%;
  bottom: 0;
  font-family: 'Poppins-R';
  font-size: 2.6rem;
  line-height: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  transform: translateX(0);
  /* 初始位置 */
  will-change: transform;
  /* 性能优化 */
  z-index: 2;
}
.indexP2 .layer {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.1rem;
  z-index: 2;
}
.indexP2 .layer .indTitle {
  color: #fff;
}
.indexP2 .layer .indMsg {
  color: rgba(255, 255, 255, 0.6);
}
.indexP2 .swiper-slide {
  position: relative;
}
.indexP2 .swiper-slide .pic {
  position: relative;
}
.indexP2 .swiper-slide .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(2, 2, 2, 0.5) 100%);
  opacity: 0.6;
  background-blend-mode: normal, normal;
  transition: opacity 0.8s ease;
}
.indexP2 .swiper-slide .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #020202 100%);
  opacity: 0.6;
  background-blend-mode: normal, normal;
}
.indexP2 .swiper-slide .pic img {
  width: 100%;
  height: 9.4rem;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 4s ease;
}
.indexP2 .swiper-slide .content {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 2.4rem;
  z-index: 3;
  text-align: right;
  width: 4.7rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #fff;
}
.indexP2 .swiper-slide .content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.indexP2 .swiper-slide.swiper-slide-active .content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.indexP2 .swiper-slide.swiper-slide-active .pic::before {
  opacity: 0;
}
.indexP2 .swiper-slide.swiper-slide-active .pic img {
  transform: scale(1);
}
.indexP2 .tab-box {
  position: absolute;
  left: 50%;
  margin-left: -6.68rem;
  bottom: 0.1rem;
  z-index: 2;
}
.indexP2 .tab-box a {
  color: #ddd;
  line-height: 0.8rem;
  position: relative;
  font-size: var(--fs48);
  transition: all 0.4s ease;
}
.indexP2 .tab-box a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.4s ease;
}
.indexP2 .tab-box a.on {
  color: #fff;
}
.indexP2 .tab-box a.on::after {
  width: 100%;
}
.indexP3 {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0 1.68rem;
}
.indexP3::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
.indexP3 .toptop {
  position: relative;
  padding-bottom: 0.72rem;
}
.indexP3 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0.3rem;
  z-index: 1;
}
.indexP3 .arrowDiv .se {
  display: block;
  float: left;
  width: 0.8rem;
  height: 0.8rem;
  z-index: 3;
  border-radius: 50%;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(2px);
}
.indexP3 .arrowDiv .prev {
  margin-right: 0.26rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
}
.indexP3 .arrowDiv .prev:hover {
  background: #A98F7B url(../img/nimg10_lefton.png) center no-repeat;
}
.indexP3 .arrowDiv .next {
  background: #fff url(../img/nimg10_right.png) center no-repeat;
}
.indexP3 .arrowDiv .next:hover {
  background: #A98F7B url(../img/nimg10_righton.png) center no-repeat;
}
.indPro {
  position: relative;
}
.indPro .list li {
  width: calc((100% - 0.4rem) / 2);
  margin-right: 0.4rem;
}
.indPro .list li .box .imgDiv {
  position: relative;
  height: 4.92rem;
  overflow: hidden;
  border-radius: 15px;
}
.indPro .list li .box .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.indPro .list li .box .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indPro .list li .box .name {
  margin-top: 0.42rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: 500;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indPro .list li .box:hover .imgDiv::after {
  transform: translateX(100%);
}
.indPro .list li .box:hover .imgDiv img {
  transform: scale(1.1);
}
.indPro .list li .box:hover .name {
  color: #A98F7B;
}
.indexP4 {
  padding: 1.16rem 0;
  overflow: hidden;
  background: #f2f2f2;
}
.indexP4 .indTitle {
  margin-bottom: 0.4rem;
}
.indexP4 .leftDiv {
  width: 68.6%;
}
.indexP4 .leftDiv ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP4 .leftDiv li {
  width: calc((100% - 0.88rem) / 2);
  margin-right: 0.44rem;
}
.indexP4 .leftDiv li a {
  width: 100%;
  display: block;
}
.indexP4 .leftDiv li a .imgDiv {
  border-top-left-radius: 0.12rem;
  border-top-right-radius: 0.12rem;
  height: 3.12rem;
  overflow: hidden;
}
.indexP4 .leftDiv li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(1);
  transition: filter 0.6s ease;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .leftDiv li a .botDiv {
  padding: 0.28rem 0.32rem 0;
  height: 2.76rem;
  background: #fff;
  border: #ebebeb solid 1px;
  border-top: none;
  border-bottom-left-radius: 0.12rem;
  border-bottom-right-radius: 0.12rem;
}
.indexP4 .leftDiv li a .botDiv .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.indexP4 .leftDiv li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .leftDiv li a .botDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #666;
}
.indexP4 .leftDiv li a .botDiv .look {
  margin-top: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #333;
}
.indexP4 .leftDiv li a:hover .imgDiv img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.1);
}
.indexP4 .leftDiv li a:hover .name {
  color: #A98F7B;
}
.indexP4 .rightDiv {
  width: 31.4%;
  border: #ebebeb solid 1px;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.3rem 0.4rem 0;
  height: 5.88rem;
}
.indexP4 .rightDiv li {
  margin-bottom: 0.4rem;
}
.indexP4 .rightDiv li:last-child {
  margin-bottom: 0;
}
.indexP4 .rightDiv li a {
  display: block;
  position: relative;
}
.indexP4 .rightDiv li a .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.indexP4 .rightDiv li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.24rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.48rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP4 .rightDiv li a:hover .name {
  color: #A98F7B;
}
.indexP4 .rightDiv li:last-child a::after {
  display: none;
}
@media (max-width: 1600px) {
  .indexP2 .layer {
    margin-left: -8rem;
    top: 1.1rem;
  }
  .indexP2 .swiper-slide .content {
    margin-right: -8rem;
    top: 2rem;
  }
  .indexP3::after {
    margin-right: 8rem;
  }
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indMsg {
    margin-top: 0.1rem;
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .indexP1 {
    padding: 1.16rem 0 1.06rem;
  }
  .indexP1 .wrap {
    display: block;
  }
  .indexP1 .conDiv {
    width: auto;
  }
  .indexP1 .imgDiv {
    display: none;
    margin-top: 0.6rem;
    width: 100%;
  }
  .indexP1 .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
    margin-bottom: 0.5rem;
  }
  .indexP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .btnDiv {
    margin-top: 0.6rem;
  }
  .indexP1 .btnDiv a {
    min-width: 2.4rem;
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .indexP1 .numlist {
    margin-top: 0.6rem;
    width: auto;
  }
  .indexP1 .numlist ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .indexP1 .numlist li {
    width: 50%;
    padding-top: 0.6rem;
  }
  .indexP1 .numlist li:nth-child(-n+2) {
    padding-top: 0;
  }
  .indexP1 .numlist li .num em {
    font-size: var(--fs36);
    line-height: 0.86rem;
  }
  .indexP1 .numlist li .num span {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .numlist li .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indexP2::after {
    width: 5rem;
    height: 5rem;
    bottom: -3rem;
    right: -1.5rem;
  }
  .indexP2 .txt {
    display: none;
  }
  .indexP2 .layer {
    left: 0.3rem;
    margin-left: 0;
    top: 0.8rem;
  }
  .indexP2 .swiper-slide .pic img {
    height: 6.5rem;
  }
  .indexP2 .swiper-slide .content {
    right: 0.3rem;
    margin-right: 0;
    top: 2.4rem;
    width: 4.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.44rem;
    overflow: hidden;
  }
  .indexP2 .tab-box {
    left: 0.3rem;
    bottom: 0.2rem;
    margin-left: 0;
  }
  .indexP2 .tab-box a {
    line-height: 0.64rem;
    font-size: var(--fs22);
  }
  .indexP3 {
    padding: 1rem 0 1.18rem;
  }
  .indexP3::after {
    display: none;
  }
  .indexP3 .toptop {
    padding-right: 2.1rem;
    padding-bottom: 0.6rem;
  }
  .indexP3 .arrowDiv {
    top: 0.24rem;
  }
  .indexP3 .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .indexP3 .arrowDiv .prev {
    margin-right: 0.2rem;
    background-size: 6px;
  }
  .indexP3 .arrowDiv .prev:hover {
    background-size: 6px;
  }
  .indexP3 .arrowDiv .next {
    background-size: 6px;
  }
  .indexP3 .arrowDiv .next:hover {
    background-size: 6px;
  }
  .indPro .list li {
    width: calc((100% - 0.3rem) / 1.2);
    margin-right: 0.3rem;
  }
  .indPro .list li .box .imgDiv {
    height: 3.26rem;
    border-radius: 0.24rem;
  }
  .indPro .list li .box .name {
    margin-top: 0.3rem;
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .indexP4 {
    padding: 0.96rem 0;
  }
  .indexP4 .indTitle {
    margin-bottom: 0.6rem;
  }
  .indexP4 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP4 .leftDiv li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .indexP4 .leftDiv li:nth-child(2) {
    margin-right: 0;
  }
  .indexP4 .leftDiv li a .imgDiv {
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    height: 2.12rem;
  }
  .indexP4 .leftDiv li a .botDiv {
    padding: 0.25rem 0.2rem;
    height: auto;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
  }
  .indexP4 .leftDiv li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP4 .leftDiv li a .botDiv .name {
    margin-top: 0.1rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP4 .leftDiv li a .botDiv .content {
    display: none;
  }
  .indexP4 .leftDiv li a .botDiv .look {
    margin-top: 0.15rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP4 .rightDiv {
    margin-top: 0.3rem;
    width: auto;
    float: none;
    border-radius: 0.24rem;
    padding: 0.4rem 0.3rem;
    height: auto;
  }
  .indexP4 .rightDiv li a .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .indexP4 .rightDiv li a .name {
    margin-top: 0.16rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
}
.contactP1 {
  padding: 1.36rem 0 1.1rem;
}
.contactP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contactP1 .leftDiv {
  width: 6.7rem;
}
.contactP1 .leftDiv .pageTitle {
  text-transform: uppercase;
}
.contactP1 .leftDiv .name {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: 500;
}
.contactP1 .list {
  padding-top: 0.5rem;
}
.contactP1 .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  width: 50%;
  position: relative;
  padding-left: 0.84rem;
  margin-top: 0.48rem;
  min-height: 0.6rem;
  font-size: var(--fs16);
}
.contactP1 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.contactP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 0.54rem;
  height: 0.54rem;
  background: #A98F7B;
  border-radius: 50%;
}
.contactP1 .list li .ico img {
  width: 0.32rem;
}
.contactP1 .list li .zi {
  color: #333;
  line-height: 0.24rem;
  font-weight: 400;
}
.contactP1 .list li .wen {
  line-height: 0.24rem;
}
.contactP1 .ewm ul {
  margin-bottom: 0;
  display: flex;
}
.contactP1 .ewm li {
  margin-left: 0.7rem;
  width: 2.45rem;
}
.contactP1 .ewm li:first-child {
  margin-left: 0;
}
.contactP1 .ewm li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 2.43rem;
  border-radius: 0.15rem;
  border: 1px solid #D9D9D9;
  background: #fff;
}
.contactP1 .ewm li .limg img {
  max-width: 2.13rem;
}
.contactP1 .ewm li .hala {
  margin-top: 0.2rem;
  line-height: 0.24rem;
  text-align: center;
  color: #999;
  font-size: var(--fs16);
}
.contactP1 .tips {
  padding-top: 0.48rem;
  line-height: 0.24rem;
  text-align: center;
  color: #999;
  font-size: var(--fs16);
}
.contactP2 {
  background: #f4f4f4;
  padding: 0.95rem 0 1.2rem;
}
.contactP2 .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.contactP2 .msg {
  font-size: var(--fs16);
  line-height: 0.24rem;
  text-align: center;
}
.contactP2 .form {
  margin-top: 0.74rem;
}
.contactP2 .form ul {
  margin-right: -0.2rem;
  margin-bottom: 0;
}
.contactP2 .form ul::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.24rem;
}
.contactP2 .form li .box {
  position: relative;
  margin-right: 0.2rem;
}
.contactP2 .form li .baozhe {
  position: relative;
  border-radius: 0.1rem;
  overflow: hidden;
}
.contactP2 .form li .baozhe .zi {
  position: absolute;
  left: 0.3rem;
  top: 0;
  line-height: 0.5rem;
  font-size: var(--fs16);
  color: #333;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.contactP2 .form li .baozhe .zi em {
  color: #A98F7B;
}
.contactP2 .form li .baozhe:focus-within .zi {
  opacity: 0;
  pointer-events: none;
}
.contactP2 .form li .has-value .zi {
  opacity: 0;
  pointer-events: none;
}
.contactP2 .form li .input1 {
  padding-left: 0.3rem;
  width: 100%;
  height: 0.5rem;
  background: #fff;
  color: #333;
  font-size: var(--fs16);
  font-family: 'Barlow-R';
}
.contactP2 .form li .input1::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input1:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input1::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input1:-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input2 {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 0.3rem;
  width: 1.56rem;
  height: 0.5rem;
  background: #fff;
  color: #333;
  font-size: var(--fs16);
  font-family: 'Barlow-R';
  border-radius: 0.1rem;
}
.contactP2 .form li .input2::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input2:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input2::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .input2:-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li textarea {
  display: block;
  padding: 0.1rem 0.2rem 0 0.3rem;
  width: 100%;
  height: 1.6rem;
  line-height: 0.28rem;
  background: #fff;
  color: #333;
  font-size: var(--fs16);
  font-family: 'Barlow-R';
  border-radius: 0.1rem;
}
.contactP2 .form li textarea::-webkit-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li textarea:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li textarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li textarea:-ms-input-placeholder {
  color: #333;
  opacity: 1;
}
.contactP2 .form li .yzm {
  position: absolute;
  display: block;
  right: 0.2rem;
  top: 0.12rem;
  z-index: 1;
}
.contactP2 .form .li01 {
  width: 66.66%;
}
.contactP2 .form .li01 .box {
  padding-left: 1.76rem;
}
.contactP2 .form .li02 {
  width: 100%;
}
.contactP2 .agree {
  margin-top: 0.1rem;
  font-size: var(--fs14);
  line-height: 0.28rem;
  color: #666;
}
.contactP2 .agree a {
  color: #A98F7B;
  text-decoration: underline;
}
.contactP2 .agree input {
  position: relative;
  top: -0.02rem;
  margin: 0 0.16rem 0 0;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e5e5e5;
  /* 边框颜色 */
  -webkit-appearance: none;
  /* 移除默认样式 */
  -moz-appearance: none;
  /* 移除默认样式 */
  appearance: none;
  /* 移除默认样式 */
  outline: none!important;
  /* 移除点击后的轮廓 */
}
.contactP2 .agree input:checked {
  border: 1px solid #A98F7B;
  background: #A98F7B url(../img/gou.png) center no-repeat;
  /* 选中时的背景颜色 */
}
.contactP2 .submitBtn {
  display: flex;
  justify-content: center;
  margin: 0.4rem auto 0;
}
.contactP2 .submitBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 0.3rem;
  min-width: 1.94rem;
  height: 0.5rem;
  background: #A98F7B;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.contactP2 .submitBtn a em {
  margin-left: 0.1rem;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../img/nimg24_1.png) no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 1rem 0 0.86rem;
  }
  .contactP1 .mxfDiv {
    display: block;
  }
  .contactP1 .leftDiv {
    width: auto;
  }
  .contactP1 .leftDiv .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .contactP1 .list ul {
    display: block;
  }
  .contactP1 .list li {
    width: 100%;
    padding-left: 1.2rem;
    margin-top: 0.4rem;
    min-height: 0.92rem;
    font-size: var(--fs15);
  }
  .contactP1 .list li:nth-child(1) {
    margin-top: 0;
  }
  .contactP1 .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .contactP1 .list li .ico {
    width: 0.92rem;
    height: 0.92rem;
  }
  .contactP1 .list li .ico img {
    width: 0.56rem;
  }
  .contactP1 .list li .zi {
    line-height: 0.48rem;
  }
  .contactP1 .list li .wen {
    line-height: 0.48rem;
  }
  .contactP1 .ewm {
    margin-top: 0.6rem;
  }
  .contactP1 .ewm ul {
    display: flex;
  }
  .contactP1 .ewm li {
    margin-left: 0;
    margin-right: 0.3rem;
    width: 2.6rem;
  }
  .contactP1 .ewm li .limg {
    height: 2.6rem;
  }
  .contactP1 .ewm li .limg img {
    max-width: 2.2rem;
  }
  .contactP1 .ewm li .hala {
    margin-top: 0.2rem;
    line-height: 0.36rem;
    font-size: var(--fs14);
  }
  .contactP1 .tips {
    text-align: left;
  }
  .contactP2 {
    padding: 0.8rem 0 0.9rem;
  }
  .contactP2 .pageTitle {
    margin-bottom: 0.15rem;
  }
  .contactP2 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP2 .form {
    margin-top: 0.65rem;
  }
  .contactP2 .form ul {
    margin-right: 0;
  }
  .contactP2 .form li {
    float: none;
    width: 100%;
  }
  .contactP2 .form li .box {
    margin-right: 0;
  }
  .contactP2 .form li .baozhe {
    border-radius: 0.2rem;
  }
  .contactP2 .form li .baozhe .zi {
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .contactP2 .form li .input1 {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .contactP2 .form li .input2 {
    width: 2.06rem;
    height: 0.86rem;
    font-size: var(--fs14);
    border-radius: 0.2rem;
  }
  .contactP2 .form li textarea {
    padding: 0.24rem 0.2rem 0 0.3rem;
    height: 3rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
    border-radius: 0.2rem;
  }
  .contactP2 .form li .yzm img {
    height: 0.58rem;
  }
  .contactP2 .form .li01 {
    width: 100%;
  }
  .contactP2 .form .li01 .box {
    padding-left: 2.26rem;
  }
  .contactP2 .agree {
    line-height: 0.48rem;
  }
  .contactP2 .agree input {
    top: -0.05rem;
    width: 0.32rem;
    height: 0.32rem;
  }
  .contactP2 .submitBtn {
    margin: 0.6rem auto 0;
  }
  .contactP2 .submitBtn a {
    min-width: 2.54rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .contactP2 .submitBtn a em {
    margin-left: 0.15rem;
    width: 0.32rem;
    height: 0.32rem;
    background-size: 0.32rem;
  }
}
.serviceP1 {
  padding-bottom: 1.38rem;
  position: relative;
}
.serviceP1 .pageNow {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0.5rem;
}
.serviceP1 .mxfDiv {
  padding: 1.35rem 0 0.58rem;
  position: sticky;
  top: 0;
}
.serviceP1 .mxfDiv .pageTitle {
  text-align: center;
}
.serviceP1 .mxfDiv .title {
  margin-top: 6px;
  color: #999;
  text-align: center;
  font-size: var(--fs30);
  line-height: 0.36rem;
}
.serviceP1 .mxfDiv .content {
  margin: 0.34rem auto 0;
  width: 11.36rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #000;
  text-align: center;
}
.serviceP1 .item {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 3;
  will-change: top;
  transform: translateZ(0);
}
.serviceP1 .item .baozhe {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  border-radius: 0.2rem;
  background: #FFF;
  box-shadow: 0.1rem 0 0.3rem 0 rgba(0, 0, 0, 0.1), 0 0.1rem 0.3rem 0 rgba(0, 0, 0, 0.05);
}
.serviceP1 .item .imgDiv {
  order: 1;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 7.1rem;
  height: 4.66rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.serviceP1 .item .imgDiv img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(20%) brightness(1);
  transition: filter 0.6s ease;
}
.serviceP1 .item .imgDiv:hover img {
  filter: grayscale(0%) brightness(1.05);
}
.serviceP1 .item .conDiv {
  position: relative;
  width: 5.3rem;
  height: 4.66rem;
}
.serviceP1 .item .conDiv .num {
  font-size: var(--fs30);
  line-height: 0.36rem;
  margin-bottom: 0.8rem;
  color: #A98F7B;
}
.serviceP1 .item .conDiv .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #000;
  margin-bottom: 0.3rem;
}
.serviceP1 .item .conDiv .wen {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.serviceP1 .item .conDiv .btnDiv {
  margin-top: 0.6rem;
}
.serviceP1 .item .conDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  width: 1.36rem;
  height: 0.46rem;
  background: #A98F7B;
  border-radius: 0.48rem;
  color: #fff;
}
.serviceP2 {
  padding: 1.18rem 0 1.26rem;
  background: #f4f4f4;
}
.serviceP2 .pageTitle {
  text-align: center;
  line-height: 0.6rem;
  margin-bottom: 0.85rem;
  font-family: 'Barlow-R';
}
.serviceP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.serviceP2 .list li {
  cursor: pointer;
  width: calc((100% - 1.2rem) / 4);
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}
.serviceP2 .list li:nth-child(-n+4) {
  margin-top: 0;
}
.serviceP2 .list li:nth-child(4n) {
  margin-right: 0;
}
.serviceP2 .list li .imgDiv {
  position: relative;
  height: 2.32rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.serviceP2 .list li .imgDiv .ico {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.serviceP2 .list li .imgDiv .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.26rem;
  margin-top: -0.26rem;
  width: 0.52rem;
  height: 0.52rem;
  background: url(../img/nimg52_1.png) no-repeat;
  background-size: 100%;
}
.serviceP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.serviceP2 .list li .name {
  display: flex;
  margin-top: 0.45rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  min-height: 0.72rem;
  padding-right: 0.5rem;
  color: #333;
}
.serviceP2 .list li .name em {
  padding-right: 0.32rem;
  background: url(../img/ico1.png) right 0.12rem no-repeat;
  background-size: 0.1rem;
}
.serviceP2 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #999;
  font-size: var(--fs18);
  line-height: 0.26rem;
  height: 0.78rem;
  overflow: hidden;
  margin-top: 0.15rem;
}
.serviceP2 .list li .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.6rem;
  color: #A98F7B;
  width: 1.44rem;
  height: 0.55rem;
  background: #fff;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.serviceP2 .list li .videoDiv {
  display: none;
}
.serviceP2 .list li:hover .imgDiv .ico {
  opacity: 1;
  visibility: visible;
}
.serviceP2 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.serviceP2 .list li:hover .more {
  color: #fff;
  background: #A98F7B;
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding-bottom: 1rem;
  }
  .serviceP1 .pageNow {
    display: none;
  }
  .serviceP1 .mxfDiv {
    padding: 0.7rem 0 0.5rem;
    position: relative;
    top: auto;
  }
  .serviceP1 .mxfDiv .title {
    margin-top: 0.1rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .serviceP1 .mxfDiv .content {
    margin: 0.4rem auto 0;
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP1 .item {
    position: relative;
    padding: 0;
    height: auto;
    top: 0!important;
    margin-bottom: 0.3rem;
  }
  .serviceP1 .item:last-child {
    margin-bottom: 0;
  }
  .serviceP1 .item .baozhe {
    display: block;
    padding: 0.5rem 0.3rem 0.5rem;
    border-radius: 0.24rem;
  }
  .serviceP1 .item .imgDiv {
    width: 100%;
    height: auto;
    border-radius: 0.24rem;
  }
  .serviceP1 .item .conDiv {
    padding-top: 0.6rem;
    width: auto;
    height: auto;
  }
  .serviceP1 .item .conDiv .num {
    position: absolute;
    right: 0;
    top: 0.6rem;
    font-size: var(--fs24);
    line-height: 0.52rem;
    margin-bottom: 0;
  }
  .serviceP1 .item .conDiv .name {
    padding-right: 0.8rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .serviceP1 .item .conDiv .wen {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP1 .item .conDiv .btnDiv {
    margin-top: 0.45rem;
  }
  .serviceP1 .item .conDiv .btnDiv a {
    font-size: var(--fs14);
    width: 2.36rem;
    height: 0.82rem;
  }
  .serviceP2 {
    padding: 0.9rem 0 1rem;
  }
  .serviceP2 .pageTitle {
    line-height: 0.64rem;
    margin-bottom: 0.6rem;
  }
  .serviceP2 .list li {
    width: 100%;
    margin-top: 0.6rem;
    margin-right: 0;
  }
  .serviceP2 .list li:nth-child(-n+4) {
    margin-top: 0.6rem;
  }
  .serviceP2 .list li:first-child {
    margin-top: 0;
  }
  .serviceP2 .list li .imgDiv {
    height: auto;
    border-radius: 0.24rem;
  }
  .serviceP2 .list li .imgDiv .ico::after {
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    width: 1rem;
    height: 1rem;
  }
  .serviceP2 .list li .imgDiv img {
    width: 100%;
    height: auto;
  }
  .serviceP2 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
    min-height: 1.04rem;
  }
  .serviceP2 .list li .name em {
    padding-right: 0.4rem;
    background: url(../img/ico1.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
  .serviceP2 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .serviceP2 .list li .more {
    display: none;
  }
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.shipinLayer {
  width: 10rem;
  margin: 0 auto;
  background: #fff;
  padding: 0.5rem;
  position: relative;
}
.shipinLayer .close {
  position: absolute;
  display: block;
  right: 0.1rem;
  top: 0.1rem;
  width: 30px;
  height: 30px;
  z-index: 1;
  background: url(../img/close2.svg) center no-repeat;
  background-size: 30px;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.shipinLayer .close:hover {
  transform: rotate(-90deg);
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.1rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.1rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.1rem;
}
@media (max-width: 1004px) {
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
}
.newsP1 {
  padding: 1.6rem 0 0.8rem;
  background: #f4f4f4;
}
.newsP1 .toptop {
  padding-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.newsP1 .rightDiv {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.newsP1 .select {
  width: 1.44rem;
  position: relative;
}
.newsP1 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.5rem;
  line-height: 0.5rem;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  color: #999;
  background: #fff;
  border-radius: 0.48rem;
}
.newsP1 .select .caption::after {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background: url(../img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
}
.newsP1 .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.newsP1 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 4;
  background: #fff;
  max-height: 2rem;
  overflow-y: auto;
  display: none;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.newsP1 .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.newsP1 .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.newsP1 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #A98F7B;
}
.newsP1 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #999;
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0 0.3rem;
  border-bottom: 1px solid #dadada;
}
.newsP1 .select .xlist a:last-child {
  border-bottom: none;
}
.newsP1 .select .xlist a:hover {
  color: #A98F7B;
}
.newsP1 .form {
  margin-left: 0.3rem;
  width: 3.52rem;
  height: 0.5rem;
  background: #fff;
  position: relative;
  border-radius: 0.48rem;
  overflow: hidden;
}
.newsP1 .form .input1 {
  width: 100%;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #999;
  height: 0.5rem;
  line-height: 0.5rem;
}
.newsP1 .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.newsP1 .form .btn1 {
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #A98F7B url(../img/search.svg) center no-repeat;
  background-size: 0.24rem;
  z-index: 1;
  cursor: pointer;
}
.newsPic {
  position: relative;
  overflow: hidden;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .swiper-slide {
  will-change: transform, opacity;
}
.newsPic .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-radius: 0.15rem;
  position: relative;
  padding: 0.54rem 0.65rem 0.54rem 0.5rem;
  height: 5.72rem;
  background: #fff;
  overflow: hidden;
}
.newsPic .imgDiv {
  width: 7.1rem;
  height: 4.66rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: All 1s ease;
}
.newsPic .conDiv {
  width: 6.3rem;
}
.newsPic .time {
  padding-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.newsPic .name {
  margin-top: 8px;
  font-size: var(--fs30);
  color: #000;
  line-height: 0.36rem;
  height: 1.44rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #666;
  text-align: justify;
  line-height: 0.24rem;
  height: 1.2rem;
}
.newsPic .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.56rem;
  width: 1.36rem;
  height: 0.46rem;
  background: #A98F7B;
  color: #fff;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  transition: All 0.5s ease;
}
.newsPic .swiper-pagination {
  padding-top: 0.45rem;
  position: relative;
  bottom: 0!important;
  margin-left: 0;
}
.newsPic .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 10px;
  background: #999;
  opacity: 1;
}
.newsPic .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 12px;
  width: 40px;
  background: #A98F7B;
}
.newsPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic .swiper-slide:hover .name {
  color: #A98F7B;
}
.newsPic .swiper-slide:hover .more {
  color: #fff;
  background: #A98F7B;
}
.newsP2 {
  padding: 0.8rem 0 1.2rem;
}
.newsP2 .list {
  padding-bottom: 0.8rem;
}
.newsP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.newsP2 .list li {
  width: calc((100% - 0.84rem) / 3);
  margin-right: 0.42rem;
  margin-top: 0.82rem;
}
.newsP2 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.newsP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.newsP2 .list li a {
  width: 100%;
  display: block;
}
.newsP2 .list li a .imgDiv {
  position: relative;
  border-top-left-radius: 0.15rem;
  border-top-right-radius: 0.15rem;
  height: 3.12rem;
  overflow: hidden;
}
.newsP2 .list li a .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.newsP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.newsP2 .list li a .botDiv {
  padding: 0.28rem 0.32rem 0.3rem;
  min-height: 2.76rem;
  background: #f4f4f4;
  position: relative;
  border-bottom-left-radius: 0.15rem;
  border-bottom-right-radius: 0.15rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a .botDiv .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
  transition: all 0.4s ease;
}
.newsP2 .list li a .botDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a .botDiv .look {
  position: absolute;
  left: 0.32rem;
  bottom: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.newsP2 .list li a:hover .imgDiv::after {
  opacity: 1;
}
.newsP2 .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsP2 .list li a:hover .botDiv {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background: #A98F7B;
}
.newsP2 .list li a:hover .botDiv .name,
.newsP2 .list li a:hover .botDiv .time,
.newsP2 .list li a:hover .botDiv .look {
  color: #fff;
}
.newsP2 .list li a:hover .botDiv .time,
.newsP2 .list li a:hover .botDiv .look {
  letter-spacing: 0.5px;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.9rem 0 0.8rem;
  }
  .newsP1 .toptop {
    padding-bottom: 0.6rem;
  }
  .newsP1 .rightDiv {
    position: relative;
  }
  .newsP1 .select {
    width: 100%;
    float: none;
  }
  .newsP1 .select .caption {
    height: 0.96rem;
    padding-left: 0.3rem;
    line-height: 0.96rem;
    font-size: var(--fs14);
  }
  .newsP1 .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    right: 0.3rem;
    margin-top: -4px;
  }
  .newsP1 .select .xlist {
    max-height: 4.8rem;
  }
  .newsP1 .select .xlist a {
    padding: 0 0.3rem;
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .newsP1 .form {
    float: none;
    margin-top: 0.25rem;
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
  }
  .newsP1 .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
    padding-left: 0.3rem;
  }
  .newsP1 .form .btn1 {
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.42rem;
  }
  .newsPic .mxfDiv {
    display: block;
    border-radius: 0.24rem;
    padding: 0 0 0.6rem 0;
    height: auto;
  }
  .newsPic .imgDiv {
    width: 100%;
    height: 4.2rem;
  }
  .newsPic .imgDiv img {
    height: auto;
  }
  .newsPic .time {
    padding: 0.5rem 0.4rem 0.1rem;
    font-size: var(--fs16);
    line-height: 0.32rem;
  }
  .newsPic .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 1.44rem;
    padding: 0 0.4rem;
  }
  .newsPic .content {
    display: none;
  }
  .newsPic .more {
    margin: 0.4rem 0.3rem 0;
    width: 2.3rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .newsP2 {
    padding: 0.8rem 0 0.9rem;
  }
  .newsP2 .list {
    padding-bottom: 0.7rem;
  }
  .newsP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .newsP2 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .newsP2 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .newsP2 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .newsP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .newsP2 .list li a .imgDiv {
    border-top-left-radius: 0.16rem;
    border-top-right-radius: 0.16rem;
    height: 2.12rem;
  }
  .newsP2 .list li a .botDiv {
    padding: 0.25rem 0.2rem;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
  }
  .newsP2 .list li a .botDiv .time {
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
  .newsP2 .list li a .botDiv .name {
    margin-top: 0.1rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsP2 .list li a .botDiv .look {
    margin-top: 0.15rem;
    font-size: var(--fs13);
    line-height: 0.32rem;
  }
}
.newsBox {
  border-top: #d9d9d9 solid 1px;
  padding: 1rem 0 1.2rem;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .w366 {
  position: sticky;
  top: 1.2rem;
  width: 3.66rem;
}
.newShow {
  width: 10.4rem;
}
.newShow .name {
  margin-bottom: 0.2rem;
  font-size: var(--fs30);
  color: #000;
  line-height: 0.36rem;
}
.newShow .time {
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.newShow .time li {
  float: left;
  padding-left: 0.28rem;
  margin-right: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #d9d9d9;
  position: relative;
}
.newShow .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
}
.newShow .content {
  font-size: var(--fs16);
  line-height: 24px;
  color: #666;
}
.newShow .imgDiv {
  text-align: center;
}
.newShow .imgDiv img {
  max-width: 100%;
}
.newShow .share {
  margin-top: 0.6rem;
  position: relative;
  padding-left: 0.85rem;
}
.newShow .share em {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs18);
  color: #333;
  line-height: 0.44rem;
  font-family: 'Barlow-B';
}
.newShow .share ul {
  display: flex;
}
.newShow .share li {
  margin-right: 0.3rem;
}
.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.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: #d3d3d3 solid 1px;
}
.newShow .share li a img {
  width: 0.16rem;
}
.newShow .share li a:hover {
  background: #d3d3d3;
}
.newShow .share li a:hover img {
  filter: brightness(0) invert(1);
}
.pageDown {
  padding-top: 0.35rem;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  padding: 0.25rem 0 0.25rem 1.1rem;
  line-height: 0.24rem;
  border-bottom: #d9d9d9 solid 1px;
}
.pageDown li em {
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: block;
  color: #333;
  font-family: 'Barlow-B';
}
.pageDown li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  color: #333;
}
.pageDown li a:hover {
  border-bottom: #A98F7B solid 1px;
}
.pageDown li a:hover em {
  color: #A98F7B;
}
.sideNews .detail a .imgDiv {
  overflow: hidden;
  border-radius: 0.12rem;
}
.sideNews .detail a .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.sideNews .detail a .time {
  margin: 0.16rem 0 0.15rem;
  font-size: var(--fs16);
  color: #d6d6d6;
  line-height: 0.24rem;
  padding-left: 24px;
  background: url(../img/nimg18_3.png) left center no-repeat;
}
.sideNews .detail a .name {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.sideNews .detail a .more {
  margin-top: 0.3rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.sideNews .detail a:hover .name {
  color: #A98F7B;
}
.sideNews .detail a:hover .imgDiv img {
  transform: scale(1.1);
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.42rem;
  color: #333;
}
.sideNews .list {
  margin-top: 0.42rem;
  border-top: #ebebeb solid 1px;
}
.sideNews .list ul {
  margin-bottom: 0;
}
.sideNews .list li {
  font-size: var(--fs16);
  border-bottom: #ebebeb solid 1px;
}
.sideNews .list li a {
  display: block;
  padding: 0.24rem 0;
  color: #333;
  line-height: 0.24rem;
}
.sideNews .list li a:hover {
  color: #A98F7B;
}
.sideNews .backBtn {
  margin-top: 0.6rem;
}
.sideNews .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  width: 1.4rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #A98F7B;
  color: #fff;
}
.sideNews .backBtn a em {
  margin-left: 0.1rem;
  width: 0.24rem;
  height: 0.18rem;
  background: url(../img/nimg24_2.png) no-repeat;
  background-size: 0.24rem;
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.7rem 0 0.9rem;
  }
  .newsBox .w366 {
    position: relative;
    top: 0;
    width: 100%;
  }
  .newShow {
    float: none;
    width: auto;
  }
  .newShow .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newShow .time {
    margin: 0.25rem 0 0.5rem;
  }
  .newShow .time li {
    padding-left: 0.36rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newShow .time li img {
    margin-top: -0.14rem;
    width: 0.3rem;
  }
  .newShow .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newShow .share {
    padding-left: 0.9rem;
  }
  .newShow .share em {
    font-size: var(--fs14);
    line-height: 0.74rem;
  }
  .newShow .share li {
    margin-right: 0.15rem;
  }
  .newShow .share li a {
    width: 0.74rem;
    height: 0.74rem;
  }
  .newShow .share li a img {
    width: 0.32rem;
  }
  .pageDown {
    padding-top: 0.35rem;
  }
  .pageDown li a {
    padding: 0.25rem 0 0.25rem 1.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .pageDown li p {
    height: 0.42rem;
  }
  .sideNews {
    padding-top: 0.6rem;
  }
  .sideNews .detail {
    display: none;
  }
  .sideNews .list {
    margin-top: 0.35rem;
  }
  .sideNews .list ul {
    margin-bottom: 0;
  }
  .sideNews .list li {
    font-size: var(--fs14);
  }
  .sideNews .list li a {
    line-height: 0.42rem;
  }
  .sideNews .backBtn a {
    font-size: var(--fs15);
    width: 2.4rem;
    height: 0.82rem;
  }
}
.productlist {
  padding: 0.74rem 0 1.5rem;
}
.productlist .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.productlist .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #999;
  padding-bottom: 0.75rem;
}
.productlist .list {
  padding-bottom: 1.2rem;
}
.productlist .list ul {
  margin-bottom: 0;
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productlist .list li {
  width: calc((100% - 0.35rem) / 2);
  position: relative;
  margin-right: 0.35rem;
  margin-top: 0.9rem;
}
.productlist .list li:nth-child(2n) {
  margin-right: 0;
}
.productlist .list li:nth-child(-n+2) {
  margin-top: 0;
}
.productlist .list li .imgDiv {
  height: 4.92rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.productlist .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productlist .list li .name {
  display: flex;
  margin-top: 0.3rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: bold;
}
.productlist .list li .name em {
  color: #333;
  padding-right: 0.32rem;
  background: url(../img/ico1.png) right 0.1rem no-repeat;
  background-size: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productlist .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.productlist .list li:hover .name em {
  color: #A98F7B;
  background: url(../img/ico1on.png) right 0.1rem no-repeat;
  background-size: 0.1rem;
}
@media (max-width: 1004px) {
  .productlist {
    padding: 0.9rem 0 1rem;
  }
  .productlist .pageTitle {
    margin-bottom: 0.1rem;
  }
  .productlist .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    padding-bottom: 0.6rem;
  }
  .productlist .list {
    padding-bottom: 0.7rem;
  }
  .productlist .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.6rem;
  }
  .productlist .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productlist .list li:nth-child(1) {
    margin-top: 0;
  }
  .productlist .list li:nth-child(2) {
    margin-top: 0.6rem;
  }
  .productlist .list li .imgDiv {
    height: auto;
    border-radius: 0.24rem;
  }
  .productlist .list li .imgDiv img {
    height: auto;
  }
  .productlist .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .productlist .list li .name em {
    padding-right: 0.4rem;
    background: url(../img/ico1.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
  .productlist .list li:hover .name em {
    background: url(../img/ico1on.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
}
.productP1 {
  padding: 0.74rem 0 1.4rem;
}
.productP1 .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.productP1 .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #999;
  padding-bottom: 0.75rem;
}
.productP1 .list {
  margin-right: -0.25rem;
}
.productP1 .list ul {
  display: flex;
  width: auto;
}
.productP1 .list li {
  flex: 1 1 33.33%;
  height: 6.28rem;
  position: relative;
  transition: flex 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productP1 .list li .box {
  margin-right: 0.24rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.productP1 .list li .bg {
  position: relative;
  height: 6.28rem;
  background: center no-repeat;
  background-size: cover;
}
.productP1 .list li .bg::before {
  content: '';
  opacity: 0.7;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #A98F7B 100%);
  background-blend-mode: normal, normal;
  transition: opacity 0.5s ease;
}
.productP1 .list li .bg::after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  background-blend-mode: normal, normal;
  transition: opacity 0.5s ease;
}
.productP1 .list li .beforeDiv {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  padding: 0 0.24rem;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.productP1 .list li .beforeDiv .name {
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #fff;
}
.productP1 .list li .afterDiv {
  position: absolute;
  padding: 0 1rem 0.4rem 0.42rem;
  left: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  transform: translateY(100%) scale(1.03);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s ease, visibility 0.7s ease;
}
.productP1 .list li .afterDiv .name {
  padding-right: 0.42rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
}
.productP1 .list li .afterDiv .more {
  margin-top: 0.18rem;
  line-height: 0.24rem;
  font-size: var(--fs16);
}
.productP1 .list li.on {
  flex: 0 0 60%;
}
.productP1 .list li.on .bg::before {
  opacity: 0;
  transition-delay: 0s;
}
.productP1 .list li.on .bg::after {
  opacity: 1;
  transition-delay: 0s;
}
.productP1 .list li.on .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.productP1 .list li.on .afterDiv {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.productP1 .list li:not(.on) .bg::after {
  transition-delay: 0.3s;
  /* 离开时延迟淡出 */
}
.productP1 .swiper-pagination {
  display: none;
  bottom: 0;
  position: relative;
  padding-top: 0.6rem;
}
.productP1 .swiper-pagination-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: none;
  margin-left: 5px!important;
  margin-right: 5px!important;
  border: #A98F7B solid 1px;
}
.productP1 .swiper-pagination-bullet-active {
  background: #A98F7B;
}
.productP2 {
  padding-bottom: 1.4rem;
}
.productP2 .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.productP2 .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #999;
  padding-bottom: 0.75rem;
}
.productP2 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.6rem;
  min-height: 6rem;
  background: #f4f4f4;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  border-radius: 0.15rem;
}
.productP2 .list li:last-child {
  margin-bottom: 0;
}
.productP2 .list li .imgDiv {
  width: 7.92rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.productP2 .list li .imgDiv img {
  width: 100%;
}
.productP2 .list li .conDiv {
  width: 4.7rem;
}
.productP2 .list li .name {
  display: flex;
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  font-weight: bold;
}
.productP2 .list li .name em {
  padding-right: 0.32rem;
  background: url(../img/ico1.png) right 0.14rem no-repeat;
  background-size: 0.1rem;
}
.productP2 .list li .content {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #666;
}
.productP2 .list li .more {
  margin-top: 0.8rem;
}
.productP2 .list li .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;
  font-size: var(--fs16);
  width: 1.44rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 0.48rem;
  color: #A98F7B;
}
.productP2 .list li .more a:hover {
  background: #A98F7B;
  color: #fff;
}
.productP2 .list li:nth-child(even) {
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
}
.productP2 .list li:nth-child(even) .imgDiv {
  order: 1;
}
.productP3 {
  padding: 1rem 0;
  background: #f4f4f4;
}
.productP3 .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.productP3 .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #999;
  padding-bottom: 0.5rem;
}
.productP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP3 .list li {
  cursor: pointer;
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}
.productP3 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.productP3 .list li:nth-child(3n) {
  margin-right: 0;
}
.productP3 .list li .imgDiv {
  position: relative;
  height: 3.15rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.productP3 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.productP3 .list li .name {
  display: flex;
  margin-top: 0.45rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  font-weight: bold;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.productP3 .list li .name a {
  color: #333;
  padding-right: 0.32rem;
  background: url(../img/ico1.png) right 0.14rem no-repeat;
  background-size: 0.1rem;
}
.productP3 .list li .name a:hover {
  color: #A98F7B;
  background: url(../img/ico1on.png) right 0.14rem no-repeat;
  background-size: 0.1rem;
}
.productP3 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #999;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.96rem;
  overflow: hidden;
  margin-top: 0.2rem;
}
.productP3 .list li .more {
  display: flex;
  margin-top: 0.6rem;
}
.productP3 .list li .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;
  color: #A98F7B;
  padding: 0 0.2rem;
  min-width: 2rem;
  height: 0.5rem;
  background: #fff;
  font-size: var(--fs16);
  border-radius: 0.48rem;
}
.productP3 .list li .more a:hover {
  background: #A98F7B;
  color: #fff;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.9rem 0 1rem;
  }
  .productP1 .pageTitle {
    margin-bottom: 0.1rem;
  }
  .productP1 .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    padding-bottom: 0.6rem;
  }
  .productP1 .list {
    margin-right: 0;
    overflow: hidden;
  }
  .productP1 .list ul {
    width: 100%;
  }
  .productP1 .list li {
    flex: 0 0 100%;
    height: 5.2rem;
  }
  .productP1 .list li .box {
    margin-right: 0;
  }
  .productP1 .list li .bg {
    height: 5.2rem;
  }
  .productP1 .list li .bg::after {
    opacity: 1;
    height: 55%;
  }
  .productP1 .list li .beforeDiv {
    bottom: 0.3rem;
    padding: 0 0.3rem;
  }
  .productP1 .list li .beforeDiv .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .productP1 .list li .afterDiv {
    display: none;
  }
  .productP1 .list li.on {
    flex: 0 0 100%;
  }
  .productP1 .list li.on .bg::before {
    opacity: 0;
  }
  .productP1 .list li.on .bg::after {
    opacity: 1;
  }
  .productP1 .list li.on .beforeDiv {
    opacity: 1;
    visibility: visible;
  }
  .productP1 .swiper-pagination {
    display: block;
  }
  .productP2 {
    padding-bottom: 1rem;
  }
  .productP2 .pageTitle {
    margin-bottom: 0.1rem;
  }
  .productP2 .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    padding-bottom: 0.6rem;
  }
  .productP2 .list li {
    display: block;
    margin-bottom: 0.6rem;
    min-height: 3rem;
    padding: 0.4rem 0.3rem 0.7rem;
    border-radius: 0.2rem;
  }
  .productP2 .list li .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .productP2 .list li .conDiv {
    padding-top: 0.5rem;
    width: auto;
  }
  .productP2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .productP2 .list li .name em {
    padding-right: 0.4rem;
    background: url(../img/ico1.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
  .productP2 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP2 .list li .more {
    margin-top: 0.4rem;
  }
  .productP2 .list li .more a {
    font-size: var(--fs14);
    width: 2.44rem;
    height: 0.82rem;
  }
  .productP2 .list li:nth-child(even) {
    padding: 0.4rem 0.3rem 0.7rem;
  }
  .productP3 {
    padding: 1rem 0;
  }
  .productP3 .pageTitle {
    margin-bottom: 0.1rem;
  }
  .productP3 .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    padding-bottom: 0.6rem;
  }
  .productP3 .list li {
    width: 100%;
    margin-top: 0.7rem;
    margin-right: 0;
  }
  .productP3 .list li:nth-child(-n+3) {
    margin-top: 0.7rem;
  }
  .productP3 .list li:first-child {
    margin-top: 0;
  }
  .productP3 .list li .imgDiv {
    height: auto;
    border-radius: 0.24rem;
  }
  .productP3 .list li .imgDiv img {
    width: 100%;
    height: auto;
  }
  .productP3 .list li .name {
    margin-top: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
    min-height: auto;
  }
  .productP3 .list li .name a {
    color: #333;
    padding-right: 0.4rem;
    background: url(../img/ico1.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
  .productP3 .list li .name a:hover {
    color: #A98F7B;
    background: url(../img/ico1on.png) right 0.16rem no-repeat;
    background-size: 0.12rem;
  }
  .productP3 .list li .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 1.44rem;
  }
  .productP3 .list li .more {
    margin-top: 0.4rem;
  }
  .productP3 .list li .more a {
    padding: 0 0.32rem;
    min-width: 2.6rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
}
.proshowP1 .toptop {
  padding: 0.6rem 0 0.7rem;
}
.proshowP1 .toptop .pageTitle {
  text-align: center;
  margin-bottom: 6px;
}
.proshowP1 .toptop .zi {
  font-size: var(--fs30);
  line-height: 0.36rem;
  text-align: center;
  color: #999;
}
.proshowP1 .botbot {
  background: #f4f4f4;
  padding: 1rem 0;
}
.proshowP1 .botbot .wrap {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.proshowP1 .botbot .imgDiv {
  order: 1;
  width: 50%;
  overflow: hidden;
  border-radius: 0.15rem;
}
.proshowP1 .botbot .imgDiv img {
  width: 100%;
  filter: grayscale(20%) brightness(1);
  transition: filter 0.6s ease;
}
.proshowP1 .botbot .imgDiv:hover img {
  filter: grayscale(0%) brightness(1.05);
}
.proshowP1 .botbot .conDiv {
  width: 6.7rem;
}
.proshowP1 .botbot .conDiv .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.28rem;
}
.proshowP1 .botbot .conDiv .content {
  color: #848484;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.proshowP2 {
  padding-top: 1.25rem;
}
.proshowP2 .pageTitle {
  text-align: center;
  margin-bottom: 0.6rem;
}
.proP2Pic {
  position: relative;
}
.proP2Pic .imgList {
  overflow: hidden;
}
.proP2Pic .imgList li {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
}
.proP2Pic .imgList li .imgDiv {
  position: relative;
  border-radius: 0.15rem;
  height: 3.15rem;
  overflow: hidden;
}
.proP2Pic .imgList li .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.proP2Pic .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.proP2Pic .imgList li .name {
  margin-top: 0.5rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  min-height: 0.72rem;
  color: #333;
  font-weight: bold;
}
.proP2Pic .imgList li .content {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.proP2Pic .imgList li:hover .imgDiv::after {
  transform: translateX(100%);
}
.proP2Pic .imgList li:hover .imgDiv img {
  transform: scale(1.1);
}
.proP2Pic .se {
  display: block;
  width: 0.76rem;
  height: 0.76rem;
  position: absolute;
  top: 1.4rem;
  border-radius: 50%;
  border: #A98F7B solid 1px;
  z-index: 2;
}
.proP2Pic .prev {
  left: 50%;
  margin-left: -9rem;
  background: url(../img/nimg12_left.png) center no-repeat;
}
.proP2Pic .prev:hover {
  background: #A98F7B url(../img/nimg12_lefton.png) center no-repeat;
}
.proP2Pic .next {
  right: 50%;
  margin-right: -9rem;
  background: url(../img/nimg12_right.png) center no-repeat;
}
.proP2Pic .next:hover {
  background: #A98F7B url(../img/nimg12_righton.png) center no-repeat;
}
.proshowP3 {
  padding: 1.25rem 0 1.2rem;
}
.proshowP3 .pageTitle {
  text-align: center;
  margin-bottom: 0.6rem;
}
.proP3Pic {
  position: relative;
}
.proP3Pic .imgList {
  overflow: hidden;
}
.proP3Pic .imgList li {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
}
.proP3Pic .imgList li .imgDiv {
  position: relative;
  border-radius: 0.15rem;
  height: 3.15rem;
  overflow: hidden;
}
.proP3Pic .imgList li .imgDiv::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
.proP3Pic .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.proP3Pic .imgList li .name {
  margin-top: 0.5rem;
  font-size: var(--fs30);
  line-height: 0.36rem;
  min-height: 0.72rem;
  color: #333;
  font-weight: bold;
}
.proP3Pic .imgList li .content {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
.proP3Pic .imgList li:hover .imgDiv::after {
  transform: translateX(100%);
}
.proP3Pic .imgList li:hover .imgDiv img {
  transform: scale(1.1);
}
.proP3Pic .se {
  display: block;
  width: 0.76rem;
  height: 0.76rem;
  position: absolute;
  top: 1.4rem;
  border-radius: 50%;
  border: #A98F7B solid 1px;
  z-index: 2;
}
.proP3Pic .prev {
  left: 50%;
  margin-left: -9rem;
  background: url(../img/nimg12_left.png) center no-repeat;
}
.proP3Pic .prev:hover {
  background: #A98F7B url(../img/nimg12_lefton.png) center no-repeat;
}
.proP3Pic .next {
  right: 50%;
  margin-right: -9rem;
  background: url(../img/nimg12_right.png) center no-repeat;
}
.proP3Pic .next:hover {
  background: #A98F7B url(../img/nimg12_righton.png) center no-repeat;
}
.proshowP4 {
  padding-top: 2.2rem;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.proshowP4 .parallax-bg {
  position: absolute;
  top: -72%;
  left: 0;
  width: 100%;
  height: 120%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.proshowP4 .parallax-bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.3);
}
.proshowP4 .conDiv {
  position: relative;
  z-index: 2;
  width: 9rem;
  margin: 0 auto;
  text-align: center;
}
.proshowP4 .pageTitle {
  color: #fff;
}
.proshowP4 .indMsg {
  color: rgba(255, 255, 255, 0.7);
}
.proshowP4 .content {
  margin-top: 0.54rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #fff;
}
.proshowP5 {
  padding: 1.2rem 0 1.3rem;
  background: #f4f4f4;
}
.proshowP5 .pageTitle {
  text-align: center;
  margin-bottom: 0.4rem;
}
.proshowP5 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.proshowP5 .list li {
  width: calc((100% - 0.4rem) / 3);
  margin-right: 0.2rem;
  margin-top: 0.28rem;
  background: #fff;
  min-height: 3.6rem;
  padding: 0.3rem 1rem 0.5rem 0.32rem;
  border-radius: 0.14rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.proshowP5 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.proshowP5 .list li:nth-child(3n) {
  margin-right: 0;
}
.proshowP5 .list li .ico {
  height: 0.64rem;
}
.proshowP5 .list li .ico img {
  width: 0.64rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.proshowP5 .list li .name {
  margin-top: 0.5rem;
  color: #0A0A0A;
  font-size: var(--fs30);
  line-height: 0.36rem;
  min-height: 0.72rem;
  word-break: keep-all;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.proshowP5 .list li .msg {
  margin-top: 0.2rem;
  color: #4A5565;
  font-size: var(--fs16);
  line-height: 0.24rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.proshowP5 .list li:hover {
  background: #A98F7B;
}
.proshowP5 .list li:hover .ico img {
  filter: brightness(0) invert(1);
}
.proshowP5 .list li:hover .name,
.proshowP5 .list li:hover .msg {
  color: #fff;
}
.proshowP6 {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.46rem;
}
.proshowP6::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
.proshowP6 .toptop {
  position: relative;
  padding-bottom: 1.15rem;
}
.proshowP6 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0.3rem;
  z-index: 1;
}
.proshowP6 .arrowDiv .se {
  display: block;
  float: left;
  width: 0.8rem;
  height: 0.8rem;
  z-index: 3;
  border-radius: 50%;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(2px);
}
.proshowP6 .arrowDiv .prev {
  margin-right: 0.26rem;
  background: #fff url(../img/nimg10_left.png) center no-repeat;
}
.proshowP6 .arrowDiv .prev:hover {
  background: #A98F7B url(../img/nimg10_lefton.png) center no-repeat;
}
.proshowP6 .arrowDiv .next {
  background: #fff url(../img/nimg10_right.png) center no-repeat;
}
.proshowP6 .arrowDiv .next:hover {
  background: #A98F7B url(../img/nimg10_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .proshowP1 .toptop .pageTitle {
    margin-bottom: 0.1rem;
  }
  .proshowP1 .toptop .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .proshowP1 .botbot {
    padding: 0.8rem 0;
  }
  .proshowP1 .botbot .wrap {
    display: block;
  }
  .proshowP1 .botbot .imgDiv {
    width: 100%;
    border-radius: 0.24rem;
  }
  .proshowP1 .botbot .conDiv {
    margin-top: 0.5rem;
    width: auto;
  }
  .proshowP1 .botbot .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.35rem;
  }
  .proshowP1 .botbot .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proshowP2 {
    padding-top: 0.9rem;
  }
  .proP2Pic .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .proP2Pic .imgList li .imgDiv {
    border-radius: 0.24rem;
    height: 3.8rem;
  }
  .proP2Pic .imgList li .name {
    margin-top: 0.35rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
    min-height: 1.04rem;
  }
  .proP2Pic .imgList li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proP2Pic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 1.56rem;
  }
  .proP2Pic .prev {
    left: 0.2rem;
    margin-left: 0;
    background: #fff url(../img/nimg12_left.png) center no-repeat;
    background-size: 6px;
  }
  .proP2Pic .prev:hover {
    background-size: 6px;
  }
  .proP2Pic .next {
    right: 0.2rem;
    margin-right: 0;
    background: #fff url(../img/nimg12_right.png) center no-repeat;
    background-size: 6px;
  }
  .proP2Pic .next:hover {
    background-size: 6px;
  }
  .proshowP3 {
    padding: 0.9rem 0 1rem;
  }
  .proP3Pic .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .proP3Pic .imgList li .imgDiv {
    border-radius: 0.24rem;
    height: 3.8rem;
  }
  .proP3Pic .imgList li .name {
    margin-top: 0.35rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
    min-height: 1.04rem;
  }
  .proP3Pic .imgList li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proP3Pic .se {
    width: 0.86rem;
    height: 0.86rem;
    top: 1.56rem;
  }
  .proP3Pic .prev {
    left: 0.2rem;
    margin-left: 0;
    background: #fff url(../img/nimg12_left.png) center no-repeat;
    background-size: 6px;
  }
  .proP3Pic .prev:hover {
    background-size: 6px;
  }
  .proP3Pic .next {
    right: 0.2rem;
    margin-right: 0;
    background: #fff url(../img/nimg12_right.png) center no-repeat;
    background-size: 6px;
  }
  .proP3Pic .next:hover {
    background-size: 6px;
  }
  .proshowP4 {
    padding-top: 1.2rem;
  }
  .proshowP4 .parallax-bg {
    top: -65%;
    height: 122%;
  }
  .proshowP4 .conDiv {
    width: 86%;
  }
  .proshowP4 .content {
    margin-top: 0.4rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .proshowP5 {
    padding: 0.9rem 0 1rem;
  }
  .proshowP5 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .proshowP5 .list li {
    width: 100%;
    margin-right: 0;
    padding: 0.4rem 0.6rem 0.5rem 0.32rem;
    border-radius: 0.2rem;
  }
  .proshowP5 .list li:nth-child(1) {
    margin-top: 0;
  }
  .proshowP5 .list li:nth-child(2),
  .proshowP5 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .proshowP5 .list li .ico {
    height: 0.8rem;
  }
  .proshowP5 .list li .ico img {
    width: 0.8rem;
  }
  .proshowP5 .list li .name {
    margin-top: 0.35rem;
    font-size: var(--fs17);
    line-height: 0.36rem;
    min-height: auto;
  }
  .proshowP5 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proshowP6 {
    padding: 1rem 0 1.2rem;
  }
  .proshowP6::after {
    display: none;
  }
  .proshowP6 .toptop {
    padding-right: 2.1rem;
    padding-bottom: 0.6rem;
  }
  .proshowP6 .indTitle {
    line-height: 0.86rem;
  }
  .proshowP6 .arrowDiv {
    top: 0;
  }
  .proshowP6 .arrowDiv .se {
    width: 0.86rem;
    height: 0.86rem;
  }
  .proshowP6 .arrowDiv .prev {
    margin-right: 0.2rem;
    background-size: 6px;
  }
  .proshowP6 .arrowDiv .prev:hover {
    background-size: 6px;
  }
  .proshowP6 .arrowDiv .next {
    background-size: 6px;
  }
  .proshowP6 .arrowDiv .next:hover {
    background-size: 6px;
  }
}
.aboutP1 {
  padding: 0.5rem 0 1rem;
}
.aboutP1 .pageTitle {
  text-align: center;
  margin: 0.6rem 0 1rem;
}
.aboutP1 .mxfDiv {
  position: relative;
  overflow: hidden;
}
.aboutP1 .leftDiv {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7.68rem;
  width: 7.6rem;
}
.aboutP1 .leftDiv .name {
  font-size: var(--fs30);
  color: #333;
  font-weight: 500;
  line-height: 0.36rem;
}
.aboutP1 .leftDiv .content {
  font-size: var(--fs16);
  line-height: 0.24rem;
  margin-top: 0.26rem;
  font-weight: 500;
  color: #848484;
}
.aboutP1 .rightDiv {
  float: right;
  width: 8.1rem;
}
.aboutP1 .rightDiv .imgDiv {
  overflow: hidden;
  border-radius: 0.15rem 0 0 0.15rem;
}
.aboutP1 .rightDiv .imgDiv img {
  width: 100%;
}
.aboutP1 .rightDiv .conDiv {
  margin-top: 0.65rem;
}
.aboutP1 .rightDiv .conDiv .zi {
  font-size: var(--fs48);
  line-height: 0.8rem;
  color: #333;
  font-weight: 700;
}
.aboutP1 .rightDiv .conDiv .msg {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #999;
  opacity: 0.7;
  font-weight: 500;
}
.aboutP2 {
  padding-bottom: 2rem;
  overflow: hidden;
}
.aboutP2 .pageTitle {
  margin-bottom: 0.45rem;
}
.founderPic li {
  width: calc((100% - 0.35rem) / 2);
}
.founderPic li .box {
  height: 4.96rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.15rem;
}
.founderPic li .imgDiv {
  height: 100%;
}
.founderPic li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founderPic li .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  min-width: 3.8rem;
  top: 0;
  left: 0.72rem;
  height: 100%;
  z-index: 1;
}
.founderPic li .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #fff;
  font-weight: 700;
}
.founderPic li .conDiv .zi {
  margin-top: 5px;
  font-size: var(--fs16);
  line-height: 0.26rem;
  color: #fff;
  font-family: 'Barlow-R';
}
.founderPic li .conDiv .msg {
  margin-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.26rem;
  color: #fff;
  font-family: 'Barlow-R';
}
.founderPic li:nth-child(2) .conDiv,
.founderPic li:nth-child(3) .conDiv {
  left: 2.9rem;
}
.aboutP3 .mxfDiv {
  position: sticky;
  top: 0;
}
.aboutP3 .item {
  display: flex;
  display: -webkit-flex;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 3;
  will-change: top;
  transform: translateZ(0);
}
.aboutP3 .item .bg {
  position: relative;
  width: 100%;
  height: 100vh;
}
.aboutP3 .item .bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.aboutP3 .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP3 .item .layer {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 20%;
  right: 20%;
  top: 0;
  text-align: center;
  width: 60%;
  height: 100%;
}
.aboutP3 .item .layer .title {
  font-size: var(--fs48);
  line-height: 0.76rem;
  color: #fff;
  font-family: 'Poppins-SB';
}
.aboutP3 .item .layer .msg {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: rgba(255, 255, 255, 0.7);
}
.aboutP4 {
  padding-top: 2rem;
}
.aboutP4 .list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.94rem;
}
.aboutP4 .list li:last-child {
  margin-bottom: 0;
}
.aboutP4 .list li .imgDiv {
  width: 7.5rem;
  border-radius: 0.15rem;
  overflow: hidden;
}
.aboutP4 .list li .imgDiv img {
  width: 100%;
}
.aboutP4 .list li .conDiv {
  width: 7rem;
}
.aboutP4 .list li .conDiv .name {
  font-size: var(--fs48);
  line-height: 0.8rem;
  color: #333;
  font-family: 'Poppins-SB';
}
.aboutP4 .list li .conDiv .msg {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #999;
  font-weight: 500;
}
.aboutP4 .list li:nth-child(odd) .imgDiv {
  order: 1;
}
.aboutP5 {
  padding: 1.2rem 0 2rem;
}
.aboutP5 .pageTitle {
  text-align: center;
  margin-bottom: 0.4rem;
}
.aboutP5 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.aboutP5 .list ul li {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
  height: 6.48rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutP5 .list ul li:nth-child(3n) {
  margin-right: 0;
}
.aboutP5 .list ul li .imgDiv {
  position: relative;
  height: 6.48rem;
}
.aboutP5 .list ul li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  opacity: 0.6;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP5 .list ul li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutP5 .list ul li .layer {
  position: absolute;
  left: 0;
  padding: 0 0.3rem;
  width: 100%;
  text-align: center;
  top: calc(80% - 0.7rem);
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP5 .list ul li .layer .ico img {
  width: 0.6rem;
}
.aboutP5 .list ul li .layer .name {
  margin: 0.3rem 0;
  font-size: var(--fs24);
  line-height: 0.3rem;
  font-weight: 600;
  color: #fff;
}
.aboutP5 .list ul li .layer .msg {
  font-size: var(--fs18);
  line-height: 0.26rem;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  color: #fff;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP5 .list ul li:hover .imgDiv::after {
  height: 100%;
  background: #000;
  opacity: 0.4;
}
.aboutP5 .list ul li:hover .layer {
  top: 15%;
}
.aboutP5 .list ul li:hover .layer .msg {
  max-height: 2rem;
}
.aboutP5 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.aboutP5 .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background: #fff;
  border: #ddd solid 1px;
}
.aboutP5 .swiper-pagination-bullet-active {
  background: #A98F7B;
  border: #A98F7B solid 1px;
}
.aboutP6 {
  position: relative;
  height: 8.46rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.aboutP6::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.aboutP6 .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.aboutP6 .pageTitle {
  text-align: center;
  color: #fff;
  margin-bottom: 0.65rem;
}
.aboutP6 .list ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.aboutP6 .list li {
  margin: 0 0.6rem;
}
.aboutP6 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  width: 2rem;
  height: 2rem;
  padding: 0 0.3rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #fff;
  border-radius: 50%;
  background: rgba(169, 143, 123, 0.6);
  backdrop-filter: blur(15px);
}
.aboutP7 {
  padding: 1.36rem 0 1.7rem;
  background: #f4f4f4;
}
.aboutP7 .pageTitle {
  text-align: center;
  margin-bottom: 0.7rem;
}
.aboutP7 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.aboutP7 .list li {
  width: calc((100% - 0.8rem) / 3);
  margin-right: 0.4rem;
}
.aboutP7 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP7 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 3.15rem;
  border-radius: 0.15rem;
}
.aboutP7 .list li .imgDiv img {
  max-width: 3.52rem;
  max-height: 1.24rem;
}
.aboutP7 .list li .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  color: #333;
  font-weight: 500;
  margin: 0.42rem 0 0.2rem;
}
.aboutP7 .list li .content {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
}
@media (max-width: 1600px) {
  .aboutP1 .leftDiv {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.5rem var(--offset) 0.9rem;
  }
  .aboutP1 .pageNow {
    display: none;
  }
  .aboutP1 .pageTitle {
    font-size: var(--fs20);
    margin: 0 0 0.65rem;
  }
  .aboutP1 .leftDiv {
    position: relative;
    left: 0;
    margin-left: 0;
    width: auto;
  }
  .aboutP1 .leftDiv .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .aboutP1 .leftDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.3rem;
  }
  .aboutP1 .rightDiv {
    margin-top: 0.6rem;
    float: none;
    width: 100%;
  }
  .aboutP1 .rightDiv .imgDiv {
    border-radius: 0.2rem;
  }
  .aboutP1 .rightDiv .conDiv {
    margin-top: 0.5rem;
  }
  .aboutP1 .rightDiv .conDiv .zi {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP1 .rightDiv .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 {
    padding-bottom: 1rem;
  }
  .aboutP2 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .founderPic li {
    width: 100%;
  }
  .founderPic li .box {
    height: 4.5rem;
    border-radius: 0.2rem;
  }
  .founderPic li .conDiv {
    min-width: 3.8rem;
    left: 0.4rem;
  }
  .founderPic li .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .founderPic li .conDiv .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .founderPic li .conDiv .msg {
    margin-top: 0.1rem;
    font-size: var(--fs12);
    line-height: 0.32rem;
  }
  .founderPic li:nth-child(2) .conDiv,
  .founderPic li:nth-child(3) .conDiv {
    left: 38%;
  }
  .aboutP3 .item .layer {
    left: 10%;
    right: 10%;
    width: 80%;
  }
  .aboutP3 .item .layer .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .aboutP3 .item .layer .msg {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .aboutP4 {
    padding-top: 1rem;
  }
  .aboutP4 .list li {
    display: block;
    margin-bottom: 0.7rem;
  }
  .aboutP4 .list li .imgDiv {
    width: 100%;
    border-radius: 0.2rem;
  }
  .aboutP4 .list li .conDiv {
    width: auto;
    margin-top: 0.45rem;
  }
  .aboutP4 .list li .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .aboutP4 .list li .conDiv .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP5 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP5 .pageTitle {
    margin-bottom: 0.6rem;
  }
  .aboutP5 .list {
    overflow: hidden;
  }
  .aboutP5 .list ul {
    flex-flow: nowrap;
  }
  .aboutP5 .list ul li {
    width: 100%;
    margin-right: 0;
    height: 6.2rem;
  }
  .aboutP5 .list ul li .imgDiv {
    height: 6.2rem;
  }
  .aboutP5 .list ul li .imgDiv::after {
    height: 100%;
    background: #000;
    opacity: 0.4;
  }
  .aboutP5 .list ul li .layer {
    top: 15%;
  }
  .aboutP5 .list ul li .layer .ico img {
    width: 0.96rem;
  }
  .aboutP5 .list ul li .layer .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .aboutP5 .list ul li .layer .msg {
    font-size: var(--fs14);
    line-height: 0.52rem;
    max-height: 1rem;
  }
  .aboutP5 .list ul li:hover .layer .msg {
    max-height: 1rem;
  }
  .aboutP5 .swiper-pagination {
    display: block;
  }
  .aboutP6 {
    height: 8rem;
  }
  .aboutP6 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .aboutP6 .list ul {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-flow: wrap;
  }
  .aboutP6 .list li {
    width: 50%;
    margin: 0.35rem 0 0;
  }
  .aboutP6 .list li:nth-child(-n+2) {
    margin: 0;
  }
  .aboutP6 .list li .name {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 2rem;
    height: 2rem;
    padding: 0 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .aboutP7 {
    padding: 1rem 0 1.1rem;
  }
  .aboutP7 .list ul {
    display: block;
  }
  .aboutP7 .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.6rem;
  }
  .aboutP7 .list li:last-child {
    margin-bottom: 0;
  }
  .aboutP7 .list li .imgDiv {
    height: 3rem;
    border-radius: 0.2rem;
  }
  .aboutP7 .list li .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
    margin: 0.35rem 0 0.2rem;
  }
  .aboutP7 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.pageCon {
  padding: 0.9rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
