.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ind-banner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background: url(../img/bg1.png) top center repeat-x;
  z-index: 1;
}
.ind-banner .swiper-slide,
.ind-banner .mxfDiv {
  position: relative;
}
.ind-banner .swiper-slide a,
.ind-banner .mxfDiv a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img,
.ind-banner .mxfDiv .img {
  height: 100vh;
}
.ind-banner .swiper-slide .img img,
.ind-banner .mxfDiv .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .swiper-slide video,
.ind-banner .mxfDiv video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  width: 12rem;
  margin-left: -6rem;
  text-align: center;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs60);
  line-height: 0.84rem;
  font-family: 'Mont-M';
  color: #fff;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.ind-banner .onebox .more {
  margin: 1.2rem auto 0;
  width: 2.2rem;
}
.ind-banner .onebox .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  color: #fff;
  position: relative;
  border-radius: 0.48rem;
  overflow: hidden;
  width: 100%;
  height: 0.56rem;
  font-family: 'Mont-R';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6);
  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 a:hover {
  background: #dc0021;
}
.ind-banner .onebox .more em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 12px;
  background: url(../img/ico2.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  opacity: 1;
  visibility: visible;
  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-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 30px;
  height: 30px;
  opacity: 1;
  background: none;
  border: transparent solid 1px;
  border-radius: 50%;
  margin: 0 5px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  background: #fff;
  border-radius: 50%;
}
.ind-banner .swiper-pagination-bullet-active {
  border: #fff solid 1px;
}
.ind-banner .videoDiv {
  display: none;
}
.ind-banner .playbtn {
  position: absolute;
  left: 0.3rem;
  bottom: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/nimg60_5.png) no-repeat;
  background-size: 1.2rem;
  z-index: 2;
}
@media (max-width: 1004px) {
  .ind-banner::after {
    background: none;
    background-image: linear-gradient(180deg, #000 0%, transparent 100%);
    background-blend-mode: normal, normal;
  }
  .ind-banner .swiper-slide .img,
  .ind-banner .mxfDiv .img {
    height: 6rem;
  }
  .ind-banner .swiper-slide video,
  .ind-banner .mxfDiv video {
    height: 6rem;
    display: none;
  }
  .ind-banner .onebox {
    width: 90%;
    margin-left: -45%;
    top: 28%;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs20);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .onebox .more {
    margin: 0.45rem auto 0;
    width: 3.2rem;
  }
  .ind-banner .onebox .more a {
    font-size: var(--fs14);
    height: 0.86rem;
  }
  .ind-banner .onebox .more em {
    width: 6px;
    height: 9px;
    background-size: 6px;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
  .ind-banner .swiper-pagination-bullet::after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
  }
}
.indexD {
  height: 100vh;
}
.indexP1 {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 1.3rem;
}
.indexP1 .toptop {
  position: relative;
}
.indexP1 .toptop .title {
  font-size: var(--fs60);
  line-height: 0.64rem;
  text-transform: uppercase;
  color: #222;
  font-family: 'Mont-B';
}
.indexP1 .toptop .msg {
  margin-top: 0.1rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.36rem;
  padding-bottom: 0.28rem;
}
.indexP1 .toptop .msg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7rem;
  height: 0.07rem;
  border-radius: 6px;
  background-image: linear-gradient(90deg, #a40017 0%, #db0021 100%);
  background-blend-mode: normal, normal;
}
.indexP1 .toptop .more {
  position: absolute;
  right: 0;
  top: 0.24rem;
  z-index: 1;
}
.indexP1 .toptop .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: 'Mont-R';
  width: 1.8rem;
  height: 0.56rem;
  font-size: var(--fs18);
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
}
.indexP1 .toptop .more a:hover {
  background: #dc0021;
  border: #dc0021 solid 1px;
  color: #fff;
}
.indexP1 .toptop .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .toptop .more:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.indexP1 .list {
  margin-top: 0.6rem;
  margin-right: -18px;
}
.indexP1 .list ul {
  display: inline-flex;
  width: 100%;
}
.indexP1 .list li {
  width: 33.33%;
  height: 6.6rem;
  position: relative;
  flex-grow: 1;
  transition: 0.65s;
}
.indexP1 .list li .box {
  margin-right: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 0.32rem;
}
.indexP1 .list li .bg {
  height: 6.6rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP1 .list li .name {
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.45rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  text-align: center;
  opacity: 1;
  visibility: visible;
  color: #fff;
  font-family: 'Mont-M';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP1 .list li .after {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0 0.6rem;
  opacity: 0;
  visibility: hidden;
  bottom: -40%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP1 .list li .en {
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: 'Mont-M';
  margin-bottom: 0.1rem;
}
.indexP1 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.indexP1 .list li:hover {
  width: 56%;
}
.indexP1 .list li:hover .name {
  opacity: 0;
  visibility: hidden;
}
.indexP1 .list li:hover .after {
  bottom: 0.5rem;
  opacity: 1;
  visibility: visible;
}
.indexP2 {
  background: #fff;
  position: relative;
  z-index: 1;
}
.indexP2 .toptop {
  position: relative;
  padding-top: 1.1rem;
  height: 7.8rem;
  background: url(../img/indexP2.jpg) center no-repeat;
  background-size: cover;
}
.indexP2 .topCon .title {
  margin: 0 0 0.1rem;
  color: #fff;
  font-size: var(--fs60);
  line-height: 0.72rem;
  text-align: right;
  font-family: 'Mont-B';
  text-transform: uppercase;
}
.indexP2 .topCon .txtImg {
  float: right;
}
.indexP2 .botCon {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  z-index: 1;
  bottom: 0.8rem;
  width: 7.6rem;
}
.indexP2 .botCon .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.indexP2 .botCon .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  font-size: var(--fs18);
  border: #dba95b solid 1px;
  color: #dba95b;
  font-family: 'Mont-R';
}
.indexP2 .botCon .more a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.indexP2 .botCon .more a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.indexP2 .botCon .more em {
  margin-left: 0.2rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .numList {
  padding: 0.6rem 0 1.4rem;
}
.indexP2 .numList ul {
  margin-bottom: 0;
  overflow: hidden;
}
.indexP2 .numList li {
  float: left;
  font-size: var(--fs16);
  color: #333;
  font-family: 'Mont-R';
}
.indexP2 .numList li:nth-child(1) {
  width: 18.9%;
}
.indexP2 .numList li:nth-child(2) {
  width: 18.2%;
}
.indexP2 .numList li:nth-child(3) {
  width: 20.5%;
}
.indexP2 .numList li:last-child {
  float: right;
  width: 22%;
}
.indexP2 .numList li .pj {
  height: 0.72rem;
  color: #dc0021;
}
.indexP2 .numList li .numUp {
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-B';
}
.indexP2 .numList li span {
  font-size: var(--fs60);
  line-height: 0.6rem;
  font-family: 'Mont-B';
}
.indexP2 .numList li i {
  padding-left: 10px;
}
.indexP3 {
  z-index: 1;
  height: 8.4rem;
  position: relative;
  background: #fff;
  overflow: hidden;
}
.indexP3 .bg {
  position: absolute;
  width: 36.5%;
  height: 8.4rem;
  background: center no-repeat;
  background-size: cover;
}
.indexP3 .conDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  height: 8.4rem;
  z-index: 1;
}
.indexP3 .title {
  font-size: var(--fs60);
  line-height: 0.64rem;
  text-transform: uppercase;
  color: #222;
  font-family: 'Mont-B';
}
.indexP3 .msg {
  margin-top: 0.35rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.42rem;
  padding-bottom: 0.65rem;
}
.indexP3 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: 'Mont-R';
  width: 1.8rem;
  height: 0.56rem;
  font-size: var(--fs18);
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
}
.indexP3 .more a:hover {
  background: #dc0021;
  border: #dc0021 solid 1px;
  color: #fff;
}
.indexP3 .more a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.indexP3 .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .mxfDiv {
  float: right;
  position: relative;
  width: 63.5%;
  height: 8.4rem;
}
.indexP3 .item_box {
  width: 100%;
  height: 8.4rem;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.indexP3 .item_box .item {
  display: none;
}
.indexP3 .item_box .item:first-child {
  display: block;
}
.indexP3 .item_box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.indexP3 .item_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.indexP3 .choose_txt {
  position: relative;
  z-index: 1;
}
.indexP3 .choose_txt ul {
  margin-bottom: 0;
}
.indexP3 .choose_txt li {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  position: relative;
  width: 20%;
  cursor: pointer;
  text-align: center;
  height: 8.4rem;
}
.indexP3 .choose_txt li::before {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP3 .choose_txt li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.indexP3 .choose_txt li .ico {
  height: 0.85rem;
  position: relative;
  z-index: 1;
}
.indexP3 .choose_txt li .ico img {
  width: 0.5rem;
}
.indexP3 .choose_txt li .name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.26rem;
  font-family: 'Mont-B';
}
.indexP3 .choose_txt .on::before {
  opacity: 1;
}
.indexP4 {
  overflow: hidden;
  padding: 1.3rem 0;
  background: #fff;
  position: relative;
  z-index: 1;
}
.indexP4 .toptop {
  position: relative;
}
.indexP4 .toptop .title {
  font-size: var(--fs60);
  line-height: 0.64rem;
  text-transform: uppercase;
  color: #222;
  font-family: 'Mont-B';
}
.indexP4 .toptop .msg {
  margin-top: 0.1rem;
  position: relative;
  font-size: var(--fs24);
  line-height: 0.36rem;
  padding-bottom: 0.28rem;
}
.indexP4 .toptop .msg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7rem;
  height: 0.07rem;
  border-radius: 6px;
  background-image: linear-gradient(90deg, #a40017 0%, #db0021 100%);
  background-blend-mode: normal, normal;
}
.indexP4 .toptop .more {
  position: absolute;
  right: 0;
  top: 0.24rem;
  z-index: 1;
}
.indexP4 .toptop .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: 'Mont-R';
  width: 1.8rem;
  height: 0.56rem;
  font-size: var(--fs18);
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
}
.indexP4 .toptop .more a:hover {
  background: #dc0021;
  border: #dc0021 solid 1px;
  color: #fff;
}
.indexP4 .toptop .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .toptop .more:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.indNews {
  position: relative;
  margin-top: 0.6rem;
}
.indNews::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.68rem;
  width: 25%;
  height: 100%;
  background: #fff;
  z-index: 3;
}
.indNews .imgDiv {
  height: 2.9rem;
  overflow: hidden;
}
.indNews .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indNews .botDiv {
  background: #f8f8f8;
  padding: 0.42rem 0.48rem 0;
  height: 2.85rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .time {
  font-size: var(--fs14);
  line-height: 0.16rem;
  color: #999;
}
.indNews .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-family: 'Mont-R';
  font-size: var(--fs22);
  color: #000;
  line-height: 0.3rem;
  height: 0.9rem;
}
.indNews .ico {
  margin-top: 0.3rem;
  width: 0.6rem;
  height: 0.35rem;
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  background: url(../img/ico3.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indNews .swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #f8f8f8;
}
.indNews .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #dc0021;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.indNews .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indNews .box:hover .botDiv {
  background: #e0e0e0;
}
.indNews .box:hover .ico {
  border: #dc0021 solid 1px;
  background: #dc0021 url(../img/ico3on.png) center no-repeat;
}
.indexP5 {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: relative;
  z-index: 1;
  background: url(../img/indexP5.jpg) center no-repeat;
  background-size: cover;
  height: 5.4rem;
}
.indexP5 .title {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-family: 'Mont-B';
}
.indexP5 .msg {
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin-top: 0.2rem;
  color: #fff;
}
.indexP5 .btnGroup {
  margin-top: 0.7rem;
  text-align: center;
}
.indexP5 .btnGroup li {
  display: inline-block;
  margin: 0 0.14rem;
  font-size: var(--fs18);
  font-family: 'Mont-R';
}
.indexP5 .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.8rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #fff;
  background-image: linear-gradient(90deg, #9da4a7 0%, #bac0c3 100%);
  background-blend-mode: normal, normal;
}
.indexP5 .btnGroup li em {
  display: block;
  margin-left: 12px;
  width: 8px;
  height: 13px;
  background: url(../img/ico1on.png) no-repeat;
}
.indexP5 .btnGroup li a:hover {
  background-image: linear-gradient(90deg, #a40017 0%, #dc0021 100%);
}
.indexP5 .btnGroup li:first-child a {
  background-image: linear-gradient(90deg, #a40017 0%, #dc0021 100%);
}
@media (max-width: 1600px) {
  .indexP2 .botCon {
    margin-left: -8rem;
  }
  .indexP3 .conDiv {
    margin-left: -8rem;
  }
  .indNews::after {
    margin-right: 8rem;
  }
}
@media (max-width: 1004px) {
  .indexD {
    height: 6rem;
  }
  .indexP1 {
    padding: 0.9rem 0 1rem;
  }
  .indexP1 .toptop .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .indexP1 .toptop .msg {
    margin-top: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    padding-bottom: 0.28rem;
  }
  .indexP1 .toptop .msg::after {
    height: 3px;
  }
  .indexP1 .toptop .more {
    top: 0;
  }
  .indexP1 .toptop .more a {
    border: #dba95b solid 1px;
    width: 2.3rem;
    height: 0.72rem;
    font-size: var(--fs14);
  }
  .indexP1 .toptop .more a em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .indexP1 .toptop .more:hover em {
    background-size: 6px;
  }
  .indexP1 .list {
    margin-top: 0.75rem;
    margin-right: 0;
  }
  .indexP1 .list ul {
    display: block;
  }
  .indexP1 .list li {
    width: 100%;
    height: 5.6rem;
    margin-bottom: 0.3rem;
  }
  .indexP1 .list li .box {
    margin-right: 0;
  }
  .indexP1 .list li .bg {
    height: 5.6rem;
    background-size: 100%;
  }
  .indexP1 .list li .name {
    bottom: 0.3rem;
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .indexP1 .list li .after {
    padding: 0 0.3rem;
    bottom: -50%;
  }
  .indexP1 .list li .en {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .indexP1 .list li .content {
    white-space: normal;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: auto;
  }
  .indexP1 .list li:hover {
    width: 100%;
  }
  .indexP1 .list li:hover .name {
    bottom: -35%;
  }
  .indexP1 .list li:hover .after {
    bottom: 50%;
    transform: translateY(50%);
  }
  .indexP2 .toptop {
    padding-top: 0.65rem;
    height: 10rem;
  }
  .indexP2 .topCon .title {
    font-size: var(--fs24);
  }
  .indexP2 .topCon .txtImg {
    float: right;
  }
  .indexP2 .topCon .txtImg img {
    width: 2.4rem;
  }
  .indexP2 .botCon {
    left: 0.3rem;
    margin-left: 0;
    bottom: 0.4rem;
    width: calc(100% - 0.6rem);
  }
  .indexP2 .botCon .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 3.84rem;
    margin-bottom: 0.2rem;
  }
  .indexP2 .botCon .more a {
    border: #dba95b solid 1px;
    width: 2.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP2 .botCon .more a:hover {
    border: #dc0021 solid 1px;
  }
  .indexP2 .botCon .more a:hover em {
    background-size: 6px;
  }
  .indexP2 .botCon .more em {
    margin-left: 0.15rem;
    display: block;
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .indexP2 .numList {
    padding: 0.7rem 0 0.8rem 0.4rem;
    overflow: hidden;
  }
  .indexP2 .numList ul {
    display: block;
  }
  .indexP2 .numList li {
    float: left;
    width: 50%;
    font-size: var(--fs14);
    margin-bottom: 0.3rem;
  }
  .indexP2 .numList li:nth-child(1) {
    width: 50%;
  }
  .indexP2 .numList li:nth-child(2) {
    width: 50%;
  }
  .indexP2 .numList li:nth-child(3) {
    width: 50%;
  }
  .indexP2 .numList li:last-child {
    float: left;
    width: 100%;
  }
  .indexP2 .numList li .pj {
    height: 0.6rem;
  }
  .indexP2 .numList li .numUp {
    font-size: var(--fs28);
    line-height: 0.6rem;
  }
  .indexP2 .numList li span {
    font-size: var(--fs28);
    line-height: 0.6rem;
  }
  .indexP2 .numList li i {
    padding-left: 0.15rem;
  }
  .indexP3 {
    height: auto;
  }
  .indexP3 .bg {
    position: absolute;
    width: 100%;
    height: 4.4rem;
  }
  .indexP3 .conDiv {
    display: block;
    position: relative;
    width: 100%;
    padding: 0.9rem 0.3rem 0.6rem;
    left: 0;
    margin-left: 0;
    height: auto;
  }
  .indexP3 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .indexP3 .msg {
    margin-top: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
    padding-bottom: 0;
  }
  .indexP3 .more {
    position: absolute;
    right: 0.3rem;
    top: 0.9rem;
  }
  .indexP3 .more a {
    border: #dba95b solid 1px;
    width: 2.3rem;
    height: 0.72rem;
    font-size: var(--fs14);
  }
  .indexP3 .more a:hover {
    border: #dc0021 solid 1px;
  }
  .indexP3 .more a:hover em {
    background-size: 6px;
  }
  .indexP3 .more a em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .indexP3 .mxfDiv {
    float: none;
    width: 100%;
    height: 5.4rem;
  }
  .indexP3 .item_box {
    height: 5.4rem;
  }
  .indexP3 .choose_txt li {
    height: 5.4rem;
  }
  .indexP3 .choose_txt li .ico img {
    width: 0.64rem;
  }
  .indexP3 .choose_txt li .name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs13);
    height: 0.42rem;
    line-height: 0.42rem;
  }
  .indexP4 {
    padding: 1rem 0;
  }
  .indexP4 .toptop .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .indexP4 .toptop .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-bottom: 0.28rem;
  }
  .indexP4 .toptop .msg::after {
    height: 3px;
  }
  .indexP4 .toptop .more {
    top: 0;
  }
  .indexP4 .toptop .more a {
    border: #dba95b solid 1px;
    width: 2.3rem;
    height: 0.72rem;
    font-size: var(--fs14);
  }
  .indexP4 .toptop .more a em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .indexP4 .toptop .more:hover em {
    background-size: 6px;
  }
  .indNews {
    margin-top: 0.75rem;
  }
  .indNews::after {
    display: none;
  }
  .indNews .imgList {
    overflow: hidden;
  }
  .indNews .imgDiv {
    height: 4.2rem;
  }
  .indNews .botDiv {
    padding: 0.35rem 0.3rem 0;
    height: 3rem;
  }
  .indNews .time {
    font-size: var(--fs13);
    line-height: 0.24rem;
  }
  .indNews .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .indNews .ico {
    margin-top: 0.2rem;
    width: 0.86rem;
    height: 0.52rem;
  }
  .indNews .swiper-pagination {
    margin-top: 0.65rem;
    height: 1px;
  }
  .indNews .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 3px;
  }
  .indexP5 {
    height: 5rem;
  }
  .indexP5 .title {
    font-size: var(--fs24);
  }
  .indexP5 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.1rem;
  }
  .indexP5 .btnGroup {
    margin-top: 0.5rem;
  }
  .indexP5 .btnGroup li {
    font-size: var(--fs14);
  }
  .indexP5 .btnGroup li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 2.3rem;
    height: 0.86rem;
  }
  .indexP5 .btnGroup li em {
    margin-left: 0.15rem;
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
}
.productBox {
  padding: 0.4rem 0 1.3rem;
}
.productBox .leftDiv {
  width: 3.2rem;
  background: #f2f2f2;
  border-radius: 0.1rem;
  padding: 0.4rem 0.3rem 0.48rem;
}
.productBox .leftDiv .zi {
  font-family: 'Mont-R';
  color: #333;
  font-size: var(--fs18);
  line-height: 0.36rem;
  margin-bottom: 0.15rem;
}
.productBox .form {
  margin-bottom: 0.4rem;
  border: #ddd solid 1px;
  border-radius: 0.12rem;
  overflow: hidden;
}
.productBox .form .input1 {
  font-size: var(--fs16);
  height: 0.44rem;
  line-height: 0.44rem;
  color: #222;
  font-family: 'Mont-L';
  width: 100%;
  padding-left: 0.55rem;
  background: #fff url(../img/nimg23_1.png) 0.17rem center no-repeat;
}
.productBox .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.productBox .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.productBox .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.productBox .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.productBox .single .list {
  max-height: 3rem;
  overflow: auto;
  margin-bottom: 0.32rem;
}
.productBox .single .list::-webkit-scrollbar {
  width: 4px;
}
.productBox .single .list::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.productBox .single .list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.productBox .single .list li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 30px;
  cursor: pointer;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.3rem;
  background: url(../img/nimg18_1.png) left center no-repeat;
}
.productBox .single .list .on {
  background: url(../img/nimg18_1on.png) left center no-repeat;
}
.productBox .screenDiv .list {
  max-height: 3rem;
  overflow: auto;
  margin-bottom: 0.32rem;
}
.productBox .screenDiv .list::-webkit-scrollbar {
  width: 4px;
}
.productBox .screenDiv .list::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.productBox .screenDiv .list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.productBox .screenDiv .list li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 30px;
  cursor: pointer;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.3rem;
  background: url(../img/nimg18_1.png) left center no-repeat;
}
.productBox .screenDiv .list .on {
  background: url(../img/nimg18_1on.png) left center no-repeat;
}
.productBox .resetBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  font-family: 'Mont-R';
  border: #dba95b solid 1px;
  color: #dba95b;
  font-size: var(--fs16);
}
.productBox .resetBtn a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.productBox .rightDiv {
  width: 10.8rem;
}
.productBox .rightDiv .bigImg {
  border-radius: 0.2rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.productBox .rightDiv .bigImg img {
  width: 100%;
}
.productBox .lie {
  margin-bottom: 0.15rem;
}
.productBox .lie ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productBox .lie li {
  width: calc((100% - 0.6rem) / 4);
  margin-right: 0.2rem;
  margin-bottom: 0.42rem;
}
.productBox .lie li:nth-child(4n) {
  margin-right: 0;
}
.productBox .lie li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 2.55rem;
  background: #f2f2f2;
  border-radius: 0.2rem;
  overflow: hidden;
}
.productBox .lie li .imgDiv img {
  max-width: 2.55rem;
  max-height: 2.55rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.productBox .lie li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: 'Mont-R';
  margin-top: 0.1rem;
  max-height: 0.6rem;
  line-height: 0.3rem;
  font-size: var(--fs16);
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productBox .lie li .wen {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.24rem;
  line-height: 0.24rem;
  font-size: var(--fs14);
  color: #999;
}
.productBox .lie li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.productBox .lie li .box:hover .name {
  color: #dc0021;
}
.screenOpen {
  position: fixed;
  z-index: 4;
  left: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #dc0021;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.screenOpen em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.32rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.screenOpen.off {
  left: -0.8rem;
}
.screenClose {
  position: fixed;
  z-index: 12;
  right: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #dc0021;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.screenClose em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.32rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.screenClose.on {
  right: 0;
}
@media (max-width: 1600px) {
  .productBox .single .list li {
    background-size: 15px;
  }
  .productBox .single .list .on {
    background-size: 15px;
  }
  .productBox .screenDiv .list li {
    background-size: 15px;
  }
  .productBox .screenDiv .list .on {
    background-size: 15px;
  }
}
@media (max-width: 1004px) {
  .productBox {
    padding: 0.8rem 0 1rem;
  }
  .productBox .leftDiv {
    width: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 10;
    overflow: auto;
    border-radius: 0;
    padding: 0.4rem 0.3rem 0.6rem;
  }
  .productBox .leftDiv .zi {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.25rem;
  }
  .productBox .form {
    border-radius: 0.2rem;
  }
  .productBox .form .input1 {
    font-size: var(--fs14);
    height: 0.84rem;
    line-height: 0.84rem;
    padding-left: 0.65rem;
    background: #fff url(../img/nimg23_1.png) 0.2rem center no-repeat;
    background-size: 0.3rem;
  }
  .productBox .single .list {
    max-height: 5.6rem;
    margin-bottom: 0.4rem;
  }
  .productBox .single .list li {
    padding-left: 25px;
    font-size: var(--fs14);
    line-height: 0.56rem;
    height: 0.56rem;
    background-size: 15px;
  }
  .productBox .single .list .on {
    background-size: 15px;
  }
  .productBox .screenDiv .list {
    max-height: 5.6rem;
    margin-bottom: 0.4rem;
  }
  .productBox .screenDiv .list li {
    padding-left: 25px;
    font-size: var(--fs14);
    line-height: 0.56rem;
    height: 0.56rem;
    background-size: 15px;
  }
  .productBox .screenDiv .list .on {
    background-size: 15px;
  }
  .productBox .resetBtn a {
    border: #dba95b solid 1px;
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .productBox .resetBtn a:hover {
    border: #dc0021 solid 1px;
  }
  .productBox .rightDiv {
    width: auto;
    float: none;
  }
  .productBox .bigImg {
    margin-bottom: 0.6rem;
  }
  .productBox .lie {
    margin-bottom: 0.3rem;
  }
  .productBox .lie li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-bottom: 0.5rem;
  }
  .productBox .lie li:nth-child(2n) {
    margin-right: 0;
  }
  .productBox .lie li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.2rem;
    max-height: 100%;
    height: auto;
    line-height: 0.42rem;
    font-size: var(--fs15);
  }
  .productBox .lie li .wen {
    height: 0.42rem;
    line-height: 0.42rem;
    font-size: var(--fs13);
  }
  .screenOpen {
    left: 0;
  }
}
.joinP1 {
  padding: 1.3rem 0;
}
.joinP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
  height: 7.6rem;
  z-index: 1;
}
.joinP1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinP1 .layer {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.joinP1 .title {
  color: #fff;
  font-size: var(--fs50);
  line-height: 0.6rem;
  font-family: 'Lato-B';
}
.joinP1 .msg {
  font-size: var(--fs16);
  line-height: 0.32rem;
  margin: 0.15rem 0 0.5rem;
  color: #fff;
}
.joinP1 .btnDiv {
  width: 2.4rem;
  margin: 0 auto;
}
.joinP1 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 0.48rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 0.56rem;
  color: #fff;
  font-size: var(--fs18);
  font-family: 'Mont-R';
}
.joinP1 .btnDiv a:hover {
  background-color: rgba(220, 0, 33, 0.6);
}
.joinP1 .btnDiv em {
  margin-left: 15px;
  display: block;
  width: 9px;
  height: 12px;
  background: url(../img/ico5.png) no-repeat;
}
.joinP1 .videoDiv {
  display: none;
}
.joinP2 {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 6.6rem;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.joinP2 .txtLayer {
  text-align: center;
  color: #fff;
}
.joinP2 .pageTitle {
  color: #fff;
}
.joinP2 .content {
  width: 11.5rem;
  margin: 0.5rem auto 0;
  font-size: var(--fs18);
  line-height: 0.3rem;
  font-family: 'Mont-R';
}
.joinP3 {
  padding: 1.2rem 0 1.3rem;
}
.joinP3 .list {
  padding: 0.6rem 0 0.4rem;
}
.joinP3 .list li {
  margin-bottom: 0.2rem;
}
.joinP3 .list li .topDiv {
  padding: 0.3rem 0.4rem 0.3rem;
  background: #fdf2f4;
  position: relative;
  cursor: pointer;
}
.joinP3 .list li .topDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #dc0021;
}
.joinP3 .list li .line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25px;
  background: #fff;
  display: none;
  z-index: 1;
}
.joinP3 .list li .name {
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #17171d;
  font-family: 'Mont-M';
}
.joinP3 .list li .time {
  font-size: var(--fs14);
  line-height: 0.3rem;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
.joinP3 .list li .zhiqian {
  font-size: var(--fs16);
  line-height: 0.3rem;
  max-height: 0.6rem;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
}
.joinP3 .list li .hideBox {
  display: none;
  background: #fff;
  padding: 0 0.4rem 0.4rem;
  position: relative;
  box-shadow: 0 0 0.25rem 0px rgba(0, 0, 0, 0.24);
}
.joinP3 .list li .ico {
  position: absolute;
  right: 0.4rem;
  top: 0.36rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
}
.joinP3 .list li .ico::before {
  content: '';
  background: #dc0021;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.09rem;
  margin-top: -0.02rem;
  width: 0.18rem;
  height: 0.04rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP3 .list li .ico::after {
  content: '';
  background: #dc0021;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.02rem;
  margin-top: -0.09rem;
  width: 0.04rem;
  height: 0.18rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP3 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: rgba(0, 0, 0, 0.6);
}
.joinP3 .list li .btnGroup {
  margin-top: 0.2rem;
}
.joinP3 .list li .btnGroup a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.8rem;
  height: 0.56rem;
  border: #dba95b solid 2px;
  border-radius: 0.48rem;
  text-align: center;
  color: #dba95b;
  font-family: 'Mont-R';
  font-size: var(--fs16);
}
.joinP3 .list li .btnGroup a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP3 .list li .btnGroup a:hover {
  background: #dc0021;
  border: #dc0021 solid 2px;
  color: #fff;
}
.joinP3 .list li .btnGroup a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.joinP3 .list li .liNow {
  background: #fff;
  padding: 0.3rem 0.4rem 0;
  box-shadow: 0 0 0.25rem 0px rgba(0, 0, 0, 0.24);
}
.joinP3 .list li .liNow .line {
  display: block;
}
.joinP3 .list li .liNow .zhiqian {
  display: none;
}
.joinP3 .list li .liNow .ico {
  background: #dc0021;
}
.joinP3 .list li .liNow .ico::before {
  background: #fff;
}
.joinP3 .list li .liNow .ico::after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.tips-modal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.tips-modal-box .box {
  position: relative;
  background: #fff;
  width: 5rem;
  margin: 0 auto;
  padding: 0.5rem;
}
.tips-modal-box .msg {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  text-align: center;
}
.tips-modal-box .msg em {
  font-size: var(--fs22);
  color: #dc0021;
}
.tips-modal-box .close {
  position: absolute;
  z-index: 2;
  display: block;
  right: 0.2rem;
  top: 0.2rem;
  width: 30px;
  height: 30px;
  background: url(../img/close2.png) no-repeat;
}
.tips-modal-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
@media (max-width: 1004px) {
  .joinP1 {
    padding: 1rem 0;
  }
  .joinP1 .mxfDiv {
    height: 4.6rem;
  }
  .joinP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .joinP1 .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin: 0.15rem 0.3rem 0.35rem;
  }
  .joinP1 .btnDiv {
    width: 3.4rem;
  }
  .joinP1 .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .joinP1 .btnDiv em {
    margin-left: 10px;
    width: 6px;
    height: 9px;
    background-size: 6px;
  }
  .joinP2 {
    height: 7.6rem;
    background-attachment: inherit;
  }
  .joinP2 .content {
    width: 90%;
    margin: 0.3rem auto 0;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .joinP3 {
    padding: 0.9rem 0 1rem;
  }
  .joinP3 .list {
    padding: 0.75rem 0 0.6rem;
  }
  .joinP3 .list li {
    margin-bottom: 0.2rem;
  }
  .joinP3 .list li .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background: #fff;
    display: none;
    z-index: 1;
  }
  .joinP3 .list li .name {
    font-size: var(--fs16);
    padding-right: 1.1rem;
    line-height: 0.48rem;
  }
  .joinP3 .list li .time {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .joinP3 .list li .zhiqian {
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 0.96rem;
  }
  .joinP3 .list li .hideBox {
    padding: 0 0.4rem 0.5rem;
  }
  .joinP3 .list li .ico {
    top: 0.36rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .joinP3 .list li .ico::before {
    height: 2px;
    margin-top: -1px;
    margin-left: -5px;
    width: 10px;
  }
  .joinP3 .list li .ico::after {
    height: 10px;
    margin-top: -5px;
    margin-left: -1px;
    width: 2px;
  }
  .joinP3 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP3 .list li .btnGroup {
    margin-top: 0.3rem;
  }
  .joinP3 .list li .btnGroup a {
    width: 2.8rem;
    height: 0.86rem;
    font-size: var(--fs14);
    border: #dba95b solid 1px;
  }
  .joinP3 .list li .btnGroup a em {
    margin-left: 0.1rem;
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .joinP3 .list li .btnGroup a:hover {
    border: #dc0021 solid 1px;
  }
  .joinP3 .list li .btnGroup a:hover em {
    background-size: 6px;
  }
  .tips-modal-box .box {
    width: 90%;
    padding: 1rem 0.5rem;
  }
  .tips-modal-box .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .tips-modal-box .msg em {
    font-size: var(--fs18);
  }
}
.solutionP1 {
  background: #000;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.solutionP1::before {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -6.2rem;
  top: 2.4rem;
  width: 12.4rem;
  height: 4.2rem;
  background: url(../img/nimg1240Bg.jpg) center no-repeat;
  background-size: 100%;
}
.solutionP1 .title {
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: var(--fs50);
  line-height: 0.56rem;
  color: #fff;
  font-family: 'Lato-B';
}
.solutionP1 .list {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 3.5rem;
}
.solutionP1 .list ul {
  display: block;
  margin-right: -0.3rem;
}
.solutionP1 .list li {
  float: left;
  width: 20%;
}
.solutionP1 .list li .box {
  margin-right: 0.3rem;
  border-radius: 0.24rem;
  background: #20170d;
  height: 3.5rem;
  padding: 0.8rem 0.3rem 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP1 .list li .box:hover {
  background: #dc0021;
}
.solutionP1 .list li .ico {
  height: 1rem;
  font-size: var(--fs52);
  line-height: 0.56rem;
  display: inline-block;
  font-family: 'Mont-B';
  background-image: -webkit-linear-gradient(left top, #ffca82, #e47e18);
  background-image: linear-gradient(to right bottom, #ffca82, #e47e18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutionP1 .list li .ico img {
  width: 0.6rem;
}
.solutionP1 .list li .name {
  font-size: var(--fs20);
  line-height: 0.3rem;
  color: #fff;
  font-family: 'Mont-R';
}
.solutionP1 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.solutionP1 .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
}
.solutionP1 .swiper-pagination-bullet-active {
  background: #dc0021;
}
.solutionP2 {
  padding: 1.3rem 0 1.1rem;
}
.solutionP2 .title {
  text-align: center;
  margin: 0;
  font-size: var(--fs50);
  line-height: 0.56rem;
  color: #333;
  font-family: 'Lato-B';
}
.solutionP2 .content {
  color: #333;
  margin: 0.2rem 0 0.5rem;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.32rem;
  font-family: 'Mont-R';
}
.solutionP2 .list ul {
  margin-right: -0.2rem;
}
.solutionP2 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.2rem;
}
.solutionP2 .list li .box {
  margin-right: 0.2rem;
  overflow: hidden;
  position: relative;
  height: 4.5rem;
  border-radius: 0.12rem;
}
.solutionP2 .list li .imgDiv {
  height: 4.5rem;
}
.solutionP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.solutionP2 .list li .layer {
  width: 100%;
  padding: 0 0.2rem 0 0.3rem;
  height: 0.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .name {
  font-size: var(--fs30);
  height: 0.8rem;
  line-height: 0.3rem;
  font-family: 'Lato-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.24rem;
  overflow: auto;
  padding-right: 5px;
}
.solutionP2 .list li .msg::-webkit-scrollbar {
  width: 2px;
}
.solutionP2 .list li .msg::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.solutionP2 .list li .msg::-webkit-scrollbar-thumb {
  background-color: #dc0021;
}
.solutionP2 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.solutionP2 .list li .box:hover .layer {
  height: 36%;
}
.solutionP2 .list li .box:hover .name {
  height: 0.45rem;
}
.solutionP2 .list li:nth-child(1),
.solutionP2 .list li:nth-child(2),
.solutionP2 .list li:nth-child(5),
.solutionP2 .list li:nth-child(6) {
  width: 29.2%;
}
.solutionP2 .list li:nth-child(3),
.solutionP2 .list li:nth-child(4) {
  width: 41.6%;
}
.solutionP3 {
  background: #f2f2f2;
  padding: 1.3rem 0;
  overflow: hidden;
}
.solutionP3 .toptop {
  height: 1.4rem;
  position: relative;
}
.solutionP3 .pageTitle {
  text-align: left;
}
.solutionP3 .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.solutionP3 .more {
  position: absolute;
  right: 0;
  top: 0.15rem;
  z-index: 1;
}
.solutionP3 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: 'Mont-R';
  width: 1.8rem;
  height: 0.56rem;
  font-size: var(--fs18);
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
}
.solutionP3 .more a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.solutionP3 .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP3 .more:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.present {
  position: relative;
}
.present::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: 7.2rem;
  width: 25%;
  height: 100%;
  background: #f2f2f2;
  z-index: 3;
}
.present .box {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.present .imgDiv {
  height: 5.92rem;
  position: relative;
  border-radius: 0.24rem;
  overflow: hidden;
}
.present .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.7rem;
  background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.present .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.present .name {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  padding: 0 0.4rem;
  bottom: 0.5rem;
  font-family: 'Mont-R';
  font-size: var(--fs22);
  color: #fff;
  line-height: 0.28rem;
}
.present .swiper-pagination {
  position: relative;
  margin-top: 0.5rem;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #d8d8d8;
}
.present .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 4px;
  background-color: #dc0021;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.present .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.solutionP4 {
  background: url(../img/solutionP4.jpg) center no-repeat;
  background-size: cover;
  padding: 1.3rem 0;
  overflow: hidden;
}
.solutionP4 .wrap2 {
  position: relative;
}
.solutionP4 .title {
  text-align: center;
  margin: 0;
  font-size: var(--fs50);
  line-height: 0.56rem;
  color: #333;
  font-family: 'Lato-B';
}
.solutionP4 .content {
  margin: 0.2rem 0 0.5rem;
  color: #333;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.32rem;
  font-family: 'Mont-R';
}
.solutionP4 .list ul {
  margin-right: -0.2rem;
}
.solutionP4 .list li {
  float: left;
  width: 20%;
}
.solutionP4 .list li .box {
  margin-right: 0.2rem;
  border-radius: 0.12rem;
  overflow: hidden;
}
.solutionP4 .list li .imgDiv {
  height: 3.5rem;
  position: relative;
}
.solutionP4 .list li .imgDiv img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.solutionP4 .list li .imgDiv .img1 {
  opacity: 0;
  visibility: hidden;
}
.solutionP4 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.6rem;
  padding: 0 0.2rem;
  background: #f5f5f5;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
  font-family: 'Mont-R';
}
.solutionP4 .list li .box:hover .imgDiv img {
  opacity: 0;
  visibility: hidden;
}
.solutionP4 .list li .box:hover .imgDiv .img1 {
  opacity: 1;
  visibility: visible;
}
.solutionP4 .tips {
  position: absolute;
  right: 0;
  top: 0.5rem;
}
.solutionP4 .tips img {
  width: 3.75rem;
}
.solutionP5 {
  background: #f2f2f2;
  padding: 1.3rem 0;
  overflow: hidden;
}
.solutionP5 .title {
  text-align: center;
  margin: 0;
  font-size: var(--fs50);
  line-height: 0.56rem;
  color: #333;
  font-family: 'Lato-B';
}
.solutionP5 .content {
  margin: 0.2rem 0 0.5rem;
  color: #333;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.32rem;
  font-family: 'Mont-R';
}
.solutionP5 .form ul {
  margin-right: -0.4rem;
}
.solutionP5 .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.24rem;
}
.solutionP5 .form li .box {
  margin-right: 0.4rem;
  position: relative;
}
.solutionP5 .form li .box2 {
  padding-left: 1.35rem;
}
.solutionP5 .form li .zi {
  position: absolute;
  left: 0.4rem;
  top: 0;
  line-height: 0.6rem;
  color: #333;
  font-size: var(--fs16);
  font-family: 'Mont-R';
}
.solutionP5 .form li .zi em {
  color: #ff0909;
}
.solutionP5 .form li .input1 {
  width: 100%;
  color: #222;
  height: 0.6rem;
  line-height: 0.6rem;
  font-size: var(--fs16);
  padding-left: 1.4rem;
  background: #fff;
  border-radius: 0.08rem;
}
.solutionP5 .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li .wen {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  text-align: center;
  background: #fff;
  color: #333;
  border-radius: 0.08rem;
}
.solutionP5 .form li .wen em {
  color: #ff0909;
}
.solutionP5 .form li textarea {
  width: 100%;
  padding: 0.2rem 0.4rem;
  height: 1.5rem;
  border-radius: 0.08rem;
  background: #fff;
  color: #222;
  font-family: 'Mont-L';
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.solutionP5 .form li textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form li textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.solutionP5 .form .li01 {
  width: 100%;
}
.solutionP5 .select {
  width: 100%;
  position: relative;
  z-index: 1;
}
.solutionP5 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  background: #fff;
  color: #222;
  border-radius: 0.08rem;
}
.solutionP5 .select .caption::after {
  content: "";
  width: 14px;
  height: 8px;
  background: url(../img/selectIco.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -4px;
}
.solutionP5 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2.4rem;
  overflow-y: auto;
  display: none;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.08rem;
}
.solutionP5 .select .xlist::-webkit-scrollbar {
  width: 4px;
}
.solutionP5 .select .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.solutionP5 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #dc0021;
}
.solutionP5 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  height: 0.6rem;
  color: #222;
  line-height: 0.6rem;
  padding: 0 0.25rem;
}
.solutionP5 .select .xlist a:hover {
  color: #dc0021;
}
.solutionP5 .btnDiv {
  margin: 0.36rem auto 0;
  width: 1.8rem;
}
.solutionP5 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: #dba95b solid 1px;
  color: #dba95b;
  border-radius: 0.48rem;
  width: 100%;
  height: 0.56rem;
  font-size: var(--fs18);
  font-family: 'Mont-R';
}
.solutionP5 .btnDiv a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.codeLayer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 59;
}
.codeLayer2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 59;
}
.codeBox {
  position: absolute;
  border-radius: 0.1rem;
  background: #fff;
  top: 50%;
  left: 50%;
  padding: 0.6rem 0.6rem 0;
  width: 7.2rem;
  height: 3.6rem;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.codeBox .title {
  text-align: center;
  color: #333;
  font-size: var(--fs36);
  line-height: 0.4rem;
  font-family: 'Mont-R';
  margin-bottom: 0.5rem;
}
.codeBox .pjDiv {
  height: 0.6rem;
  border-radius: 0.08rem;
  background: #f2f2f2;
  overflow: hidden;
  position: relative;
  padding-right: 2rem;
}
.codeBox .pjDiv .yzm {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.18rem;
}
.codeBox .pjDiv .yzm img {
  height: 0.36rem;
}
.codeBox .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.4rem;
  background: none;
  font-size: var(--fs16);
  color: #999;
}
.codeBox .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.codeBox .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.codeBox .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.codeBox .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.codeBox .input1:-webkit-autofill,
.codeBox .input1:-webkit-autofill:hover,
.codeBox .input1:-webkit-autofill:focus,
.codeBox .input1:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f2f2f2 inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.codeBox .btnDiv {
  margin: 0.5rem auto 0;
  width: 1.8rem;
}
.codeBox .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: #dba95b solid 1px;
  color: #dba95b;
  border-radius: 0.48rem;
  width: 100%;
  height: 0.56rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
}
.codeBox .btnDiv a:hover {
  border: #dc0021 solid 1px;
  background: #dc0021;
  color: #fff;
}
.codeBox .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
@media (max-width: 1004px) {
  .solutionP1 {
    padding: 1.2rem 0;
  }
  .solutionP1::before {
    margin-left: -4.1rem;
    top: 2.6rem;
    width: 8.2rem;
    height: 2.78rem;
  }
  .solutionP1 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .solutionP1 .list {
    margin-top: 3.5rem;
    margin-left: 8%;
    margin-right: 8%;
  }
  .solutionP1 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .solutionP1 .list li {
    width: auto;
  }
  .solutionP1 .list li .box {
    margin-right: 0;
    padding: 0.7rem 0.5rem 0;
  }
  .solutionP1 .list li .ico {
    height: 1.1rem;
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .solutionP1 .list li .ico img {
    width: 0.66rem;
  }
  .solutionP1 .list li .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .solutionP1 .swiper-pagination {
    display: block;
  }
  .solutionP2 {
    padding: 1rem 0 0.9rem;
  }
  .solutionP2 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .solutionP2 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP2 .list ul {
    margin-right: 0;
  }
  .solutionP2 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .solutionP2 .list li .box {
    margin-right: 0;
    height: 4.5rem;
    border-radius: 0.2rem;
  }
  .solutionP2 .list li .box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    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;
  }
  .solutionP2 .list li .layer {
    height: 0.56rem;
    bottom: 0.3rem;
    overflow: hidden;
  }
  .solutionP2 .list li .name {
    font-size: var(--fs18);
    height: auto;
    line-height: 0.56rem;
  }
  .solutionP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: auto;
  }
  .solutionP2 .list li .box:hover::after {
    opacity: 1;
    visibility: visible;
  }
  .solutionP2 .list li .box:hover .layer {
    height: 70%;
    bottom: 0;
  }
  .solutionP2 .list li .box:hover .name {
    height: auto;
  }
  .solutionP2 .list li:nth-child(1),
  .solutionP2 .list li:nth-child(2),
  .solutionP2 .list li:nth-child(5),
  .solutionP2 .list li:nth-child(6) {
    width: 100%;
  }
  .solutionP2 .list li:nth-child(3),
  .solutionP2 .list li:nth-child(4) {
    width: 100%;
  }
  .solutionP3 {
    padding: 1rem 0;
  }
  .solutionP3 .toptop {
    height: auto;
    padding-bottom: 0.5rem;
  }
  .solutionP3 .pageTitle {
    text-align: left;
    font-size: var(--fs20);
  }
  .solutionP3 .more {
    top: 0;
  }
  .solutionP3 .more a {
    border: #dba95b solid 1px;
    width: 2.3rem;
    height: 0.72rem;
    font-size: var(--fs14);
  }
  .solutionP3 .more a em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .solutionP3 .more a:hover {
    border: #dc0021 solid 1px;
  }
  .solutionP3 .more a:hover em {
    background-size: 6px;
  }
  .present {
    position: relative;
  }
  .present::after {
    display: none;
  }
  .present .imgList {
    overflow: hidden;
  }
  .present .imgDiv {
    height: 4rem;
    position: relative;
  }
  .present .imgDiv::after {
    height: 2rem;
  }
  .present .name {
    padding: 0 0.3rem;
    bottom: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .present .swiper-pagination {
    margin-top: 0.65rem;
    height: 1px;
  }
  .present .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 3px;
  }
  .solutionP4 {
    padding: 1rem 0 0.8rem;
  }
  .solutionP4 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .solutionP4 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP4 .list li {
    width: 50%;
    margin-bottom: 0.3rem;
  }
  .solutionP4 .list li .box {
    border-radius: 0.16rem;
  }
  .solutionP4 .list li .imgDiv {
    height: 3.8rem;
  }
  .solutionP4 .list li .name {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    height: 1rem;
    font-size: var(--fs13);
    line-height: 0.36rem;
  }
  .solutionP4 .tips {
    bottom: 3.8rem;
    right: auto;
    left: 54%;
    top: auto;
  }
  .solutionP4 .tips img {
    width: 2.75rem;
  }
  .solutionP5 {
    padding: 1rem 0;
  }
  .solutionP5 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .solutionP5 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP5 .form ul {
    margin-right: 0;
  }
  .solutionP5 .form li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .solutionP5 .form li .box {
    margin-right: 0;
  }
  .solutionP5 .form li .box2 {
    padding-left: 1.85rem;
  }
  .solutionP5 .form li .zi {
    left: 0.2rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .solutionP5 .form li .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
    padding-left: 2rem;
    border-radius: 0.12rem;
  }
  .solutionP5 .form li .wen {
    width: 1.6rem;
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
    border-radius: 0.12rem;
  }
  .solutionP5 .form li textarea {
    padding: 0.25rem 0.3rem;
    height: 3rem;
    border-radius: 0.12rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .solutionP5 .select .caption {
    height: 0.86rem;
    line-height: 0.86rem;
    padding-left: 0.2rem;
    font-size: var(--fs14);
    border-radius: 0.12rem;
  }
  .solutionP5 .select .caption::after {
    width: 10px;
    height: 6px;
    margin-top: -3px;
    background-size: 10px;
    right: 0.25rem;
  }
  .solutionP5 .select .xlist {
    max-height: 3.36rem;
    border-radius: 0.12rem;
  }
  .solutionP5 .select .xlist::-webkit-scrollbar {
    width: 3px;
  }
  .solutionP5 .select .xlist a {
    font-size: var(--fs14);
    height: 0.84rem;
    line-height: 0.84rem;
    padding: 0 0.2rem;
  }
  .solutionP5 .btnDiv {
    width: 2.4rem;
  }
  .solutionP5 .btnDiv a {
    border: #dba95b solid 1px;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .solutionP5 .btnDiv a:hover {
    border: #dc0021 solid 1px;
  }
  .codeBox {
    padding: 0.8rem 0.3rem;
    width: 94%;
    height: auto;
  }
  .codeBox .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .codeBox .pjDiv {
    height: 0.86rem;
    border-radius: 0.12rem;
    padding-right: 2rem;
  }
  .codeBox .pjDiv .yzm {
    right: 0.2rem;
    margin-top: -0.24rem;
  }
  .codeBox .pjDiv .yzm img {
    height: 0.48rem;
  }
  .codeBox .input1 {
    height: 0.86rem;
    line-height: 0.86rem;
    padding-left: 0.2rem;
    background: none;
    font-size: var(--fs13);
  }
  .codeBox .btnDiv {
    width: 2.4rem;
  }
  .codeBox .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .codeBox .close {
    right: 0.3rem;
    top: 0.3rem;
  }
  .codeBox .close img {
    width: 0.42rem;
  }
}
.contactP1 {
  padding: 1.3rem 0 1.1rem;
}
.contactP1 .list ul {
  margin-right: -0.2rem;
}
.contactP1 .list li {
  float: left;
  width: 25%;
  margin-bottom: 0.2rem;
}
.contactP1 .list li .box {
  padding: 0.45rem 0.28rem 0;
  margin-right: 0.2rem;
  text-align: center;
  height: 2.8rem;
  background: #f9fafb;
  border-radius: 0.24rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.contactP1 .list li .box:hover {
  background: #fff;
  box-shadow: 0 0 0.32rem 0 rgba(0, 0, 0, 0.07);
}
.contactP1 .list li .ico {
  height: 0.5rem;
}
.contactP1 .list li .ico img {
  width: 0.5rem;
}
.contactP1 .list li .ewm img {
  width: 1rem;
}
.contactP1 .list li .name {
  margin-top: 0.25rem;
  font-size: var(--fs24);
  line-height: 0.26rem;
  color: #333;
  font-family: 'Mont-R';
}
.contactP1 .list li .msg {
  margin-top: 0.2rem;
  color: #666;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  line-height: 0.24rem;
}
.contactP2 {
  padding-top: 1.3rem;
  height: 8.5rem;
  background: url(../img/contactP2.jpg) center no-repeat;
  background-size: cover;
}
.contactP2 .pageTitle {
  color: #fff;
}
.contactP2 .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: center;
  color: #fff;
  font-family: 'Mont-R';
  width: 12rem;
  margin: 0.5rem auto 0;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 1rem 0 0.9rem;
  }
  .contactP1 .list ul {
    margin-right: 0;
  }
  .contactP1 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .contactP1 .list li .box {
    padding: 0.6rem 0.35rem 0;
    margin-right: 0;
    height: 4rem;
  }
  .contactP1 .list li .ico {
    height: 0.7rem;
  }
  .contactP1 .list li .ico img {
    width: 0.7rem;
  }
  .contactP1 .list li .ewm img {
    width: 1.5rem;
  }
  .contactP1 .list li .name {
    margin-top: 0.25rem;
    font-size: var(--fs18);
    line-height: 0.48rem;
    color: #333;
    font-family: 'Mont-R';
  }
  .contactP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contactP2 {
    padding-top: 1rem;
  }
  .contactP2 .content {
    font-size: var(--fs14);
    line-height: 0.42rem;
    width: 92%;
  }
}
.news {
  padding: 1.3rem 0;
}
.news .detail a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.32rem 0 rgba(0, 0, 0, 0.07);
  background: #fff;
  overflow: hidden;
}
.news .detail .imgDiv {
  order: 1;
  width: 50%;
  overflow: hidden;
}
.news .detail .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .detail .conDiv {
  width: 50%;
  padding: 0 0.7rem;
}
.news .detail .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: rgba(102, 102, 102, 0.6);
  font-family: 'Mont-L';
  margin-bottom: 0.12rem;
}
.news .detail .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs30);
  line-height: 0.42rem;
  height: 0.84rem;
  color: #000;
  font-family: 'Mont-B';
}
.news .detail .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.32rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  height: 0.84rem;
  color: #666;
}
.news .detail .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.7rem;
  width: 1.8rem;
  height: 0.56rem;
  font-family: 'Mont-R';
  font-size: var(--fs18);
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
  color: #dba95b;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .detail .more em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .detail a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .detail a:hover .more {
  border: #dc0021 solid 2px;
  background: #dc0021;
  color: #fff;
}
.news .detail a:hover .more em {
  background: url(../img/ico1on.png) no-repeat;
}
.news .midmid {
  margin: 0.8rem 0 0.6rem;
  position: relative;
  z-index: 1;
}
.news .midmid::after {
  content: '';
  display: block;
  clear: both;
}
.news .selectYear {
  width: 2.2rem;
  position: relative;
  margin-right: 0.3rem;
}
.news .selectYear .caption {
  position: relative;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  color: #999;
  background: #fff;
  border-radius: 0.36rem;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.07);
}
.news .selectYear .caption::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  background: url(../img/selectIco2.png) no-repeat;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -3px;
  z-index: 10;
}
.news .selectYear .selected {
  color: #222;
}
.news .selectYear .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.07);
  border-radius: 10px;
}
.news .selectYear .xlist::-webkit-scrollbar {
  width: 4px;
}
.news .selectYear .xlist::-webkit-scrollbar-track {
  background-color: #e1e1e1;
}
.news .selectYear .xlist::-webkit-scrollbar-thumb {
  background-color: #dc0021;
}
.news .selectYear .xlist a {
  display: block;
  font-size: var(--fs16);
  height: 0.6rem;
  color: #999;
  line-height: 0.6rem;
  padding: 0 0.25rem;
}
.news .selectYear .xlist a:hover {
  color: #dc0021;
}
.news .selectYear:nth-child(2) {
  width: 3rem;
}
.news .form {
  position: relative;
  padding-right: 1.9rem;
}
.news .form .input1 {
  width: 4rem;
  font-size: var(--fs16);
  color: #222;
  height: 50px;
  line-height: 50px;
  border-radius: 0.36rem;
  font-family: 'Mont-R';
  padding-left: 0.65rem;
  background: #fff url(../img/nimg15_1.png) 0.36rem center no-repeat;
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.07);
}
.news .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.news .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.news .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.news .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.news .form .btnDiv {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-family: 'Mont-R';
  width: 1.6rem;
  color: #fff;
  font-size: var(--fs18);
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  background: #dc0021;
  border-radius: 0.48rem;
}
.news .form .btnDiv:hover {
  background: #c1021e;
}
.news .list {
  margin-bottom: 0.2rem;
}
.news .list ul {
  margin-right: -0.45rem;
}
.news .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.6rem;
}
.news .list li .box {
  margin-right: 0.45rem;
  border-radius: 0.16rem;
  overflow: hidden;
  box-shadow: 0 0 0.32rem 0 rgba(0, 0, 0, 0.07);
}
.news .list li .imgDiv {
  height: 2.6rem;
  overflow: hidden;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.news .list li .botDiv {
  height: 1.5rem;
  padding: 0.2rem 0.35rem 0;
}
.news .list li .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: #999;
}
.news .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.1rem;
  font-size: var(--fs22);
  color: #333;
  line-height: 0.32rem;
  font-family: 'Lato-B';
  height: 0.64rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.news .list li .box:hover .name {
  color: #dc0021;
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0;
  }
  .news .detail a {
    display: block;
    border-radius: 0.24rem;
  }
  .news .detail .imgDiv {
    width: auto;
  }
  .news .detail .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem;
  }
  .news .detail .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
    margin-bottom: 0.15rem;
  }
  .news .detail .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .news .detail .content {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
    height: 1.26rem;
  }
  .news .detail .more {
    margin-top: 0.4rem;
    border: #dba95b solid 1px;
    width: 2.6rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .news .detail .more em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .news .detail a:hover .more {
    border: #dc0021 solid 1px;
  }
  .news .detail a:hover .more em {
    background-size: 6px;
  }
  .news .selectYear {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .news .selectYear .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
    border-radius: 0.48rem;
  }
  .news .selectYear .xlist {
    max-height: 3.6rem;
  }
  .news .selectYear .xlist a {
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
    padding: 0 0.3rem;
  }
  .news .selectYear:nth-child(2) {
    width: 100%;
  }
  .news .form {
    float: none;
    padding-right: 0;
  }
  .news .form .input1 {
    width: 100%;
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
    border-radius: 0.48rem;
    padding-left: 0.7rem;
    background: #fff url(../img/nimg15_1.png) 0.24rem center no-repeat;
  }
  .news .form .btnDiv {
    position: relative;
    margin-top: 0.3rem;
    width: 2.3rem;
    font-size: var(--fs14);
    height: 0.9rem;
    line-height: 0.9rem;
  }
  .news .list {
    margin-bottom: 0.6rem;
  }
  .news .list ul {
    margin-right: 0;
  }
  .news .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .news .list li .box {
    margin-right: 0;
    border-radius: 0.2rem;
  }
  .news .list li .imgDiv {
    height: 4.2rem;
  }
  .news .list li .botDiv {
    height: 2.3rem;
  }
  .news .list li .time {
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .news .list li .name {
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: 1.04rem;
  }
}
.newsBox {
  padding: 0.6rem 0 1.3rem;
}
.newShow {
  width: 10.2rem;
}
.newShow .name {
  margin: 0;
  font-size: var(--fs42);
  font-weight: bold;
  color: #191c22;
  line-height: 0.6rem;
}
.newShow .time {
  margin: 0.4rem 0 0.5rem;
  overflow: hidden;
}
.newShow .time li {
  float: left;
  padding-left: 0.3rem;
  margin-right: 0.5rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #999;
  position: relative;
}
.newShow .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
}
.newShow .content {
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
}
.newShow .imgDiv {
  text-align: center;
}
.newShow .imgDiv img {
  max-width: 100%;
}
.sideNews {
  padding-top: 0.2rem;
}
.sideNews .title {
  position: relative;
  color: #000;
  font-size: var(--fs30);
  line-height: 0.3rem;
  padding-bottom: 0.3rem;
  font-family: "Lato-B";
}
.sideNews .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.32rem;
  height: 0.05rem;
  background: #dc0021;
  border-radius: 4px;
}
.sideNews .list ul {
  display: block;
}
.sideNews .list li {
  padding: 0.4rem 0 0.3rem;
  border-bottom: #f3f3f3 solid 1px;
}
.sideNews .list li .imgDiv {
  border-radius: 0.16rem;
  overflow: hidden;
}
.sideNews .list li .imgDiv img {
  width: 100%;
}
.sideNews .list li .time {
  font-size: var(--fs17);
  line-height: 0.2rem;
  color: #999;
  padding: 0.2rem 0;
}
.sideNews .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs18);
  color: #222;
  font-family: 'Mont-R';
  line-height: 0.32rem;
  height: 0.64rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideNews .list li:hover .name {
  color: #dc0021;
}
.sideNews .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.sideNews .swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
}
.sideNews .swiper-pagination-bullet-active {
  background: #dc0021;
}
@media (max-width: 1004px) {
  .newsBox {
    padding: 0.5rem 0 1rem;
  }
  .newsBox .wrap2 {
    padding: 0 0.5rem;
  }
  .newShow {
    width: auto;
    float: none;
  }
  .newShow .name {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .newShow .time {
    margin: 0.4rem 0 0.5rem;
  }
  .newShow .time li {
    padding-left: 0.42rem;
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .newShow .time li img {
    width: 0.32rem;
    margin-top: -0.16rem;
  }
  .newShow .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
  }
  .newShow .imgDiv img {
    width: 100%;
  }
  .sideNews {
    padding-top: 1.2rem;
  }
  .sideNews .title {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .sideNews .title:after {
    width: 0.6rem;
  }
  .sideNews .list {
    overflow: hidden;
  }
  .sideNews .list ul {
    display: flex;
  }
  .sideNews .list li {
    padding: 0.6rem 0 0.4rem;
  }
  .sideNews .list li .imgDiv {
    height: 3rem;
  }
  .sideNews .list li .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .sideNews .list li .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .sideNews .list li .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .sideNews .swiper-pagination {
    display: block;
  }
}
.productD {
  height: 1.7rem;
}
.proTop {
  position: fixed;
  left: 0;
  top: 0.9rem;
  width: 100%;
  height: 0.8rem;
  background: #fff4e4;
  z-index: 4;
}
.proTop .wrap2 {
  height: 0.8rem;
  position: relative;
}
.proTop .list li {
  float: left;
  margin-right: 0.85rem;
  font-size: var(--fs16);
}
.proTop .list li a {
  display: block;
  height: 0.8rem;
  line-height: 0.8rem;
  color: #333;
}
.proTop .list li a:hover {
  color: #dc0021;
}
.proTop .form {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.23rem;
  width: 3.6rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  border: #dba95b solid 1px;
}
.proTop .form::before {
  content: '';
  position: absolute;
  width: 0.23rem;
  height: 0.23rem;
  left: 0.3rem;
  top: 50%;
  margin-top: -0.12rem;
  background: url(../img/nimg23_1.png) no-repeat;
  background-size: 0.23rem;
  z-index: 2;
}
.proTop .form .input1 {
  position: relative;
  width: 100%;
  padding-left: 0.66rem;
  background: #fff4e4;
  height: 0.44rem;
  line-height: 0.44rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #222;
  font-family: 'Mont-L';
}
.proTop .form .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.proTop .form .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.proTop .form .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.proTop .form .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.proTop .form .input1:-webkit-autofill,
.proTop .form .input1:-webkit-autofill:hover,
.proTop .form .input1:-webkit-autofill:focus,
.proTop .form .input1:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff4e4 inset !important;
  box-shadow: 0 0 0 1000px #fff4e4 inset !important;
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease-in-out 0s;
}
.proBanner {
  position: relative;
  padding: 0.5rem 0.5rem 0;
}
.proBanner .banner_index {
  overflow: hidden;
}
.proBanner .bg {
  border-radius: 0.2rem;
  overflow: hidden;
  height: 7rem;
}
.proBanner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proBanner .info {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #fff;
  transform: translateY(-50%);
  z-index: 1;
}
.proBanner .txtDiv {
  position: relative;
}
.proBanner .en {
  font-size: var(--fs60);
  line-height: 0.72rem;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Mont-B';
}
.proBanner .zi {
  font-size: var(--fs24);
  line-height: 0.36rem;
  margin-top: 0.1rem;
}
.proBanner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.6rem;
  z-index: 2;
}
.proBanner .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.proBanner .swiper-pagination-bullet-active {
  background: #dc0021;
}
.hallDiv {
  overflow: hidden;
  padding-top: 1.3rem;
}
.hallDiv .pageTitle {
  margin-bottom: 0.4rem;
}
.hallDiv .moreBtn {
  padding: 0.8rem 0 1.3rem;
  width: 2.4rem;
  margin: 0 auto;
  z-index: 1;
}
.hallDiv .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-family: 'Mont-R';
  width: 100%;
  height: 0.56rem;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  border: #dba95b solid 2px;
  color: #dba95b;
}
.hallDiv .moreBtn a:hover {
  border: #dc0021 solid 2px;
  background: #dc0021;
  color: #fff;
}
.hallDiv .moreBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 8px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hallDiv .moreBtn a:hover em {
  background: url(../img/ico1on.png) no-repeat;
}
.live-action {
  position: relative;
  width: 100%;
}
.live-action .swiper-container {
  overflow: hidden;
}
.live-action li {
  padding: 5px 0;
}
.live-action li a {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  position: relative;
}
.live-action li .imgDiv {
  height: 2.5rem;
  position: relative;
  overflow: hidden;
}
.live-action li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 115px;
  background: url(../img/bg3.png) repeat-x;
}
.live-action li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.live-action li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 0.42rem;
  line-height: 0.42rem;
  text-align: center;
  font-size: var(--fs30);
  font-family: 'Mont-R';
  color: #fff;
  z-index: 1;
  padding: 0 20px;
}
.live-action li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.live-action .se {
  position: absolute;
  width: 60px;
  height: 60px;
  border: #dba95b solid 1px;
  border-radius: 50%;
  top: 50%;
  margin-top: -60px;
  z-index: 2;
  outline: none;
}
.live-action .prev {
  left: 50%;
  margin-left: -8.3rem;
  background: url(../img/prev2.png) center no-repeat;
}
.live-action .prev:hover {
  border: #dc0021 solid 1px;
  background: #dc0021 url(../img/prev2on.png) center no-repeat;
}
.live-action .next {
  right: 50%;
  margin-right: -8.3rem;
  background: url(../img/next2.png) center no-repeat;
}
.live-action .next:hover {
  border: #dc0021 solid 1px;
  background: #dc0021 url(../img/next2on.png) center no-repeat;
}
.live-action .swiper-pagination {
  margin-top: 0.2rem;
  position: relative;
  bottom: 0!important;
}
.live-action .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-radius: 50%;
  background: #dfdfdf;
  margin-left: 6px!important;
  margin-right: 6px;
}
.live-action .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 8px;
  background: #dc0021;
}
@media (max-width: 1004px) {
  .productD {
    height: 1.2rem;
  }
  .proBanner {
    padding: 0.5rem 0.3rem 0;
  }
  .proBanner .bg {
    height: auto;
  }
  .proBanner .bg img {
    height: auto;
  }
  .proBanner .txtDiv {
    padding-bottom: 0;
  }
  .proBanner .en {
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .proBanner .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin: 0.2rem auto 0;
    width: 80%;
  }
  .proBanner .txtImg {
    display: none;
  }
  .proBanner .swiper-pagination {
    bottom: 0.2rem;
  }
  .proBanner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px!important;
  }
  .hallDiv {
    padding-top: 0.9rem;
  }
  .hallDiv .pageTitle {
    margin-bottom: 0.6rem;
  }
  .hallDiv .moreBtn {
    padding: 0.6rem 0 1rem;
    width: 3.5rem;
  }
  .hallDiv .moreBtn a {
    border: #dba95b solid 1px;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .hallDiv .moreBtn a em {
    width: 6px;
    height: 10px;
    background-size: 6px;
  }
  .hallDiv .moreBtn a:hover {
    border: #dc0021 solid 1px;
  }
  .hallDiv .moreBtn a:hover em {
    background-size: 6px;
  }
  .live-action li {
    padding: 5px 0;
  }
  .live-action li a {
    border-radius: 0.12rem;
  }
  .live-action li .imgDiv {
    height: 3.8rem;
  }
  .live-action li .name {
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: var(--fs18);
    padding: 0 0.2rem;
  }
  .live-action .se {
    display: none;
  }
  .live-action .swiper-pagination {
    margin-top: 0.4rem;
  }
  .live-action .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .live-action .swiper-pagination-bullet-active {
    width: 32px;
  }
}
.productP1 {
  padding: 0.8rem 0 1.3rem;
}
.productP1 .leftDiv {
  width: 7.54rem;
  padding-left: 1.35rem;
  position: relative;
}
.productP1 .baozhe {
  position: absolute;
  height: 6.2rem;
  left: 0;
  top: 0;
  width: 1.15rem;
}
.productP1 .img-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.15rem;
  height: 6.15rem;
  overflow: hidden;
}
.productP1 .img-swiper .swiper-slide {
  height: 1.15rem !important;
}
.productP1 .img-swiper .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  height: 1.15rem;
  border: #e8e8ec solid 1px;
  border-radius: 4px;
  background: #f5f5f5;
}
.productP1 .img-swiper .limg img {
  max-width: 1rem;
  max-height: 1rem;
}
.productP1 .img-swiper .swiper-slide-active .limg {
  border: #dc0021 solid 1px;
}
.productP1 .img-swiper.four {
  height: 4.9rem;
}
.productP1 .img-swiper.three {
  height: 3.65rem;
}
.productP1 .img-swiper.two {
  height: 2.4rem;
}
.productP1 .detail-box {
  width: 100%;
  position: relative;
}
.productP1 .detail-box .item {
  display: none;
  position: relative;
}
.productP1 .detail-box .item .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 6.2rem;
  background: #f5f5f5;
}
.productP1 .detail-box .item .imgDiv img {
  max-width: 5rem;
  max-height: 4rem;
}
.productP1 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.productP1 .swiper-btn {
  position: absolute;
  left: 1px;
  width: calc(100% - 2px);
  height: 0.22rem;
  border-radius: 4px;
  border: #f0f0f2 solid 1px;
  z-index: 2;
}
.productP1 .prev {
  display: none;
  top: 1px;
  background: #fff url(../img/nimg13_top.png) center no-repeat;
}
.productP1 .prev:hover {
  background: #dc0021 url(../img/nimg13_topon.png) center no-repeat;
}
.productP1 .next {
  bottom: 1px;
  background: #fff url(../img/nimg13_bot.png) center no-repeat;
}
.productP1 .next:hover {
  background: #dc0021 url(../img/nimg13_boton.png) center no-repeat;
}
.productP1 .rightDiv {
  width: 6.2rem;
  padding-top: 0.65rem;
}
.productP1 .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-family: 'Mont-M';
  margin: 0;
}
.productP1 .zi {
  position: relative;
  font-size: var(--fs14);
  color: rgba(51, 51, 51, 0.2);
  line-height: 0.24rem;
  padding-bottom: 0.36rem;
  font-family: 'Mont-M';
  text-transform: uppercase;
}
.productP1 .zi::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7rem;
  height: 3px;
  border-radius: 4px;
  background-image: linear-gradient(90deg, #a40017 0%, #db0021 100%);
  background-blend-mode: normal, normal;
}
.productP1 .choose {
  margin-top: 0.3rem;
  position: relative;
}
.productP1 .choose em {
  font-size: var(--fs16);
  line-height: 0.42rem;
  font-family: 'Mont-R';
  color: #999;
}
.productP1 .choose li {
  position: relative;
  padding-right: 1.8rem;
  margin-bottom: 0.2rem;
}
.productP1 .choose li:last-child {
  margin-bottom: 0;
}
.productP1 .choose li .wen {
  border: #f7f8fc solid 1px;
  background: #f7f8fc;
  border-radius: 4px;
  padding-left: 0.18rem;
  color: #333;
  font-size: var(--fs16);
  cursor: pointer;
  height: 0.36rem;
  line-height: 0.34rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP1 .choose li .wen span {
  padding-right: 0.3rem;
}
.productP1 .choose li .wen span:last-child {
  padding-right: 0;
}
.productP1 .choose li .on {
  background: #f8dbdf;
  color: #dc0021;
  border: #dc0021 solid 1px;
}
.productP1 .choose li .numInput {
  width: 1.24rem;
  padding: 0 0.36rem;
  height: 0.36rem;
  overflow: hidden;
  position: absolute;
  right: 0.4rem;
  top: 0;
}
.productP1 .choose li .numInput span {
  display: block;
  position: absolute;
  cursor: pointer;
  top: 0;
  width: 0.36rem;
  height: 0.36rem;
  border: #eff0f5 solid 1px;
  background: #f7f8fc;
  border-radius: 4px;
  z-index: 1;
}
.productP1 .choose li .numInput .jianBtn {
  left: 0;
}
.productP1 .choose li .numInput .jianBtn::after {
  content: '';
  width: 6px;
  height: 1px;
  background: #c2c4cc;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
}
.productP1 .choose li .numInput .jiaBtn {
  right: 0;
}
.productP1 .choose li .numInput .jiaBtn::after {
  content: '';
  width: 7px;
  height: 1px;
  background: #333;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
}
.productP1 .choose li .numInput .jiaBtn::before {
  content: '';
  width: 1px;
  height: 7px;
  background: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -3px;
}
.productP1 .choose li .numInput .kuang {
  position: relative;
  height: 0.36rem;
}
.productP1 .choose li .numInput .kuang input {
  width: 100%;
  background: #fff;
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: var(--fs16);
  color: #333;
  font-family: 'Mont-R';
  text-align: center;
}
.productP1 .choose li .unit {
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.productP1 .detail {
  margin-top: 0.4rem;
  position: relative;
  line-height: 0.36rem;
  font-size: var(--fs16);
  color: #333;
}
.productP1 .detail em {
  line-height: 0.42rem;
  font-family: 'Mont-R';
  color: #999;
}
.productP1 .btnDiv {
  margin-top: 0.7rem;
  width: 2.4rem;
}
.productP1 .btnDiv a {
  position: relative;
  overflow: hidden;
  display: block;
  font-size: var(--fs16);
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  border-radius: 0.48rem;
  color: #fff;
  background: #dc0021;
  font-family: 'Mont-R';
}
.productP2 {
  background: #f5f5f5;
  padding: 1.3rem 0 1rem;
}
.productP2 .w1200 {
  width: 12rem;
  margin: 0 auto;
}
.productP2 .mxfDiv {
  margin-top: 0.5rem;
  position: relative;
  height: 5.6rem;
}
.productP2 .productImg {
  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%;
  width: 5rem;
  height: 4rem;
  margin-left: -2.5rem;
  margin-top: -2rem;
  z-index: 1;
}
.productP2 .productImg img {
  max-width: 5rem;
  max-height: 4rem;
}
.productP2 .item_box {
  width: 100%;
  height: 5.6rem;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.productP2 .item_box .item {
  display: none;
}
.productP2 .item_box .item:first-child {
  display: block;
}
.productP2 .item_box .bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.productP2 .item_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.productP2 .choose_img {
  text-align: center;
  margin-top: 0.48rem;
}
.productP2 .choose_img li {
  display: inline-block;
  cursor: pointer;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: transparent solid 1px;
  background: none;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP2 .choose_img li img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-left: -0.3rem;
  margin-top: -0.3rem;
}
.productP2 .choose_img li img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP2 .choose_img .on {
  background: #fff;
  border: #dc0021 solid 1px;
}
.productP2 .item_box2 {
  margin-top: 0.4rem;
  height: 0.4rem;
  position: relative;
}
.productP2 .item_box2 .item {
  display: none;
}
.productP2 .item_box2 .item:first-child {
  display: block;
}
.productP2 .item_box2 .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #333;
  font-size: var(--fs24);
  height: 0.4rem;
  line-height: 0.4rem;
  font-family: 'Mont-R';
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.8rem 0 1rem;
  }
  .productP1 .leftDiv {
    width: auto;
    float: none;
    padding-left: 0;
  }
  .productP1 .baozhe {
    position: relative;
    height: auto;
    width: 100%;
  }
  .productP1 .img-swiper {
    position: relative;
    margin-top: 0.3rem;
    width: 100%;
    height: 1.2rem;
  }
  .productP1 .img-swiper .limg {
    height: 1.2rem;
  }
  .productP1 .img-swiper.four {
    height: 1.2rem;
  }
  .productP1 .img-swiper.three {
    height: 1.2rem;
  }
  .productP1 .img-swiper.two {
    width: 68.66%;
    height: 1.2rem;
  }
  .productP1 .detail-box .item .imgDiv {
    height: 5.2rem;
  }
  .productP1 .swiper-btn {
    left: 0;
    width: 0.4rem;
    height: calc(100% - 2px);
  }
  .productP1 .prev {
    display: block;
    top: 1px;
    background: #fff url(../img/nimg8_left.png) center no-repeat;
  }
  .productP1 .prev:hover {
    background: #dc0021 url(../img/nimg8_lefton.png) center no-repeat;
  }
  .productP1 .next {
    left: auto;
    right: 0;
    top: 1px;
    bottom: auto;
    background: #fff url(../img/nimg8_right.png) center no-repeat;
  }
  .productP1 .next:hover {
    background: #dc0021 url(../img/nimg8_righton.png) center no-repeat;
  }
  .productP1 .rightDiv {
    float: none;
    width: auto;
    padding-top: 0.8rem;
  }
  .productP1 .name {
    font-size: var(--fs28);
    line-height: 0.64rem;
  }
  .productP1 .zi {
    line-height: 0.48rem;
    padding-bottom: 0.45rem;
  }
  .productP1 .choose {
    margin-top: 0.45rem;
    padding-left: 0;
  }
  .productP1 .choose em {
    position: relative;
    display: block;
    margin-bottom: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .productP1 .choose li {
    padding-right: 0;
    margin-bottom: 0.4rem;
  }
  .productP1 .choose li .wen {
    padding: 0.2rem;
    font-size: var(--fs14);
    height: auto;
    line-height: 0.42rem;
  }
  .productP1 .choose li .wen span {
    padding-right: 0.2rem;
  }
  .productP1 .choose li .numInput {
    margin-top: 0.25rem;
    width: 2.2rem;
    padding: 0 0.76rem;
    height: 0.6rem;
    position: relative;
    right: auto;
  }
  .productP1 .choose li .numInput span {
    width: 0.6rem;
    height: 0.6rem;
  }
  .productP1 .choose li .numInput .kuang {
    height: 0.6rem;
  }
  .productP1 .choose li .numInput .kuang input {
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs14);
  }
  .productP1 .choose li .unit {
    right: auto;
    top: auto;
    bottom: 0;
    left: 2.5rem;
    font-size: var(--fs14);
    line-height: 0.6rem;
  }
  .productP1 .detail {
    padding-left: 0;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .productP1 .detail em {
    position: relative;
    display: block;
    line-height: 0.48rem;
    margin-bottom: 0.1rem;
  }
  .productP1 .btnDiv {
    margin-top: 0.6rem;
    width: 3.2rem;
  }
  .productP1 .btnDiv a {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .productP2 {
    padding: 1rem 0.3rem 0.8rem;
  }
  .productP2 .w1200 {
    width: 100%;
  }
  .productP2 .mxfDiv {
    margin-top: 0.65rem;
    height: 4.2rem;
  }
  .productP2 .productImg {
    width: 4rem;
    height: 3rem;
    margin-left: -2rem;
    margin-top: -1.5rem;
  }
  .productP2 .productImg img {
    max-width: 4rem;
    max-height: 3rem;
  }
  .productP2 .item_box {
    height: 4.2rem;
  }
  .productP2 .choose_img {
    overflow: hidden;
    margin-top: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    height: 1.2rem;
    white-space: nowrap;
  }
  .productP2 .choose_img::-webkit-scrollbar {
    height: 3px;
  }
  .productP2 .choose_img::-webkit-scrollbar-track {
    background-color: #eee;
  }
  .productP2 .choose_img::-webkit-scrollbar-thumb {
    background-color: #dc0021;
  }
  .productP2 .choose_img li {
    width: 1.1rem;
    height: 1.1rem;
  }
  .productP2 .choose_img li img {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
  }
  .productP2 .item_box2 {
    height: 0.6rem;
  }
  .productP2 .item_box2 .name {
    font-size: var(--fs16);
    height: 0.6rem;
    line-height: 0.6rem;
  }
}
.aboutP1 {
  position: relative;
  padding-top: 1.25rem;
  height: 7.98rem;
  background: center no-repeat;
  background-size: cover;
}
.aboutP1 .conDiv {
  width: 6.78rem;
  float: right;
  position: relative;
  z-index: 1;
}
.aboutP1 .title {
  margin: 0;
  width: 5.2rem;
  font-family: 'Lato-B';
  font-size: var(--fs50);
  line-height: 0.72rem;
  color: #dc0021;
  position: relative;
  padding-bottom: 0.25rem;
}
.aboutP1 .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.7rem;
  height: 0.06rem;
  background-image: linear-gradient(90deg, #a91127 0%, #dd1130 100%);
  background-blend-mode: normal, normal;
  border-radius: 6px;
}
.aboutP1 .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  margin-top: 0.42rem;
}
.aboutP1 .imgDiv {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP2 {
  position: relative;
  background: #fff;
}
.hmc2itemEx {
  height: 100vh;
}
.hmc2SwiperWpr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
.hmc2SwiperWprFixed {
  position: fixed;
}
.hmc2SwiperWprBom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.hmc2item {
  height: 100vh !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.hmc2item .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hmc2item .conDiv {
  padding-left: 0.5rem;
  width: 6.1rem;
  opacity: 0;
  transform: translateY(35px);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hmc2item .conDiv .name {
  color: #dc0021;
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-family: 'Lato-B';
  margin-bottom: 0.4rem;
}
.hmc2item .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #000;
}
.hmc2item .conDiv .lie {
  margin-top: 0.9rem;
  width: 80%;
}
.hmc2item .conDiv .lie ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hmc2item .conDiv .lie li .num {
  font-size: var(--fs40);
  line-height: 0.42rem;
  color: #b5001f;
  font-family: 'Mont-B';
}
.hmc2item .conDiv .lie li .zi {
  font-size: var(--fs16);
  line-height: 0.2rem;
  margin-top: 0.15rem;
}
.hmc2item .conDiv .green {
  margin-top: 0.9rem;
  width: 80%;
}
.hmc2item .conDiv .green ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.hmc2item .conDiv .green li .zi {
  position: relative;
  font-size: var(--fs28);
  line-height: 0.42rem;
  color: #2dae60;
  font-family: 'Mont-B';
}
.hmc2item .conDiv .green li .zi::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #2dae60;
}
.hmc2item .imgDiv {
  order: 1;
  width: 7.2rem;
  border-radius: 0.24rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(35px);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hmc2item .imgDiv img {
  width: 100%;
}
.hmc2item.on .conDiv,
.hmc2item.on .imgDiv {
  opacity: 1;
  transform: translateY(0);
}
.hmc2Swiper .slick-dots {
  position: absolute;
  width: 32px;
  left: 50%;
  margin-left: -8.1rem;
  bottom: auto;
  transform: translateY(-50%);
  top: 50%!important;
}
.hmc2Swiper .slick-dots::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hmc2Swiper .slick-dots li {
  position: relative;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  opacity: 1;
  background: none;
  border: none;
  border-radius: 50%;
  margin: 15px 0!important;
}
.hmc2Swiper .slick-dots li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: #cfcfcf;
  border-radius: 50%;
}
.hmc2Swiper .slick-dots .slick-active {
  background: rgba(220, 0, 33, 0.1);
}
.hmc2Swiper .slick-dots .slick-active::after {
  background: #dc0021;
}
.aboutP3 {
  padding-top: 1.2rem;
  height: 8.6rem;
  background: center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP3 .pageTitle {
  color: #fff;
}
.aboutP3 .list {
  margin-top: 2.25rem;
}
.aboutP3 .list::after {
  content: '';
  display: block;
  clear: both;
}
.aboutP3 .list ul {
  display: block;
  width: auto;
  margin-right: -0.3rem;
}
.aboutP3 .list li {
  float: left;
  width: 33.33%;
}
.aboutP3 .list li .box {
  position: relative;
  top: 0;
  cursor: pointer;
  margin-right: 0.3rem;
  padding: 0.45rem 0.42rem 0;
  height: 3rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP3 .list li .name {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #fff;
  font-family: 'Lato-B';
  height: 0.45rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP3 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP3 .list li .msg p {
  margin-bottom: 0.1rem;
}
.aboutP3 .list li .box:hover {
  background: #fff;
  top: -0.45rem;
}
.aboutP3 .list li .box:hover .name {
  color: #dc0021;
}
.aboutP3 .list li .box:hover .msg {
  color: #666;
}
.aboutP3 .swiper-pagination {
  display: none;
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.6rem;
}
.aboutP3 .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-radius: 50%;
  border: none;
  background: #fff;
  margin-left: 0.15rem !important;
  margin-right: 0.15rem !important;
}
.aboutP3 .swiper-pagination-bullet-active {
  background: #dc0021;
}
.aboutP4 {
  padding-top: 1.3rem;
  height: 9.5rem;
  background: url(../img/aboutP4.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP4 .toptop {
  height: 1.6rem;
  position: relative;
}
.aboutP4 .pageTitle {
  text-align: left;
  color: #fff;
}
.aboutP4 .pageTitle::after {
  left: 0;
  margin-left: 0;
}
.aboutP4 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0;
}
.aboutP4 .arrowDiv .se {
  display: block;
  float: left;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: #ddd solid 1px;
}
.aboutP4 .arrowDiv .se:hover {
  border: #dc0021 solid 1px;
}
.aboutP4 .arrowDiv .prev {
  margin-right: 0.25rem;
  background: url(../img/prev3.png) center no-repeat;
}
.aboutP4 .arrowDiv .prev:hover {
  background: #dc0021 url(../img/prev2on.png) center no-repeat;
}
.aboutP4 .arrowDiv .next {
  background: url(../img/next3.png) center no-repeat;
}
.aboutP4 .arrowDiv .next:hover {
  background: #dc0021 url(../img/next2on.png) center no-repeat;
}
.historyPic .list {
  overflow: hidden;
}
.historyPic .list .box {
  padding: 0.64rem 0.42rem 0;
  height: 5.2rem;
  border-radius: 0.3rem;
  background: rgba(0, 0, 0, 0.6);
}
.historyPic .list .imgDiv {
  height: 1.8rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
.historyPic .list .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.historyPic .list .time {
  margin: 0.35rem 0 0.12rem;
  position: relative;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #dc0021;
  font-family: 'Lato-B';
  padding-left: 0.26rem;
}
.historyPic .list .time::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.08rem;
  width: 0.16rem;
  height: 0.16rem;
  background: #dc0021;
  border-radius: 50%;
}
.historyPic .list .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
  padding-right: 5px;
  height: 1.5rem;
  overflow: auto;
}
.historyPic .list .msg::-webkit-scrollbar {
  width: 2px;
}
.historyPic .list .msg::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.historyPic .list .msg::-webkit-scrollbar-thumb {
  background-color: #dc0021;
}
.aboutP5 {
  padding: 1.3rem 0 0.9rem;
  overflow: hidden;
}
.aboutP5 .pageTitle {
  margin-bottom: 0.7rem;
}
.economic {
  position: relative;
}
.economic .list {
  width: 28rem;
  position: relative;
  left: 50%;
  margin-left: -14rem;
  overflow: hidden;
}
.economic .swiper-slide {
  position: relative;
  padding: 0.2rem 0;
}
.economic .swiper-slide .img {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 3rem;
  height: 4.14rem;
  position: relative;
  margin: 0 auto;
}
.economic .swiper-slide .img img {
  max-width: 3rem;
  max-height: 4.14rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.3);
}
.economic .swiper-slide .bg {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  text-align: center;
}
.economic .swiper-slide .bg img {
  max-width: 3rem;
}
.aboutP6 {
  padding: 1.3rem 0 1.15rem;
  background: #f9f9f9;
}
.aboutP6 .msg {
  margin: 0.25rem 0;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.36rem;
  font-family: 'Mont-R';
}
.aboutP6 .leftScroll .list li,
.aboutP6 .rightScroll .list li {
  float: left;
  padding: 0.15rem 0;
  cursor: pointer;
}
.aboutP6 .leftScroll .list li .box,
.aboutP6 .rightScroll .list li .box {
  margin: 0 0.13rem;
}
.aboutP6 .leftScroll .list li .limg,
.aboutP6 .rightScroll .list li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 1.4rem;
  width: 2.52rem;
  border-radius: 10px;
  border: #fff solid 2px;
  box-shadow: 0 0 0.15rem rgba(3, 14, 33, 0.08);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP6 .leftScroll .list li .limg img,
.aboutP6 .rightScroll .list li .limg img {
  max-width: 1.6rem;
  max-height: 1rem;
}
.aboutP6 .leftScroll .list li .limg:hover,
.aboutP6 .rightScroll .list li .limg:hover {
  border: #dc0021 solid 2px;
}
.tempWrap {
  width: 100%!important;
}
@media (max-width: 1600px) {
  .aboutP3 .list {
    margin-top: 2rem;
  }
  .aboutP3 .list li .box {
    padding: 0.4rem 0.35rem 0;
    height: 3.2rem;
  }
  .aboutP3 .list li .msg p {
    margin-bottom: 0;
  }
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding-top: 0.9rem;
    padding-bottom: 12rem;
    height: auto;
    background: none!important;
    overflow: hidden;
  }
  .aboutP1 .wrap2 {
    padding: 0;
  }
  .aboutP1 .conDiv {
    width: auto;
    float: none;
    padding: 0 0.3rem 0.4rem;
  }
  .aboutP1 .title {
    width: auto;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.5rem;
  }
  .aboutP2 {
    padding: 1rem 0;
  }
  .hmc2Swiper {
    position: relative;
    left: auto;
    top: auto;
  }
  .hmc2SwiperWpr {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hmc2item .mxfDiv {
    display: block;
    height: auto;
  }
  .hmc2item .conDiv {
    padding-left: 0;
    margin-top: 0.3rem;
    width: auto;
  }
  .hmc2item .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.1rem;
  }
  .hmc2item .conDiv .content {
    font-size: var(--fs13);
    line-height: 0.48rem;
    overflow: auto;
  }
  .hmc2item .conDiv .lie {
    margin-top: 0.35rem;
    width: auto;
  }
  .hmc2item .conDiv .lie li .num {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .hmc2item .conDiv .lie li .zi {
    font-size: var(--fs12);
    line-height: 0.32rem;
    margin-top: 0.15rem;
  }
  .hmc2item .conDiv .green {
    margin-top: 0.5rem;
    width: auto;
  }
  .hmc2item .conDiv .green li .zi {
    font-size: var(--fs20);
    line-height: 0.42rem;
  }
  .hmc2item .imgDiv {
    width: auto;
    height: 4rem;
  }
  .hmc2item .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .hmc2Swiper .slick-dots {
    width: 100%;
    left: 0;
    margin-left: 0;
    bottom: 0;
    transform: translateY(0);
    top: auto!important;
    text-align: center;
  }
  .hmc2Swiper .slick-dots li {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 10px!important;
  }
  .hmc2Swiper .slick-dots li::after {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
  }
  .aboutP3 {
    padding-top: 2rem;
    height: 11rem;
  }
  .aboutP3 .list {
    margin-top: 0.75rem;
    overflow: hidden;
  }
  .aboutP3 .list ul {
    display: flex;
    width: 100%;
    margin-right: 0;
  }
  .aboutP3 .list li {
    float: none;
    width: auto;
  }
  .aboutP3 .list li .box {
    margin-right: 0;
    padding: 0.6rem 0.35rem 0;
    height: 4.5rem;
  }
  .aboutP3 .list li .name {
    font-size: var(--fs22);
    line-height: 0.52rem;
    height: 0.7rem;
  }
  .aboutP3 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .aboutP3 .list li .box:hover {
    top: 0;
  }
  .aboutP3 .swiper-pagination {
    display: block;
  }
  .aboutP4 {
    padding: 1rem 0;
    height: auto;
    background: url(../img/aboutP4.jpg) center no-repeat;
    background-size: cover;
  }
  .aboutP4 .toptop {
    height: 1.6rem;
  }
  .aboutP4 .arrowDiv .se {
    width: 0.9rem;
    height: 0.9rem;
  }
  .aboutP4 .arrowDiv .prev {
    margin-right: 0.2rem;
  }
  .historyPic .list {
    width: 100%;
  }
  .historyPic .list .box {
    padding: 0.6rem 0.35rem;
    height: auto;
  }
  .historyPic .list .imgDiv {
    height: 2.2rem;
  }
  .historyPic .list .time {
    margin: 0.35rem 0 0.12rem;
    line-height: 0.48rem;
    font-size: var(--fs18);
  }
  .historyPic .list .time::before {
    margin-top: -0.06rem;
    width: 0.12rem;
    height: 0.12rem;
  }
  .historyPic .list .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
    height: 2.1rem;
  }
  .aboutP5 {
    padding: 1rem 0 0.9rem;
  }
  .economic .list {
    width: 100%;
    left: 0;
    margin-left: 0;
    overflow: visible;
  }
  .economic .swiper-slide {
    padding-bottom: 0;
  }
  .economic .swiper-slide .img {
    width: 3rem;
    height: 4rem;
  }
  .economic .swiper-slide .img img {
    max-height: 4rem;
  }
  .economic .swiper-slide .bg {
    display: none;
  }
  .aboutP6 {
    padding: 1rem 0 0.9rem;
  }
  .aboutP6 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP6 .leftScroll .list li .limg,
  .aboutP6 .rightScroll .list li .limg {
    height: 1.2rem;
    width: 2.4rem;
  }
  .aboutP6 .leftScroll .list li .limg img,
  .aboutP6 .rightScroll .list li .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
}
@media (max-width: 640px) {
  .aboutP1 {
    padding-bottom: 6rem;
  }
}
.spModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.spModal-box .videoLayer {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background: none;
  position: relative;
}
.spModal-box .videoLayer video {
  position: absolute;
  width: 960px;
  left: 50%;
  margin-left: -480px;
  top: 50%;
  transform: translateY(-50%);
  object-fit: cover;
}
.spModal-box .videoLayer .close {
  position: absolute;
  z-index: 2;
  display: block;
  right: 10px;
  top: 50px;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) no-repeat;
}
.spModal-box.on {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1004px) {
  .spModal-box .videoLayer video {
    width: 100%;
    left: 0;
    margin-left: 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;
  }
}
