.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);
  }
}
@-webkit-keyframes warn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-moz-keyframes warn {
  0% {
    -moz-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-o-keyframes warn {
  0% {
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes warn {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
@keyframes carLoop {
  from {
    left: -28px;
  }
  to {
    left: calc(100% - 28px);
  }
}
@-webkit-keyframes carLoop {
  from {
    left: -28px;
  }
  to {
    left: calc(100% - 28px);
  }
}
@keyframes first {
  0% {
    transform: scaleX(0.5);
    left: 0;
  }
  100% {
    transform: scaleX(1);
    left: 2px;
  }
}
@keyframes last {
  0% {
    transform: scaleX(0.7);
    left: -10px;
  }
  20% {
    transform: scaleX(0.3);
    left: 2px;
  }
  100% {
    transform: scaleX(0.3);
    left: 0;
  }
}
@keyframes middle {
  0% {
    transform: scaleX(0.7);
    left: -10px;
  }
  20% {
    transform: scaleX(0.45);
    left: 2px;
  }
  100% {
    transform: scaleX(1);
    left: 2px;
  }
}
@keyframes mapAddress {
  0% {
    opacity: 1;
    transform: scale(0.9, 0.9) translateZ(0);
    -o-transform: scale(0.9, 0.9) translateZ(0);
    -moz-transform: scale(0.9, 0.9) translateZ(0);
    -webkit-transform: scale(0.9, 0.9 translateZ(0));
  }
  100% {
    opacity: 0;
    transform: scale(1.5, 1.5) translateZ(0);
    -o-transform: scale(1.5, 1.5) translateZ(0);
    -moz-transform: scale(1.5, 1.5) translateZ(0);
    -webkit-transform: scale(1.5, 1.5 translateZ(0));
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .cn {
  margin: 0;
  position: relative;
  font-size: var(--fs72);
  line-height: 0.8rem;
  font-weight: bold;
  padding: 0 0.5rem;
  display: inline-block;
}
.ind-banner .onebox .cn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.34rem;
  height: 0.28rem;
  background: url(../img/nimg34_5.png) no-repeat;
  background-size: 0.34rem;
}
.ind-banner .onebox .cn::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.34rem;
  height: 0.28rem;
  background: url(../img/nimg34_6.png) no-repeat;
  background-size: 0.34rem;
}
.ind-banner .onebox .cn em {
  display: block;
  color: #fff;
}
.ind-banner .onebox .en {
  text-transform: uppercase;
  font-size: var(--fs22);
  line-height: 0.36rem;
  font-family: 'Barlow-R';
  color: #fff;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #eee;
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 6px;
}
.ind-banner .swiper-btn {
  position: absolute;
  display: block;
  width: 19px;
  height: 35px;
  top: 50%;
  margin-top: -18px;
  z-index: 2;
}
.ind-banner .prev {
  left: 50%;
  margin-left: -8.3rem;
  background: url("../img/nimg19_left.png") center no-repeat;
  opacity: 0.5;
}
.ind-banner .prev:hover {
  opacity: 1;
}
.ind-banner .next {
  right: 50%;
  margin-right: -8.3rem;
  background: url("../img/nimg19_right.png") center no-repeat;
  opacity: 0.5;
}
.ind-banner .next:hover {
  opacity: 1;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
  .ind-banner .prev {
    margin-left: -8.6rem;
  }
  .ind-banner .next {
    margin-right: -8.6rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    top: 32%;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.56rem;
    padding: 0 0.5rem;
  }
  .ind-banner .onebox .en {
    display: none;
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin-top: 0.1rem;
    padding-left: 0.5rem;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
  .ind-banner .swiper-pagination-bullet-active {
    width: 30px;
  }
  .ind-banner .swiper-btn {
    display: none;
  }
}
.indTxt .cn {
  margin: 0;
  font-weight: bold;
  color: #222;
  font-size: var(--fs48);
  line-height: 0.5rem;
}
.indTxt .en {
  margin: 0.1rem 0 0;
  font-size: var(--fs36);
  line-height: 0.38rem;
  text-transform: uppercase;
  color: #f39910;
  font-family: "Barlow-L";
}
.indexP1 {
  padding: 1.4rem 0 1.5rem;
  overflow: hidden;
  position: relative;
  background: url(../img/indexP1.jpg) center top no-repeat;
  background-size: cover;
}
.indexP1 .mxfDiv {
  position: relative;
}
.indexP1 .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.indexP1 .leftDiv {
  width: 6.2rem;
}
.indexP1 .content {
  margin-top: 0.4rem;
  color: rgba(2, 9, 19, 0.7);
  font-size: var(--fs18);
  line-height: 0.34rem;
  text-align: justify;
}
.indexP1 .numList {
  margin-top: 0.45rem;
  overflow: hidden;
}
.indexP1 .numList li {
  float: left;
  width: 2rem;
  font-size: var(--fs18);
}
.indexP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP1 .numList li .num p {
  position: relative;
  height: 0.64rem;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  background: url(../img/nimg11_1.png) no-repeat;
}
.indexP1 .numList li .numUp {
  font-family: "Din-B";
  color: #f39910;
  font-size: var(--fs72);
  line-height: 0.64rem;
  padding-right: 0.1rem;
}
.indexP1 .numList li .wen {
  margin-top: 0.15rem;
  line-height: 0.2rem;
}
.indexP1 .moreBtn {
  margin-top: 0.5rem;
}
.indexP1 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.66rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #f39910;
  color: #fff;
  font-size: var(--fs16);
}
.indexP1 .moreBtn em {
  display: block;
  margin-left: 0.16rem;
  width: 13px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP1 .moreBtn2 {
  position: relative;
  margin-top: 0.5rem;
}
.indexP1 .rightDiv {
  width: 7.1rem;
}
.indexP1 .toptop {
  position: relative;
  height: 1.65rem;
}
.indexP1 .layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.9rem;
}
.indexP1 .code {
  color: #333;
  font-size: var(--fs28);
  line-height: 0.3rem;
  margin-bottom: 0.15rem;
  font-family: "Barlow-M";
}
.indexP1 .price {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  font-family: "Gilroy-M";
  font-size: var(--fs18);
  color: #f73131;
}
.indexP1 .price em {
  font-size: var(--fs60);
  line-height: 0.52rem;
  font-family: 'Barlow-B';
  padding-right: 0.16rem;
}
.indexP1 .price img {
  margin-left: 0.1rem;
  margin-bottom: 0.04rem;
}
.indexP1 .tips {
  color: #999;
  font-size: var(--fs15);
  line-height: 0.22rem;
  margin-bottom: 0.3rem;
}
.indexP1 .list ul {
  overflow: hidden;
}
.indexP1 .list li {
  float: left;
  position: relative;
}
.indexP1 .list li:nth-child(1) {
  width: 1.3rem;
}
.indexP1 .list li:nth-child(2) {
  padding-left: 0.6rem;
  width: 1.96rem;
}
.indexP1 .list li:nth-child(3) {
  padding-left: 0.7rem;
  width: 2.3rem;
}
.indexP1 .list li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.6rem;
  background: #f0f1f2;
}
.indexP1 .list li:last-child {
  float: right;
}
.indexP1 .list li:last-child::after {
  display: none;
}
.indexP1 .list li .zi {
  font-size: var(--fs16);
  line-height: 0.18rem;
  height: 0.32rem;
}
.indexP1 .list li .num {
  font-size: var(--fs36);
  line-height: 0.36rem;
  font-family: 'Barlow-R';
}
.indexP1 .imgDiv {
  margin-top: 0.45rem;
  border-radius: 10px;
  border: #d1d6da solid 1px;
  overflow: hidden;
}
.indexP1 .imgDiv img {
  width: 100%;
}
.indexP2 {
  position: relative;
  overflow: hidden;
}
.indexP2 .swiper-slide {
  position: relative;
}
.indexP2 .swiper-slide .pic {
  position: relative;
}
.indexP2 .swiper-slide .pic img {
  width: 100%;
  height: 9.3rem;
  object-fit: cover;
}
.indexP2 .swiper-slide .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 3;
}
.indexP2 .swiper-slide .inner {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100%;
}
.indexP2 .swiper-slide .name {
  font-size: var(--fs54);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
}
.indexP2 .swiper-slide .more {
  margin: 0.6rem auto 0;
  width: 1.65rem;
}
.indexP2 .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.46rem;
  border-radius: 0.48rem;
  background: #f39910;
  font-size: var(--fs16);
  color: #fff;
}
.indexP2 .swiper-slide .more a:hover {
  background: #1d5dca;
}
.indexP2 .swiper-slide .more a span {
  position: relative;
  z-index: 1;
}
.indexP2 .swiper-slide .more a em {
  margin-left: 0.16rem;
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP2 .swiper-slide .name,
.indexP2 .swiper-slide .more {
  transform: translateY(1rem);
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.indexP2 .swiper-slide.swiper-slide-active .name,
.indexP2 .swiper-slide.swiper-slide-active .more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.indexP2 .tab-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.4rem;
  z-index: 2;
}
.indexP2 .tab-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.indexP2 .tab-box a {
  float: left;
  display: block;
  width: 25%;
  padding-left: 1.35rem;
  height: 1.4rem;
  position: relative;
  z-index: 1;
}
.indexP2 .tab-box a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.indexP2 .tab-box a:last-child::after {
  display: none;
}
.indexP2 .tab-box .icon {
  width: 0.64rem;
  height: 0.64rem;
  border: #fff solid 1px;
  position: absolute;
  left: 0.4rem;
  top: 50%;
  margin-top: -0.32rem;
  border-radius: 50%;
}
.indexP2 .tab-box .icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.17rem;
  margin-top: -0.17rem;
  width: 0.34rem;
}
.indexP2 .tab-box .name {
  font-size: var(--fs20);
  color: #fff;
  line-height: 1.4rem;
}
.indexP2 .tab-box a.on {
  background: #1d5dca;
}
.indexP3 {
  padding: 1.2rem 0 0.5rem;
  position: relative;
  overflow: hidden;
}
.indexP3::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: 'Global';
  font-size: 4rem;
  line-height: 2.9rem;
  color: #f1f3f5;
  font-family: 'Mont-R';
}
.indexP3 .indTxt {
  margin-bottom: 0.6rem;
}
.indexP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
}
.indexP3 .leftDiv {
  padding-left: 0.2rem;
  width: 2.4rem;
}
.indexP3 .leftDiv li {
  padding: 0.32rem 0;
  position: relative;
}
.indexP3 .leftDiv li .pj {
  height: 0.85rem;
}
.indexP3 .leftDiv li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .leftDiv li .num em {
  font-family: 'Din-B';
  font-size: 0.9rem;
  line-height: 0.72rem;
  padding-right: 0.1rem;
  color: #f39910;
}
.indexP3 .leftDiv li .num span {
  font-size: 0.7rem;
  line-height: 0.72rem;
  color: #f39910;
  font-weight: bold;
  padding-right: 0.1rem;
}
.indexP3 .leftDiv li p {
  font-size: var(--fs18);
  height: 0.72rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.indexP3 .leftDiv li .wen {
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.indexP3 .earthDiv {
  width: 7.82rem;
  height: 7.82rem;
  position: relative;
}
.indexP3 .earthDiv .bg {
  position: relative;
  z-index: 1;
}
.indexP3 .earthDiv .bg img {
  width: 100%;
}
.indexP3 .earthDiv::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.6rem;
  height: 7.6rem;
  margin: -3.8rem 0 0 -3.8rem;
  border: solid 1px #d5e1f5;
  border-radius: 50%;
  box-sizing: border-box;
  animation: mapAddress 5s 2.5s linear infinite;
}
.indexP3 .earthDiv::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.6rem;
  height: 7.6rem;
  margin: -3.8rem 0 0 -3.8rem;
  border: solid 1px #d5e1f5;
  border-radius: 50%;
  box-sizing: border-box;
  animation: mapAddress 5s linear infinite;
}
.indexP3 .earthDiv .list li {
  position: absolute;
  z-index: 1;
  font-size: var(--fs18);
  color: #222;
}
.indexP3 .earthDiv .list li:nth-child(1) {
  left: 45.4%;
  top: 52.1%;
  line-height: 0.6rem;
  padding-left: 0.58rem;
}
.indexP3 .earthDiv .list li:nth-child(1) .ico {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.6rem;
  height: 0.6rem;
  border: #dde7f7 solid 1px;
  border-radius: 50%;
}
.indexP3 .earthDiv .list li:nth-child(1) .ico em {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.15rem;
  margin-top: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #8eaee4 solid 1px;
}
.indexP3 .earthDiv .list li:nth-child(1) .ico em::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #1d5dca;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.indexP3 .earthDiv .list li:nth-child(1) .ico em::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
  margin-left: -0.02rem;
  margin-top: -0.02rem;
}
.indexP3 .earthDiv .list li:nth-child(1) .ico span {
  position: absolute;
  left: 0.15rem;
  top: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/nimg20_1.png) no-repeat;
  background-size: 0.2rem;
}
.indexP3 .earthDiv .list li:nth-child(1) strong {
  position: absolute;
  top: 0;
  left: -0.7rem;
  font-size: var(--fs20);
}
.indexP3 .earthDiv .list li:nth-child(2) {
  left: 34.5%;
  top: 20.7%;
  padding-right: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(2) .ico {
  right: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(3) {
  left: 51.2%;
  top: 24.3%;
  padding-left: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(3) .ico {
  left: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(4) {
  left: 53.9%;
  top: 30.7%;
  padding-left: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(4) .ico {
  left: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(5) {
  left: 50.1%;
  top: 36%;
  padding-left: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(5) .ico {
  left: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(6) {
  left: 32.6%;
  top: 39%;
  padding-right: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(6) .ico {
  right: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(7) {
  left: 49.1%;
  top: 43%;
  padding-left: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(7) .ico {
  left: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(8) {
  left: 32%;
  top: 45.8%;
  padding-right: 0.4rem;
}
.indexP3 .earthDiv .list li:nth-child(8) .ico {
  right: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(9) {
  left: 23.3%;
  top: 64%;
  padding-top: 0.36rem;
}
.indexP3 .earthDiv .list li:nth-child(9) .ico {
  right: 0;
  top: 0;
}
.indexP3 .earthDiv .list li:nth-child(10) {
  left: 60%;
  top: 72.6%;
  padding-top: 0.36rem;
}
.indexP3 .earthDiv .list li:nth-child(10) .ico {
  right: 0;
  top: 0;
}
.indexP3 .earthDiv .list .blue {
  line-height: 0.3rem;
}
.indexP3 .earthDiv .list .blue .ico {
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #8eaee4 solid 1px;
}
.indexP3 .earthDiv .list .blue .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #1d5dca;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.indexP3 .earthDiv .list .blue .ico::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
  margin-left: -0.02rem;
  margin-top: -0.02rem;
}
.indexP3 .earthDiv .list .orange {
  line-height: 0.26rem;
}
.indexP3 .earthDiv .list .orange .ico {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #f9cc87 solid 1px;
}
.indexP3 .earthDiv .list .orange .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #f39910;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.indexP3 .rightDiv {
  width: 3.4rem;
  padding-right: 0.2rem;
}
.indexP3 .rightDiv .kuang {
  padding: 0.4rem 0.3rem 0;
  height: 2.15rem;
  background: #f1f1f1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.indexP3 .rightDiv .kuang::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0054a2;
}
.indexP3 .rightDiv .kuang li {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.26rem;
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.3rem;
}
.indexP3 .rightDiv .kuang li::before {
  content: '';
  position: absolute;
  left: 3px;
}
.indexP3 .rightDiv .kuang li:last-child {
  margin-bottom: 0;
}
.indexP3 .rightDiv .kuang li:nth-child(1)::before {
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/nimg20_1.png) no-repeat;
  background-size: 0.2rem;
  left: 0;
  top: 0.04rem;
}
.indexP3 .rightDiv .kuang li:nth-child(2)::before {
  width: 0.16rem;
  height: 0.16rem;
  background: #1d5dca;
  top: 0.06rem;
  border-radius: 50%;
}
.indexP3 .rightDiv .kuang li:nth-child(3)::before {
  width: 0.16rem;
  height: 0.16rem;
  background: #f39910;
  top: 0.06rem;
  border-radius: 50%;
}
.indexP3 .rightDiv .botbot {
  margin-top: 0.3rem;
}
.indexP3 .rightDiv .botbot li {
  position: relative;
  float: left;
  padding-left: 0.3rem;
  line-height: 0.3rem;
  font-size: var(--fs20);
  font-weight: bold;
  color: #333;
  margin-right: 0.5rem;
}
.indexP3 .rightDiv .botbot li::before {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #1d5dca;
  left: 0;
  top: 50%;
  margin-top: -0.1rem;
  border-radius: 50%;
}
.indexP3 .rightDiv .botbot li:nth-child(2)::before {
  background: #f39910;
}
.indexP4 {
  padding-top: 1.1rem;
  height: 9.5rem;
  background: #f2f5fa;
  position: relative;
  overflow: hidden;
}
.indexP4 .toptop {
  position: relative;
  height: 1.1rem;
}
.indexP4 .tab2 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 0;
}
.indexP4 .tab2 ul {
  font-size: 0;
}
.indexP4 .tab2 li {
  display: inline-block;
  margin: 0 0.28rem;
  position: relative;
  line-height: 0.48rem;
  font-size: var(--fs18);
  color: #666;
}
.indexP4 .tab2 .liNow {
  color: #f39910;
}
.indexP4 .moreBtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.indexP4 .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.66rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #f39910;
  color: #fff;
  font-size: var(--fs16);
}
.indexP4 .moreBtn em {
  display: block;
  margin-left: 0.16rem;
  width: 13px;
  height: 13px;
  background: url(../img/ico1.png) no-repeat;
}
.indexP4 .leftDiv {
  animation: am_left 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_left 0.8s ease-out 0.1s backwards;
  position: relative;
  z-index: 1;
  width: 7.08rem;
}
.indexP4 .leftDiv a {
  display: block;
  width: 100%;
  height: 100%;
}
.indexP4 .leftDiv .imgDiv {
  height: 4.3rem;
}
.indexP4 .leftDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP4 .leftDiv .botDiv {
  background: #fff;
  padding: 0.32rem 0.4rem 0;
  height: 1.7rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .leftDiv .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  height: 0.28rem;
  color: #c9c9c9;
  font-family: 'Din-M';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .leftDiv .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .leftDiv a:hover .botDiv {
  background: #1d5dca;
}
.indexP4 .leftDiv a:hover .time {
  color: rgba(255, 255, 255, 0.5);
}
.indexP4 .leftDiv a:hover .name {
  color: #fff;
}
.indexP4 .rightDiv {
  animation: am_right 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_right 0.8s ease-out 0.1s backwards;
  width: 7.5rem;
  position: relative;
  z-index: 1;
}
.indexP4 .rightDiv li {
  margin-bottom: 0.24rem;
}
.indexP4 .rightDiv li:last-child {
  margin-bottom: 0;
}
.indexP4 .rightDiv li a {
  display: block;
  padding: 0.32rem 3.6rem 0 0.4rem;
  position: relative;
  height: 1.84rem;
  background: #fff;
  overflow: hidden;
}
.indexP4 .rightDiv li .imgDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.88rem;
  height: 1.84rem;
  overflow: hidden;
  z-index: 1;
}
.indexP4 .rightDiv li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP4 .rightDiv li .time {
  font-size: var(--fs16);
  line-height: 0.18rem;
  height: 0.28rem;
  color: #c9c9c9;
  font-family: 'Din-M';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .rightDiv li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs20);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .rightDiv li .ico {
  margin-top: 0.12rem;
  display: block;
  width: 9px;
  height: 14px;
  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;
}
.indexP4 .rightDiv li a:hover {
  background: #1d5dca;
}
.indexP4 .rightDiv li a:hover .time {
  color: rgba(255, 255, 255, 0.5);
}
.indexP4 .rightDiv li a:hover .name {
  color: #fff;
}
.indexP4 .rightDiv li a:hover .ico {
  background: url(../img/ico2on.png) no-repeat;
}
.indexP4 .canvas {
  position: absolute;
  left: 0;
  bottom: -2rem;
  z-index: 0;
  opacity: 0.2;
  width: 100%;
  height: 5rem;
}
@media (max-width: 1600px) {
  .indexP1 .content {
    font-size: var(--fs16);
  }
  .indexP4 .leftDiv {
    width: 7.38rem;
  }
  .indexP4 .rightDiv {
    width: 7.8rem;
  }
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .indexP1 .content {
    font-size: var(--fs13);
  }
}
@media (max-width: 1004px) {
  .indTxt .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .indTxt .en {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .indexP1 {
    padding: 1rem 0 1.1rem;
    background-size: 100%;
  }
  .indexP1 .leftDiv {
    width: auto;
    float: none;
  }
  .indexP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .numList li {
    width: 2.5rem;
    font-size: var(--fs14);
  }
  .indexP1 .numList li .num span {
    top: 0;
  }
  .indexP1 .numList li .numUp {
    font-size: var(--fs46);
    line-height: 0.76rem;
    padding-right: 0.1rem;
  }
  .indexP1 .numList li .wen {
    line-height: 0.42rem;
  }
  .indexP1 .moreBtn {
    margin-top: 0.5rem;
    position: relative;
  }
  .indexP1 .moreBtn a {
    width: 2.36rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP1 .moreBtn em {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP1 .rightDiv {
    width: auto;
    float: none;
    margin-top: 0.7rem;
  }
  .indexP1 .toptop {
    padding-bottom: 0.5rem;
    height: auto;
  }
  .indexP1 .layer {
    width: 3rem;
  }
  .indexP1 .code {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .indexP1 .price {
    font-size: var(--fs14);
  }
  .indexP1 .price em {
    font-size: var(--fs32);
    line-height: 0.62rem;
  }
  .indexP1 .tips {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP1 .list li {
    width: 50%;
    padding-left: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .indexP1 .list li:nth-child(1) {
    width: 50%;
  }
  .indexP1 .list li:nth-child(2) {
    padding-left: 0.5rem;
    width: 50%;
  }
  .indexP1 .list li:nth-child(3) {
    padding-left: 0.5rem;
    width: 50%;
  }
  .indexP1 .list li::after {
    height: 100%;
  }
  .indexP1 .list li:nth-child(even),
  .indexP1 .list li:last-child {
    float: left;
  }
  .indexP1 .list li:nth-child(even)::after,
  .indexP1 .list li:last-child::after {
    display: none;
  }
  .indexP1 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
    height: 0.48rem;
  }
  .indexP1 .list li .num {
    font-size: var(--fs24);
    line-height: 0.56rem;
  }
  .indexP1 .imgDiv {
    border-radius: 0.2rem;
  }
  .indexP2 .swiper-slide .pic img {
    height: auto;
  }
  .indexP2 .swiper-slide .name {
    font-size: var(--fs28);
    line-height: 0.64rem;
    color: #fff;
    font-weight: bold;
  }
  .indexP2 .swiper-slide .more {
    margin: 0.4rem auto 0;
    width: 2.36rem;
  }
  .indexP2 .swiper-slide .more a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP2 .swiper-slide .more a em {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP2 .tab-box {
    position: relative;
    background: rgba(2, 9, 19, 0.7);
    height: auto;
  }
  .indexP2 .tab-box::before {
    display: none;
  }
  .indexP2 .tab-box::after {
    content: '';
    display: block;
    clear: both;
  }
  .indexP2 .tab-box a {
    width: 50%;
    padding-left: 1.35rem;
    height: 1.2rem;
  }
  .indexP2 .tab-box a:nth-child(even)::after,
  .indexP2 .tab-box a:last-child::after {
    display: none;
  }
  .indexP2 .tab-box .icon {
    width: 0.8rem;
    height: 0.8rem;
    left: 0.3rem;
    margin-top: -0.4rem;
  }
  .indexP2 .tab-box .icon img {
    margin-left: -0.21rem;
    margin-top: -0.21rem;
    width: 0.42rem;
  }
  .indexP2 .tab-box .name {
    font-size: var(--fs16);
    line-height: 1.2rem;
  }
  .indexP3 {
    padding: 1rem 0 1.2rem;
  }
  .indexP3::after {
    font-size: 2rem;
    line-height: 1.6rem;
  }
  .indexP3 .indTxt {
    margin-bottom: 0.4rem;
  }
  .indexP3 .mxfDiv {
    display: block;
  }
  .indexP3 .leftDiv {
    padding-left: 0;
    width: auto;
    overflow: hidden;
  }
  .indexP3 .leftDiv li {
    float: left;
    width: 50%;
    padding: 0.32rem 0;
  }
  .indexP3 .leftDiv li .num em {
    font-size: 0.86rem;
  }
  .indexP3 .leftDiv li .num span {
    font-size: 0.6rem;
  }
  .indexP3 .leftDiv li p {
    font-size: var(--fs14);
    height: 0.72rem;
  }
  .indexP3 .leftDiv li .wen {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .indexP3 .earthDiv {
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
  }
  .indexP3 .earthDiv::before {
    width: 5.6rem;
    height: 5.6rem;
    margin: -2.8rem 0 0 -2.8rem;
  }
  .indexP3 .earthDiv::after {
    width: 5.6rem;
    height: 5.6rem;
    margin: -2.8rem 0 0 -2.8rem;
  }
  .indexP3 .earthDiv .list li {
    font-size: var(--fs12);
  }
  .indexP3 .earthDiv .list li:nth-child(1) .ico em::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .indexP3 .earthDiv .list li:nth-child(1) .ico em::after {
    display: none;
  }
  .indexP3 .earthDiv .list li:nth-child(1) strong {
    left: -0.9rem;
    font-size: var(--fs13);
  }
  .indexP3 .earthDiv .list .blue {
    line-height: 0.36rem;
  }
  .indexP3 .earthDiv .list .blue .ico::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .indexP3 .earthDiv .list .blue .ico::after {
    display: none;
  }
  .indexP3 .earthDiv .list .orange {
    line-height: 0.32rem;
  }
  .indexP3 .earthDiv .list .orange .ico::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .indexP3 .rightDiv {
    margin-top: 0.6rem;
    width: 4.8rem;
    padding-right: 0;
  }
  .indexP3 .rightDiv .kuang {
    padding: 0.4rem 0.3rem;
    height: auto;
  }
  .indexP3 .rightDiv .kuang::before {
    width: 2px;
  }
  .indexP3 .rightDiv .kuang li {
    font-size: var(--fs14);
    line-height: 0.46rem;
    padding-left: 0.36rem;
  }
  .indexP3 .rightDiv .kuang li:nth-child(1)::before {
    top: 0.15rem;
  }
  .indexP3 .rightDiv .kuang li:nth-child(2)::before {
    width: 8px;
    height: 8px;
    top: 0.15rem;
  }
  .indexP3 .rightDiv .kuang li:nth-child(3)::before {
    width: 8px;
    height: 8px;
    top: 0.15rem;
  }
  .indexP3 .rightDiv .botbot {
    margin-top: 0.5rem;
  }
  .indexP3 .rightDiv .botbot li {
    padding-left: 0.36rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .indexP3 .rightDiv .botbot li::before {
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
  .indexP4 {
    padding: 1rem 0 1.4rem;
    height: auto;
  }
  .indexP4 .toptop {
    height: auto;
    padding-bottom: 0.6rem;
  }
  .indexP4 .indTxt .cn {
    line-height: 0.86rem;
  }
  .indexP4 .tab2 {
    margin-top: 0.35rem;
    position: relative;
  }
  .indexP4 .tab2 li {
    margin: 0 0.3rem;
    line-height: 0.56rem;
    font-size: var(--fs15);
  }
  .indexP4 .moreBtn a {
    width: 2.36rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP4 .moreBtn em {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .indexP4 .leftDiv {
    animation: am_top 0.8s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
    width: auto;
    float: none;
  }
  .indexP4 .leftDiv .imgDiv {
    height: auto;
  }
  .indexP4 .leftDiv .imgDiv img {
    height: auto;
  }
  .indexP4 .leftDiv .botDiv {
    padding: 0.32rem 0.3rem 0;
    height: 2rem;
  }
  .indexP4 .leftDiv .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
    height: 0.45rem;
  }
  .indexP4 .leftDiv .name {
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .indexP4 .rightDiv {
    animation: am_top 0.8s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
    margin-top: 0.4rem;
    width: auto;
    float: none;
  }
  .indexP4 .rightDiv li {
    margin-bottom: 0.3rem;
  }
  .indexP4 .rightDiv li a {
    padding: 0.25rem 3.2rem 0 0.3rem;
  }
  .indexP4 .rightDiv li .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
    height: 0.45rem;
  }
  .indexP4 .rightDiv li .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP4 .rightDiv li .ico {
    display: none;
  }
  .indexP4 .canvas {
    bottom: -3rem;
    height: 6rem;
  }
}
.about {
  padding: 1.1rem 0 1.4rem;
  overflow: hidden;
  border: #eee solid 1px;
}
.about .titleDiv {
  position: relative;
  margin-bottom: 0.3rem;
}
.about .titleDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.42rem;
  height: 0.04rem;
  border-radius: 4px;
  background: #f39910;
}
.about .titleDiv .cn {
  margin: 0;
  color: #222;
  font-size: var(--fs54);
  line-height: 1.2rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.about .titleDiv .en {
  position: absolute;
  left: 0;
  top: 0;
}
.about .titleDiv .en img {
  height: 1.18rem;
}
.about .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.about .leftCon {
  width: 9.9rem;
  font-size: var(--fs17);
  line-height: 0.3rem;
  text-align: justify;
}
.about .numList {
  width: 4.2rem;
  border-top: rgba(0, 0, 0, 0.08) solid 1px;
}
.about .numList ul {
  margin: 0;
}
.about .numList li {
  padding: 0.48rem 0;
  border-bottom: rgba(0, 0, 0, 0.08) solid 1px;
  position: relative;
}
.about .numList li .ico {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.3rem;
}
.about .numList li .ico img {
  width: 0.6rem;
}
.about .numList li .pj {
  height: 0.85rem;
}
.about .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.about .numList li .numUp {
  font-family: 'Barlow-B';
  font-size: 0.84rem;
  line-height: 0.64rem;
  padding-right: 0.1rem;
  color: #f39910;
}
.about .numList li p {
  font-size: var(--fs18);
  height: 0.64rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.about .numList li span {
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  background: url(../img/nimg11_1.png) no-repeat;
}
.about .numList li .wen {
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.about .videobox {
  margin-top: 1.1rem;
  overflow: hidden;
  position: relative;
  height: 6.8rem;
}
.about .videobox .imgDiv {
  height: 6.8rem;
}
.about .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .videobox video {
  max-width: 100%;
  max-height: 6.8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.about .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  margin-left: -52px;
  margin-top: -52px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.about .videobox .playbox img {
  width: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 1;
}
.about .videobox .playbox .dwq {
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -100px;
  margin-top: -100px;
  width: 200px;
  height: 200px;
}
.about .videobox .playbox .pulse2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  height: 200px;
  width: 200px;
  border: 2px solid #fff;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 4px #fff, 0 0 10px #fff inset;
  -moz-box-shadow: 0 0 4px #fff, 0 0 10px #fff inset;
  box-shadow: 0 0 4px #fff, 0 0 10px #fff inset;
  opacity: 0.12;
  filter: alpha(opacity=0);
  -webkit-animation: warn 2s ease-out both;
  -moz-animation: warn 2s ease-out both;
  -o-animation: warn 2s ease-out both;
  animation: warn 2s ease-out both;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background: 0 0;
}
.about .videobox .playbox .delay-04 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.about .videobox .playbox .delay-05 {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.about .videobox .playbox .delay-06 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.about .videobox.cur {
  background: #000;
}
.about .videobox.cur .imgDiv,
.about .videobox.cur .video,
.about .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.about .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .about .leftCon {
    font-size: var(--fs13);
  }
}
@media (max-width: 1004px) {
  .about {
    padding: 1.1rem 0 1.2rem;
  }
  .about .titleDiv {
    margin-bottom: 0.3rem;
  }
  .about .titleDiv .cn {
    font-size: var(--fs24);
  }
  .about .titleDiv .en img {
    height: 0.8rem;
  }
  .about .leftCon {
    float: none;
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .about .numList {
    margin-top: 0.5rem;
    width: auto;
    float: none;
  }
  .about .numList li {
    float: left;
    width: 48%;
    padding: 0.3rem 0 0.3rem 0.8rem;
  }
  .about .numList li:nth-child(even) {
    float: right;
  }
  .about .numList li .ico {
    right: auto;
    left: 0;
    top: 0.24rem;
    margin-top: 0;
  }
  .about .numList li .ico img {
    width: 0.56rem;
  }
  .about .numList li .pj {
    height: 0.75rem;
  }
  .about .numList li .numUp {
    font-size: var(--fs34);
    line-height: 0.62rem;
  }
  .about .numList li p {
    font-size: var(--fs13);
    height: 0.62rem;
  }
  .about .numList li span {
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background-size: 8px;
  }
  .about .numList li .wen {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .about .botbot {
    padding: 0.8rem 0.3rem;
  }
  .about .leftImg {
    width: 100%;
    float: none;
    height: 4rem;
    border-radius: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .about .leftImg .box {
    height: 4rem;
  }
  .about .rightDiv {
    width: 100%;
    float: none;
  }
  .about .rightDiv .topImg {
    height: 3.4rem;
    border-radius: 0.2rem;
  }
  .about .rightDiv .botList li .limg {
    height: 1.8rem;
    border-radius: 0.2rem;
  }
  .about .videobox {
    margin-top: 0.8rem;
    height: 4.6rem;
  }
  .about .videobox .imgDiv {
    height: 4.6rem;
  }
  .about .videobox video {
    width: 100%;
    max-height: 4.6rem;
  }
  .about .videobox .playbox {
    width: 0.86rem;
    height: 0.86rem;
    background: none;
    margin-left: -0.43rem;
    margin-top: -0.43rem;
  }
  .about .videobox .playbox img {
    width: 0.86rem;
    margin-left: -0.43rem;
    margin-top: -0.43rem;
  }
  .about .videobox .playbox .dwq {
    display: none;
  }
}
.culture {
  padding: 1.2rem 0 1.5rem;
}
.culture .list {
  margin-top: 0.6rem;
  overflow: hidden;
}
.culture .list ul {
  display: block;
  width: auto;
  margin-right: -0.3rem;
}
.culture .list li {
  float: left;
  width: 33.33%;
}
.culture .list li .box {
  position: relative;
  margin-right: 0.3rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.culture .list li .pic img {
  width: 100%;
}
.culture .list li .title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0.3rem;
  padding: 0 0.3rem;
  font-size: var(--fs30);
  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;
}
.culture .list li .info {
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  top: 0;
  padding: 0.8rem 0.2rem 0.5rem;
  height: 100%;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.culture .list li .info .ani {
  display: none;
}
.culture .list li .info .icon {
  width: 0.58rem;
  margin: 0 auto;
}
.culture .list li .info .cn {
  margin: 0.6rem 0 0.1rem;
  font-size: var(--fs30);
  color: #fff;
}
.culture .list li .info .en {
  font-size: var(--fs16);
  line-height: 0.18rem;
  position: relative;
  height: 0.45rem;
  color: #fff;
  font-family: "Mont-B";
}
.culture .list li .info .en::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  margin-left: -10px;
}
.culture .list li .info .brief {
  margin-top: 0.32rem;
  color: #fff;
  line-height: 0.26rem;
  font-size: var(--fs16);
}
.culture .list li .box:hover .info {
  background: rgba(29, 93, 202, 0.85);
}
.culture .list li .box:hover .title {
  opacity: 0;
  visibility: hidden;
}
.culture .list li .box:hover .ani {
  display: block;
}
.culture .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  padding-top: 0.45rem;
  padding-right: 0.3rem;
  display: none;
}
.culture .swiper-pagination .swiper-pagination-bullet {
  background: #eee;
  opacity: 1;
}
.culture .swiper-pagination .swiper-pagination-bullet-active {
  background: #f39910;
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .culture .list li .info .brief {
    line-height: 0.26rem;
    font-size: var(--fs12);
  }
}
@media (max-width: 1004px) {
  .culture {
    padding: 1rem 0 1.2rem;
  }
  .culture .wrap {
    padding: 0;
  }
  .culture .list {
    margin-top: 0.75rem;
    margin-left: 0.3rem;
  }
  .culture .list ul {
    display: flex;
    width: 100%;
    margin-right: 0;
  }
  .culture .list li {
    float: none;
    width: auto;
  }
  .culture .list li .box {
    margin-right: 0;
    border-radius: 0.24rem;
  }
  .culture .list li .title {
    font-size: var(--fs20);
  }
  .culture .list li .info {
    padding: 0.6rem 0.1rem 0.3rem;
  }
  .culture .list li .info .icon {
    width: 0.72rem;
    height: 0;
    overflow: hidden;
    margin: 0 auto;
  }
  .culture .list li .info .cn {
    margin: 0.1rem 0 0.05rem;
    font-size: var(--fs20);
  }
  .culture .list li .info .en {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.6rem;
  }
  .culture .list li .info .en::after {
    width: 0.3rem;
    margin-left: -0.15rem;
  }
  .culture .list li .info .brief {
    margin-top: 0.15rem;
    line-height: 0.38rem;
    font-size: var(--fs12);
  }
  .culture .swiper-pagination {
    display: block;
  }
}
.history {
  padding-top: 1.2rem;
  overflow: hidden;
  height: 9.6rem;
  background: url(../img/historyBg.jpg) center no-repeat;
  background-size: cover;
}
.history .title {
  margin-bottom: 1.1rem;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  text-align: center;
}
.hisSwiper {
  height: 5.2rem;
  overflow: inherit;
  position: relative;
}
.hisSwiper .swiper-slide {
  color: #333;
  position: relative;
}
.hisSwiper .swiper-slide .hisCon {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0px;
  top: 0%;
}
.hisSwiper .swiper-slide:nth-child(even) .hisCon {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0px;
  top: 50%;
}
.hisSwiper .swiper-slide .line::before {
  width: 8px;
  height: 8px;
  position: absolute;
  top: -5px;
  border: 2px solid #1d5dca;
  border-radius: 50%;
  z-index: 5;
  left: -5px;
  content: '';
  z-index: 0;
}
.hisSwiper .swiper-slide .line::after {
  width: 0.56rem;
  height: 0.56rem;
  position: absolute;
  left: -0.28rem;
  top: -0.28rem;
  background: url(../img/carIcon.png) no-repeat;
  background-size: 0.56rem;
  content: '';
  opacity: 0;
}
.hisSwiper .swiper-slide.swiper-slide-active {
  z-index: 1;
}
.hisSwiper .swiper-slide.swiper-slide-active .line::after {
  -webkit-animation: carLoop 6s ease 1;
  opacity: 1;
  animation-fill-mode: forwards;
}
.hisSwiper .swiper-slide .line {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 2.45rem;
  background: #1d5dca;
  -webkit-transform: rotate(-10deg);
}
.hisSwiper .swiper-slide:nth-child(even) .line {
  -webkit-transform: rotate(10deg);
}
.hisSwiper .swiper-slide .hisCon .year {
  font-size: var(--fs36);
  font-family: 'Barlow-B';
  line-height: 2;
}
.hisSwiper .swiper-slide .hisCon .des {
  width: 100%;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.hisSwiper .swiper-slide:last-child .line {
  display: none;
}
.hisSwiper .swiper-slide:nth-last-child(2) .line {
  background: none;
}
.hisSwiper .swiper-pagination-bullet {
  background: 0 0;
  opacity: 1;
  margin: 0 6px !important;
  width: 9px;
  height: 9px;
  position: relative;
  outline: 0;
  vertical-align: middle;
}
.hisSwiper .swiper-pagination-bullet span {
  width: 3px;
  height: 3px;
  background: #f39910;
  display: block;
  border-radius: 50%;
  margin-top: 3px;
  margin-left: 3px;
}
.hisSwiper .swiper-pagination-bullet i {
  background: #f39910;
  height: 1px;
  width: 20px;
  position: absolute;
  top: 4px;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
  transition-timing-function: linear;
}
.hisSwiper .swiper-pagination-bullet-active span,
.hisSwiper .swiper-pagination-bullet:hover span {
  width: 9px;
  height: 9px;
  margin-top: 0;
  margin-left: 0;
  background: #f39910;
  position: relative;
  z-index: 1;
}
.hisSwiper .swiper-pagination-bullet-active i {
  animation: middle 6s;
}
.hisSwiper .swiper-pagination-bullet:first-child.swiper-pagination-bullet-active i {
  animation: first 6s;
}
.hisSwiper .swiper-pagination-bullet:last-child.swiper-pagination-bullet-active i {
  animation: last 6s;
}
@media (max-width: 1004px) {
  .history {
    padding: 1rem 0;
    height: auto;
  }
  .history .title {
    margin-bottom: 0.65rem;
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .hisSwiper {
    height: 5.6rem;
  }
  .hisSwiper .swiper-slide .line {
    top: 3.5rem;
  }
  .hisSwiper .swiper-slide:nth-child(even) .hisCon {
    top: inherit;
    left: 0.3rem;
  }
  .hisSwiper .swiper-slide .hisCon .des {
    width: 90%;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .hisSwiper .swiper-slide .hisCon {
    left: 0.3rem;
  }
}
.strengthP1 {
  padding: 1.2rem 0 1.4rem;
}
.strengthP1 .title {
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 0.5rem;
  color: #222;
  margin: 0.55rem 0 0.35rem;
}
.strengthP1 .tab2 {
  overflow: hidden;
  padding-bottom: 0.7rem;
}
.strengthP1 .tab2 li {
  float: left;
  font-size: var(--fs20);
}
.strengthP1 .tab2 li .box {
  width: 2.8rem;
  margin-right: 0.3rem;
  border: #e5e5e5 solid 1px;
  border-radius: 0.48rem;
  height: 0.62rem;
  color: #222;
  line-height: 0.6rem;
  text-align: center;
}
.strengthP1 .tab2 .liNow .box {
  background: #f39910;
  border: #f39910 solid 1px;
  color: #fff;
}
.strengthP1 .mxfDiv {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-radius: 10px;
  background: #f6f6f7 url(../img/nimg768Bg.jpg) left top no-repeat;
  background-size: 50%;
  overflow: hidden;
}
.strengthP1 .imgDiv {
  order: 1;
  width: 50%;
}
.strengthP1 .imgDiv img {
  width: 100%;
}
.strengthP1 .conDiv {
  width: 50%;
  padding: 0 1.4rem 0 1rem;
}
.strengthP1 .name {
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-weight: bold;
  color: #333;
  position: relative;
  padding-bottom: 0.1rem;
}
.strengthP1 .en {
  font-family: "Mont-M";
  font-size: var(--fs14);
  line-height: 0.24rem;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.2);
  position: relative;
  padding-bottom: 0.35rem;
  text-transform: uppercase;
}
.strengthP1 .en::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.36rem;
  height: 2px;
  background: #f39910;
}
.strengthP1 .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #666;
  margin-top: 0.4rem;
}
.strengthP2 {
  padding: 1.3rem 0 1.1rem;
  background: url(../img/strengthP2.jpg) center no-repeat;
  background-size: cover;
}
.strengthP2 .title {
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 0.5rem;
  color: #222;
  margin: 0 0 0.6rem;
}
.strengthP2 .list ul {
  margin-right: -0.3rem;
  margin-bottom: 0;
}
.strengthP2 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.3rem;
}
.strengthP2 .list li .box {
  position: relative;
  margin-right: 0.3rem;
  padding: 0.9rem 0.4rem 0;
  height: 4rem;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.strengthP2 .list li .ico {
  height: 0.54rem;
}
.strengthP2 .list li .ico img {
  width: 0.52rem;
}
.strengthP2 .list li .zi {
  position: relative;
  margin: 0 auto;
  width: 5.82rem;
  height: 1.62rem;
  padding: 0.35rem 0.65rem 0;
  background: url(../img/nimg232Bg.png) center bottom no-repeat;
  background-size: 2.32rem;
}
.strengthP2 .list li .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.54rem;
  height: 1.09rem;
  background: url(../img/nimg54Bg.png) no-repeat;
  background-size: 0.54rem;
}
.strengthP2 .list li .zi::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.54rem;
  height: 1.09rem;
  background: url(../img/nimg54Bg2.png) no-repeat;
  background-size: 0.54rem;
}
.strengthP2 .list li .name {
  font-size: var(--fs28);
  line-height: 0.32rem;
  color: #1d5dca;
  font-weight: bold;
}
.strengthP2 .list li .msg {
  font-size: var(--fs20);
  line-height: 0.32rem;
  color: #333;
}
.strengthP2 .list li .layer {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  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;
}
.strengthP2 .list li .limg {
  border-radius: 8px;
  background: #fff;
  padding: 0.08rem;
}
.strengthP2 .list li .limg img {
  max-width: 3.42rem;
  max-height: 3.5rem;
}
.strengthP2 .list li .box:hover .layer {
  opacity: 1;
  visibility: visible;
}
.strengthP3 {
  padding: 1.4rem 0;
}
.strengthP3 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.strengthP3 .leftCon {
  width: 6.5rem;
}
.strengthP3 .title {
  font-size: var(--fs48);
  font-weight: bold;
  line-height: 0.5rem;
  color: #222;
  margin: 0 0 0.4rem;
}
.strengthP3 .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.strengthP3 .imgDiv {
  order: 1;
  width: 50%;
  overflow: hidden;
  border-radius: 10px;
}
.strengthP3 .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .strengthP1 {
    padding: 1rem 0 1.1rem;
  }
  .strengthP1 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .strengthP1 .tab2 {
    padding-bottom: 0.6rem;
  }
  .strengthP1 .tab2 ul {
    margin-right: -0.2rem;
  }
  .strengthP1 .tab2 li {
    width: 50%;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .strengthP1 .tab2 li .box {
    width: auto;
    margin-right: 0.2rem;
    height: 0.82rem;
    line-height: 0.8rem;
  }
  .strengthP1 .mxfDiv {
    display: block;
    border-radius: 0.2rem;
    background: #f6f6f7 url(../img/nimg768Bg.jpg) left bottom no-repeat;
    background-size: 100%;
  }
  .strengthP1 .imgDiv {
    width: auto;
  }
  .strengthP1 .conDiv {
    width: auto;
    padding: 0.6rem 0.35rem;
  }
  .strengthP1 .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .strengthP1 .en {
    font-size: var(--fs13);
    line-height: 0.36rem;
    padding-bottom: 0.3rem;
  }
  .strengthP1 .en::after {
    width: 0.6rem;
  }
  .strengthP1 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.5rem;
  }
  .strengthP2 {
    padding: 1rem 0 0.9rem;
  }
  .strengthP2 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .strengthP2 .list ul {
    margin-right: 0;
  }
  .strengthP2 .list li {
    float: none;
    width: 100%;
  }
  .strengthP2 .list li .box {
    margin-right: 0;
    padding: 0.6rem 0.3rem 0;
    height: 3.6rem;
    border-radius: 0.2rem;
  }
  .strengthP2 .list li .ico {
    height: 0.6rem;
  }
  .strengthP2 .list li .ico img {
    width: 0.56rem;
  }
  .strengthP2 .list li .zi {
    width: 5.42rem;
    height: 1.76rem;
    padding: 0.2rem 0.45rem 0;
  }
  .strengthP2 .list li .name {
    font-size: var(--fs16);
    line-height: 0.42rem;
    color: #1d5dca;
    font-weight: bold;
  }
  .strengthP2 .list li .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .strengthP3 {
    padding: 1rem 0;
  }
  .strengthP3 .mxfDiv {
    display: block;
  }
  .strengthP3 .leftCon {
    width: auto;
    margin-top: 0.65rem;
  }
  .strengthP3 .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
    margin-bottom: 0.3rem;
  }
  .strengthP3 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .strengthP3 .imgDiv {
    width: auto;
    border-radius: 0.2rem;
  }
}
.partner {
  padding: 1.2rem 0;
  background: url(../img/partnerBg.jpg) center bottom no-repeat;
  background-size: 100%;
}
.partner .links {
  margin: 0.7rem 0 0.6rem;
  text-align: center;
}
.partner .links ul {
  font-size: 0;
}
.partner .links li {
  display: inline-block;
  margin: 0 0.1rem;
  font-size: var(--fs20);
}
.partner .links li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  color: #222;
  width: 2rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  border: #e5e5e5 solid 1px;
}
.partner .links li a:hover {
  background: #f39910;
  border: #f39910 solid 1px;
  color: #fff;
}
.partner .links li .on {
  background: #f39910;
  border: #f39910 solid 1px;
  color: #fff;
}
.partner .list ul {
  margin-right: -0.28rem;
  margin-bottom: 0;
}
.partner .list li {
  float: left;
  width: 20%;
  margin-bottom: 0.28rem;
}
.partner .list li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  margin-right: 0.28rem;
  border-radius: 0.12rem;
  background: #fff;
  height: 1.4rem;
  box-shadow: 0 0.1rem 0.22rem rgba(0, 0, 0, 0.1);
}
.partner .list li .box img {
  max-width: 2.2rem;
  max-height: 0.8rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.partner .list li .box:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .partner {
    padding: 1rem 0;
  }
  .partner .links li {
    font-size: var(--fs15);
  }
  .partner .links li a {
    width: 2.6rem;
    height: 0.86rem;
  }
  .partner .list ul {
    margin-right: -0.3rem;
  }
  .partner .list li {
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
  .partner .list li .box {
    margin-right: 0.3rem;
    border-radius: 0.2rem;
    height: 1.2rem;
    box-shadow: 0 0.1rem 0.22rem rgba(0, 0, 0, 0.1);
  }
  .partner .list li .box img {
    max-width: 1.6rem;
    max-height: 0.6rem;
  }
}
.contact {
  padding: 1.3rem 0;
  background: #f8f8f9 url(../img/contactBg.jpg) center bottom no-repeat;
  background-size: 100%;
}
.contact .list {
  margin: 0.6rem 0 0.3rem;
}
.contact .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.contact .list li {
  width: calc(33.333% - 0.33rem);
  margin-bottom: 0.5rem;
  min-height: 4rem;
  background: #fff;
  padding: 0.45rem 0.45rem 0.3rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.contact .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #f39910;
}
.contact .list li .name {
  font-size: var(--fs26);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
}
.contact .list li .en {
  margin-top: 0.1rem;
  padding-bottom: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: rgba(51, 51, 51, 0.35);
  position: relative;
  font-family: 'Barlow-R';
}
.contact .list li .en:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: #f39910;
}
.contact .list li .msg {
  font-size: var(--fs16);
  line-height: 0.36rem;
  margin-top: 0.2rem;
  font-family: "Barlow-L";
}
@media (max-width: 1004px) {
  .contact {
    padding: 1rem 0;
  }
  .contact .list {
    margin: 0.65rem 0 0.3rem;
  }
  .contact .list ul {
    display: block;
  }
  .contact .list li {
    width: auto;
    margin-bottom: 0.5rem;
    min-height: 3.8rem;
    padding: 0.55rem 0.45rem;
  }
  .contact .list li::before {
    height: 2px;
  }
  .contact .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .contact .list li .en {
    margin-top: 0.08rem;
    height: auto;
    font-size: var(--fs15);
    line-height: 0.42rem;
    padding-bottom: 0.3rem;
  }
  .contact .list li .en:after {
    width: 0.4rem;
  }
  .contact .list li .msg {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
}
.join {
  padding: 1.2rem 0 1.3rem;
}
.join .list {
  margin-top: 0.6rem;
}
.join .list ul {
  margin-right: -0.6rem;
}
.join .list li {
  float: left;
  width: 50%;
}
.join .list li .box {
  margin-right: 0.6rem;
}
.join .list li .imgDiv {
  overflow: hidden;
}
.join .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.join .list li .name {
  font-size: var(--fs30);
  line-height: 0.5rem;
  text-align: center;
  margin-top: 0.3rem;
  color: #000;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.join .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.join .list li .box:hover .name {
  color: #f39910;
}
@media (max-width: 1004px) {
  .join {
    padding: 0.9rem 0 0.6rem;
  }
  .join .list {
    margin-top: 0.7rem;
  }
  .join .list ul {
    margin-right: 0;
  }
  .join .list li {
    float: none;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .join .list li .box {
    margin-right: 0;
  }
  .join .list li .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
}
.job {
  padding: 1.2rem 0;
}
.job .selectGroup {
  margin-top: 0.6rem;
  position: relative;
  z-index: 2;
  margin-right: -0.24rem;
}
.job .selectGroup::after {
  content: '';
  display: block;
  clear: both;
}
.job .selectGroup .box {
  float: left;
  width: 25%;
}
.job .selectGroup .box:last-child {
  width: 50%;
}
.job .selectGroup .select {
  margin-right: 0.24rem;
  position: relative;
}
.job .selectGroup .select .caption {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  height: 0.56rem;
  line-height: 0.54rem;
  width: 100%;
  padding: 0 0.4rem 0 0.2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs16);
  color: #838383;
  background: #fff;
  border: #ebebeb solid 1px;
}
.job .selectGroup .select .caption::after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 7px;
  background: url(../img/selectIco2.png) no-repeat center;
  right: 0.2rem;
  top: 50%;
  margin-top: -3px;
  z-index: 2;
}
.job .selectGroup .select .xlist {
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 4;
  width: 100%;
  background: #fff;
  max-height: 2.5rem;
  overflow: auto;
  border: #ebebeb solid 1px;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.job .selectGroup .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.job .selectGroup .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.job .selectGroup .select .xlist::-webkit-scrollbar-thumb {
  background-color: #f39910;
}
.job .selectGroup .select .xlist a {
  display: block;
  position: relative;
  line-height: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  color: #838383;
  font-size: var(--fs16);
  overflow: hidden;
  padding: 0 0.2rem;
}
.job .selectGroup .select .xlist a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.job .selectGroup .select .xlist a:last-child::after {
  display: none;
}
.job .selectGroup .select .xlist a:hover {
  color: #f39910;
}
.job .selectGroup .form {
  margin-right: 0.24rem;
  position: relative;
  height: 0.56rem;
  overflow: hidden;
  border-radius: 4px;
}
.job .selectGroup .form .input1 {
  height: 0.56rem;
  line-height: 0.54rem;
  color: #838383;
  border: #ebebeb solid 1px;
  width: 100%;
  font-size: var(--fs16);
  padding-left: 0.2rem;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.job .selectGroup .form .input1::-webkit-input-placeholder {
  color: #838383;
  opacity: 1;
}
.job .selectGroup .form .input1:-moz-placeholder {
  color: #838383;
  opacity: 1;
}
.job .selectGroup .form .input1::-moz-placeholder {
  color: #838383;
  opacity: 1;
}
.job .selectGroup .form .input1:-ms-input-placeholder {
  color: #838383;
  opacity: 1;
}
.job .selectGroup .form .btnDiv {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.job .selectGroup .form .btnDiv a {
  display: block;
  width: 1rem;
  text-align: center;
  height: 0.56rem;
  background: #f39910 url(../img/nimg22_4.png) center no-repeat;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.job .list {
  margin-bottom: 0.8rem;
}
.job .list ul {
  margin: 0;
}
.job .list li {
  margin-bottom: 0.2rem;
}
.job .list li .msgDiv {
  height: 0.62rem;
  background: #f4f6f8;
  font-size: var(--fs18);
  color: #333;
  overflow: hidden;
}
.job .list li .inner {
  cursor: pointer;
}
.job .list li .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  padding-left: 1.2rem;
  padding-right: 0.4rem;
  width: 5.72rem;
  height: 0.62rem;
}
.job .list li .name em {
  display: none;
}
.job .list li .ren {
  float: left;
  width: 3.9rem;
  line-height: 0.62rem;
  font-family: 'Barlow-R';
}
.job .list li .ren em {
  display: none;
}
.job .list li .place {
  float: left;
  width: 3.36rem;
  line-height: 0.62rem;
}
.job .list li .place em {
  display: none;
}
.job .list li .btnDiv {
  float: left;
  width: 1.08rem;
  height: 0.62rem;
  position: relative;
}
.job .list li .btnDiv em {
  display: none;
}
.job .list li .btnDiv a {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.18rem;
  width: 100%;
  height: 0.36rem;
  line-height: 0.36rem;
  text-align: center;
  color: #333;
  border-radius: 0.48rem;
}
.job .list li .btnDiv a:hover {
  background: #f39910;
  color: #fff;
}
.job .list li .hideDiv {
  display: none;
  background: #f8f8f8;
  padding: 0.4rem 0.4rem 0.5rem 1.2rem;
  border: solid 1px #eee;
}
.job .list li .pjDiv {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.job .list li .info {
  width: 48%;
}
.job .list li .caption {
  font-size: var(--fs16);
  color: #535353;
  font-weight: 700;
  line-height: 0.36rem;
}
.job .list li .content {
  font-size: var(--fs16);
  color: #535353;
  line-height: 0.3rem;
}
.job .list li.on .btnDiv a {
  background: #f39910;
  color: #fff;
}
.jobTop {
  margin: 0.5rem 0 0.2rem;
  height: 0.64rem;
  background: #1d5dca;
  overflow: hidden;
}
.jobTop li {
  float: left;
  color: #fff;
  font-size: var(--fs20);
  line-height: 0.64rem;
}
.jobTop li:nth-child(1) {
  width: 5.72rem;
  padding-left: 1.2rem;
}
.jobTop li:nth-child(2) {
  width: 3.9rem;
}
.jobTop li:nth-child(3) {
  width: 3.36rem;
}
.jobTop li:nth-child(4) {
  width: 1.08rem;
  text-align: center;
}
@media (max-width: 1004px) {
  .job {
    padding: 1rem 0;
  }
  .job .selectGroup {
    margin-top: 0.7rem;
    margin-right: 0;
  }
  .job .selectGroup .box {
    float: none;
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .job .selectGroup .box:last-child {
    width: 100%;
  }
  .job .selectGroup .select {
    margin-right: 0;
  }
  .job .selectGroup .select .caption {
    height: 0.96rem;
    line-height: 0.94rem;
    width: 100%;
    padding: 0 0.75rem 0 0.3rem;
    font-size: var(--fs14);
  }
  .job .selectGroup .select .caption::after {
    right: 0.3rem;
  }
  .job .selectGroup .select .xlist {
    max-height: 4.3rem;
  }
  .job .selectGroup .select .xlist a {
    line-height: 0.86rem;
    height: 0.86rem;
    font-size: var(--fs14);
    padding: 0 0.3rem;
  }
  .job .selectGroup .form {
    margin-right: 0;
    height: 0.96rem;
  }
  .job .selectGroup .form .input1 {
    height: 0.96rem;
    line-height: 0.94rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .job .selectGroup .form .btnDiv a {
    width: 1.6rem;
    height: 0.96rem;
    background-size: 0.36rem;
  }
  .job .list li .msgDiv {
    height: auto;
    font-size: var(--fs14);
    padding: 0.3rem;
  }
  .job .list li .inner {
    float: none;
  }
  .job .list li .name {
    display: block;
    float: none;
    line-height: 0.62rem;
    padding: 0;
    width: auto;
    height: auto;
  }
  .job .list li .name em {
    display: inline-block;
    padding-right: 5px;
  }
  .job .list li .ren {
    float: none;
    width: auto;
  }
  .job .list li .ren em {
    display: inline-block;
    padding-right: 5px;
  }
  .job .list li .place {
    float: none;
    width: auto;
  }
  .job .list li .place em {
    display: inline-block;
    padding-right: 5px;
  }
  .job .list li .btnDiv {
    float: none;
    width: auto;
    height: auto;
  }
  .job .list li .btnDiv em {
    display: inline-block;
    line-height: 0.62rem;
    padding-right: 5px;
  }
  .job .list li .btnDiv a {
    position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    margin-top: 0;
    width: 1.9rem;
    height: 0.62rem;
    line-height: 0.62rem;
  }
  .job .list li .hideDiv {
    padding: 0.4rem 0.3rem 0.2rem;
  }
  .job .list li .pjDiv {
    display: block;
  }
  .job .list li .info {
    width: auto;
  }
  .job .list li .caption {
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .job .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-bottom: 0.4rem;
  }
}
.welfare {
  padding: 1.2rem 0 1.4rem;
}
.welfare .links {
  margin: 0.7rem 0 0.6rem;
  text-align: center;
}
.welfare .links ul {
  font-size: 0;
}
.welfare .links li {
  display: inline-block;
  margin: 0 0.1rem;
  font-size: var(--fs20);
}
.welfare .links li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  background: #fff;
  color: #222;
  width: 2rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  border: #e5e5e5 solid 1px;
}
.welfare .links .on .box {
  background: #f39910;
  border: #f39910 solid 1px;
  color: #fff;
}
.welfare .lunbo {
  display: none;
  position: relative;
  overflow: hidden;
}
.welfare .imgList {
  width: 31.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.8rem;
}
.welfare .swiper-slide {
  position: relative;
  overflow: hidden;
}
.welfare .swiper-slide .img {
  width: 9.96rem;
  height: 5.88rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.welfare .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welfare .swiper-slide-active .img {
  transform: scale(1);
  -webkit-transform: scale(1);
}
.welfare .se {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border-radius: 50%;
  margin-top: -0.7rem;
  background: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.08);
}
.welfare .se:hover {
  background: #f39910;
}
.welfare .prev {
  left: 50%;
  margin-left: -7.28rem;
}
.welfare .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.13rem;
  margin-top: -0.11rem;
  width: 0.26rem;
  height: 0.22rem;
  background: url("../img/nimg26_left.png") center no-repeat;
  background-size: 0.26rem;
}
.welfare .prev:hover::after {
  background: url("../img/nimg26_lefton.png") center no-repeat;
  background-size: 0.26rem;
}
.welfare .next {
  right: 50%;
  margin-right: -7.28rem;
}
.welfare .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.13rem;
  margin-top: -0.11rem;
  width: 0.26rem;
  height: 0.22rem;
  background: url("../img/nimg26_right.png") center no-repeat;
  background-size: 0.26rem;
}
.welfare .next:hover::after {
  background: url("../img/nimg26_righton.png") center no-repeat;
  background-size: 0.26rem;
}
@media (max-width: 1004px) {
  .welfare {
    padding: 1rem 0 1.2rem;
  }
  .welfare .links li {
    font-size: var(--fs15);
  }
  .welfare .links li .box {
    width: 2.6rem;
    height: 0.86rem;
  }
  .welfare .lunbo {
    padding: 0 0.3rem;
    overflow: hidden;
  }
  .welfare .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .welfare .swiper-slide .img {
    width: 100%;
    height: 3.6rem;
    border-radius: 0.24rem;
  }
  .welfare .se {
    width: 0.9rem;
    height: 0.9rem;
    margin-top: -0.45rem;
  }
  .welfare .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .welfare .next {
    right: 0.2rem;
    margin-right: 0;
  }
}
.careerP1 {
  padding: 1.2rem 0;
}
.careerP1 .list {
  margin-top: 0.6rem;
}
.careerP1 .list ul {
  margin-right: -0.2rem;
}
.careerP1 .list li {
  float: left;
  width: 20%;
  margin-bottom: 0.2rem;
}
.careerP1 .list li .box {
  margin-right: 0.2rem;
  padding-top: 0.5rem;
  height: 2.65rem;
  background: #f6f7f8;
  border-radius: 0.16rem;
}
.careerP1 .list li .ico {
  margin: 0 auto;
  width: 0.86rem;
  height: 0.86rem;
  background: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.04);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.careerP1 .list li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.2rem;
  margin-top: -0.2rem;
  width: 0.4rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.careerP1 .list li .name {
  margin-top: 0.22rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #333;
}
.careerP1 .list li .box:hover .ico {
  background: #f39910;
}
.careerP1 .list li .box:hover .ico img {
  filter: brightness(0) invert(1);
}
.careerP2 {
  padding-top: 1.2rem;
  height: 7.75rem;
  background: url(../img/careerP2.jpg) center no-repeat;
  background-size: cover;
}
.careerP2 .zi {
  margin: 0.45rem 0 0.12rem;
  text-align: center;
  color: #f39910;
  font-size: var(--fs24);
  line-height: 0.28rem;
}
.careerP2 .msg {
  font-size: var(--fs18);
  text-align: center;
  color: #666;
  line-height: 0.32rem;
  margin-bottom: 0.6rem;
}
.careerP2 .list {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.careerP2 .list ul {
  width: auto;
  display: block;
  margin-right: -1.2rem;
}
.careerP2 .list li {
  float: left;
  width: 33.33%;
}
.careerP2 .list li .box {
  margin-right: 1.2rem;
  text-align: center;
}
.careerP2 .list li .ico {
  height: 1rem;
}
.careerP2 .list li .ico img {
  width: 0.72rem;
}
.careerP2 .list li .name {
  font-size: var(--fs24);
  line-height: 0.26rem;
  color: #333;
  height: 0.5rem;
  border-bottom: #e1e2e4 solid 1px;
}
.careerP2 .list li .content {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #666;
}
.careerP2 .swiper-pagination {
  display: none;
  margin-top: 0.4rem;
  position: relative;
  bottom: 0;
}
.careerP2 .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.careerP2 .swiper-pagination-bullet-active {
  background: #f39910;
}
.careerP3 {
  padding: 1.2rem 0 1.3rem;
}
.careerP3 .zi {
  margin: 0.35rem 0 0.55rem;
  text-align: center;
  color: #f39910;
  font-size: var(--fs22);
  line-height: 0.28rem;
}
.careerP3 .imgDiv {
  width: 15.27rem;
  margin: 0 auto;
}
.careerP3 .imgDiv img {
  width: 100%;
}
.careerP3 .tips {
  text-align: center;
  color: #333;
  font-size: var(--fs14);
  line-height: 0.28rem;
  margin-top: 0.6rem;
}
.careerP4 {
  padding-top: 1.2rem;
  height: 12.54rem;
  background: url(../img/careerP4.jpg) center no-repeat;
  background-size: cover;
}
.careerP4 .zi {
  margin: 0.3rem 0 0.5rem;
  text-align: center;
  color: #666;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.careerP4 .imgDiv {
  width: 12.35rem;
  margin: 0 auto;
}
.careerP4 .imgDiv img {
  width: 100%;
}
.careerP4 .tips {
  text-align: center;
  color: #333;
  font-size: var(--fs14);
  line-height: 0.28rem;
  margin-top: 0.6rem;
}
@media (max-width: 1004px) {
  .careerP1 {
    padding: 1rem 0;
  }
  .careerP1 .list {
    margin-top: 0.7rem;
  }
  .careerP1 .list li {
    width: 50%;
  }
  .careerP1 .list li .box {
    padding-top: 0.4rem;
    height: 3rem;
    border-radius: 0.2rem;
  }
  .careerP1 .list li .ico {
    width: 1.1rem;
    height: 1.1rem;
  }
  .careerP1 .list li .ico img {
    margin-left: -0.25rem;
    margin-top: -0.25rem;
    width: 0.5rem;
  }
  .careerP1 .list li .name {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .careerP2 {
    padding: 1rem 0;
    height: auto;
  }
  .careerP2 .zi {
    margin: 0.45rem 0 0.2rem;
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .careerP2 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .careerP2 .list ul {
    display: flex;
    margin-right: 0;
    width: 100%;
  }
  .careerP2 .list li {
    float: none;
    width: auto;
  }
  .careerP2 .list li .box {
    margin-right: 0;
    background: #fff;
    border-radius: 0.2rem;
    padding: 0.5rem 0.35rem 0;
    height: 5rem;
  }
  .careerP2 .list li .ico {
    height: 1.4rem;
  }
  .careerP2 .list li .ico img {
    width: 0.86rem;
  }
  .careerP2 .list li .name {
    font-size: var(--fs18);
    line-height: 0.48rem;
    height: 0.7rem;
  }
  .careerP2 .list li .content {
    margin-top: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .careerP2 .swiper-pagination {
    display: block;
  }
  .careerP3 {
    padding: 1rem 0;
  }
  .careerP3 .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .careerP3 .longDiv {
    overflow: auto;
  }
  .careerP3 .imgDiv {
    width: 15rem;
  }
  .careerP4 {
    padding: 1rem 0;
    height: auto;
  }
  .careerP4 .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .careerP4 .longDiv {
    overflow: auto;
  }
  .careerP4 .imgDiv {
    width: 12rem;
  }
}
.investor {
  padding-top: 1.3rem;
}
.investor .toptop {
  border-bottom: #e5e5e5 solid 1px;
}
.investor .links {
  padding: 0.6rem 0 0.8rem;
}
.investor .links li {
  float: left;
  width: 33.33%;
}
.investor .links li a {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.investor .links li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}
.investor .links li .ico {
  width: 0.57rem;
  height: 0.57rem;
  margin: 0 auto;
  position: relative;
}
.investor .links li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.57rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.investor .links li .ico .img1 {
  opacity: 0;
  visibility: hidden;
}
.investor .links li .name {
  margin-top: 0.24rem;
  font-size: var(--fs18);
  color: #222;
  line-height: 0.2rem;
}
.investor .links li a:hover .ico img {
  opacity: 0;
  visibility: hidden;
}
.investor .links li a:hover .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.investor .links li .on .ico img {
  opacity: 0;
  visibility: hidden;
}
.investor .links li .on .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.investor .links li:last-child a::after {
  display: none;
}
.investor .links2 li {
  width: 50%;
}
@media (max-width: 1004px) {
  .investor {
    padding-top: 1rem;
  }
  .investor .toptop .wrap {
    padding: 0;
  }
  .investor .links li .ico {
    width: 0.68rem;
    height: 0.68rem;
  }
  .investor .links li .ico img {
    width: 0.68rem;
  }
  .investor .links li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.logsheet {
  padding: 1.2rem 0 1.4rem;
}
.logsheet .botbot .title {
  margin: 0 0 0.6rem;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
}
.logsheet .botbot .list {
  border-top: #e5e5e5 solid 1px;
  padding-bottom: 0.9rem;
}
.logsheet .botbot .list ul {
  margin: 0;
}
.logsheet .botbot .list li {
  border-bottom: #e5e5e5 solid 1px;
}
.logsheet .botbot .list li a {
  height: 0.9rem;
  display: block;
  position: relative;
  padding: 0 1.1rem 0 2.1rem;
}
.logsheet .botbot .list li a::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -0.2rem;
  width: 0.29rem;
  height: 0.4rem;
  background: url(../img/nimg29_1.png) no-repeat;
  background-size: 0.29rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.logsheet .botbot .list li a .time {
  position: absolute;
  left: 0.45rem;
  top: 0;
  line-height: 0.9rem;
  font-size: var(--fs18);
  color: rgba(51, 51, 51, 0.4);
  font-family: "Barlow-M";
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.logsheet .botbot .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.9rem;
  color: #333;
  font-size: var(--fs16);
  line-height: 0.28rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.logsheet .botbot .list li a:hover {
  background: #1d5dca;
}
.logsheet .botbot .list li a:hover::after {
  background: url(../img/nimg29_1on.png) no-repeat;
  background-size: 0.29rem;
}
.logsheet .botbot .list li a:hover .time {
  color: rgba(255, 255, 255, 0.5);
}
.logsheet .botbot .list li a:hover .name {
  color: #fff;
}
.logsheet .botbot .list2 li a::after {
  display: none;
}
.logsheet .botbot .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.logsheet .botbot .conDiv {
  width: 5.1rem;
}
.logsheet .botbot .conDiv .name {
  line-height: 0.72rem;
  font-size: var(--fs48);
  color: #222;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.logsheet .botbot .conDiv .msgList li {
  padding-left: 0.52rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  margin-bottom: 0.22rem;
  position: relative;
}
.logsheet .botbot .conDiv .msgList li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.32rem;
}
.logsheet .botbot .conDiv .ewmDiv {
  margin-top: 0.35rem;
  width: 1.3rem;
}
.logsheet .botbot .conDiv .ewmDiv .limg {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 6px;
}
.logsheet .botbot .conDiv .ewmDiv .limg img {
  width: 100%;
}
.logsheet .botbot .conDiv .ewmDiv p {
  font-size: var(--fs16);
  text-align: center;
  margin-top: 0.2rem;
  line-height: 0.18rem;
}
.logsheet .botbot .rightImg {
  width: 9rem;
}
.logsheet .botbot .rightImg img {
  width: 100%;
}
.lyb {
  padding-top: 1.3rem;
  height: 8.04rem;
  background: url(../img/lybBg.jpg) center no-repeat;
  background-size: cover;
}
.lyb .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  margin: 0 0 0.6rem;
  font-weight: bold;
}
.lyb .form ul {
  margin-right: -0.2rem;
}
.lyb .form li {
  float: left;
  width: 33.33%;
  padding-bottom: 0.2rem;
}
.lyb .form li .box {
  margin-right: 0.2rem;
  position: relative;
  padding-left: 1.1rem;
  background: #fff;
  border: #ededed solid 1px;
  border-radius: 6px;
}
.lyb .form li .zi {
  position: absolute;
  left: 0.3rem;
  top: 0;
  font-size: var(--fs14);
  color: #999;
  line-height: 0.54rem;
}
.lyb .form li .input1 {
  width: 100%;
  height: 0.54rem;
  line-height: 0.54rem;
  font-size: var(--fs14);
}
.lyb .form li textarea {
  width: 100%;
  font-size: var(--fs14);
  line-height: 0.32rem;
  height: 2rem;
  padding-top: 0.12rem;
  font-family: inherit;
}
.lyb .form .li01 {
  width: 100%;
}
.lyb .btnDiv {
  width: 1.5rem;
  margin-top: 0.1rem;
}
.lyb .btnDiv a {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  overflow: hidden;
  font-size: var(--fs14);
  color: #fff;
  background: #f39910;
}
@media (max-width: 1004px) {
  .logsheet {
    padding: 0.8rem 0 1.1rem;
  }
  .logsheet .toptop .wrap {
    padding: 0;
  }
  .logsheet .links li .ico {
    width: 0.68rem;
    height: 0.68rem;
  }
  .logsheet .links li .ico img {
    width: 0.68rem;
  }
  .logsheet .links li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .logsheet .botbot .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .logsheet .botbot .list li a {
    height: auto;
    padding: 0.2rem 0.8rem 0.2rem 0.3rem;
  }
  .logsheet .botbot .list li a::after {
    right: 0.2rem;
    margin-top: -0.27rem;
    width: 0.4rem;
    height: 0.55rem;
    background-size: 0.4rem;
  }
  .logsheet .botbot .list li a .time {
    position: relative;
    left: 0;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .logsheet .botbot .list li a .name {
    display: block;
    height: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .logsheet .botbot .list li a:hover::after {
    background-size: 0.4rem;
  }
  .logsheet .botbot .conDiv {
    width: auto;
    float: none;
  }
  .logsheet .botbot .conDiv .name {
    line-height: 0.6rem;
    font-size: var(--fs22);
    margin: 0 0 0.4rem;
  }
  .logsheet .botbot .conDiv .msgList li {
    padding-left: 0.72rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .logsheet .botbot .conDiv .msgList li img {
    width: 0.48rem;
  }
  .logsheet .botbot .conDiv .ewmDiv {
    margin-top: 0.5rem;
    width: 2.1rem;
  }
  .logsheet .botbot .conDiv .ewmDiv p {
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .logsheet .botbot .rightImg {
    margin-top: 0.7rem;
    width: auto;
    float: none;
  }
  .lyb {
    padding: 1rem 0;
    height: auto;
  }
  .lyb .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .lyb .form ul {
    margin-right: 0;
  }
  .lyb .form li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .lyb .form li .box {
    margin-right: 0;
    padding-left: 1.6rem;
  }
  .lyb .form li .zi {
    left: 0.2rem;
    font-size: var(--fs14);
    line-height: 1rem;
  }
  .lyb .form li .input1 {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs14);
  }
  .lyb .form li textarea {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.35rem;
    padding-top: 0.25rem;
  }
  .lyb .btnDiv {
    width: 2.2rem;
    margin-top: 0.2rem;
  }
  .lyb .btnDiv a {
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
}
.dividend {
  padding: 1.2rem 0 1.4rem;
}
.dividend .toptop {
  border-bottom: #e5e5e5 solid 1px;
}
.dividend .links {
  padding: 0.6rem 0 0.8rem;
}
.dividend .links li {
  float: left;
  width: 50%;
}
.dividend .links li a {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.dividend .links li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}
.dividend .links li .ico {
  width: 0.57rem;
  height: 0.57rem;
  margin: 0 auto;
  position: relative;
}
.dividend .links li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.57rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.dividend .links li .ico .img1 {
  opacity: 0;
  visibility: hidden;
}
.dividend .links li .name {
  margin-top: 0.24rem;
  font-size: var(--fs18);
  color: #222;
  line-height: 0.2rem;
}
.dividend .links li a:hover .ico img {
  opacity: 0;
  visibility: hidden;
}
.dividend .links li a:hover .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.dividend .links li .on .ico img {
  opacity: 0;
  visibility: hidden;
}
.dividend .links li .on .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.dividend .links li:last-child a::after {
  display: none;
}
.dividend .botbot .title {
  margin: 0 0 0.6rem;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
}
.dividend .botbot .table table {
  border-left: #efefef solid 1px;
  border-bottom: #efefef solid 1px;
  border-right: #efefef solid 1px;
}
.dividend .botbot .table table tr:nth-child(even) td {
  background: #f6f7fa;
}
.dividend .botbot .table table th {
  background: #1d5dca;
  color: #fff;
  font-size: var(--fs18);
  border-bottom: #4679d1 solid 1px;
  border-right: #4679d1 solid 1px;
  height: 0.4rem;
  font-weight: 400;
  text-align: center;
}
.dividend .botbot .table table td {
  font-family: "Mont-EL";
  font-size: var(--fs16);
  color: #000;
  text-align: center;
  height: 0.64rem;
}
.dividend .botbot .table table td:nth-child(1) {
  width: 10.8%;
}
.dividend .botbot .table table td:nth-child(2) {
  width: 12%;
}
.dividend .botbot .table table td:nth-child(3) {
  width: 11%;
}
.dividend .botbot .table table td:nth-child(4) {
  width: 8.5%;
}
.dividend .botbot .table table td:nth-child(5) {
  width: 12%;
}
.dividend .botbot .table table td:nth-child(6) {
  width: 12.7%;
}
.dividend .botbot .table table td:nth-child(7) {
  width: 11%;
}
.dividend .botbot .table table td:nth-child(8) {
  width: 11%;
}
.dividend .tips {
  text-align: center;
  color: #333;
  font-size: var(--fs14);
  line-height: 0.28rem;
  margin-top: 0.6rem;
}
@media (max-width: 1004px) {
  .dividend {
    padding: 0.8rem 0 1.1rem;
  }
  .dividend .toptop .wrap {
    padding: 0;
  }
  .dividend .links li .ico {
    width: 0.68rem;
    height: 0.68rem;
  }
  .dividend .links li .ico img {
    width: 0.68rem;
  }
  .dividend .links li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .dividend .botbot .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .dividend .botbot .longDiv {
    overflow: auto;
  }
  .dividend .botbot .table {
    width: 18.6rem;
  }
  .dividend .botbot .table table th {
    font-size: var(--fs14);
    height: 1rem;
  }
  .dividend .botbot .table table td {
    font-size: var(--fs12);
    height: 0.94rem;
  }
}
.team {
  padding: 1.2rem 0 0.3rem;
}
.team .toptop {
  border-bottom: #e5e5e5 solid 1px;
}
.team .links {
  padding: 0.6rem 0 0.8rem;
}
.team .links li {
  float: left;
  width: 50%;
}
.team .links li a {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.team .links li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}
.team .links li .ico {
  width: 0.57rem;
  height: 0.57rem;
  margin: 0 auto;
  position: relative;
}
.team .links li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.57rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.team .links li .ico .img1 {
  opacity: 0;
  visibility: hidden;
}
.team .links li .name {
  margin-top: 0.24rem;
  font-size: var(--fs18);
  color: #222;
  line-height: 0.2rem;
}
.team .links li a:hover .ico img {
  opacity: 0;
  visibility: hidden;
}
.team .links li a:hover .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.team .links li .on .ico img {
  opacity: 0;
  visibility: hidden;
}
.team .links li .on .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.team .links li:last-child a::after {
  display: none;
}
.team .botbot .title {
  margin: 0 0 0.6rem;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
}
.team .botbot .pjDiv {
  background: #f7f7f7;
  padding: 0.25rem 0.7rem 0.1rem;
  overflow: hidden;
}
.team .botbot .pjDiv li {
  float: left;
  width: 11.11%;
  text-align: center;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.28rem;
  padding-bottom: 0.15rem;
}
.team .botbot .pjDiv li em {
  color: #222;
  display: block;
  font-size: var(--fs18);
}
.team .botbot .list {
  margin: 0.4rem 0 1.1rem;
}
.team .botbot .list li {
  margin-bottom: 0.2rem;
  background: #f7f7f7;
  padding: 0.45rem 0.65rem 0.4rem 0.5rem;
}
.team .botbot .list li .name {
  padding-left: 0.4rem;
  position: relative;
  font-size: var(--fs18);
  color: #999c9f;
}
.team .botbot .list li .name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.05rem;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: #f39910;
}
.team .botbot .list li .name span {
  padding-right: 0.15rem;
  font-size: var(--fs36);
  color: #191c22;
  line-height: 0.36rem;
}
.team .botbot .list li .content {
  font-size: var(--fs18);
  line-height: 0.34rem;
  padding: 0.12rem 0 0 0.4rem;
}
@media (max-width: 1004px) {
  .team {
    padding: 0.8rem 0 0.4rem;
  }
  .team .toptop .wrap {
    padding: 0;
  }
  .team .links li .ico {
    width: 0.68rem;
    height: 0.68rem;
  }
  .team .links li .ico img {
    width: 0.68rem;
  }
  .team .links li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .team .botbot .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .team .botbot .pjDiv {
    padding: 0.45rem 0.3rem 0.25rem;
  }
  .team .botbot .pjDiv li {
    width: 50%;
    font-size: var(--fs13);
    line-height: 0.48rem;
    margin-bottom: 0.2rem;
  }
  .team .botbot .pjDiv li em {
    font-size: var(--fs14);
  }
  .team .botbot .list {
    margin: 0.4rem 0 0.8rem;
  }
  .team .botbot .list li {
    padding: 0.45rem 0.3rem;
  }
  .team .botbot .list li .name {
    font-size: var(--fs14);
  }
  .team .botbot .list li .name::before {
    margin-top: -0.06rem;
    width: 0.12rem;
    height: 0.12rem;
  }
  .team .botbot .list li .name span {
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .team .botbot .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.2rem 0 0 0.4rem;
  }
}
.award {
  padding: 1.2rem 0 1.4rem;
}
.award .toptop {
  border-bottom: #e5e5e5 solid 1px;
}
.award .links {
  padding: 0.6rem 0 0.8rem;
}
.award .links ul {
  margin: 0;
}
.award .links li {
  float: left;
  width: 33.33%;
}
.award .links li a {
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.award .links li a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
}
.award .links li .ico {
  width: 0.57rem;
  height: 0.57rem;
  margin: 0 auto;
  position: relative;
}
.award .links li .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.57rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.award .links li .ico .img1 {
  opacity: 0;
  visibility: hidden;
}
.award .links li .name {
  margin-top: 0.24rem;
  font-size: var(--fs18);
  color: #222;
  line-height: 0.2rem;
}
.award .links li a:hover .ico img {
  opacity: 0;
  visibility: hidden;
}
.award .links li a:hover .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.award .links li .on .ico img {
  opacity: 0;
  visibility: hidden;
}
.award .links li .on .ico .img1 {
  opacity: 1;
  visibility: visible;
}
.award .links li:last-child a::after {
  display: none;
}
.award .botbot .title {
  margin: 0 0 0.5rem;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
}
.award .botbot .pjDiv {
  position: relative;
  height: 1.2rem;
  overflow: hidden;
}
.award .botbot .lie ul {
  margin: 0;
}
.award .botbot .lie li {
  float: left;
  margin-right: 0.2rem;
  font-size: var(--fs20);
}
.award .botbot .lie li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2rem;
  height: 0.56rem;
  border: #e5e5e5 solid 1px;
  border-radius: 0.48rem;
  color: #222;
}
.award .botbot .lie li a:hover {
  border: #f39910 solid 1px;
  background: #f39910;
  color: #fff;
}
.award .botbot .lie li .on {
  border: #f39910 solid 1px;
  background: #f39910;
  color: #fff;
}
.award .botbot .layer {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  padding-right: 1.6rem;
}
.award .botbot .form {
  position: relative;
  width: 3.5rem;
  height: 0.56rem;
  border: #e5e5e5 solid 1px;
  border-radius: 0.48rem;
  overflow: hidden;
}
.award .botbot .form::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  margin-top: -0.11rem;
  width: 0.22rem;
  height: 0.22rem;
  background: url(../img/nimg22_3.png) no-repeat;
  background-size: 0.22rem;
}
.award .botbot .form .input1 {
  width: 100%;
  height: 0.54rem;
  line-height: 0.54rem;
  padding: 0 0.6rem 0 0.25rem;
  font-size: var(--fs16);
}
.award .botbot .btnDiv {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.4rem;
}
.award .botbot .btnDiv a {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 0.56rem;
  height: 0.56rem;
  border-radius: 0.48rem;
  background: #f39910;
  color: #fff;
  font-size: var(--fs20);
}
.award .botbot .list {
  padding-bottom: 0.7rem;
}
.award .botbot .list ul {
  margin-right: -0.2rem;
}
.award .botbot .list li {
  width: 50%;
  float: left;
  margin-bottom: 0.2rem;
}
.award .botbot .list li .box {
  margin-right: 0.2rem;
}
.award .botbot .list li a {
  height: 0.96rem;
  background: #f7f7f7;
  border-radius: 6px;
  display: block;
  position: relative;
  padding: 0 1.1rem 0 1.5rem;
}
.award .botbot .list li a::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.2rem;
  width: 0.29rem;
  height: 0.4rem;
  background: url(../img/nimg29_1.png) no-repeat;
  background-size: 0.29rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.award .botbot .list li a .time {
  position: absolute;
  left: 0.4rem;
  top: 0;
  line-height: 0.96rem;
  font-size: var(--fs18);
  color: rgba(0, 0, 0, 0.45);
  font-family: "Barlow-M";
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.award .botbot .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.96rem;
  color: #333;
  font-size: var(--fs16);
  line-height: 0.28rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.award .botbot .list li a:hover {
  background: #1d5dca;
}
.award .botbot .list li a:hover::after {
  background: url(../img/nimg29_1on.png) no-repeat;
  background-size: 0.29rem;
}
.award .botbot .list li a:hover .time {
  color: #fff;
}
.award .botbot .list li a:hover .name {
  color: #fff;
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .award .botbot .list li a .time {
    font-size: var(--fs15);
  }
}
@media (max-width: 1004px) {
  .award {
    padding: 0.8rem 0 1.1rem;
  }
  .award .toptop .wrap {
    padding: 0;
  }
  .award .links li .ico {
    width: 0.68rem;
    height: 0.68rem;
  }
  .award .links li .ico img {
    width: 0.68rem;
  }
  .award .links li .name {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .award .botbot .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
  }
  .award .botbot .pjDiv {
    height: auto;
    padding-bottom: 0.5rem;
  }
  .award .botbot .lie {
    overflow: hidden;
  }
  .award .botbot .lie li {
    margin-right: 0.3rem;
    font-size: var(--fs14);
  }
  .award .botbot .lie li a {
    width: 2.2rem;
    height: 0.8rem;
  }
  .award .botbot .layer {
    position: relative;
    margin-top: 0.3rem;
    padding-right: 2rem;
  }
  .award .botbot .form {
    width: 100%;
    height: 0.86rem;
  }
  .award .botbot .form::after {
    margin-top: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background-size: 0.4rem;
  }
  .award .botbot .form .input1 {
    width: 100%;
    height: 0.84rem;
    line-height: 0.84rem;
    padding: 0 0.6rem 0 0.25rem;
    font-size: var(--fs14);
  }
  .award .botbot .btnDiv {
    width: 1.8rem;
  }
  .award .botbot .btnDiv a {
    line-height: 0.86rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .award .botbot .list ul {
    margin-right: 0;
  }
  .award .botbot .list li {
    float: none;
    width: auto;
  }
  .award .botbot .list li .box {
    margin-right: 0;
  }
  .award .botbot .list li a {
    height: auto;
    padding: 0.2rem 0.8rem 0.2rem 0.3rem;
  }
  .award .botbot .list li a::after {
    right: 0.2rem;
    margin-top: -0.27rem;
    width: 0.4rem;
    height: 0.55rem;
    background-size: 0.4rem;
  }
  .award .botbot .list li a .time {
    position: relative;
    left: 0;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .award .botbot .list li a .name {
    display: block;
    height: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .award .botbot .list li a:hover::after {
    background-size: 0.4rem;
  }
}
.basicInfoP1 {
  padding: 1.3rem 0 1.4rem;
  overflow: hidden;
}
.basicInfoP1 .mxfDiv {
  margin-top: 0.6rem;
}
.basicInfoP1 .leftDiv {
  width: 6.45rem;
}
.basicInfoP1 .leftDiv .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.45rem;
  display: none;
}
.basicInfoP1 .leftDiv .code {
  color: #333;
  font-size: var(--fs28);
  line-height: 0.3rem;
  margin-bottom: 0.15rem;
  font-family: "Barlow-M";
}
.basicInfoP1 .leftDiv .price {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  font-family: "Gilroy-M";
  font-size: var(--fs18);
  color: #f73131;
}
.basicInfoP1 .leftDiv .price em {
  font-size: var(--fs60);
  line-height: 0.52rem;
  font-family: 'Barlow-B';
  padding-right: 0.16rem;
}
.basicInfoP1 .leftDiv .price img {
  margin-left: 0.1rem;
  margin-bottom: 0.04rem;
}
.basicInfoP1 .rightImg {
  width: 7.7rem;
}
.basicInfoP1 .rightImg .tips {
  color: #999;
  font-size: var(--fs15);
  line-height: 0.18rem;
  margin-bottom: 0.3rem;
  text-align: right;
}
.basicInfoP1 .rightImg .list ul {
  overflow: hidden;
}
.basicInfoP1 .rightImg .list li {
  float: left;
  position: relative;
}
.basicInfoP1 .rightImg .list li:nth-child(1) {
  width: 1.6rem;
}
.basicInfoP1 .rightImg .list li:nth-child(2) {
  padding-left: 0.55rem;
  width: 2.24rem;
}
.basicInfoP1 .rightImg .list li:nth-child(3) {
  padding-left: 0.55rem;
  width: 2.55rem;
}
.basicInfoP1 .rightImg .list li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.6rem;
  background: #f0f1f2;
}
.basicInfoP1 .rightImg .list li:last-child {
  float: right;
}
.basicInfoP1 .rightImg .list li:last-child::after {
  display: none;
}
.basicInfoP1 .rightImg .list li .zi {
  font-size: var(--fs16);
  line-height: 0.18rem;
  height: 0.32rem;
}
.basicInfoP1 .rightImg .list li .num {
  font-size: var(--fs36);
  line-height: 0.36rem;
  font-family: 'Barlow-R';
}
.basicInfoP2 {
  padding: 1.15rem 0 1.3rem;
  background: #f7f7f8;
}
.basicInfoP2 .toptop {
  position: relative;
  height: 1.2rem;
  z-index: 1;
}
.basicInfoP2 .toptop .title {
  font-size: var(--fs48);
  line-height: 0.6rem;
  color: #333;
  font-weight: bold;
}
.basicInfoP2 .toptop .select {
  position: absolute;
  right: 0;
  top: 0;
  width: 3.2rem;
}
.basicInfoP2 .toptop .select .caption {
  overflow: hidden;
  border-radius: 0.48rem;
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  width: 100%;
  padding: 0 0.4rem 0 0.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs18);
  font-family: "Mont-M";
  background: #fff;
}
.basicInfoP2 .toptop .select .caption::after {
  content: "";
  position: absolute;
  display: block;
  width: 11px;
  height: 7px;
  background: url(../img/selectIco3.png) no-repeat center;
  right: 0.2rem;
  top: 50%;
  margin-top: -3px;
  z-index: 2;
}
.basicInfoP2 .toptop .select .xlist {
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 4;
  width: 100%;
  background: #fff;
  max-height: 2.5rem;
  overflow: auto;
  border: #ebebeb solid 1px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.basicInfoP2 .toptop .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.basicInfoP2 .toptop .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.basicInfoP2 .toptop .select .xlist::-webkit-scrollbar-thumb {
  background-color: #f39910;
}
.basicInfoP2 .toptop .select .xlist a {
  display: block;
  position: relative;
  line-height: 0.5rem;
  height: 0.5rem;
  cursor: pointer;
  color: #838383;
  font-family: "Mont-M";
  font-size: var(--fs16);
  overflow: hidden;
  padding: 0 0.25rem;
}
.basicInfoP2 .toptop .select .xlist a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ebebeb;
}
.basicInfoP2 .toptop .select .xlist a:last-child::after {
  display: none;
}
.basicInfoP2 .toptop .select .xlist a:hover {
  color: #f39910;
}
.basicInfoP2 .list {
  margin-bottom: 0.7rem;
}
.basicInfoP2 .list li {
  margin-bottom: 0.2rem;
  padding: 0.4rem 0.5rem 0 2.35rem;
  height: 1.6rem;
  background: #fff;
  border-radius: 6px;
}
.basicInfoP2 .list li .time {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  position: absolute;
  left: 0.2rem;
  width: 1.62rem;
  top: 0.35rem;
  height: 0.95rem;
  line-height: 0.28rem;
  font-size: var(--fs18);
  font-family: "Barlow-R";
  color: rgba(0, 0, 0, 0.5);
}
.basicInfoP2 .list li .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ebebeb;
}
.basicInfoP2 .list li .time em {
  font-family: "Barlow-B";
  font-size: var(--fs40);
  display: block;
  line-height: 0.42rem;
}
.basicInfoP2 .list li .state {
  width: 0.74rem;
  height: 0.32rem;
  line-height: 0.32rem;
  text-align: center;
  font-size: var(--fs16);
  color: #fff;
  border-radius: 0.48rem;
  background: #f39910;
}
.basicInfoP2 .list li .end {
  background: #bbbbbb;
}
.basicInfoP2 .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.15rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.36rem;
  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;
}
.basicInfoP2 .list li:hover .name {
  color: #f39910;
}
@media (max-width: 1600px) {
  .basicInfoP1 .leftDiv {
    width: 7rem;
  }
  .basicInfoP1 .leftDiv .list li:nth-child(1) {
    width: 1.45rem;
  }
  .basicInfoP1 .leftDiv .list li:nth-child(2) {
    width: 1.92rem;
  }
  .basicInfoP1 .leftDiv .list li:nth-child(3) {
    width: 2.15rem;
  }
}
@media (max-width: 1004px) {
  .basicInfoP1 {
    padding: 1rem 0 1.1rem;
  }
  .basicInfoP1 .mxfDiv {
    margin-top: 0.7rem;
  }
  .basicInfoP1 .leftDiv {
    width: auto;
    float: none;
  }
  .basicInfoP1 .leftDiv .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
    margin: 0 0 0.5rem;
  }
  .basicInfoP1 .leftDiv .code {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .basicInfoP1 .leftDiv .price {
    font-size: var(--fs14);
  }
  .basicInfoP1 .leftDiv .price em {
    font-size: var(--fs32);
    line-height: 0.62rem;
  }
  .basicInfoP1 .rightImg {
    width: auto;
    margin-top: 0.4rem;
    float: none;
  }
  .basicInfoP1 .rightImg .tips {
    font-size: var(--fs14);
    line-height: 0.48rem;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .basicInfoP1 .rightImg .list li {
    width: 50%;
    padding-left: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .basicInfoP1 .rightImg .list li:nth-child(1) {
    width: 50%;
  }
  .basicInfoP1 .rightImg .list li:nth-child(2) {
    padding-left: 0.5rem;
    width: 50%;
  }
  .basicInfoP1 .rightImg .list li:nth-child(3) {
    padding-left: 0.5rem;
    width: 50%;
  }
  .basicInfoP1 .rightImg .list li::after {
    height: 100%;
  }
  .basicInfoP1 .rightImg .list li:nth-child(even),
  .basicInfoP1 .rightImg .list li:last-child {
    float: left;
  }
  .basicInfoP1 .rightImg .list li:nth-child(even)::after,
  .basicInfoP1 .rightImg .list li:last-child::after {
    display: none;
  }
  .basicInfoP1 .rightImg .list li .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
    height: 0.48rem;
  }
  .basicInfoP1 .rightImg .list li .num {
    font-size: var(--fs24);
    line-height: 0.56rem;
  }
  .basicInfoP2 {
    padding: 0.9rem 0 1rem;
  }
  .basicInfoP2 .toptop {
    margin-bottom: 0.6rem;
    height: auto;
  }
  .basicInfoP2 .toptop .title {
    font-size: var(--fs22);
  }
  .basicInfoP2 .toptop .select {
    width: 100%;
    position: relative;
    margin-top: 0.5rem;
  }
  .basicInfoP2 .toptop .select .caption {
    height: 0.96rem;
    line-height: 0.94rem;
    width: 100%;
    padding: 0 0.75rem 0 0.3rem;
    font-size: var(--fs14);
  }
  .basicInfoP2 .toptop .select .caption::after {
    right: 0.3rem;
  }
  .basicInfoP2 .toptop .select .xlist {
    max-height: 4.3rem;
  }
  .basicInfoP2 .toptop .select .xlist a {
    line-height: 0.86rem;
    height: 0.86rem;
    font-size: var(--fs14);
    padding: 0 0.3rem;
  }
  .basicInfoP2 .list ul {
    margin: 0;
  }
  .basicInfoP2 .list li {
    padding: 0.3rem 0.3rem 0.3rem 2rem;
    height: auto;
  }
  .basicInfoP2 .list li .time {
    left: 0;
    top: 0.3rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .basicInfoP2 .list li .time em {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .basicInfoP2 .list li .state {
    width: 1.4rem;
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .basicInfoP2 .list li .name {
    white-space: normal;
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: auto;
  }
}
.goods {
  padding: 1.2rem 0 1.5rem;
}
.goods .content {
  margin: 0.3rem 0 0.8rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.goods .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.goods .layer {
  float: left;
  position: sticky;
  top: 0.9rem;
  width: 3.5rem;
}
.goods .layer .name {
  position: relative;
  height: 0.7rem;
  line-height: 0.7rem;
  background: #1d5dca;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  color: #fff;
}
.goods .layer .name::after {
  content: '';
  width: 11px;
  height: 7px;
  background: url(../img/ico3.png) no-repeat;
  position: absolute;
  right: 0.28rem;
  top: 50%;
  margin-top: -3px;
}
.goods .layer .botDiv {
  border: #eee solid 1px;
  border-top: none;
  padding: 0.3rem 0.3rem 0.15rem;
}
.goods .layer .zi {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.goods .layer .list li {
  font-size: var(--fs16);
}
.goods .layer .list li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  display: block;
  height: 0.42rem;
  line-height: 0.42rem;
  color: #333;
  padding-left: 25px;
}
.goods .layer .list li a em {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: #cdcdcd solid 1px;
}
.goods .layer .list li a em::before {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: #f39910;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goods .layer .list li a:hover {
  color: #f39910;
}
.goods .layer .list li a:hover em::before {
  opacity: 1;
  visibility: visible;
}
.goods .rightDiv {
  float: right;
  width: 11.05rem;
  position: relative;
}
.goods .rightDiv .imgDiv img {
  width: 100%;
}
.goods .rightDiv .links {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  z-index: 1;
  width: 100%;
  text-align: center;
  font-size: var(--fs20);
}
.goods .rightDiv .links a {
  padding: 0 0.48rem;
  color: #fff;
  position: relative;
}
.goods .rightDiv .links a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.goods .rightDiv .links a:last-child::after {
  display: none;
}
.goods .rightDiv .links a:hover {
  color: #f39910;
}
.goods .leftDiv {
  float: left;
  width: 11.05rem;
}
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  .goods .content {
    font-size: var(--fs14);
  }
}
@media (max-width: 1004px) {
  .goods {
    padding: 1rem 0 1.2rem;
  }
  .goods .content {
    margin: 0.5rem 0 0.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .goods .mxfDiv {
    position: relative;
    padding-left: 0;
  }
  .goods .layer {
    float: none;
    position: relative;
    width: auto;
    top: 0;
  }
  .goods .layer .name {
    height: 1.1rem;
    line-height: 1.1rem;
    padding-left: 0.3rem;
    font-size: var(--fs15);
  }
  .goods .layer .name::after {
    right: 0.35rem;
  }
  .goods .layer .botDiv {
    padding: 0.5rem 0.3rem 0.45rem;
  }
  .goods .layer .zi {
    font-size: var(--fs15);
    line-height: 0.42rem;
    margin-bottom: 0.2rem;
  }
  .goods .layer .list li {
    font-size: var(--fs14);
  }
  .goods .layer .list li a {
    height: 0.68rem;
    line-height: 0.68rem;
  }
  .goods .rightDiv {
    float: none;
    width: auto;
    margin-top: 0.6rem;
  }
  .goods .rightDiv .links {
    display: none;
  }
}
.news {
  padding: 1.3rem 0 1.4rem;
}
.news .part1 {
  margin-top: 0.6rem;
  height: 5.6rem;
  position: relative;
  z-index: 1;
}
.news .part1 .lunbo {
  width: 9.2rem;
  overflow: hidden;
  position: relative;
}
.news .part1 .lunbo .limg {
  width: 100%;
  height: 5.6rem;
}
.news .part1 .lunbo .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .part1 .lunbo .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.3rem;
  z-index: 2;
}
.news .part1 .lunbo .swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin: 0 6px!important;
  overflow: hidden;
}
.news .part1 .lunbo .swiper-pagination-bullet-active {
  background: #f39910;
}
.news .part1 .lie {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 6.84rem;
}
.news .part1 .lie ul {
  margin: 0;
}
.news .part1 .lie li {
  height: 1.6rem;
  margin-bottom: 8px;
}
.news .part1 .lie li:last-child {
  margin-bottom: 0;
}
.news .part1 .lie li a {
  display: block;
  height: 1.6rem;
  padding: 0.35rem 0.8rem 0 0.6rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.06);
}
.news .part1 .lie li a .time {
  font-family: "Din-M";
  font-size: var(--fs18);
  line-height: 0.2rem;
  margin-bottom: 0.1rem;
  color: #c9c9c9;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.news .part1 .lie li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 0.68rem;
  line-height: 0.34rem;
  overflow: hidden;
  font-size: var(--fs22);
  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;
}
.news .part1 .lie li a:hover {
  background: #1d5dca;
}
.news .part1 .lie li a:hover .time {
  color: rgba(201, 201, 201, 0.4);
}
.news .part1 .lie li a:hover .name {
  color: #fff;
}
.news .list {
  margin: 0.5rem 0 0.9rem;
}
.news .list ul {
  margin: 0;
}
.news .list li {
  border-bottom: #f0f0f0 solid 1px;
}
.news .list li a {
  display: block;
  height: 3rem;
  position: relative;
  padding: 0.65rem 2.35rem 0 3.8rem;
}
.news .list li .imgDiv {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1rem;
  width: 3.1rem;
  height: 2rem;
}
.news .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .list li .name {
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.4rem;
  line-height: 0.4rem;
  overflow: hidden;
  font-size: var(--fs24);
  color: #222;
  font-weight: bold;
  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 .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #666;
  text-align: justify;
}
.news .list li .time {
  padding-top: 0.35rem;
  font-size: var(--fs16);
  line-height: 0.18rem;
  color: rgba(0, 0, 0, 0.3);
  font-family: "Barlow-M";
}
.news .list li .ico {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
  width: 47px;
  height: 33px;
  border-radius: 24px;
  background: #f39910 url(../img/ico4.png) center no-repeat;
}
.news .list li a:hover .name {
  color: #1d5dca;
}
@media (max-width: 1600px) {
  .news .part1 .lie {
    width: 7.34rem;
  }
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0 1.1rem;
  }
  .news .part1 {
    margin-top: 0.7rem;
    height: auto;
  }
  .news .part1 .lunbo {
    width: 100%;
  }
  .news .part1 .lunbo .limg {
    height: 5rem;
  }
  .news .part1 .lunbo .swiper-pagination {
    bottom: 0.2rem;
  }
  .news .part1 .lunbo .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .news .part1 .lie {
    margin-top: 0.3rem;
    position: relative;
    top: 0;
    transform: translateY(0);
    width: auto;
  }
  .news .part1 .lie li {
    height: 2rem;
    margin-bottom: 0.2rem;
  }
  .news .part1 .lie li a {
    height: 2rem;
    padding: 0.35rem 0.3rem 0 0.3rem;
    border-radius: 0.12rem;
    box-shadow: 0px 5px 0.3rem 0px rgba(0, 0, 0, 0.06);
  }
  .news .part1 .lie li a .time {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .news .part1 .lie li a .name {
    max-height: 0.96rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .news .list {
    margin: 0.3rem 0 0.8rem;
  }
  .news .list li a {
    padding: 0.6rem 0 0 3.4rem;
  }
  .news .list li .imgDiv {
    width: 3rem;
  }
  .news .list li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
    height: 1.44rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .news .list li .content {
    display: none;
  }
  .news .list li .time {
    padding-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.32rem;
  }
  .news .list li .ico {
    display: none;
  }
}
.newsTop {
  padding: 0.85rem 0 0.6rem;
  border-bottom: #f39910 solid 1px;
}
.newsTop .name {
  width: 8.8rem;
  margin: 0 auto;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.6rem;
  padding-bottom: 0.4rem;
}
.newsTop .time {
  display: block;
  text-align: center;
  color: #333;
  font-size: var(--fs18);
  font-family: 'Barlow-L';
}
.newsTop .time img {
  margin-right: 15px;
  position: relative;
  top: -3px;
}
.newsBot {
  background: #f8f8f8;
  padding-bottom: 1.8rem;
}
.newsBot .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.newsBot .leftDiv {
  width: 11.96rem;
  float: left;
}
.newsBot .conDiv {
  background: #fff;
  padding: 0.8rem 1.36rem;
}
.newsBot .content {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  width: 100%!important;
}
.newsBot .backBtn {
  width: 100%;
}
.newsBot .backBtn 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: #d2d2d2 solid 1px;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
}
.newsBot .backBtn em {
  margin-left: 0.15rem;
  width: 15px;
  height: 13px;
  background: url(../img/ico5on.png) no-repeat;
}
.newsBot .backBtn a:hover {
  text-decoration: none;
  background: #f39910;
  border: none;
  color: #fff;
}
.newsBot .backBtn a:hover em {
  background: url(../img/ico5.png) no-repeat;
}
.madeDiv {
  padding: 0.4rem 0.3rem;
  background: #fff;
}
.pageDown li {
  font-size: var(--fs15);
  padding-bottom: 0.3rem;
}
.pageDown li em {
  color: #333;
  display: block;
  font-weight: bold;
  line-height: 0.3rem;
}
.pageDown li a {
  line-height: 0.24rem;
  overflow: hidden;
  color: #666;
}
.pageDown li a:hover {
  color: #f39910;
}
.sideNews {
  float: right;
  width: 3.4rem;
  padding: 0.45rem 0 0 0.5rem;
  position: sticky;
  top: 0.5rem;
}
.sideNews .title {
  font-size: var(--fs18);
  line-height: 0.18rem;
  font-weight: bold;
  margin: 0 0 0.16rem;
  color: #f39910;
}
.sideNews .list li {
  padding-bottom: 0.45rem;
}
.sideNews .list li .imgDiv img {
  width: 100%;
}
.sideNews .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.3rem;
  margin-top: 0.12rem;
  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: #f39910;
}
.sideNews .list li a:hover {
  text-decoration: none;
}
.sideNews .moreBtn {
  margin-top: 0.18rem;
}
.sideNews .moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #f39910;
  position: relative;
  overflow: hidden;
  width: 1.68rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.sideNews .moreBtn em {
  margin-left: 0.2rem;
  width: 16px;
  height: 12px;
  background: url(../img/ico5.png) no-repeat;
}
.sideNews .moreBtn a:hover {
  text-decoration: none;
}
@media (max-width: 1600px) {
  .newsBot .leftDiv {
    width: 12.28rem;
  }
  .sideNews {
    width: 3.72rem;
  }
}
@media (max-width: 1004px) {
  .newsTop .name {
    width: auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .newsTop .time {
    font-size: var(--fs15);
  }
  .newsTop .time img {
    margin-right: 0.2rem;
    width: 0.3rem;
    top: -1px;
  }
  .newsBot {
    padding-bottom: 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
  }
  .newsBot .conDiv {
    padding: 0.75rem 0.3rem 0.8rem;
  }
  .newsBot .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newsBot .content video {
    width: 100%!important;
    height: auto!important;
  }
  .newsBot .backBtn {
    margin: 0.2rem auto 0;
  }
  .newsBot .backBtn a {
    height: 0.86rem;
    font-size: var(--fs15);
  }
  .newsBot .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsBot .backBtn a:hover em {
    background-size: 10px;
  }
  .madeDiv {
    padding: 0.5rem 0.45rem;
  }
  .pageDown li em {
    line-height: 0.56rem;
  }
  .pageDown li a {
    line-height: 0.42rem;
  }
  .sideNews {
    width: auto;
    padding: 0.65rem 0 0;
  }
}
.honorP1 {
  padding: 1.2rem 0 0.9rem;
}
.honorP1 .title {
  font-size: var(--fs48);
  color: #222;
  line-height: 0.5rem;
  margin: 0;
  padding: 0.5rem 0 0.4rem;
  border-bottom: #e9e9e9 solid 1px;
  font-weight: bold;
}
.honorP1 .conDiv {
  padding: 0.6rem 0.8rem;
}
.honorP1 .zi {
  position: relative;
  font-size: var(--fs36);
  line-height: 0.72rem;
  color: #222;
  font-weight: bold;
}
.honorP1 .zi em {
  color: #f39910;
  font-family: "Mont-B";
}
.honorP1 .zi img {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.72rem;
}
.honorP1 .content {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  width: 82%;
}
.honorP1 .imgList ul {
  margin: 0;
}
.honorP1 .imgList li {
  float: left;
  width: 25%;
  text-align: center;
  position: relative;
  background: url(../img/taibg.png) repeat-x top 87% left;
}
.honorP1 .imgList li .box {
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.honorP1 .imgList li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.48rem;
  margin: 0 auto;
  height: 3.4rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}
.honorP1 .imgList li .imgDiv img {
  max-width: 2.48rem;
  max-height: 3.4rem;
}
.honorP1 .imgList li .name {
  width: 2.7rem;
  margin: 0 auto;
  font-size: var(--fs18);
  height: 0.72rem;
  line-height: 0.36rem;
  overflow: hidden;
  color: #444;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.honorP1 .imgList li:first-child::before,
.honorP1 .imgList li:nth-child(4n+1)::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: url("../img/taibg_l.png") no-repeat left top 87% #fff;
  width: 7.4375vw;
  left: 0;
}
.honorP1 .imgList li:last-child::before,
.honorP1 .imgList li:nth-child(4n)::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: url("../img/taibg_r.png") no-repeat right top 87% #fff;
  width: 7.4375vw;
  right: 0;
}
.honorP1 .imgList li .box:hover .name {
  color: #f39910;
}
.honorP2 {
  padding-bottom: 1rem;
}
.honorP2 .conDiv {
  border-top: #e9e9e9 solid 1px;
  padding: 0.6rem 0.8rem;
}
.honorP2 .zi {
  position: relative;
  font-size: var(--fs36);
  line-height: 0.72rem;
  color: #222;
  font-weight: bold;
}
.honorP2 .zi em {
  color: #f39910;
  font-family: "Mont-B";
}
.honorP2 .zi img {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.72rem;
}
.honorPic {
  padding-bottom: 0.65rem;
  position: relative;
  overflow: hidden;
}
.honorPic .imgList {
  position: relative;
  background: url(../img/taibg.png) repeat-x top 80% left;
}
.honorPic .imgList ul {
  margin: 0;
}
.honorPic .imgList::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: url("../img/taibg_l.png") no-repeat left top 80% #fff;
  width: 7.4375vw;
  left: 0;
}
.honorPic .imgList::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  background: url("../img/taibg_r.png") no-repeat right top 80% #fff;
  width: 7.4375vw;
  right: 0;
}
.honorPic .box {
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.honorPic .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.7rem;
  margin: 0 auto;
  height: 2.4rem;
  margin-bottom: 0.9rem;
}
.honorPic .imgDiv img {
  max-width: 2.7rem;
  max-height: 2.4rem;
}
.honorPic .name {
  text-align: center;
  width: 3rem;
  margin: 0 auto;
  font-size: var(--fs18);
  height: 0.72rem;
  line-height: 0.36rem;
  overflow: hidden;
  color: #444;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.honorPic .box:hover .name {
  color: #f39910;
}
.honorPic .swiper-btn {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: #dcdcdc solid 2px;
  border-radius: 50%;
}
.honorPic .swiper-btn:hover {
  border: #f39910 solid 2px;
}
.honorPic .prev {
  left: 50%;
  margin-left: -60px;
  background: url(../img/nimg12_left.png) center no-repeat;
}
.honorPic .prev:hover {
  background: #f39910 url(../img/nimg12_lefton.png) center no-repeat;
}
.honorPic .next {
  right: 50%;
  margin-right: -60px;
  background: url(../img/nimg12_right.png) center no-repeat;
}
.honorPic .next:hover {
  background: #f39910 url(../img/nimg12_righton.png) center no-repeat;
}
.honorP3 {
  padding-bottom: 1.15rem;
}
.honorP3 .conDiv {
  border-top: #e9e9e9 solid 1px;
  padding: 0.6rem 0.8rem 0.4rem;
}
.honorP3 .zi {
  position: relative;
  font-size: var(--fs36);
  line-height: 0.72rem;
  color: #222;
  font-weight: bold;
}
.honorP3 .zi em {
  color: #f39910;
  font-family: "Mont-B";
}
.honorP3 .zi img {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.72rem;
}
.honorP3 .list ul {
  margin-right: -0.25rem;
  margin-bottom: 0;
}
.honorP3 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.25rem;
}
.honorP3 .list li .box {
  position: relative;
  margin-right: 0.25rem;
  padding: 0 0.8rem 0 1.68rem;
  height: 1.1rem;
  background: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.08);
}
.honorP3 .list li .box::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -10px;
  width: 18px;
  height: 20px;
  background: url(../img/nimg18_3.png) no-repeat;
}
.honorP3 .list li .time {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.1rem;
  width: 1.38rem;
  text-align: center;
  font-size: var(--fs28);
  color: #777;
  font-family: "Mont-R";
}
.honorP3 .list li .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  width: 1px;
  height: 30px;
  background: #ededed;
}
.honorP3 .list li .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.1rem;
  font-size: var(--fs20);
  color: #333;
  line-height: 0.3rem;
}
.honorP4 {
  padding: 1.2rem 0 1.4rem;
  background: url(../img/honorP4.jpg) center no-repeat;
  background-size: cover;
}
.honorP4 .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
  margin: 0 0 0.6rem;
}
.honorP4 .list ul {
  margin-right: -0.75rem;
  margin-bottom: 0;
}
.honorP4 .list li {
  float: left;
  width: 33.33%;
  font-size: var(--fs20);
  color: #555;
}
.honorP4 .list li .box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 0.75rem;
  border-bottom: #e4e5e7 solid 1px;
  height: 0.7rem;
  padding-left: 0.45rem;
  background: url(../img/nimg16_1.png) left center no-repeat;
}
@media (max-width: 1004px) {
  .honorP1 {
    padding: 1rem 0 0.9rem;
  }
  .honorP1 .wrap {
    padding: 0;
  }
  .honorP1 .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
    padding: 0.6rem 0.3rem 0.4rem;
  }
  .honorP1 .conDiv {
    padding: 0.6rem 0.3rem;
  }
  .honorP1 .zi {
    font-size: var(--fs18);
  }
  .honorP1 .content {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
  }
  .honorP1 .imgList li {
    width: 50%;
    margin-bottom: 0.45rem;
  }
  .honorP1 .imgList li .imgDiv {
    width: 2.3rem;
    height: 3rem;
    margin-bottom: 0.8rem;
  }
  .honorP1 .imgList li .imgDiv img {
    max-width: 2.3rem;
    max-height: 3rem;
  }
  .honorP1 .imgList li .name {
    width: auto;
    padding: 0 0.2rem;
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.4rem;
  }
  .honorP1 .imgList li:first-child::before,
  .honorP1 .imgList li:nth-child(4n+1)::before {
    display: none;
  }
  .honorP1 .imgList li:last-child::before,
  .honorP1 .imgList li:nth-child(4n)::before {
    display: none;
  }
  .honorP2 {
    padding-bottom: 1rem;
  }
  .honorP2 .wrap {
    padding: 0;
  }
  .honorP2 .conDiv {
    padding: 0.6rem 0.3rem;
  }
  .honorP2 .zi {
    font-size: var(--fs18);
  }
  .honorP2 .content {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
  }
  .honorPic {
    padding-bottom: 1.2rem;
  }
  .honorPic .imgList {
    position: relative;
    background: url(../img/taibg.png) repeat-x top 80% left;
  }
  .honorPic .imgList::before {
    display: none;
  }
  .honorPic .imgList::after {
    display: none;
  }
  .honorPic .imgDiv {
    width: 2.3rem;
    height: 3rem;
    margin-bottom: 0.8rem;
  }
  .honorPic .imgDiv img {
    max-width: 2.3rem;
    max-height: 3rem;
  }
  .honorPic .name {
    width: auto;
    padding: 0 0.2rem;
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.4rem;
  }
  .honorPic .swiper-btn {
    width: 0.9rem;
    height: 0.9rem;
  }
  .honorPic .prev {
    margin-left: -1rem;
  }
  .honorPic .next {
    margin-right: -1rem;
  }
  .honorP3 {
    padding-bottom: 1rem;
  }
  .honorP3 .conDiv {
    padding: 0.6rem 0;
  }
  .honorP3 .zi {
    font-size: var(--fs18);
  }
  .honorP3 .list ul {
    margin-right: 0;
  }
  .honorP3 .list li {
    float: none;
    width: auto;
  }
  .honorP3 .list li .box {
    margin-right: 0;
    padding: 0.2rem 0.85rem 0.2rem 1.68rem;
    height: auto;
  }
  .honorP3 .list li .box::after {
    right: 0.3rem;
  }
  .honorP3 .list li .time {
    top: 50%;
    margin-top: -0.24rem;
    line-height: 0.48rem;
    width: 1.4rem;
    font-size: var(--fs14);
  }
  .honorP3 .list li .time::after {
    top: 0;
    margin-top: 0;
    height: 100%;
  }
  .honorP3 .list li .name {
    display: block;
    height: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .honorP4 {
    padding: 1rem 0 1.1rem;
  }
  .honorP4 .title {
    font-size: var(--fs22);
    line-height: 0.6rem;
    margin: 0 0 0.5rem;
  }
  .honorP4 .list ul {
    margin-right: 0;
  }
  .honorP4 .list li {
    float: none;
    width: auto;
    font-size: var(--fs14);
  }
  .honorP4 .list li .box {
    display: block;
    margin-right: 0;
    height: auto;
    line-height: 0.48rem;
    padding: 0.2rem 0.45rem;
    background-size: 14px;
  }
}
.product {
  padding: 1.2rem 0 1.5rem;
}
.product .content {
  margin: 0.3rem 0 0.8rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.product .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.product .leftDiv {
  width: 3.5rem;
}
.product .leftDiv .name {
  position: relative;
  height: 0.7rem;
  line-height: 0.7rem;
  background: #1d5dca;
  padding-left: 0.3rem;
  font-size: var(--fs16);
  color: #fff;
}
.product .leftDiv .name::after {
  content: '';
  width: 11px;
  height: 7px;
  background: url(../img/ico3.png) no-repeat;
  position: absolute;
  right: 0.28rem;
  top: 50%;
  margin-top: -3px;
}
.product .leftDiv .botDiv {
  border: #eee solid 1px;
  border-top: none;
  padding: 0.3rem 0.3rem 0;
}
.product .leftDiv .zi {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.product .leftDiv .lie {
  padding-bottom: 0.2rem;
}
.product .leftDiv .lie ul {
  margin: 0;
}
.product .leftDiv .lie li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  font-size: var(--fs16);
  position: relative;
  display: block;
  height: 0.42rem;
  line-height: 0.42rem;
  color: #333;
  padding-left: 25px;
}
.product .leftDiv .lie li em {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: #cdcdcd solid 1px;
}
.product .leftDiv .lie li em::before {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  border-radius: 50%;
  background: #f39910;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .leftDiv .lie .on {
  color: #f39910;
}
.product .leftDiv .lie .on em::before {
  opacity: 1;
  visibility: visible;
}
.product .rightDiv {
  position: relative;
  width: 11.05rem;
}
.product .list ul {
  margin-right: -0.42rem;
  margin-bottom: 0;
}
.product .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.65rem;
}
.product .list li .box {
  margin-right: 0.42rem;
}
.product .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #f5f5f5;
  height: 2.4rem;
}
.product .list li .imgDiv img {
  max-width: 3rem;
  max-height: 2rem;
  mix-blend-mode: multiply;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.product .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.25rem;
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li .type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 5px;
  font-size: var(--fs16);
  height: 0.26rem;
  line-height: 0.26rem;
  color: #666;
}
.product .list li .type strong {
  color: #333;
}
.product .list li .scene {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs16);
  height: 0.26rem;
  line-height: 0.26rem;
  color: #666;
}
.product .list li .scene strong {
  color: #333;
}
.product .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: var(--fs16);
  height: 0.26rem;
  line-height: 0.26rem;
  height: 1.04rem;
  color: #666;
}
.product .list li .msg strong {
  color: #333;
}
.product .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list li .box:hover .name {
  color: #f39910;
}
.screenOpen {
  position: fixed;
  z-index: 4;
  left: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #f39910;
  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%);
}
.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: #f39910;
  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%);
}
.screenClose.on {
  right: 0;
}
@media (max-width: 1600px) {
  .product .rightDiv {
    width: 11.5rem;
  }
}
@media (max-width: 1004px) {
  .product {
    padding: 1rem 0 1.2rem;
  }
  .product .content {
    margin: 0.5rem 0 0.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .product .mxfDiv {
    position: relative;
  }
  .product .leftDiv {
    float: none;
    background: #fff;
    width: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 10;
    overflow: auto;
  }
  .product .leftDiv .name {
    height: 1.1rem;
    line-height: 1.1rem;
    padding-left: 0.3rem;
    font-size: var(--fs15);
  }
  .product .leftDiv .name::after {
    right: 0.35rem;
  }
  .product .leftDiv .botDiv {
    padding: 0.5rem 0.3rem 0.45rem;
  }
  .product .leftDiv .zi {
    font-size: var(--fs15);
    line-height: 0.42rem;
    margin-bottom: 0.2rem;
  }
  .product .leftDiv .lie li {
    font-size: var(--fs14);
    height: 0.68rem;
    line-height: 0.68rem;
  }
  .product .rightDiv {
    margin-top: 0.6rem;
    width: auto;
    float: none;
  }
  .product .list {
    padding-bottom: 0.4rem;
  }
  .product .list ul {
    margin-right: -0.2rem;
  }
  .product .list li {
    width: 50%;
    margin-bottom: 0.5rem;
  }
  .product .list li .box {
    margin-right: 0.2rem;
  }
  .product .list li .imgDiv {
    height: 2rem;
  }
  .product .list li .name {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .product .list li .type {
    font-size: var(--fs14);
    height: 0.42rem;
    line-height: 0.42rem;
  }
  .product .list li .scene {
    font-size: var(--fs14);
    height: 0.42rem;
    line-height: 0.42rem;
  }
  .product .list li .msg {
    display: none;
  }
  .screenOpen {
    left: 0;
  }
}
.productP1 {
  padding: 1.4rem 0 1.2rem;
  overflow: hidden;
}
.productP1 .backBtn {
  margin-bottom: 0.6rem;
}
.productP1 .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.6rem;
  height: 0.5rem;
  border: #f39910 solid 1px;
  border-radius: 0.48rem;
  color: #f39910;
  font-size: var(--fs16);
}
.productP1 .backBtn a:hover {
  background: #f39910;
  color: #fff;
}
.productP1 .leftImg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 50%;
  height: 4.5rem;
}
.productP1 .leftImg img {
  max-width: 6.6rem;
  max-height: 4.5rem;
}
.productP1 .rightCon {
  width: 43%;
}
.productP1 .name {
  margin: 0;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
  padding-bottom: 0.35rem;
  border-bottom: #e5e5e5 solid 1px;
}
.productP1 .msgList {
  margin-top: 0.3rem;
}
.productP1 .msgList li {
  font-size: var(--fs16);
  line-height: 0.32rem;
  margin-bottom: 0.35rem;
}
.productP1 .msgList li strong {
  color: #333;
  display: block;
}
.productP1 .msgList li:last-child {
  margin-bottom: 0;
}
.productP1 .btnDiv {
  margin-top: 0.5rem;
}
.productP1 .btnDiv a {
  display: block;
  background: #f5b00e;
  position: relative;
  overflow: hidden;
  width: 1.6rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  text-align: center;
  font-size: var(--fs16);
}
.productP1 .btnDiv a:hover {
  background: #f39910;
}
.labelNav {
  position: relative;
  width: 100%;
  background: #fff;
}
.labelNav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f6f6f6;
}
.labelNav .list {
  position: relative;
  z-index: 1;
  border-radius: 0.48rem;
  overflow: hidden;
  border: #f6f6f6 solid 1px;
}
.labelNav .list li {
  float: left;
}
.labelNav .list li a {
  display: block;
  width: 1.8rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  text-align: center;
  line-height: 0.52rem;
  font-size: var(--fs16);
  color: #666;
}
.labelNav .list li .aNow {
  color: #fff;
  background: #f5b00e;
}
.labelNav.mini {
  position: fixed;
  left: 0;
  top: 0.9rem;
  z-index: 4;
}
.productP2 {
  padding: 0.95rem 0 1.2rem;
}
.productP2 .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #333;
  margin: 0 0 0.6rem;
  font-weight: bold;
}
.productP2 .table table {
  border-left: #e0e0e0 solid 1px;
}
.productP2 .table table th {
  height: 0.6rem;
  background: #1d5dca;
  padding-left: 1rem;
  color: #fff;
  font-size: var(--fs18);
  width: 40%;
  border-right: #3f75d2 solid 1px;
  text-align: left;
}
.productP2 .table table th:nth-child(2) {
  width: 60%;
}
.productP2 .table table td {
  min-height: 0.6rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  padding: 0.15rem 0.5rem 0.15rem 1rem;
  border-right: #e0e0e0 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
}
.productP2 .table table tr:nth-child(odd) td {
  background: #f5f5f5;
}
.productP2.on {
  padding: 1.47rem 0 1.2rem;
}
.productP3 {
  padding-bottom: 0.8rem;
}
.productP3 .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #333;
  margin: 0 0 0.6rem;
  font-weight: bold;
}
.productP3 .list ul {
  margin-right: -0.4rem;
}
.productP3 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.4rem;
}
.productP3 .list li .box {
  margin-right: 0.4rem;
}
.productP3 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 4.52rem;
}
.productP3 .list li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.productP4 {
  padding-bottom: 0.6rem;
}
.productP4 .title {
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #333;
  margin: 0 0 0.6rem;
  font-weight: bold;
}
.productP4 .list ul {
  margin-right: -0.4rem;
  margin-bottom: 0;
}
.productP4 .list li {
  float: left;
  width: 25%;
  margin-bottom: 0.4rem;
}
.productP4 .list li .box {
  margin-right: 0.4rem;
}
.productP4 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #f5f5f5;
  height: 2.4rem;
  overflow: hidden;
}
.productP4 .list li .imgDiv img {
  max-width: 3rem;
  max-height: 2rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.productP4 .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  height: 0.44rem;
  line-height: 0.44rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP4 .list li .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: var(--fs16);
  line-height: 0.26rem;
  height: 1.04rem;
  color: #666;
}
.productP4 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.productP4 .list li .box:hover .name {
  color: #f39910;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 1rem 0 0.9rem;
  }
  .productP1 .backBtn a {
    width: 2.3rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .productP1 .leftImg {
    float: none;
    width: auto;
  }
  .productP1 .leftImg img {
    max-width: 6rem;
  }
  .productP1 .rightCon {
    margin-top: 0.7rem;
    width: auto;
    float: none;
  }
  .productP1 .name {
    margin: 0;
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .productP1 .msgList {
    margin-top: 0.5rem;
  }
  .productP1 .msgList li {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP1 .btnDiv a {
    width: 2.3rem;
    height: 0.86rem;
    line-height: 0.86rem;
    font-size: var(--fs14);
  }
  .productP2 {
    padding: 0 0 1rem;
  }
  .productP2 .title {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .productP2 .table table th {
    height: 0.9rem;
    padding-left: 0.3rem;
    font-size: var(--fs15);
    width: 30%;
  }
  .productP2 .table table th:nth-child(2) {
    width: 70%;
  }
  .productP2 .table table td {
    min-height: 0.9rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.15rem 0.3rem;
  }
  .productP2.on {
    padding: 0 0 1rem;
  }
  .productP3 .title {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .productP3 .list ul {
    margin-right: 0;
  }
  .productP3 .list li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .productP3 .list li .box {
    margin-right: 0;
  }
  .productP3 .list li .imgDiv {
    height: auto;
  }
  .productP3 .list li .imgDiv img {
    width: 100%;
    height: auto;
  }
  .productP4 {
    padding-bottom: 0.6rem;
  }
  .productP4 .title {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .productP4 .list ul {
    margin-right: -0.2rem;
  }
  .productP4 .list li {
    width: 50%;
  }
  .productP4 .list li .box {
    margin-right: 0.2rem;
  }
  .productP4 .list li .imgDiv {
    height: 2rem;
  }
  .productP4 .list li .name {
    height: 0.5rem;
    line-height: 0.5rem;
    font-size: var(--fs15);
  }
  .productP4 .list li .msg {
    display: none;
  }
}
.goodsP1 {
  padding-top: 8rem;
  height: 12.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.goodsP1 .carBg {
  position: absolute;
  left: 50%;
  top: 1.88rem;
  width: 11.3rem;
  height: 5.42rem;
  margin-left: -5.65rem;
}
.goodsP1 .carBg li {
  position: absolute;
  z-index: 1;
  color: #f39910;
  width: 0.36rem;
  height: 0.36rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodsP1 .carBg li em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  text-align: center;
  line-height: 0.28rem;
  margin-left: -0.14rem;
  margin-top: -0.14rem;
  background: #fff;
  border-radius: 50%;
}
.goodsP1 .carBg li:nth-child(1) {
  left: 5.7rem;
  top: 2rem;
}
.goodsP1 .carBg li:nth-child(2) {
  left: 4.52rem;
  top: 1.95rem;
}
.goodsP1 .carBg li:nth-child(3) {
  left: 6.8rem;
  top: 2.44rem;
}
.goodsP1 .carBg li:nth-child(4) {
  right: 2.75rem;
  top: 0.62rem;
}
.goodsP1 .carBg li:nth-child(5) {
  right: 4.18rem;
  top: 3.6rem;
}
.goodsP1 .carBg li:nth-child(6) {
  right: 3.18rem;
  top: 1.12rem;
}
.goodsP1 .carBg li:nth-child(7) {
  left: 4.56rem;
  top: 1.44rem;
}
.goodsP1 .carBg li:nth-child(8) {
  right: 3.76rem;
  top: 2.76rem;
}
.goodsP1 .carBg li:nth-child(9) {
  right: 1.8rem;
  top: 0.3rem;
}
.goodsP1 .carBg li:nth-child(10) {
  right: 0.85rem;
  top: 0.92rem;
}
.goodsP1 .carBg li:nth-child(11) {
  left: 3.7rem;
  top: 4.04rem;
}
.goodsP1 .carBg li:nth-child(12) {
  left: 3rem;
  top: 3.98rem;
}
.goodsP1 .carBg li:nth-child(13) {
  left: 4.36rem;
  top: 2.78rem;
}
.goodsP1 .carBg li:nth-child(14) {
  left: 2.2rem;
  top: 3.66rem;
}
.goodsP1 .carBg li:nth-child(15) {
  left: 6.34rem;
  top: 2.2rem;
}
.goodsP1 .carBg li:nth-child(16) {
  left: 4.06rem;
  top: 2.16rem;
}
.goodsP1 .carBg li:nth-child(17) {
  left: 1.8rem;
  top: 4.22rem;
}
.goodsP1 .carBg li:nth-child(18) {
  left: 5.18rem;
  top: 0.24rem;
}
.goodsP1 .carBg li:nth-child(19) {
  left: 4.98rem;
  top: 3.28rem;
}
.goodsP1 .carBg li:nth-child(20) {
  left: 5.96rem;
  top: 3.48rem;
}
.goodsP1 .carBg li:nth-child(21) {
  right: 3.38rem;
  top: 3.18rem;
}
.goodsP1 .carBg li:nth-child(22) {
  right: 2.22rem;
  top: 2.48rem;
}
.goodsP1 .carBg li:nth-child(23) {
  left: 2.66rem;
  top: 2.58rem;
}
.goodsP1 .carBg li:nth-child(24) {
  left: 2.7rem;
  top: 3.5rem;
}
.goodsP1 .carBg li:nth-child(25) {
  left: 3.38rem;
  top: 3.18rem;
}
.goodsP1 .carBg .on {
  color: #fff;
}
.goodsP1 .carBg .on em {
  background: #f39910;
}
.goodsP1 .links {
  margin-bottom: 0.35rem;
  text-align: center;
}
.goodsP1 .links a {
  font-size: var(--fs20);
  line-height: 0.24rem;
  display: inline-block;
  padding: 0 0.48rem;
  color: #fff;
  position: relative;
}
.goodsP1 .links a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.goodsP1 .links a:last-child::after {
  display: none;
}
.goodsP1 .links a:hover {
  color: #f39910;
}
.goodsP1 .links .on {
  color: #f39910;
}
.goodsP1 .choose_txt ul {
  margin-right: -0.18rem;
}
.goodsP1 .choose_txt li {
  float: left;
  width: 14.28%;
  margin-bottom: 0.18rem;
  font-size: var(--fs16);
}
.goodsP1 .choose_txt li .box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  margin-right: 0.18rem;
  border-radius: 4px;
  border: rgba(255, 255, 255, 0.4) solid 1px;
  height: 0.76rem;
  color: #fff;
  line-height: 0.2rem;
  padding: 0 0.2rem 0 0.8rem;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodsP1 .choose_txt li .num {
  position: absolute;
  left: 0.3rem;
  top: 50%;
  margin-top: -0.18rem;
  color: #f39910;
  width: 0.36rem;
  height: 0.36rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.goodsP1 .choose_txt li .num em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  text-align: center;
  line-height: 0.28rem;
  margin-left: -0.14rem;
  margin-top: -0.14rem;
  background: #fff;
  border-radius: 50%;
}
.goodsP1 .choose_txt .on .box {
  border: #1d5dca solid 1px;
  background: #1d5dca;
}
.goodsP1 .choose_txt .on .num {
  color: #fff;
}
.goodsP1 .choose_txt .on .num em {
  background: #f39910;
}
.goodsP1.other {
  padding-top: 2rem;
  height: 7.8rem;
}
.goodsP2 {
  padding: 1.2rem 0 1.4rem;
}
.goodsP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #222;
  font-weight: bold;
  margin: 0 0 0.4rem;
}
.goodsP2 .backBtn {
  width: 1.6rem;
  margin: 0.6rem auto 0;
}
.goodsP2 .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.5rem;
  border: #f39910 solid 1px;
  border-radius: 0.48rem;
  color: #f39910;
  font-size: var(--fs16);
}
.goodsP2 .backBtn a:hover {
  background: #f39910;
  color: #fff;
}
.live-action {
  position: relative;
  width: 100%;
  padding-bottom: 1rem;
}
.live-action .swiper-container {
  overflow: hidden;
}
.live-action li {
  padding: 0.2rem 0;
}
.live-action li a {
  overflow: hidden;
  display: block;
  position: relative;
}
.live-action li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #f5f5f5;
  height: 2.5rem;
  position: relative;
  overflow: hidden;
}
.live-action li .imgDiv img {
  max-width: 3rem;
  max-height: 2rem;
  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;
  margin-top: 0.2rem;
  height: 0.42rem;
  line-height: 0.42rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.live-action li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.live-action li a:hover .name {
  color: #f39910;
}
.live-action .swiper-btn {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: #dcdcdc solid 2px;
  border-radius: 50%;
}
.live-action .swiper-btn:hover {
  border: #f39910 solid 2px;
}
.live-action .prev {
  left: 50%;
  margin-left: -60px;
  background: url(../img/nimg12_left.png) center no-repeat;
}
.live-action .prev:hover {
  background: #f39910 url(../img/nimg12_lefton.png) center no-repeat;
}
.live-action .next {
  right: 50%;
  margin-right: -60px;
  background: url(../img/nimg12_right.png) center no-repeat;
}
.live-action .next:hover {
  background: #f39910 url(../img/nimg12_righton.png) center no-repeat;
}
.goodsP3 {
  padding-top: 8rem;
  height: 12.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.goodsP3 .carBg {
  position: absolute;
  left: 50%;
  top: 1.88rem;
  width: 11.3rem;
  height: 5.42rem;
  margin-left: -5.65rem;
}
.goodsP3 .carBg li {
  position: absolute;
  z-index: 1;
  color: #f39910;
  width: 0.36rem;
  height: 0.36rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodsP3 .carBg li em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  text-align: center;
  line-height: 0.28rem;
  margin-left: -0.14rem;
  margin-top: -0.14rem;
  background: #fff;
  border-radius: 50%;
}
.goodsP3 .carBg li:nth-child(1) {
  left: 7rem;
  top: 2rem;
}
.goodsP3 .carBg li:nth-child(2) {
  left: 6.1rem;
  top: 0.4rem;
}
.goodsP3 .carBg li:nth-child(3) {
  right: 2.2rem;
  top: 0.62rem;
}
.goodsP3 .carBg li:nth-child(4) {
  left: 4.56rem;
  top: 0.92rem;
}
.goodsP3 .carBg li:nth-child(5) {
  left: 6.28rem;
  top: 2.6rem;
}
.goodsP3 .carBg li:nth-child(6) {
  left: 5rem;
  top: 3.2rem;
}
.goodsP3 .carBg li:nth-child(7) {
  left: 3.64rem;
  top: 2.44rem;
}
.goodsP3 .carBg li:nth-child(8) {
  left: 2.56rem;
  top: 3.16rem;
}
.goodsP3 .carBg .on {
  color: #fff;
}
.goodsP3 .carBg .on em {
  background: #f39910;
}
.goodsP3 .links {
  margin-bottom: 0.35rem;
  text-align: center;
}
.goodsP3 .links a {
  font-size: var(--fs20);
  line-height: 0.24rem;
  display: inline-block;
  padding: 0 0.48rem;
  color: #fff;
  position: relative;
}
.goodsP3 .links a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.goodsP3 .links a:last-child::after {
  display: none;
}
.goodsP3 .links a:hover {
  color: #f39910;
}
.goodsP3 .links .on {
  color: #f39910;
}
.goodsP3 .choose_txt ul {
  margin-right: -0.18rem;
}
.goodsP3 .choose_txt li {
  float: left;
  width: 14.28%;
  margin-bottom: 0.18rem;
  font-size: var(--fs16);
}
.goodsP3 .choose_txt li .box {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  margin-right: 0.18rem;
  border-radius: 4px;
  border: rgba(255, 255, 255, 0.4) solid 1px;
  height: 0.76rem;
  color: #fff;
  line-height: 0.2rem;
  padding: 0 0.2rem 0 0.8rem;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodsP3 .choose_txt li .num {
  position: absolute;
  left: 0.3rem;
  top: 50%;
  margin-top: -0.18rem;
  color: #f39910;
  width: 0.36rem;
  height: 0.36rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.goodsP3 .choose_txt li .num em {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  text-align: center;
  line-height: 0.28rem;
  margin-left: -0.14rem;
  margin-top: -0.14rem;
  background: #fff;
  border-radius: 50%;
}
.goodsP3 .choose_txt .on .box {
  border: #1d5dca solid 1px;
  background: #1d5dca;
}
.goodsP3 .choose_txt .on .num {
  color: #fff;
}
.goodsP3 .choose_txt .on .num em {
  background: #f39910;
}
@media (max-width: 1004px) {
  .goodsP1 {
    padding-top: 4.6rem;
    height: 6.3rem;
  }
  .goodsP1 .wrap {
    padding: 0;
  }
  .goodsP1 .carBg {
    display: none;
  }
  .goodsP1 .links {
    margin-bottom: 0;
  }
  .goodsP1 .links a {
    font-size: var(--fs14);
    line-height: 0.34rem;
    padding: 0 0.1rem;
  }
  .goodsP1 .choose_txt {
    display: none;
  }
  .goodsP2 {
    padding: 1rem 0 1.1rem;
  }
  .goodsP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .goodsP2 .backBtn {
    width: 2.3rem;
    margin: 0.7rem auto 0;
  }
  .goodsP2 .backBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .live-action {
    padding-bottom: 1.2rem;
  }
  .live-action li .imgDiv {
    height: 2rem;
  }
  .live-action li .name {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .live-action .swiper-btn {
    width: 0.9rem;
    height: 0.9rem;
  }
  .live-action .prev {
    margin-left: -1rem;
  }
  .live-action .next {
    margin-right: -1rem;
  }
  .goodsP3 {
    padding-top: 4.6rem;
    height: 6.3rem;
  }
  .goodsP3 .wrap {
    padding: 0;
  }
  .goodsP3 .carBg {
    display: none;
  }
  .goodsP3 .links {
    margin-bottom: 0;
  }
  .goodsP3 .links a {
    font-size: var(--fs14);
    line-height: 0.34rem;
    padding: 0 0.1rem;
  }
  .goodsP3 .choose_txt {
    display: none;
  }
}
.globalP1 {
  padding: 1.2rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}
.globalP1::after {
  position: absolute;
  right: 0;
  bottom: 1rem;
  content: 'Global';
  font-size: 4rem;
  line-height: 3rem;
  color: #f1f3f5;
  font-family: 'Mont-R';
}
.globalP1 .msg {
  margin: 0.35rem auto 0.65rem;
  width: 12.5rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.globalP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  z-index: 1;
}
.globalP1 .leftDiv {
  padding-left: 0.2rem;
  width: 2.4rem;
}
.globalP1 .leftDiv li {
  padding: 0.32rem 0;
  position: relative;
}
.globalP1 .leftDiv li .pj {
  height: 0.85rem;
}
.globalP1 .leftDiv li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.globalP1 .leftDiv li .num em {
  font-family: 'Din-B';
  font-size: 0.9rem;
  line-height: 0.72rem;
  padding-right: 0.1rem;
  color: #f39910;
}
.globalP1 .leftDiv li .num span {
  font-size: 0.7rem;
  line-height: 0.72rem;
  color: #f39910;
  font-weight: bold;
  padding-right: 0.1rem;
}
.globalP1 .leftDiv li p {
  font-size: var(--fs18);
  height: 0.72rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.globalP1 .leftDiv li .wen {
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.globalP1 .earthDiv {
  width: 7.82rem;
  height: 7.82rem;
  position: relative;
}
.globalP1 .earthDiv .bg {
  position: relative;
  z-index: 1;
}
.globalP1 .earthDiv .bg img {
  width: 100%;
}
.globalP1 .earthDiv::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.6rem;
  height: 7.6rem;
  margin: -3.8rem 0 0 -3.8rem;
  border: solid 1px #d5e1f5;
  border-radius: 50%;
  box-sizing: border-box;
  animation: mapAddress 5s 2.5s linear infinite;
}
.globalP1 .earthDiv::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.6rem;
  height: 7.6rem;
  margin: -3.8rem 0 0 -3.8rem;
  border: solid 1px #d5e1f5;
  border-radius: 50%;
  box-sizing: border-box;
  animation: mapAddress 5s linear infinite;
}
.globalP1 .earthDiv .list li {
  position: absolute;
  z-index: 1;
  font-size: var(--fs18);
  color: #222;
}
.globalP1 .earthDiv .list li:nth-child(1) {
  left: 45.4%;
  top: 52.1%;
  line-height: 0.6rem;
  padding-left: 0.58rem;
}
.globalP1 .earthDiv .list li:nth-child(1) .ico {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.6rem;
  height: 0.6rem;
  border: #dde7f7 solid 1px;
  border-radius: 50%;
}
.globalP1 .earthDiv .list li:nth-child(1) .ico em {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.15rem;
  margin-top: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #8eaee4 solid 1px;
}
.globalP1 .earthDiv .list li:nth-child(1) .ico em::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #1d5dca;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.globalP1 .earthDiv .list li:nth-child(1) .ico em::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
  margin-left: -0.02rem;
  margin-top: -0.02rem;
}
.globalP1 .earthDiv .list li:nth-child(1) .ico span {
  position: absolute;
  left: 0.15rem;
  top: 0.1rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/nimg20_1.png) no-repeat;
  background-size: 0.2rem;
}
.globalP1 .earthDiv .list li:nth-child(1) strong {
  position: absolute;
  top: 0;
  left: -0.7rem;
  font-size: var(--fs20);
}
.globalP1 .earthDiv .list li:nth-child(2) {
  left: 34.5%;
  top: 20.7%;
  padding-right: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(2) .ico {
  right: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(3) {
  left: 51.2%;
  top: 24.3%;
  padding-left: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(3) .ico {
  left: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(4) {
  left: 53.9%;
  top: 30.7%;
  padding-left: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(4) .ico {
  left: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(5) {
  left: 50.1%;
  top: 36%;
  padding-left: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(5) .ico {
  left: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(6) {
  left: 32.6%;
  top: 39%;
  padding-right: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(6) .ico {
  right: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(7) {
  left: 49.1%;
  top: 43%;
  padding-left: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(7) .ico {
  left: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(8) {
  left: 32%;
  top: 45.8%;
  padding-right: 0.4rem;
}
.globalP1 .earthDiv .list li:nth-child(8) .ico {
  right: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(9) {
  left: 23.3%;
  top: 64%;
  padding-top: 0.36rem;
}
.globalP1 .earthDiv .list li:nth-child(9) .ico {
  right: 0;
  top: 0;
}
.globalP1 .earthDiv .list li:nth-child(10) {
  left: 60%;
  top: 72.6%;
  padding-top: 0.36rem;
}
.globalP1 .earthDiv .list li:nth-child(10) .ico {
  right: 0;
  top: 0;
}
.globalP1 .earthDiv .list .blue {
  line-height: 0.3rem;
}
.globalP1 .earthDiv .list .blue .ico {
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #8eaee4 solid 1px;
}
.globalP1 .earthDiv .list .blue .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #1d5dca;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.globalP1 .earthDiv .list .blue .ico::after {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.04rem;
  height: 0.04rem;
  background: #fff;
  border-radius: 50%;
  margin-left: -0.02rem;
  margin-top: -0.02rem;
}
.globalP1 .earthDiv .list .orange {
  line-height: 0.26rem;
}
.globalP1 .earthDiv .list .orange .ico {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #f9cc87 solid 1px;
}
.globalP1 .earthDiv .list .orange .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.14rem;
  height: 0.14rem;
  background: #f39910;
  border-radius: 50%;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
}
.globalP1 .rightDiv {
  width: 3.4rem;
  padding-right: 0.2rem;
}
.globalP1 .rightDiv .kuang {
  padding: 0.4rem 0.3rem 0;
  height: 2.15rem;
  background: #f1f1f1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.globalP1 .rightDiv .kuang::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0054a2;
}
.globalP1 .rightDiv .kuang ul {
  margin: 0;
}
.globalP1 .rightDiv .kuang li {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.26rem;
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.3rem;
}
.globalP1 .rightDiv .kuang li::before {
  content: '';
  position: absolute;
  left: 3px;
}
.globalP1 .rightDiv .kuang li:last-child {
  margin-bottom: 0;
}
.globalP1 .rightDiv .kuang li:nth-child(1)::before {
  width: 0.2rem;
  height: 0.2rem;
  background: url(../img/nimg20_1.png) no-repeat;
  background-size: 0.2rem;
  left: 0;
  top: 0.04rem;
}
.globalP1 .rightDiv .kuang li:nth-child(2)::before {
  width: 0.16rem;
  height: 0.16rem;
  background: #1d5dca;
  top: 0.06rem;
  border-radius: 50%;
}
.globalP1 .rightDiv .kuang li:nth-child(3)::before {
  width: 0.16rem;
  height: 0.16rem;
  background: #f39910;
  top: 0.06rem;
  border-radius: 50%;
}
.globalP1 .rightDiv .botbot {
  margin-top: 0.3rem;
}
.globalP1 .rightDiv .botbot ul {
  margin: 0;
}
.globalP1 .rightDiv .botbot li {
  position: relative;
  float: left;
  padding-left: 0.3rem;
  line-height: 0.3rem;
  font-size: var(--fs20);
  font-weight: bold;
  color: #333;
  margin-right: 0.5rem;
}
.globalP1 .rightDiv .botbot li::before {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #1d5dca;
  left: 0;
  top: 50%;
  margin-top: -0.1rem;
  border-radius: 50%;
}
.globalP1 .rightDiv .botbot li:nth-child(2)::before {
  background: #f39910;
}
.globalP2 {
  background: #f8f8f8;
  padding: 1.3rem 0 0.9rem;
}
.globalP2 .msg {
  margin: 0.3rem 0 0.5rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.32rem;
}
.globalP2 .mapDiv {
  position: relative;
}
.globalP2 .mapDiv .imgDiv img {
  width: 100%;
}
.globalP2 .mapDiv .list li {
  position: absolute;
  z-index: 1;
  width: 0.16rem;
  height: 0.24rem;
  background: url(../img/nimg16_2.png) center top no-repeat;
  background-size: 0.16rem;
}
.globalP2 .mapDiv .list li:nth-child(1) {
  width: 0.96rem;
  padding-top: 0.6rem;
  left: 35.8%;
  top: 32.6%;
  background: url(../img/nimg38_1.png) center top no-repeat;
  background-size: 0.38rem;
}
.globalP2 .mapDiv .list li:nth-child(2) {
  left: 9.4%;
  top: 21.9%;
}
.globalP2 .mapDiv .list li:nth-child(3) {
  left: 12.8%;
  top: 18.1%;
}
.globalP2 .mapDiv .list li:nth-child(4) {
  left: 13.6%;
  top: 17.1%;
}
.globalP2 .mapDiv .list li:nth-child(5) {
  left: 14.5%;
  top: 16%;
}
.globalP2 .mapDiv .list li:nth-child(6) {
  left: 17.6%;
  top: 12.8%;
}
.globalP2 .mapDiv .list li:nth-child(7) {
  left: 20.4%;
  top: 13.8%;
}
.globalP2 .mapDiv .list li:nth-child(8) {
  left: 21.5%;
  top: 8%;
}
.globalP2 .mapDiv .list li:nth-child(9) {
  left: 15.1%;
  top: 20.1%;
}
.globalP2 .mapDiv .list li:nth-child(10) {
  left: 15.5%;
  top: 24.7%;
}
.globalP2 .mapDiv .list li:nth-child(11) {
  left: 15.2%;
  top: 27.4%;
}
.globalP2 .mapDiv .list li:nth-child(12) {
  left: 17.4%;
  top: 25.8%;
}
.globalP2 .mapDiv .list li:nth-child(13) {
  left: 14.8%;
  top: 37.2%;
}
.globalP2 .mapDiv .list li:nth-child(14) {
  left: 16.8%;
  top: 34.3%;
}
.globalP2 .mapDiv .list li:nth-child(15) {
  left: 17.5%;
  top: 39.1%;
}
.globalP2 .mapDiv .list li:nth-child(16) {
  left: 19.8%;
  top: 38.6%;
}
.globalP2 .mapDiv .list li:nth-child(17) {
  left: 14%;
  top: 78.4%;
}
.globalP2 .mapDiv .list li:nth-child(18) {
  left: 24.1%;
  top: 37.4%;
}
.globalP2 .mapDiv .list li:nth-child(19) {
  left: 27.4%;
  top: 42.8%;
}
.globalP2 .mapDiv .list li:nth-child(20) {
  left: 30.5%;
  top: 40.7%;
}
.globalP2 .mapDiv .list li:nth-child(21) {
  left: 33.2%;
  top: 46.8%;
}
.globalP2 .mapDiv .list li:nth-child(22) {
  left: 33.2%;
  top: 54.8%;
}
.globalP2 .mapDiv .list li:nth-child(23) {
  left: 37.9%;
  top: 49.7%;
}
.globalP2 .mapDiv .list li:nth-child(24) {
  left: 41%;
  top: 51.5%;
}
.globalP2 .mapDiv .list li:nth-child(25) {
  left: 37.3%;
  top: 55.5%;
}
.globalP2 .mapDiv .list li:nth-child(26) {
  left: 39.4%;
  top: 57.5%;
}
.globalP2 .mapDiv .list li:nth-child(27) {
  left: 43.8%;
  top: 70.6%;
}
.globalP2 .mapDiv .list li:nth-child(28) {
  left: 42.4%;
  top: 32.6%;
}
.globalP2 .mapDiv .list li:nth-child(29) {
  left: 45%;
  top: 33.3%;
}
.globalP2 .mapDiv .list li:nth-child(30) {
  right: 28.3%;
  top: 13.4%;
}
.globalP2 .mapDiv .list li:nth-child(31) {
  right: 23.4%;
  top: 22.8%;
}
.globalP2 .mapDiv .list li:nth-child(32) {
  right: 16%;
  top: 42.7%;
}
.globalP2 .mapDiv .list li:nth-child(33) {
  right: 6.2%;
  top: 64.7%;
}
.globalP2 .mapDiv .list li .pjDiv {
  border: #1d5dca solid 1px;
  border-radius: 0.48rem;
  padding-top: 2px;
  height: 0.42rem;
  background: #fff;
  text-align: center;
}
.globalP2 .mapDiv .list li .pjDiv .limg {
  height: 0.21rem;
  background: url(../img/nimg57_0.png) center no-repeat;
  background-size: 0.57rem;
}
.globalP2 .mapDiv .list li .pjDiv p {
  color: #1d5dca;
  font-size: var(--fs13);
  line-height: 0.14rem;
}
.globalP2 .mapImg img {
  width: 100%;
}
@media (max-width: 1004px) {
  .globalP1 {
    padding: 1rem 0 1.2rem;
  }
  .globalP1::after {
    font-size: 2rem;
    line-height: 1.6rem;
  }
  .globalP1 .msg {
    margin: 0.5rem auto 0.65rem;
    width: auto;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .globalP1 .mxfDiv {
    display: block;
  }
  .globalP1 .leftDiv {
    padding-left: 0;
    width: auto;
    overflow: hidden;
  }
  .globalP1 .leftDiv li {
    float: left;
    width: 50%;
    padding: 0.32rem 0;
  }
  .globalP1 .leftDiv li .num em {
    font-size: 0.86rem;
  }
  .globalP1 .leftDiv li .num span {
    font-size: 0.6rem;
  }
  .globalP1 .leftDiv li p {
    font-size: var(--fs14);
    height: 0.72rem;
  }
  .globalP1 .leftDiv li .wen {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .globalP1 .earthDiv {
    width: 6rem;
    height: 6rem;
    margin: 0 auto;
  }
  .globalP1 .earthDiv::before {
    width: 5.6rem;
    height: 5.6rem;
    margin: -2.8rem 0 0 -2.8rem;
  }
  .globalP1 .earthDiv::after {
    width: 5.6rem;
    height: 5.6rem;
    margin: -2.8rem 0 0 -2.8rem;
  }
  .globalP1 .earthDiv .list li {
    font-size: var(--fs12);
  }
  .globalP1 .earthDiv .list li:nth-child(1) .ico em::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .globalP1 .earthDiv .list li:nth-child(1) .ico em::after {
    display: none;
  }
  .globalP1 .earthDiv .list li:nth-child(1) strong {
    left: -0.9rem;
    font-size: var(--fs13);
  }
  .globalP1 .earthDiv .list .blue {
    line-height: 0.36rem;
  }
  .globalP1 .earthDiv .list .blue .ico::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .globalP1 .earthDiv .list .blue .ico::after {
    display: none;
  }
  .globalP1 .earthDiv .list .orange {
    line-height: 0.32rem;
  }
  .globalP1 .earthDiv .list .orange .ico::before {
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
  }
  .globalP1 .rightDiv {
    margin-top: 0.6rem;
    width: 4.8rem;
    padding-right: 0;
  }
  .globalP1 .rightDiv .kuang {
    padding: 0.4rem 0.3rem;
    height: auto;
  }
  .globalP1 .rightDiv .kuang::before {
    width: 2px;
  }
  .globalP1 .rightDiv .kuang li {
    font-size: var(--fs14);
    line-height: 0.46rem;
    padding-left: 0.36rem;
  }
  .globalP1 .rightDiv .kuang li:nth-child(1)::before {
    top: 0.15rem;
  }
  .globalP1 .rightDiv .kuang li:nth-child(2)::before {
    width: 8px;
    height: 8px;
    top: 0.15rem;
  }
  .globalP1 .rightDiv .kuang li:nth-child(3)::before {
    width: 8px;
    height: 8px;
    top: 0.15rem;
  }
  .globalP1 .rightDiv .botbot {
    margin-top: 0.5rem;
  }
  .globalP1 .rightDiv .botbot li {
    padding-left: 0.36rem;
    line-height: 0.48rem;
    font-size: var(--fs15);
  }
  .globalP1 .rightDiv .botbot li::before {
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
  .globalP2 {
    padding: 1rem 0 0.9rem;
  }
  .globalP2 .msg {
    margin: 0.45rem 0 0.5rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.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;
  }
}
