.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2);
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #1E2678;
  }
}
@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: #1E2678;
  }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide .img {
  position: relative;
  height: 100vh;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.ind-banner .onebox .baozhe {
  overflow: hidden;
  width: 0;
  pointer-events: none;
}
.ind-banner .onebox .cn {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  margin-bottom: 0.2rem;
  font-weight: bold;
}
.ind-banner .onebox .wen {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.ind-banner .onebox .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.6rem;
  height: 0.6rem;
  margin-top: 1rem;
  border: #fff solid 2px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more i {
  position: relative;
  z-index: 2;
  margin-left: 0.2rem;
  display: block;
  width: 29px;
  height: 6px;
  background: url(../images/ico2.svg) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more:hover {
  border: #F1B523 solid 2px;
  background: #F1B523;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .baozhe {
  width: 100%;
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .arrowDiv {
  display: flex;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.4rem;
  z-index: 3;
}
.ind-banner .se {
  display: block;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.ind-banner .prev {
  margin-right: 0.2rem;
  background: url(../images/nimg13_left.png) no-repeat center center;
}
.ind-banner .prev:hover {
  border: #F1B523 solid 2px;
  background: #F1B523 url(../images/nimg13_left.png) no-repeat center center;
}
.ind-banner .next {
  background: url(../images/nimg13_right.png) no-repeat center center;
}
.ind-banner .next:hover {
  border: #F1B523 solid 2px;
  background: #F1B523 url(../images/nimg13_right.png) no-repeat center center;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
  .ind-banner .arrowDiv {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    margin-left: 0;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
  }
  .ind-banner .onebox .wen {
    font-size: var(--fs14);
    line-height: 0.52rem;
    width: 100%;
  }
  .ind-banner .onebox .more {
    display: none;
  }
  .ind-banner .arrowDiv {
    left: var(--offset);
    margin-left: 0;
    bottom: 0.5rem;
  }
  .ind-banner .se {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.indTitle {
  text-align: center;
  color: #333;
  font-size: var(--fs48);
  line-height: 0.56rem;
  font-weight: bold;
  margin: 0;
}
.indexP1 {
  padding-top: 1.6rem;
  height: 9.6rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP1 .wrap {
  position: relative;
  height: 100%;
}
.indexP1 .conDiv {
  width: 5.2rem;
}
.indexP1 .indTitle {
  text-align: left;
}
.indexP1 .content {
  margin-top: 0.35rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: justify;
}
.indexP1 .list {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  z-index: 1;
}
.indexP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.indexP1 .list li {
  position: relative;
  width: calc((100% - 0.96rem) / 4);
  margin-right: 0.32rem;
  padding: 0.2rem 0.3rem;
  height: 1.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}
.indexP1 .list li:nth-child(4n) {
  margin-right: 0;
}
.indexP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(30, 38, 120, 0.2);
}
.indexP1 .list li .ico img {
  width: 0.34rem;
}
.indexP1 .list li .num {
  padding-top: 0.34rem;
  color: #1E2678;
  font-size: var(--fs48);
  line-height: 0.56rem;
  font-family: 'Mont-B';
}
.indexP1 .list li .zi {
  color: #333;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.indexP2 {
  padding: 1.34rem 0 1.54rem;
}
.indexP2 .indTitle {
  margin-bottom: 0.55rem;
}
.indexP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.indexP2 .list li {
  width: calc((100% - 36px) / 4);
  margin-right: 12px;
}
.indexP2 .list li:nth-child(4n) {
  margin-right: 0;
}
.indexP2 .list li a {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #fff;
  border-radius: 6px;
}
.indexP2 .list li a .imgDiv {
  position: relative;
  height: 6.4rem;
}
.indexP2 .list li a .imgDiv::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP2 .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .list li a .conlayer {
  position: absolute;
  left: 0;
  top: 0.5rem;
  padding: 0 0.5rem;
  z-index: 1;
}
.indexP2 .list li a .ico {
  height: 0.48rem;
  margin-bottom: 0.56rem;
}
.indexP2 .list li a .ico img {
  width: 0.48rem;
}
.indexP2 .list li a .cn {
  font-size: var(--fs32);
  line-height: 0.42rem;
}
.indexP2 .list li a .en {
  margin-top: 0.1rem;
  position: relative;
  font-size: var(--fs16);
  line-height: 0.24rem;
  padding-bottom: 0.3rem;
}
.indexP2 .list li a .en::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 23px;
  height: 2px;
  background: #fff;
}
.indexP2 .list li a .more {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0.5rem;
  bottom: -0.6rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #F1B523 url(../images/ico3on.svg) center no-repeat;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indexP2 .list li a:hover {
  border-radius: 0.2rem;
}
.indexP2 .list li a:hover .imgDiv::after {
  opacity: 1;
  visibility: visible;
}
.indexP2 .list li a:hover .more {
  opacity: 1;
  visibility: visible;
  bottom: 0.5rem;
}
.indexP3 {
  padding-bottom: 1.9rem;
}
.indexP3 .indTitle {
  text-align: center;
  margin-bottom: 0.56rem;
}
.indexP3 .list {
  position: relative;
}
.indexP3 .list::before {
  content: '';
  position: absolute;
  left: -0.25rem;
  top: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.indexP3 .list::after {
  content: '';
  position: absolute;
  right: -0.25rem;
  top: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}
.indexP3 .partnerPic {
  width: 100%;
  padding: 0.12rem 0;
  height: 1.44rem;
  overflow: hidden;
}
.indexP3 .partnerPic li {
  float: left;
  padding: 0 0.12rem;
}
.indexP3 .partnerPic li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.36rem;
  height: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 0 0.12rem 0 rgba(0, 0, 0, 0.1);
}
.indexP3 .partnerPic li .imgDiv img {
  max-width: 1.5rem;
  max-height: 0.6rem;
}
.indexP4 {
  overflow: hidden;
  background: #F7F7F9;
  padding: 1.35rem 0 1.6rem;
}
.indexP4 .indTitle {
  text-align: center;
  margin-bottom: 0.56rem;
}
.indNews {
  overflow: hidden;
}
.indNews .swiper-slide a .imgDiv {
  overflow: hidden;
}
.indNews .swiper-slide a .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indNews .swiper-slide a .conDiv {
  padding: 0.3rem 0.4rem 0;
  height: 2.84rem;
  background: #fff;
}
.indNews .swiper-slide a .conDiv .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
  margin-bottom: 0.15rem;
}
.indNews .swiper-slide a .conDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  height: 0.9rem;
  color: #333;
}
.indNews .swiper-slide a .conDiv .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.45rem;
}
.indNews .swiper-slide a .conDiv .type {
  display: flex;
}
.indNews .swiper-slide a .conDiv .type em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs14);
  color: #999;
  min-width: 0.92rem;
  height: 0.36rem;
  padding: 0 0.12rem;
  background: #F7F7F9;
  border-radius: 0.45rem;
}
.indNews .swiper-slide a .conDiv .ico {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  border: 1px solid #E7E7ED;
  background: url(../images/ico3.svg) center no-repeat;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.indNews .swiper-slide a:hover .imgDiv img {
  transform: scale(1.1);
}
.indNews .swiper-slide a:hover .ico {
  border: #F1B523 solid 1px;
  background: #F1B523 url(../images/ico3on.svg) center no-repeat;
}
.indNews .bottom {
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.indNews .swiper-pagination {
  position: relative;
  width: calc(100% - 150px);
  height: 2px;
  background-color: #d9d9d9;
}
.indNews .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #1E2678;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  transform-origin: left center;
}
.indNews .arrowDiv {
  font-size: 0;
}
.indNews .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: #999 solid 2px;
}
.indNews .arrowDiv .se:hover {
  border: #1E2678 solid 2px;
}
.indNews .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../images/nimg13_left2.png) center no-repeat;
}
.indNews .arrowDiv .prev:hover {
  background: #1E2678 url(../images/nimg13_left.png) center no-repeat;
}
.indNews .arrowDiv .next {
  background: url(../images/nimg13_right2.png) center no-repeat;
}
.indNews .arrowDiv .next:hover {
  background: #1E2678 url(../images/nimg13_right.png) center no-repeat;
}
@media (max-width: 1004px) {
  .indTitle {
    font-size: var(--fs24);
    line-height: 0.64em;
  }
  .indexP1 {
    padding: 1.2rem 0 0.5rem;
    height: auto;
    background: center no-repeat;
    background-size: cover;
  }
  .indexP1 .conDiv {
    width: 65%;
  }
  .indexP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .list {
    margin-top: 0.7rem;
    position: relative;
    bottom: 0;
  }
  .indexP1 .list ul {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
  }
  .indexP1 .list li {
    position: relative;
    width: calc((100% - 0.3rem) / 2);
    margin-right: 0.3rem;
    margin-top: 0.3rem;
    height: auto;
  }
  .indexP1 .list li:nth-child(4n) {
    margin-right: 0.3rem;
  }
  .indexP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .indexP1 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .indexP1 .list li .ico {
    width: 0.72rem;
    height: 0.72rem;
  }
  .indexP1 .list li .ico img {
    width: 0.48rem;
  }
  .indexP1 .list li .num {
    padding-top: 0.5rem;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indexP1 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP2 {
    padding: 1rem 0 1.1rem;
  }
  .indexP2 .indTitle {
    margin-bottom: 0.65rem;
  }
  .indexP2 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.2rem;
  }
  .indexP2 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .indexP2 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .indexP2 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .indexP2 .list li a .imgDiv {
    height: 5rem;
  }
  .indexP2 .list li a .conlayer {
    padding: 0 0.3rem;
  }
  .indexP2 .list li a .ico {
    height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .indexP2 .list li a .ico img {
    width: 0.64rem;
  }
  .indexP2 .list li a .cn {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .indexP2 .list li a .en {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-bottom: 0.3rem;
  }
  .indexP2 .list li a .more {
    left: 0.3rem;
    bottom: -0.9rem;
    width: 0.72rem;
    height: 0.72rem;
  }
  .indexP2 .list li a:hover .more {
    bottom: 0.35rem;
  }
  .indexP3 {
    padding-bottom: 1.2rem;
  }
  .indexP3 .indTitle {
    margin-bottom: 0.65rem;
  }
  .indexP3 .partnerPic li .imgDiv img {
    max-width: 1.4rem;
  }
  .indexP4 {
    padding: 1rem 0 1.2rem;
  }
  .indexP4 .indTitle {
    margin-bottom: 0.65rem;
  }
  .indNews .swiper-slide a .conDiv {
    padding: 0.3rem 0.4rem 0.5rem;
    height: auto;
  }
  .indNews .swiper-slide a .conDiv .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .indNews .swiper-slide a .conDiv .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indNews .swiper-slide a .conDiv .botbot {
    margin-top: 0.35rem;
  }
  .indNews .swiper-slide a .conDiv .type em {
    font-size: var(--fs13);
    height: 0.62rem;
    padding: 0 0.3rem;
  }
  .indNews .swiper-slide a .conDiv .ico {
    width: 0.72rem;
    height: 0.72rem;
  }
  .indNews .swiper-pagination {
    width: calc(100% - 2.4rem);
  }
  .indNews .arrowDiv .se {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.aboutP1 {
  padding: 0.72rem 0 1.3rem;
}
.aboutP1 .content {
  margin: 0.4rem 0 0.95rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
}
.aboutP1 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.aboutP1 .list li {
  width: 25%;
  text-align: center;
}
.aboutP1 .list li .ico {
  margin: 0 auto 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
}
.aboutP1 .list li .ico img {
  width: 0.6rem;
}
.aboutP1 .list li .num {
  color: #333;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-family: 'Mont-B';
}
.aboutP1 .list li .zi {
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.aboutP2 {
  padding-top: 1.3rem;
  background: #F7F7F9;
}
.aboutP2 .pageTitle {
  margin-bottom: 0.4rem;
}
.aboutP2 .mxfDiv {
  position: relative;
}
.aboutP2 .mapDiv {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.aboutP2 .mapDiv .imgDiv img {
  width: 100%;
}
.aboutP2 .list li {
  position: absolute;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
}
.aboutP2 .list li em {
  display: block;
  cursor: pointer;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP2 .list li .ico {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1E2678;
}
.aboutP2 .list li .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  border-radius: 50%;
  background: #fff;
}
.aboutP2 .list li .layerDiv {
  position: absolute;
  z-index: 2;
  padding: 18px 18px 25px;
  right: -150px;
  top: -190px;
  background: #fff;
  width: 294px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
}
.aboutP2 .list li .layerDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1E2678;
  height: 2px;
  width: 100%;
}
.aboutP2 .list li .layerDiv .name {
  color: #000;
  font-size: var(--fs20);
  line-height: 0.28rem;
  margin-bottom: 0.1rem;
  font-weight: bold;
}
.aboutP2 .list li .layerDiv .msg {
  font-size: var(--fs14);
  color: #666;
  padding-right: 4px;
  line-height: 24px;
  height: 96px;
  overflow: auto;
}
.aboutP2 .list li .layerDiv .msg::-webkit-scrollbar {
  width: 3px;
}
.aboutP2 .list li .layerDiv .msg::-webkit-scrollbar-track {
  background-color: #eee;
}
.aboutP2 .list li .layerDiv .msg::-webkit-scrollbar-thumb {
  background-color: #1E2678;
}
.aboutP2 .list li:hover .ico {
  background: #F1B523;
}
.aboutP2 .list .Ghana {
  left: 6.9%;
  top: 42.3%;
  padding-left: 20px;
}
.aboutP2 .list .Ghana em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .Ghana .ico {
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .Ghana .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .Ghana:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .beijing {
  right: 60.5%;
  top: 26.2%;
  padding-right: 20px;
}
.aboutP2 .list .beijing em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .beijing .ico {
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .beijing .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .beijing:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .shenzhen {
  right: 60.7%;
  top: 34.7%;
  padding-right: 20px;
}
.aboutP2 .list .shenzhen em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .shenzhen .ico {
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .shenzhen .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .shenzhen:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .Thailand {
  right: 64.6%;
  top: 39.3%;
  padding-right: 20px;
}
.aboutP2 .list .Thailand em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .Thailand .ico {
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .Thailand .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .Thailand:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .Vietnam {
  left: 35.5%;
  top: 42.3%;
  padding-left: 20px;
}
.aboutP2 .list .Vietnam em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .Vietnam .ico {
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .Vietnam .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .Vietnam:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .Indonesia {
  left: 36.8%;
  top: 52.4%;
  padding-left: 20px;
}
.aboutP2 .list .Indonesia em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .Indonesia .ico {
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .Indonesia .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .Indonesia:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .Mexico {
  left: 80%;
  top: 33.4%;
  padding-left: 20px;
}
.aboutP2 .list .Mexico em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 0.15rem;
  min-width: 1.2rem;
  line-height: 0.38rem;
  border-radius: 0.45rem;
  background: #fff;
}
.aboutP2 .list .Mexico .ico {
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.aboutP2 .list .Mexico .ico::after {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
}
.aboutP2 .list .Mexico:hover em {
  color: #fff;
  background: #F1B523;
}
.aboutP2 .list .puyang {
  right: 61.5%;
  top: 29.7%;
  padding-right: 16px;
}
.aboutP2 .list .puyang .ico {
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.aboutP2 .list .chengdu {
  right: 63.2%;
  top: 32.5%;
  padding-right: 16px;
}
.aboutP2 .list .chengdu .ico {
  right: 0;
  top: 50%;
  margin-top: -5px;
}
.aboutP2 .list .qingdao {
  left: 42.7%;
  top: 29.8%;
  padding-left: 16px;
}
.aboutP2 .list .qingdao .ico {
  left: 0;
  top: 50%;
  margin-top: -5px;
}
.aboutP2 .list .shanghai {
  left: 40.4%;
  top: 32%;
  padding-left: 16px;
}
.aboutP2 .list .shanghai .ico {
  left: 0;
  top: 50%;
  margin-top: -5px;
}
.aboutP2 .list .fuzhou {
  left: 40.1%;
  top: 34.2%;
  padding-left: 16px;
}
.aboutP2 .list .fuzhou .ico {
  left: 0;
  top: 50%;
  margin-top: -5px;
}
.aboutP2 .list .zhuhai {
  left: 37%;
  top: 37.7%;
  padding-top: 14px;
}
.aboutP2 .list .zhuhai .ico {
  left: 50%;
  margin-left: -5px;
  top: 0;
}
.aboutP2 .list .on .layerDiv {
  opacity: 1;
  visibility: visible;
  top: -170px;
}
.aboutP2 .zi {
  position: absolute;
  left: 0;
  bottom: 0.75rem;
  z-index: 1;
  color: #999;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.aboutP2 .cardP4Tab {
  height: 1rem;
  position: relative;
  background: #1E2678;
  padding: 0 0.3rem;
  margin-bottom: 0.35rem;
}
.aboutP2 .cardP4Tab .txt {
  line-height: 1rem;
  font-size: var(--fs17);
  color: #fff;
  display: block;
}
.aboutP2 .cardP4Tab .ico {
  position: absolute;
  top: 0px;
  right: 0.35rem;
  width: 100%;
  height: 100%;
  background: url(../images/ico1.svg) right center no-repeat;
  cursor: pointer;
}
.aboutP2 .cardP4Tab ul {
  margin-right: 0px;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 1rem;
  width: 100%;
  border: #ddd solid 1px;
  border-top: none;
  background: #fff;
  display: none;
  height: 3.6rem;
  overflow: auto;
}
.aboutP2 .cardP4Tab li {
  font-size: var(--fs15);
  padding: 0 0.3rem;
  height: 0.9rem;
  line-height: 0.9rem;
}
.aboutP2 .Phone-Box .name {
  font-size: var(--fs17);
  line-height: 0.52rem;
  color: #333;
  font-weight: bold;
}
.aboutP2 .Phone-Box .msg {
  font-size: var(--fs14);
  line-height: 0.48rem;
  margin-top: 0.15rem;
}
.aboutP3 {
  position: relative;
  height: 100vh;
  background: center no-repeat;
  background-size: cover;
}
.aboutP3 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.aboutP3 .list li {
  position: relative;
  width: 25%;
  height: 100vh;
  cursor: pointer;
}
.aboutP3 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(241, 181, 35, 0) 0%, #F1B523 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP3 .list li .layer {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 0 0.3rem;
  text-align: center;
  color: #fff;
  left: 0;
  bottom: 0.76rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP3 .list li .layer .ico {
  margin-bottom: 0.7rem;
}
.aboutP3 .list li .layer .ico img {
  width: 0.8rem;
}
.aboutP3 .list li .layer .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.aboutP3 .list li .layer .zi {
  margin-top: 0.2rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  min-height: 0.72rem;
}
.aboutP3 .list li:hover::after {
  height: 100%;
}
.aboutP3 .list li:hover .layer {
  bottom: 50%;
  transform: translateY(50%);
}
.aboutP4 {
  padding-top: 1.3rem;
  height: 9.2rem;
  background: center no-repeat;
  background-size: cover;
}
.aboutP4 .conDiv {
  padding-left: calc(50% + 1.4rem);
}
.aboutP4 .tab2 {
  padding-bottom: 0.55rem;
}
.aboutP4 .tab2 ul {
  display: flex;
  flex-wrap: wrap;
}
.aboutP4 .tab2 li {
  margin-right: 0.6rem;
  font-size: var(--fs48);
  line-height: 0.56rem;
  font-weight: 600;
  color: #999;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.aboutP4 .tab2 li:last-child {
  margin-right: 0;
}
.aboutP4 .tab2 .liNow {
  color: #333;
}
.aboutP4 .list {
  animation: am_top 0.8s ease-out 0.1s backwards;
}
.aboutP4 .list .scroll-container {
  padding-right: 5px;
  height: 5.4rem;
  overflow: auto;
}
.aboutP4 .list .scroll-container::-webkit-scrollbar {
  width: 3px;
}
.aboutP4 .list .scroll-container::-webkit-scrollbar-track {
  background-color: #eee;
}
.aboutP4 .list .scroll-container::-webkit-scrollbar-thumb {
  background-color: #1E2678;
}
.aboutP4 .list .scroll-container li {
  padding-left: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  background: url(../images/nimg20_1.png) left 0.08rem no-repeat;
  background-size: 0.2rem;
}
.aboutP4 .imgDiv img {
  width: 100%;
}
.aboutP4 .shenglue {
  font-size: var(--fs36);
  color: #000;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.8rem 0 1rem;
  }
  .aboutP1 .content {
    margin: 0.4rem 0 0.7rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .list li {
    width: 50%;
    margin-top: 0.5rem;
  }
  .aboutP1 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .aboutP1 .list li .ico {
    margin: 0 auto 0.35rem;
    width: 0.76rem;
    height: 0.76rem;
  }
  .aboutP1 .list li .ico img {
    width: 0.76rem;
  }
  .aboutP1 .list li .num {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP1 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP2 {
    display: none;
    padding: 1rem 0;
  }
  .aboutP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .aboutP3 {
    height: 60vh;
  }
  .aboutP3::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  .aboutP3 .list li {
    width: 25%;
    height: 60vh;
  }
  .aboutP3 .list li::after {
    display: none;
  }
  .aboutP3 .list li .layer {
    padding: 0;
    bottom: auto;
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
  }
  .aboutP3 .list li .layer .ico {
    margin-bottom: 0.45rem;
  }
  .aboutP3 .list li .layer .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .list li .layer .zi {
    font-size: 0.2rem;
    line-height: 0.48rem;
    min-height: 1.44rem;
  }
  .aboutP3 .list li:hover .layer {
    bottom: 50%;
    transform: translateY(50%);
  }
  .aboutP4 {
    padding-top: 0;
    padding-bottom: 1rem;
    height: auto;
    background: none!important;
  }
  .aboutP4 .wrap {
    padding: 0;
  }
  .aboutP4 .conDiv {
    padding: 0.7rem var(--offset) 0;
  }
  .aboutP4 .tab2 {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding-bottom: 0.55rem;
  }
  .aboutP4 .tab2 li {
    margin: 0 0.4rem;
    font-size: var(--fs18);
    line-height: 0.72rem;
  }
  .aboutP4 .tab2 li:last-child {
    margin: 0 0.4rem;
  }
  .aboutP4 .list .scroll-container {
    height: 5.6rem;
  }
  .aboutP4 .list .scroll-container li {
    padding-left: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.56rem;
    background: url(../images/nimg20_1.png) left 0.12rem no-repeat;
    background-size: 0.32rem;
  }
  .aboutP4 .shenglue {
    font-size: var(--fs30);
  }
}
.woodworkP1 {
  padding: 0.75rem 0 1.3rem;
}
.woodworkP1 .pageTitle {
  margin-bottom: 0.5rem;
}
.woodworkP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.woodworkP1 .list li {
  position: relative;
  width: calc((100% - 0.84rem) / 3);
  margin-right: 0.42rem;
  margin-top: 0.42rem;
}
.woodworkP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.woodworkP1 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.woodworkP1 .list li .imgDiv {
  position: relative;
  overflow: hidden;
}
.woodworkP1 .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.woodworkP1 .list li .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.woodworkP1 .list li .name {
  position: absolute;
  width: 100%;
  padding: 0 0.4rem;
  left: 0;
  font-size: var(--fs24);
  line-height: 0.32rem;
  bottom: 0.35rem;
  color: #fff;
  z-index: 1;
}
.woodworkP1 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.woodworkP1 .moreBtn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.6rem;
}
.woodworkP1 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #1E2678;
  padding: 0 0.2rem;
  min-width: 1.6rem;
  height: 0.6rem;
  border-radius: 0.45rem;
  border: #1E2678 solid 2px;
}
.woodworkP1 .moreBtn a em {
  margin-left: 0.24rem;
  width: 0.29rem;
  height: 0.06rem;
  background: url(../images/ico2on.svg) no-repeat;
  background-size: 0.29rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.woodworkP1 .moreBtn a:hover {
  background: #1E2678;
  color: #fff;
}
.woodworkP1 .moreBtn a:hover em {
  background: url(../images/ico2.svg) no-repeat;
  background-size: 0.29rem;
}
.woodworkP1-2 {
  padding: 1.25rem 0 1.3rem;
}
.woodworkP2 {
  padding-bottom: 1.3rem;
}
.woodworkP2 .pageTitle {
  margin-bottom: 0.5rem;
}
.woodPic {
  overflow: hidden;
}
.woodPic .swiper-slide {
  cursor: pointer;
}
.woodPic .swiper-slide .imgDiv {
  height: 4.6rem;
  overflow: hidden;
}
.woodPic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.woodPic .swiper-slide .name {
  position: absolute;
  width: 100%;
  padding: 0 0.4rem;
  left: 0;
  bottom: 0.35rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
}
.woodPic .swiper-slide .videoDiv {
  display: none;
}
.woodPic .swiper-slide .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -26px;
  margin-top: -26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.woodPic .bottom {
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.woodPic .swiper-pagination {
  position: relative;
  width: calc(100% - 150px);
  height: 2px;
  background-color: #d9d9d9;
}
.woodPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #1E2678;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  transform-origin: left center;
}
.woodPic .arrowDiv {
  font-size: 0;
}
.woodPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: #1E2678 solid 2px;
}
.woodPic .arrowDiv .se:hover {
  border: #1E2678 solid 2px;
}
.woodPic .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../images/nimg13_lefton.png) center no-repeat;
}
.woodPic .arrowDiv .prev:hover {
  background: #1E2678 url(../images/nimg13_left.png) center no-repeat;
}
.woodPic .arrowDiv .next {
  background: url(../images/nimg13_righton.png) center no-repeat;
}
.woodPic .arrowDiv .next:hover {
  background: #1E2678 url(../images/nimg13_right.png) center no-repeat;
}
@media (max-width: 1004px) {
  .woodworkP1 {
    padding: 0.9rem 0 1rem;
  }
  .woodworkP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .woodworkP1 .list li {
    position: relative;
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .woodworkP1 .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .woodworkP1 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .woodworkP1 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .woodworkP1 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .woodworkP1 .list li .name {
    padding: 0 0.3rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    bottom: 0.3rem;
  }
  .woodworkP1 .moreBtn {
    margin-top: 0.7rem;
  }
  .woodworkP1 .moreBtn a {
    font-size: var(--fs14);
    padding: 0 0.4rem;
    height: 0.82rem;
  }
  .woodworkP1 .moreBtn a em {
    margin-left: 0.2rem;
    width: 0.36rem;
    height: 0.08rem;
    background-size: 0.36rem;
  }
  .woodworkP1 .moreBtn a:hover em {
    background-size: 0.36rem;
  }
  .woodworkP1-2 {
    padding: 0.9rem 0 1rem;
  }
  .woodworkP2 {
    padding-bottom: 1rem;
  }
  .woodworkP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .woodPic .swiper-slide .imgDiv {
    height: 4.2rem;
  }
  .woodPic .swiper-slide .name {
    padding: 0 0.3rem;
    bottom: 0.35rem;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .woodPic .swiper-slide .playbox {
    margin-left: -0.45rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
  }
  .woodPic .swiper-pagination {
    width: calc(100% - 2.4rem);
  }
  .woodPic .arrowDiv .se {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.videoModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100vh;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #1E2678 url(../images/close.svg) center no-repeat;
  background-size: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
@media (max-width: 1004px) {
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
}
.industryP1 {
  padding: 0.75rem 0 1.3rem;
  background: #F7F7F9;
}
.industryP1 .pageTitle {
  margin-bottom: 0.55rem;
}
.industryP1 .list {
  padding-bottom: 1.2rem;
}
.industryP1 .list ul {
  display: flex;
  display: -webkit-box;
  flex-wrap: wrap;
}
.industryP1 .list li {
  width: calc((100% - 0.84rem) / 3);
  margin-right: 0.42rem;
  margin-top: 0.42rem;
}
.industryP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.industryP1 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.industryP1 .list li .imgDiv {
  height: 2.94rem;
  overflow: hidden;
}
.industryP1 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.industryP1 .list li .botDiv {
  background: #fff;
  padding: 0.36rem 0.42rem 0.3rem;
  min-height: 2.32rem;
}
.industryP1 .list li .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.industryP1 .list li .zi dd {
  position: relative;
  padding-left: 0.18rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.industryP1 .list li .zi dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: #1E2678;
}
.industryP1 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.industryP1 .title {
  text-align: center;
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.industryP1 .list2 ul {
  display: flex;
  display: -webkit-box;
  flex-wrap: wrap;
}
.industryP1 .list2 li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: calc((100% - 0.32rem) / 2);
  margin-right: 0.32rem;
  margin-top: 0.4rem;
  background: #fff;
}
.industryP1 .list2 li:nth-child(2n) {
  margin-right: 0;
}
.industryP1 .list2 li:nth-child(-n+2) {
  margin-top: 0;
}
.industryP1 .list2 li .imgDiv {
  width: 50%;
  height: 4.5rem;
  overflow: hidden;
}
.industryP1 .list2 li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.industryP1 .list2 li .conDiv {
  padding: 0.56rem 0.8rem 0;
  width: 50%;
}
.industryP1 .list2 li .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.industryP1 .list2 li .zi dd {
  position: relative;
  padding-left: 0.18rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.industryP1 .list2 li .zi dd::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background: #1E2678;
}
.industryP1 .list2 li:hover .imgDiv img {
  transform: scale(1.1);
}
@media (max-width: 1004px) {
  .industryP1 {
    padding: 0.9rem 0 1rem;
  }
  .industryP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .industryP1 .list {
    padding-bottom: 0.9rem;
  }
  .industryP1 .list ul {
    display: block;
  }
  .industryP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.5rem;
  }
  .industryP1 .list li:nth-child(1) {
    margin-top: 0;
  }
  .industryP1 .list li:nth-child(2),
  .industryP1 .list li:nth-child(3) {
    margin-top: 0.5rem;
  }
  .industryP1 .list li .imgDiv {
    height: auto;
  }
  .industryP1 .list li .imgDiv img {
    height: auto;
  }
  .industryP1 .list li .botDiv {
    padding: 0.36rem 0.35rem 0.6rem;
  }
  .industryP1 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .industryP1 .list li .zi dd {
    padding-left: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .industryP1 .list li .zi dd::before {
    top: 0.16rem;
    width: 4px;
    height: 4px;
  }
  .industryP1 .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
    margin-bottom: 0.6rem;
  }
  .industryP1 .list2 ul {
    display: block;
  }
  .industryP1 .list2 li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    width: 100%;
    margin-right: 0;
  }
  .industryP1 .list2 li:nth-child(1) {
    margin-top: 0;
  }
  .industryP1 .list2 li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .industryP1 .list2 li .conDiv {
    padding: 0.4rem 0.3rem;
  }
  .industryP1 .list2 li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .industryP1 .list2 li .zi dd {
    padding-left: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .industryP1 .list2 li .zi dd::before {
    top: 0.16rem;
    width: 4px;
    height: 4px;
  }
}
.journal {
  background: #F7F7F9;
  padding: 0.75rem 0 1.2rem;
}
.journal .pageTitle {
  margin-bottom: 0.55rem;
}
.journal .list {
  padding-bottom: 0.6rem;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.journal .list a {
  display: block;
  background: #fff;
  width: calc((100% - 1.2rem) / 4);
  margin-right: 0.4rem;
  margin-top: 0.4rem;
  border: #fff solid 2px;
  padding: 0.4rem 0.32rem 0.35rem;
}
.journal .list a:nth-child(4n) {
  margin-right: 0;
}
.journal .list a:nth-child(-n+4) {
  margin-top: 0;
}
.journal .list a .imgDiv {
  height: 4rem;
  overflow: hidden;
}
.journal .list a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.journal .list a .name {
  margin-top: 0.25rem;
  line-height: 0.32rem;
  padding-left: 0.32rem;
  font-size: var(--fs24);
  font-weight: 500;
  color: #333;
  background: url(../images/nimg22_1.svg) left 0.04rem no-repeat;
  background-size: 0.22rem;
}
.journal .list a .time {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.journal .list a:hover {
  border: 2px solid #F1B523;
  box-shadow: 0 0 0.3rem rgba(241, 181, 35, 0.5);
}
.journal .list a:hover .imgDiv img {
  transform: scale(1.1);
}
.journal .list a:hover .name {
  background: url(../images/nimg22_1on.svg) left 0.04rem no-repeat;
  background-size: 0.22rem;
}
@media (max-width: 1004px) {
  .journal {
    padding: 0.9rem 0 1rem;
  }
  .journal .pageTitle {
    margin-bottom: 0.65rem;
  }
  .journal .list {
    padding-bottom: 0.8rem;
  }
  .journal .list a {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    border: #fff solid 1px;
    padding: 0.3rem 0.24rem;
  }
  .journal .list a:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .journal .list a:nth-child(2n) {
    margin-right: 0;
  }
  .journal .list a:nth-child(-n+2) {
    margin-top: 0;
  }
  .journal .list a:nth-child(3),
  .journal .list a:nth-child(4) {
    margin-top: 0.4rem;
  }
  .journal .list a .imgDiv {
    height: auto;
  }
  .journal .list a .imgDiv img {
    height: auto;
  }
  .journal .list a .name {
    margin-top: 0.2rem;
    line-height: 0.48rem;
    padding-left: 0.42rem;
    font-size: var(--fs16);
    background: url(../images/nimg22_1.svg) left 0.08rem no-repeat;
    background-size: 0.3rem;
  }
  .journal .list a .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .journal .list a:hover {
    border: 1px solid #F1B523;
  }
  .journal .list a:hover .name {
    background: url(../images/nimg22_1on.svg) left 0.08rem no-repeat;
    background-size: 0.3rem;
  }
}
.news {
  padding: 1.1rem 0 1.3rem;
  background: #F7F7F9;
}
.news .pageTitle {
  text-align: left;
  margin-bottom: 0.5rem;
}
.news .list {
  padding: 0.6rem 0 0.8rem;
}
.news .list ul {
  display: flex;
  flex-wrap: wrap;
}
.news .list li {
  width: calc((100% - 0.84rem) / 3);
  margin-right: 0.42rem;
  margin-top: 0.5rem;
}
.news .list li:nth-child(3n) {
  margin-right: 0;
}
.news .list li:nth-child(-n+3) {
  margin-top: 0;
}
.news .list li a {
  display: block;
}
.news .list li a .imgDiv {
  overflow: hidden;
}
.news .list li a .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li a .conDiv {
  padding: 0.3rem 0.4rem 0;
  height: 2.84rem;
  background: #fff;
}
.news .list li a .conDiv .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #999;
  margin-bottom: 0.15rem;
}
.news .list li a .conDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  height: 0.9rem;
  color: #333;
}
.news .list li a .conDiv .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.45rem;
}
.news .list li a .conDiv .type {
  display: flex;
}
.news .list li a .conDiv .type em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs14);
  color: #999;
  min-width: 0.92rem;
  height: 0.36rem;
  padding: 0 0.12rem;
  background: #F7F7F9;
  border-radius: 0.45rem;
}
.news .list li a .conDiv .ico {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  border: 1px solid #E7E7ED;
  background: url(../images/ico5.svg) center no-repeat;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.news .list li a:hover {
  box-shadow: 0 0 30px 0 rgba(30, 38, 120, 0.1);
}
.news .list li a:hover .imgDiv img {
  transform: scale(1.1);
}
.news .list li a:hover .ico {
  border: #1E2678 solid 1px;
  background: #1E2678 url(../images/ico3on.svg) center no-repeat;
}
.newsPic {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.newsPic .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.newsPic .imgDiv {
  width: 50%;
  height: 4.12rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsPic .conDiv {
  width: 50%;
  padding: 0.6rem 1.2rem 0 0.6rem;
}
.newsPic .time {
  font-size: var(--fs16);
  color: #1E2678;
  line-height: 0.24rem;
  font-family: 'Poppins-L';
}
.newsPic .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.1rem 0 0.3rem;
  font-size: var(--fs32);
  line-height: 0.42rem;
  height: 0.84rem;
  color: #000;
  transition: All 0.5s ease;
}
.newsPic .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #666;
  font-size: var(--fs16);
  line-height: 0.24rem;
  height: 0.96rem;
}
.newsPic .mxfDiv:hover .name {
  color: #F1B523;
}
.newsPic .swiper-pagination {
  width: auto;
  left: calc(50% + 0.6rem);
  bottom: 0.6rem;
  z-index: 2;
}
.newsPic .swiper-pagination-bullet {
  float: left;
  position: relative;
  width: 30px;
  height: 4px;
  opacity: 1;
  background: #D9D9D9;
  border: none;
  border-radius: 6px;
  margin-left: 0!important;
  margin-right: 0.24rem !important;
  overflow: hidden;
}
.newsPic .swiper-pagination-bullet-active {
  width: 46px;
  background: #1E2678;
}
@media (max-width: 1004px) {
  .news {
    padding: 0.9rem 0 1rem;
  }
  .news .list {
    padding: 0.7em 0 0.8rem;
  }
  .news .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
  }
  .news .list li:nth-child(1) {
    margin-top: 0;
  }
  .news .list li:nth-child(2),
  .news .list li:nth-child(3) {
    margin-top: 0.4rem;
  }
  .news .list li:nth-child(3n) {
    margin-right: 0;
  }
  .news .list li a .conDiv {
    padding: 0.3rem 0.4rem 0.5rem;
    height: auto;
  }
  .news .list li a .conDiv .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .news .list li a .conDiv .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .list li a .conDiv .botbot {
    margin-top: 0.35rem;
  }
  .news .list li a .conDiv .type em {
    font-size: var(--fs13);
    height: 0.62rem;
    padding: 0 0.3rem;
  }
  .news .list li a .conDiv .ico {
    width: 0.72rem;
    height: 0.72rem;
  }
  .newsPic {
    border-radius: 0.2rem;
  }
  .newsPic .mxfDiv {
    display: block;
  }
  .newsPic .imgDiv {
    width: auto;
  }
  .newsPic .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 1.2rem;
  }
  .newsPic .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsPic .swiper-pagination {
    width: 100%;
    left: 0;
    bottom: 0.5rem;
  }
  .newsPic .swiper-pagination-bullet {
    float: none;
    display: inline-block;
    margin-left: 0.1rem !important;
    margin-right: 0.1rem !important;
  }
}
.newsBox {
  padding: 1rem 0 1.3rem;
}
.newsBox .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBox .leftDiv {
  width: 9.6rem;
}
.newsBox .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.newsBox .msgList {
  padding-bottom: 0.4rem;
  overflow: hidden;
  border-bottom: #d9d9d9 solid 1px;
}
.newsBox .msgList li {
  float: left;
  margin-right: 0.3rem;
  font-size: var(--fs18);
  text-transform: uppercase;
}
.newsBox .content {
  padding: 0.54rem 0 0.74rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
  color: #333;
}
.newsBox .content img {
  max-width: 100%;
}
.newsBox .imgDiv {
  text-align: center;
}
.newsBox2 .leftDiv {
  width: 100%;
}
.sideNews {
  position: sticky;
  top: 1.2rem;
  width: 4.1rem;
}
.sideNews .title {
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-weight: 500;
  color: #000;
}
.sideNews .list ul {
  margin: 0;
}
.sideNews .list li {
  border-bottom: #D9D9D9 solid 1px;
}
.sideNews .list li a {
  display: block;
  padding: 0.35rem 0;
}
.sideNews .list li .cn {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.15rem;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333;
  transition: All 0.5s ease;
}
.sideNews .list li .time {
  font-size: var(--fs16);
  color: #666;
}
.sideNews .list li:hover .cn {
  color: #1E2678;
}
.pageDown {
  border-top: #d9d9d9 solid 1px;
}
.pageDown li a {
  display: block;
  position: relative;
  font-size: var(--fs18);
  padding: 0.4rem 0 0.7rem;
  line-height: 0.32rem;
  border-bottom: #d9d9d9 solid 1px;
}
.pageDown li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #F3F3F9 url(../images/ico6.svg) center no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pageDown li em {
  display: block;
  color: #666;
  font-size: var(--fs16);
  margin-bottom: 0.2rem;
}
.pageDown li p {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.3rem;
  overflow: hidden;
  color: #333;
}
.pageDown li a:hover::after {
  background: #F1B523 url(../images/ico6on.svg) center no-repeat;
  background-size: 0.16rem;
}
.pageDown li a:hover p {
  color: #1E2678;
}
@media (max-width: 1600px) {
  .newsBox .leftDiv {
    width: 10rem;
  }
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.7rem 0 1rem;
  }
  .newsBox .leftDiv {
    width: auto;
    float: none;
  }
  .newsBox .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsBox .msgList {
    padding-bottom: 0.3rem;
  }
  .newsBox .msgList li {
    font-size: var(--fs14);
  }
  .newsBox .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .sideNews {
    display: none;
  }
  .pageDown li a {
    font-size: var(--fs14);
    padding: 0.4rem 0;
    line-height: 0.52rem;
  }
  .pageDown li a::after {
    display: none;
  }
  .pageDown li p {
    height: 0.52rem;
  }
}
.dutyP1 {
  padding: 0.75rem 0 1.36rem;
}
.dutyP1 .pageTitle {
  margin-bottom: 0.45rem;
}
.dutyP1 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.dutyP1 .list li {
  width: calc((100% - 0.35rem) / 2);
  margin-right: 0.35rem;
}
.dutyP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.dutyP1 .list li .imgDiv {
  position: relative;
  overflow: hidden;
}
.dutyP1 .list 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;
}
.dutyP1 .list li .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.dutyP1 .list li .name {
  margin-top: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 500;
}
.dutyP1 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  padding-right: 0.8rem;
  text-align: justify;
}
.dutyP1 .list li:hover .imgDiv::after {
  transform: translateX(100%);
}
.dutyP1 .list li:hover .imgDiv img {
  transform: scale(1.1);
}
.dutyP2 {
  padding-bottom: 1.3rem;
}
.dutyP2 .pageTitle {
  margin-bottom: 0.5rem;
}
.dutyP2 .tab2 {
  position: relative;
  margin-bottom: 0.5rem;
}
.dutyP2 .tab2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.dutyP2 .tab2 ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.dutyP2 .tab2 li {
  position: relative;
  z-index: 1;
  padding-bottom: 0.12rem;
  margin: 0 0.5rem;
  text-align: center;
}
.dutyP2 .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #F1B523;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.dutyP2 .tab2 li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 auto;
  border-radius: 50%;
  background: #999;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.dutyP2 .tab2 li .ico img {
  max-width: 0.38rem;
}
.dutyP2 .tab2 li .name {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.dutyP2 .tab2 .liNow::after {
  left: 0;
  width: 100%;
}
.dutyP2 .tab2 .liNow .ico {
  background: #F1B523;
}
.dutyP2 .tab2 .liNow .name {
  color: #F1B523;
}
.dutyP2 .tabContent2 {
  animation: am_top 0.8s ease-out 0.1s backwards;
}
.dutyP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.dutyP2 .mxfDiv .imgDiv {
  width: 10.24rem;
}
.dutyP2 .mxfDiv .imgDiv img {
  width: 100%;
}
.dutyP2 .mxfDiv .conDiv {
  width: 4.32rem;
}
.dutyP2 .mxfDiv .conDiv .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #F1B523;
}
.dutyP2 .mxfDiv .conDiv .ico img {
  max-width: 0.38rem;
}
.dutyP2 .mxfDiv .conDiv .name {
  margin: 0.45rem 0 0.24rem;
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
}
.dutyP2 .mxfDiv .conDiv .content {
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #999;
  text-align: justify;
}
@media (max-width: 1004px) {
  .dutyP1 {
    padding: 0.9rem 0 1rem;
  }
  .dutyP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .dutyP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.7rem;
  }
  .dutyP1 .list li:first-child {
    margin-top: 0;
  }
  .dutyP1 .list li .name {
    margin-top: 0.35rem;
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .dutyP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-right: 0;
  }
  .dutyP2 {
    padding-bottom: 1rem;
  }
  .dutyP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .dutyP2 .tab2 {
    margin-bottom: 0.65rem;
  }
  .dutyP2 .tab2 ul {
    flex-wrap: wrap;
  }
  .dutyP2 .tab2 li {
    width: 50%;
    padding-bottom: 0.5rem;
    margin: 0;
  }
  .dutyP2 .tab2 li::after {
    display: none;
  }
  .dutyP2 .tab2 li .ico {
    width: 0.9rem;
    height: 0.9rem;
  }
  .dutyP2 .tab2 li .ico img {
    max-width: 0.48rem;
  }
  .dutyP2 .tab2 li .name {
    margin-top: 0.25rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .dutyP2 .mxfDiv {
    display: block;
  }
  .dutyP2 .mxfDiv .imgDiv {
    width: 100%;
  }
  .dutyP2 .mxfDiv .conDiv {
    padding-top: 0.5rem;
    width: auto;
  }
  .dutyP2 .mxfDiv .conDiv .ico {
    display: none;
  }
  .dutyP2 .mxfDiv .conDiv .name {
    margin: 0 0 0.3rem;
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .dutyP2 .mxfDiv .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
.announcement {
  padding: 0.75rem 0 1.3rem;
  background: #F7F7F9;
}
.announcement .pageTitle {
  margin-bottom: 0.5rem;
  text-align: left;
}
.announcement .list {
  padding-bottom: 0.6rem;
}
.announcement .list li {
  margin-top: 0.2rem;
}
.announcement .list li:first-child {
  margin-top: 0;
}
.announcement .list li a {
  display: block;
  height: 1.6rem;
  background: #fff;
  padding: 0.42rem 1.3rem 0 0.5rem;
}
.announcement .list li a .time {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #F1B523;
  margin-bottom: 0.1rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.announcement .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: var(--fs32);
  line-height: 0.42rem;
  font-weight: 500;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.announcement .list li a:hover {
  background: #F1B523;
}
.announcement .list li a:hover .time,
.announcement .list li a:hover .name {
  color: #fff;
}
@media (max-width: 1004px) {
  .announcement {
    padding: 0.9rem 0 1rem;
  }
  .announcement .pageTitle {
    margin-bottom: 0.65rem;
  }
  .announcement .list {
    padding-bottom: 0.8rem;
  }
  .announcement .list li {
    margin-top: 0.3rem;
  }
  .announcement .list li a {
    height: auto;
    padding: 0.4rem 0.3rem;
  }
  .announcement .list li a .time {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .announcement .list li a .name {
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
}
.contactP1 {
  padding: 0.75rem 0 1.15rem;
}
.contactP1 .pageTitle {
  margin-bottom: 0.5rem;
}
.contactP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #F7F7F9;
}
.contactP1 .mxfDiv .imgDiv {
  order: 1;
  width: 50%;
}
.contactP1 .mxfDiv .imgDiv img {
  width: 100%;
}
.contactP1 .mxfDiv .conDiv {
  width: 50%;
  padding: 0.75rem 1rem 0 0.75rem;
}
.contactP1 .mxfDiv .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contactP1 .mxfDiv .lie li {
  position: relative;
  font-size: var(--fs18);
  padding-left: 0.36rem;
  line-height: 0.26rem;
  margin-bottom: 0.1rem;
}
.contactP1 .mxfDiv .lie li:last-child {
  margin-bottom: 0;
}
.contactP1 .mxfDiv .lie li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.07rem;
  width: 0.17rem;
}
.contactP1 .mxfDiv .title {
  margin: 0.35rem 0;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 500;
}
.contactP1 .mxfDiv .share ul {
  display: flex;
  flex-wrap: wrap;
}
.contactP1 .mxfDiv .share li {
  position: relative;
  margin-right: 0.3rem;
}
.contactP1 .mxfDiv .share li:last-child {
  margin-right: 0;
}
.contactP1 .mxfDiv .share li a {
  display: block;
}
.contactP1 .mxfDiv .share li a img {
  height: 0.27rem;
  transition: All 0.5s ease;
}
.contactP1 .mxfDiv .share li a:hover img {
  filter: brightness(0) invert(0);
}
.contactP1 .mxfDiv .share li .ewmLayer {
  position: absolute;
  text-align: center;
  left: 50%;
  margin-left: -0.8rem;
  bottom: 0.35rem;
  width: 1.6rem;
  padding-bottom: 5px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  z-index: 5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contactP1 .mxfDiv .share li .ewmLayer::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}
.contactP1 .mxfDiv .share li .ewmLayer .limg {
  padding: 0.1rem;
  background: #fff;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
}
.contactP1 .mxfDiv .share li .ewmLayer .limg img {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  width: 1.4rem;
}
.contactP1 .mxfDiv .share li:hover .ewmLayer {
  opacity: 1;
  filter: alpha(opacity=1);
  visibility: visible;
  bottom: 0.45rem;
}
.contactP1 .list {
  margin-top: 0.5rem;
}
.contactP1 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.contactP1 .list li {
  width: calc((100% - 0.36rem) / 2);
  margin-right: 0.36rem;
  margin-top: 0.36rem;
  min-height: 1.2rem;
  background: #F7F7F9;
  padding: 0.25rem;
}
.contactP1 .list li:nth-child(2n) {
  margin-right: 0;
}
.contactP1 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.contactP1 .list li .name {
  font-size: var(--fs20);
  line-height: 0.3rem;
  margin-bottom: 0.1rem;
  font-weight: 400;
  color: #000;
}
.contactP1 .list li .zi {
  font-size: var(--fs16);
  line-height: 0.24rem;
  padding-left: 0.26rem;
  background: url(../images/nimg17_2.png) left 0.05rem no-repeat;
  background-size: 0.17rem;
}
.contactP2 {
  padding-bottom: 1.2rem;
}
.contactP2 .pageTitle {
  margin-bottom: 0.55rem;
}
.contactP2 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.contactP2 .list li {
  width: calc((100% - 1.2rem) / 4);
  margin-right: 0.4rem;
  min-height: 3.74rem;
  background: #F7F7F9;
  padding: 0.6rem 0.3rem 0.5rem;
}
.contactP2 .list li:nth-child(4n) {
  margin-right: 0;
}
.contactP2 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
}
.contactP2 .list li .ico img {
  max-width: 0.8rem;
}
.contactP2 .list li .name {
  text-align: center;
  font-size: var(--fs22);
  line-height: 0.3rem;
  margin: 0.4rem 0 0.16rem;
  font-weight: 400;
  color: #333;
}
.contactP2 .list li .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.contactP2 .list li .btnDiv a {
  display: flex;
  margin: 0 5px;
}
.contactP2 .list li .btnDiv a em {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  min-width: 1rem;
  padding: 0 0.1rem;
  height: 0.38rem;
  border-radius: 0.48rem;
  border: #999 solid 1px;
  color: #999;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.contactP2 .list li .btnDiv a:hover em {
  border: #F1B523 solid 1px;
  background: #F1B523;
  color: #fff;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.9rem 0 1rem;
  }
  .contactP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .contactP1 .mxfDiv {
    display: block;
  }
  .contactP1 .mxfDiv .imgDiv {
    width: 100%;
  }
  .contactP1 .mxfDiv .conDiv {
    width: 100%;
    padding: 0.6rem 0.3rem 0.75rem;
  }
  .contactP1 .mxfDiv .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .contactP1 .mxfDiv .lie li {
    padding-left: 0.46rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .contactP1 .mxfDiv .lie li img {
    top: 0.12rem;
    margin-top: 0;
    width: 0.28rem;
  }
  .contactP1 .mxfDiv .title {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .contactP1 .mxfDiv .share li {
    margin-right: 0.45rem;
  }
  .contactP1 .mxfDiv .share li a img {
    height: 0.48rem;
  }
  .contactP1 .mxfDiv .share li .ewmLayer {
    left: 0;
    margin-left: 0;
    bottom: 0.6rem;
    width: 2.2rem;
  }
  .contactP1 .mxfDiv .share li .ewmLayer::after {
    left: 0.3rem;
    margin-left: 0;
  }
  .contactP1 .mxfDiv .share li .ewmLayer .limg {
    padding: 0.2rem;
  }
  .contactP1 .mxfDiv .share li .ewmLayer .limg img {
    width: 1.8rem;
  }
  .contactP1 .mxfDiv .share li:hover .ewmLayer {
    bottom: 0.7rem;
  }
  .contactP1 .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.4rem;
    min-height: 1.2rem;
    padding: 0.35rem;
  }
  .contactP1 .list li:nth-child(1) {
    margin-top: 0;
  }
  .contactP1 .list li:nth-child(2) {
    margin-top: 0.4rem;
  }
  .contactP1 .list li .name {
    font-size: var(--fs16);
    line-height: 0.52rem;
    margin-bottom: 0.2rem;
  }
  .contactP1 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-left: 0.42rem;
    background: url(../images/nimg17_2.png) left 0.12rem no-repeat;
    background-size: 0.28rem;
  }
  .contactP2 {
    padding-bottom: 1rem;
  }
  .contactP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .contactP2 .list li {
    width: 100%;
    margin-top: 0.45rem;
    margin-right: 0;
    min-height: 2rem;
    padding: 0.6rem 0.3rem;
  }
  .contactP2 .list li:nth-child(1) {
    margin-top: 0;
  }
  .contactP2 .list li .ico {
    width: 1.8rem;
    height: 1.8rem;
  }
  .contactP2 .list li .ico img {
    max-width: 1rem;
  }
  .contactP2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    margin: 0.45rem 0 0.2rem;
  }
  .contactP2 .list li .btnDiv a em {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    font-size: var(--fs14);
    padding: 0 0.3rem;
    height: 0.72rem;
  }
}
.investorP1 {
  padding: 0.75rem 0 1.2rem;
}
.investorP1 .pageTitle {
  margin-bottom: 0.5rem;
}
.investorP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.investorP1 .mxfDiv .imgDiv {
  order: 1;
  width: 11.16rem;
}
.investorP1 .mxfDiv .imgDiv img {
  width: 100%;
}
.investorP1 .mxfDiv .conDiv {
  background: #F7F7F9;
  width: calc(100% - 11.4rem);
  padding: 0.3rem 0.7rem 0.3rem 0.4rem;
}
.investorP1 .mxfDiv .conDiv .num {
  font-size: var(--fs20);
  line-height: 0.3rem;
  margin-bottom: 5px;
}
.investorP1 .mxfDiv .conDiv .price {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  font-size: var(--fs22);
  color: #ED0000;
}
.investorP1 .mxfDiv .conDiv .price em {
  font-size: var(--fs48);
  line-height: 0.52rem;
  padding-right: 12px;
  font-family: 'Mont-B';
}
.investorP1 .mxfDiv .conDiv .price img {
  margin-left: 12px;
  margin-bottom: 10px;
}
.investorP1 .mxfDiv .conDiv .list {
  padding-top: 0.2rem;
}
.investorP1 .mxfDiv .conDiv .list li {
  margin-bottom: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.26rem;
}
.investorP1 .mxfDiv .conDiv .list li em {
  margin-top: 5px;
  display: block;
  font-size: var(--fs24);
  line-height: 0.32rem;
}
.investorP1 .mxfDiv .conDiv .tips {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
.investorP2 ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 5.8rem;
  overflow: hidden;
}
.investorP2 li {
  position: relative;
  width: 50%;
  height: 5.8rem;
  overflow: hidden;
  background-size: 11rem;
  background-position: center center;
  background-repeat: no-repeat;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.investorP2 li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.investorP2 li a .layer {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 1;
  text-align: center;
}
.investorP2 li a .layer .ico {
  width: 0.6rem;
  margin: 0 auto 0.5rem;
}
.investorP2 li a .layer .ico img {
  width: 0.6rem;
}
.investorP2 li a .layer .cn {
  font-size: var(--fs36);
  line-height: 0.42rem;
}
.investorP2 li a .layer .en {
  margin-top: 0.15rem;
  font-family: 'Mont-R';
  font-size: var(--fs24);
  line-height: 0.3rem;
}
.investorP2 li:hover {
  width: 60%;
}
.investorP3 {
  padding: 1.2rem 0;
}
.investorP3 .pageTitle {
  margin-bottom: 0.5rem;
}
.investorP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #F7F7F9;
}
.investorP3 .mxfDiv .imgDiv {
  order: 1;
  width: 50%;
}
.investorP3 .mxfDiv .imgDiv img {
  width: 100%;
}
.investorP3 .mxfDiv .conDiv {
  width: 50%;
  padding: 0.75rem 1rem 0 0.75rem;
}
.investorP3 .mxfDiv .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.investorP3 .mxfDiv .lie li {
  position: relative;
  font-size: var(--fs18);
  padding-left: 0.36rem;
  line-height: 0.26rem;
  margin-bottom: 0.1rem;
}
.investorP3 .mxfDiv .lie li:last-child {
  margin-bottom: 0;
}
.investorP3 .mxfDiv .lie li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.07rem;
  width: 0.17rem;
}
@media (max-width: 1004px) {
  .investorP1 {
    padding: 0.9rem 0 1rem;
  }
  .investorP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .investorP1 .mxfDiv {
    display: block;
  }
  .investorP1 .mxfDiv .imgDiv {
    width: 100%;
  }
  .investorP1 .mxfDiv .conDiv {
    width: auto;
    padding: 0.5rem 0.35rem 0.6rem;
  }
  .investorP1 .mxfDiv .conDiv .num {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin-bottom: 0.1rem;
  }
  .investorP1 .mxfDiv .conDiv .price {
    font-size: var(--fs15);
  }
  .investorP1 .mxfDiv .conDiv .price em {
    font-size: var(--fs30);
    line-height: 0.64rem;
    padding-right: 0.15rem;
  }
  .investorP1 .mxfDiv .conDiv .price img {
    margin-left: 0.15rem;
    margin-bottom: 0.15rem;
    width: 12px;
  }
  .investorP1 .mxfDiv .conDiv .list {
    padding-top: 0.35rem;
  }
  .investorP1 .mxfDiv .conDiv .list li {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .investorP1 .mxfDiv .conDiv .list li em {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .investorP1 .mxfDiv .conDiv .tips {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .investorP2 ul {
    height: 4.5rem;
  }
  .investorP2 li {
    height: 4.5rem;
    background-size: 6.4rem;
  }
  .investorP2 li a .layer .ico {
    width: 0.72rem;
    margin: 0 auto 0.3rem;
  }
  .investorP2 li a .layer .ico img {
    width: 0.72rem;
  }
  .investorP2 li a .layer .cn {
    font-size: var(--fs18);
    line-height: 0.6rem;
  }
  .investorP2 li a .layer .en {
    margin-top: 0.1rem;
    padding: 0 0.5rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .investorP3 {
    padding: 0.9rem 0 1rem;
  }
  .investorP3 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .investorP3 .mxfDiv {
    display: block;
  }
  .investorP3 .mxfDiv .imgDiv {
    width: 100%;
  }
  .investorP3 .mxfDiv .conDiv {
    width: 100%;
    padding: 0.6rem 0.3rem 0.75rem;
  }
  .investorP3 .mxfDiv .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .investorP3 .mxfDiv .lie li {
    padding-left: 0.46rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .investorP3 .mxfDiv .lie li img {
    top: 0.12rem;
    margin-top: 0;
    width: 0.28rem;
  }
}
.buildingP1 {
  overflow: hidden;
  padding: 0.75rem 0 1.2rem;
}
.buildingP1 .pageTitle {
  margin-bottom: 0.55rem;
}
.buildPic {
  position: relative;
}
.buildPic::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 3;
}
.buildPic .swiper-slide .baozhe {
  cursor: pointer;
}
.buildPic .swiper-slide .baozhe .imgDiv {
  position: relative;
  overflow: hidden;
}
.buildPic .swiper-slide .baozhe .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildPic .swiper-slide .baozhe .imgDiv img {
  width: 100%;
  transition: All 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildPic .swiper-slide .baozhe .name {
  position: absolute;
  width: 100%;
  padding: 0 0.4rem;
  left: 0;
  bottom: 0.35rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
}
.buildPic .bottom {
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
}
.buildPic .swiper-pagination {
  position: relative;
  width: calc(100% - 150px);
  height: 2px;
  background-color: #d9d9d9;
}
.buildPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #1E2678;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  transform-origin: left center;
}
.buildPic .arrowDiv {
  font-size: 0;
}
.buildPic .arrowDiv .se {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: #1E2678 solid 2px;
}
.buildPic .arrowDiv .se:hover {
  border: #1E2678 solid 2px;
}
.buildPic .arrowDiv .prev {
  margin-right: 0.2rem;
  background: url(../images/nimg13_lefton.png) center no-repeat;
}
.buildPic .arrowDiv .prev:hover {
  background: #1E2678 url(../images/nimg13_left.png) center no-repeat;
}
.buildPic .arrowDiv .next {
  background: url(../images/nimg13_righton.png) center no-repeat;
}
.buildPic .arrowDiv .next:hover {
  background: #1E2678 url(../images/nimg13_right.png) center no-repeat;
}
.buildingP2 {
  padding-bottom: 1.3rem;
  overflow: hidden;
}
.buildingP2 .pageTitle {
  margin-bottom: 0.55rem;
}
.buildingP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.buildingP2 .mxfDiv .conDiv {
  padding-top: 0.6rem;
  width: 4rem;
}
.buildingP2 .mxfDiv .title {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.buildingP2 .mxfDiv .tab li {
  font-size: var(--fs36);
  line-height: 0.7rem;
  color: #999;
  font-weight: 500;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildingP2 .mxfDiv .tab li em {
  position: relative;
  padding-right: 0.6rem;
}
.buildingP2 .mxfDiv .tab li em::after {
  content: '';
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -0.12rem;
  width: 0.24rem;
  height: 0.24rem;
  background: url(../images/nimg27_1.png) right center no-repeat;
  background-size: 0.24rem;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildingP2 .mxfDiv .tab .liNow {
  color: #1E2678;
}
.buildingP2 .mxfDiv .tab .liNow em::after {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.buildingP2 .mxfDiv .imgDiv {
  animation: am_left 0.8s ease-out 0.1s backwards;
  width: 10.24rem;
}
.buildingP2 .mxfDiv .imgDiv img {
  width: 100%;
}
.buildingP3 {
  padding: 1.5rem 0;
  background: url(../images/buildingP3.jpg) center no-repeat;
  background-size: cover;
}
.buildingP3 .title {
  text-align: center;
  color: #333;
  font-size: var(--fs36);
  line-height: 0.42rem;
  margin-bottom: 1.16rem;
  font-weight: 600;
}
.buildingP3 .baozhe {
  position: relative;
}
.buildingP3 .jiantou {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 0.72rem;
}
.buildingP3 .jiantou ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.buildingP3 .jiantou li {
  width: 20%;
  height: 1.45rem;
  background: url(../images/nimg30Bg.png) center no-repeat;
  background-size: 0.3rem;
}
.buildingP3 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.buildingP3 .list li {
  text-align: center;
}
.buildingP3 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #F1B523;
}
.buildingP3 .list li .ico img {
  width: 0.6rem;
}
.buildingP3 .list li .zi {
  margin: 0.4rem 0 0.1rem;
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #999;
  text-transform: uppercase;
  font-family: 'Mont-R';
}
.buildingP3 .list li .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: 500;
}
.buildingP4 {
  position: relative;
  height: 7.16rem;
  background: center no-repeat;
  background-size: cover;
}
.buildingP4::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}
.buildingP4 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
  height: 100%;
}
.buildingP4 .title {
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.42rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.buildingP4 .msg {
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #fff;
  width: 6.1rem;
  text-align: justify;
}
.buildingP5 {
  padding: 1.3rem 0 1.2rem;
}
.buildingP5 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.buildingP5 .mxfDiv .imgDiv {
  width: 10.24rem;
}
.buildingP5 .mxfDiv .imgDiv img {
  width: 100%;
}
.buildingP5 .mxfDiv .conDiv {
  padding-top: 0.8rem;
  width: 4.12rem;
}
.buildingP5 .mxfDiv .title {
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.buildingP5 .mxfDiv .content {
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #999;
}
.buildingP6 {
  padding: 1.2rem 0 1.3rem;
  background: url(../images/buildingP6.jpg) center no-repeat;
  background-size: cover;
}
.buildingP6 .pageTitle {
  margin-bottom: 0.6rem;
}
.buildingP6 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.buildingP6 .list li {
  width: calc((100% - 0.56rem) / 5);
  margin-right: 0.14rem;
  margin-top: 0.2rem;
  min-height: 3rem;
  padding: 0.6rem 0.2rem 0.3rem;
  background: #fff;
  border-radius: 0.3rem;
}
.buildingP6 .list li:nth-child(5n) {
  margin-right: 0;
}
.buildingP6 .list li:nth-child(-n+5) {
  margin-top: 0;
}
.buildingP6 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 auto;
  background: #F7F7F9;
  border-radius: 50%;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildingP6 .list li .ico img {
  width: 0.6rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.buildingP6 .list li .name {
  margin-top: 0.3rem;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  text-align: center;
}
.buildingP6 .list li:hover .ico {
  background: #1E2678;
}
.buildingP6 .list li:hover .ico img {
  filter: brightness(0) invert(1);
  transform: rotate(360deg);
}
@media (max-width: 1600px) {
  .buildPic::before {
    margin-right: 8rem;
  }
}
@media (max-width: 1004px) {
  .buildingP1 {
    padding: 0.9rem 0 1rem;
  }
  .buildingP1 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .buildPic::before {
    display: none;
  }
  .buildPic .swiper-container {
    overflow: hidden;
  }
  .buildPic .swiper-slide .baozhe .name {
    padding: 0 0.3rem;
    bottom: 0.35rem;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .buildPic .swiper-pagination {
    width: calc(100% - 2.4rem);
  }
  .buildPic .arrowDiv .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .buildingP2 {
    padding-bottom: 1rem;
  }
  .buildingP2 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .buildingP2 .mxfDiv {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
  }
  .buildingP2 .mxfDiv .conDiv {
    padding-top: 0;
    width: 30%;
  }
  .buildingP2 .mxfDiv .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .buildingP2 .mxfDiv .tab li {
    font-size: var(--fs15);
    line-height: 0.48rem;
    margin-bottom: 0.15rem;
  }
  .buildingP2 .mxfDiv .tab li:last-child {
    margin-bottom: 0;
  }
  .buildingP2 .mxfDiv .tab li em {
    padding-right: 0;
  }
  .buildingP2 .mxfDiv .tab li em::after {
    display: none;
  }
  .buildingP2 .mxfDiv .tabContentDiv {
    width: 65%;
  }
  .buildingP2 .mxfDiv .imgDiv {
    width: 100%;
  }
  .buildingP3 {
    padding: 1.1rem 0;
  }
  .buildingP3 .title {
    text-align: left;
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.7rem;
  }
  .buildingP3 .jiantou {
    display: none;
  }
  .buildingP3 .list ul {
    flex-wrap: wrap;
  }
  .buildingP3 .list li {
    width: 33.33%;
  }
  .buildingP3 .list li:nth-child(4),
  .buildingP3 .list li:nth-child(5),
  .buildingP3 .list li:nth-child(6) {
    margin-top: 0.5rem;
  }
  .buildingP3 .list li .ico {
    width: 1.6rem;
    height: 1.6rem;
  }
  .buildingP3 .list li .ico img {
    width: 0.72rem;
  }
  .buildingP3 .list li .zi {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .buildingP3 .list li .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .buildingP4 {
    height: 5.2rem;
  }
  .buildingP4 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .buildingP4 .msg {
    font-size: var(--fs15);
    line-height: 0.56rem;
    width: 80%;
  }
  .buildingP5 {
    padding: 1rem 0 0.9rem;
  }
  .buildingP5 .mxfDiv {
    display: block;
  }
  .buildingP5 .mxfDiv .imgDiv {
    width: 100%;
  }
  .buildingP5 .mxfDiv .conDiv {
    padding-top: 0.6rem;
    width: auto;
  }
  .buildingP5 .mxfDiv .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.4rem;
  }
  .buildingP5 .mxfDiv .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .buildingP6 {
    padding: 0.9rem 0 1rem;
  }
  .buildingP6 .pageTitle {
    margin-bottom: 0.65rem;
  }
  .buildingP6 .list li {
    width: calc((100% - 0.3rem) / 2);
    margin-right: 0.3rem;
    margin-top: 0.3rem;
    min-height: 3rem;
    padding: 0.6rem 0.2rem 0.45rem;
  }
  .buildingP6 .list li:nth-child(5n) {
    margin-right: 0.3rem;
  }
  .buildingP6 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .buildingP6 .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .buildingP6 .list li:nth-child(3),
  .buildingP6 .list li:nth-child(4),
  .buildingP6 .list li:nth-child(5) {
    margin-top: 0.3rem;
  }
  .buildingP6 .list li .name {
    margin-top: 0.5rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
}
.adhesive {
  padding: 0.75rem 0 1.2rem;
}
.adhesive .pageTitle {
  margin-bottom: 0.55rem;
}
.adhesive .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  background: #F7F7F9;
  margin-top: 1rem;
}
.adhesive .list li:first-child {
  margin-top: 0;
}
.adhesive .list li .imgDiv {
  order: 1;
  width: 50%;
}
.adhesive .list li .imgDiv img {
  width: 100%;
}
.adhesive .list li .conDiv {
  width: 50%;
  padding: 0.96rem 1.45rem 0.5rem 0.9rem;
}
.adhesive .list li .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-weight: 600;
  color: #333;
}
.adhesive .list li .msg {
  margin: 0.3rem 0 0.65rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.adhesive .list li .lie dl {
  display: flex;
  flex-wrap: wrap;
}
.adhesive .list li .lie dd {
  width: 33.33%;
  margin-top: 0.38rem;
}
.adhesive .list li .lie dd:nth-child(-n+3) {
  margin-top: 0;
}
.adhesive .list li .lie dd .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  background: #A0A0A0;
  overflow: hidden;
  border-radius: 50%;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.adhesive .list li .lie dd .ico img {
  max-width: 100%;
}
.adhesive .list li .lie dd .zi {
  margin-top: 0.25rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.26rem;
  transition: All 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.adhesive .list li .lie dd:hover .ico {
  background: #F1B523;
}
.adhesive .list li .lie dd:hover .zi {
  color: #F1B523;
}
.adhesive .list li:nth-child(2n) .imgDiv {
  order: 0;
}
@media (max-width: 1004px) {
  .adhesive {
    padding: 0.9rem 0 1rem;
  }
  .adhesive .pageTitle {
    margin-bottom: 0.65rem;
  }
  .adhesive .list li {
    display: block;
    margin-top: 0.6rem;
  }
  .adhesive .list li .imgDiv {
    width: 100%;
  }
  .adhesive .list li .conDiv {
    width: 100%;
    padding: 0.65rem 0.3rem 0.7rem;
  }
  .adhesive .list li .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .adhesive .list li .msg {
    margin: 0.3rem 0 0.5rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .adhesive .list li .lie dd {
    margin-top: 0.3rem;
  }
  .adhesive .list li .lie dd .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .adhesive .list li:nth-child(2n) .imgDiv {
    order: 0;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
