.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-webkit-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-moz-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@-ms-keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-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_zoomIn {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes am_zoomIn {
  0% {
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    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% {
    transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    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% {
    transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    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 indmhRun {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(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;
}
@keyframes scaleToggleOne {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scaleToggleTwo {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  20% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  60% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scaleToggleThree {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  33% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  66% {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scalemap {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes scalemap {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*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 {
  height: 9.2rem;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-banner .swiper-slide video {
  display: block;
  width: 100%;
  height: 9.2rem;
  object-fit: cover;
}
.ind-banner .onebox {
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .cn {
  font-size: var(--fs56);
  line-height: 0.72rem;
  color: #fff;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.ind-banner .onebox .playbox .ico {
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: 1;
}
.ind-banner .onebox .playbox .ico img {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -13px;
}
.ind-banner .onebox .playbox .ico::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.ind-banner .onebox .playbox .ico::after {
  content: '';
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.ind-banner .onebox .playbox .hala {
  padding-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #fff;
}
.ind-banner .onebox .more {
  width: 1.56rem;
  margin: 0.2rem auto 0;
}
.ind-banner .onebox .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 100%;
  height: 0.52rem;
  border: #e50012 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more a em {
  margin-left: 0.15rem;
  display: block;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more a:hover {
  background: #e50012;
  color: #fff;
}
.ind-banner .onebox .more a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.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: 30px;
  height: 30px;
  opacity: 1;
  background: none;
  border: transparent solid 1px;
  border-radius: 50%;
  margin: 0 5px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  background: #fff;
  border-radius: 50%;
}
.ind-banner .swiper-pagination-bullet-active {
  border: #fff solid 1px;
}
.ind-banner .videoDiv {
  display: none;
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide video {
    height: 7rem;
    display: none;
  }
  .ind-banner .onebox {
    left: 10%;
    right: 10%;
    width: 80%;
    top: 28%;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.2rem;
  }
  .ind-banner .onebox .playbox .ico img {
    margin-left: -7px;
    margin-top: -9px;
    width: 14px;
  }
  .ind-banner .onebox .playbox .hala {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .ind-banner .onebox .more {
    width: 2.36rem;
  }
  .ind-banner .onebox .more a {
    font-size: var(--fs14);
    height: 0.78rem;
  }
  .ind-banner .onebox .more a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .ind-banner .onebox .more a:hover em {
    background-size: 12px;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
  }
  .ind-banner .swiper-pagination-bullet::after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
  }
}
.indexBox {
  padding: 0.34rem 0 0.4rem;
  background: #f8f8f8;
}
.indTitle {
  position: relative;
  padding-bottom: 0.24rem;
  color: #333;
}
.indTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  background: #e50012;
}
.indTitle .en {
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Mont-B';
  text-transform: uppercase;
}
.indTitle .cn {
  margin-top: 0.1rem;
  font-size: var(--fs30);
  line-height: 0.32rem;
  font-weight: bold;
}
.indexP1 {
  padding: 0 0.32rem;
}
.indexP1 .mxfDiv {
  position: relative;
}
.indexP1 .baozhe {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.indexP1 .bg img {
  width: 100%;
}
.indexP1 .layerDiv {
  position: absolute;
  left: 0;
  width: 100%;
  top: 2.35rem;
  z-index: 1;
}
.indexP1 .indTitle {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0.9rem;
  z-index: 1;
  text-align: center;
}
.indexP1 .indTitle::after {
  left: 50%;
  margin-left: -0.15rem;
}
.indexP1 .conDiv {
  text-align: center;
}
.indexP1 .conDiv .name {
  font-size: var(--fs56);
  line-height: 0.7rem;
  color: #333;
  font-weight: bold;
}
.indexP1 .conDiv .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  margin-top: 0.1rem;
}
.indexP1 .conDiv .btnGroup {
  margin-top: 0.4rem;
}
.indexP1 .conDiv .btnGroup li {
  display: inline-block;
  margin: 0 0.1rem;
}
.indexP1 .conDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.56rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  border: #e50012 solid 1px;
  background: #fff;
  font-size: var(--fs16);
  color: #333;
}
.indexP1 .conDiv .btnGroup li a em {
  margin-left: 0.2rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 0.16rem;
}
.indexP1 .conDiv .btnGroup li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #ce0c19 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.indexP1 .conDiv .btnGroup li a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP1 .list li {
  position: absolute;
  z-index: 2;
}
.indexP1 .list li .ziDiv {
  width: 2rem;
  height: 0.6rem;
  border-radius: 0.12rem;
  background: #fff;
}
.indexP1 .list li .ziDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0.6rem;
  color: #333;
  font-size: var(--fs18);
}
.indexP1 .list li .ziDiv a img {
  margin-left: 0.3rem;
  width: 0.42rem;
}
.indexP1 .list li .ziDiv a:hover {
  color: #e50012;
}
.indexP1 .list li .round {
  margin: 0.1rem auto 0;
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(219, 3, 19, 0.03);
}
.indexP1 .list li .round::after {
  content: '';
  position: absolute;
  left: 0.15rem;
  top: 0.15rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(219, 3, 19, 0.3);
  z-index: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  animation: 2.5s scaleToggleThree forwards infinite;
}
.indexP1 .list li .round::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.3rem;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1);
  -webkit-transform: scale(1);
  animation: 1.5s scaleToggleOne forwards infinite;
}
.indexP1 .list li .round .ico {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  margin-left: -0.18rem;
  margin-top: -0.18rem;
  border-radius: 50%;
  background: #e50012 url(../img/nimg18_2.png) center no-repeat;
  background-size: 0.18rem;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  animation: 2s scaleToggleTwo forwards infinite;
}
.indexP1 .list li:nth-child(1) {
  left: 10.2%;
  top: 43.2%;
}
.indexP1 .list li:nth-child(2) {
  left: 25.5%;
  bottom: 11.7%;
}
.indexP1 .list li:nth-child(3) {
  left: 53.8%;
  top: 53.7%;
}
.indexP1 .list li:nth-child(4) {
  right: 15.1%;
  bottom: 10.4%;
}
.indexP2 {
  padding: 1rem 0 0.9rem;
}
.indexP2 .indTitle {
  text-align: center;
  margin-bottom: 0.7rem;
}
.indexP2 .indTitle::after {
  left: 50%;
  margin-left: -0.15rem;
}
.indexP2 .topDiv {
  position: relative;
  height: 5.22rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.indexP2 .topDiv .leftDiv {
  left: 0;
  top: 0;
  width: 54.4%;
  position: absolute;
  height: 5.22rem;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.indexP2 .topDiv .leftDiv .tiltDiv {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transform: skew(-16.15deg);
  transform-origin: left top;
  /* 从左侧固定 */
  border-radius: 0.16rem;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.indexP2 .topDiv .leftDiv .tiltDiv .bg {
  position: absolute;
  left: 5%;
  top: 0;
  transform: skew(16.15deg);
  width: 105%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.indexP2 .topDiv .leftDiv .tiltDiv .bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.indexP2 .topDiv .leftDiv .tiltDiv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .topDiv .leftDiv .beforeDiv {
  position: absolute;
  left: 0.45rem;
  top: 0.7rem;
  z-index: 2;
}
.indexP2 .topDiv .leftDiv .limg {
  height: 1.2rem;
}
.indexP2 .topDiv .leftDiv .limg img {
  width: 3.02rem;
}
.indexP2 .topDiv .leftDiv .name {
  line-height: 0.48rem;
  color: #fff;
  font-size: var(--fs30);
}
.indexP2 .topDiv .leftDiv .name strong {
  font-size: var(--fs36);
  display: block;
}
.indexP2 .topDiv .leftDiv .msg {
  position: relative;
  left: -0.1rem;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  min-height: 0.64rem;
  color: rgba(255, 255, 255, 0.5);
}
.indexP2 .topDiv .leftDiv .msg em {
  padding: 0 0.1rem;
}
.indexP2 .topDiv .leftDiv .btnDiv {
  margin-top: 0.18rem;
}
.indexP2 .topDiv .leftDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.52rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  background-image: linear-gradient(90deg, #e60012 0%, #ce0d1a 100%);
  background-blend-mode: normal, normal;
}
.indexP2 .topDiv .leftDiv .btnDiv a em {
  display: block;
  margin-left: 0.16rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP2 .topDiv .leftDiv .leftHide {
  position: absolute;
  display: none;
  right: 0;
  padding-top: 0.5rem;
  width: 68%;
  height: 100%;
  text-align: center;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.indexP2 .topDiv .leftDiv .leftHide .rimg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 8.74rem;
  height: 3.65rem;
  margin: 0 auto;
}
.indexP2 .topDiv .leftDiv .leftHide .rimg img {
  max-width: 100%;
  max-height: 100%;
}
.indexP2 .topDiv .leftDiv .leftHide .zi {
  padding-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #333;
}
.indexP2 .topDiv .leftDiv:hover {
  width: 100%;
  z-index: 3;
}
.indexP2 .topDiv .leftDiv:hover .tiltDiv {
  transform: skew(0deg);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.indexP2 .topDiv .leftDiv:hover .tiltDiv .bg {
  transform: skew(0deg);
  left: 0;
  width: 32%;
}
.indexP2 .topDiv .leftDiv:hover .leftHide {
  display: block;
  z-index: 2;
}
.indexP2 .topDiv .leftDiv:hover .leftHide .rimg {
  animation: am_top 0.8s ease-out 0.4s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.4s backwards;
}
.indexP2 .topDiv .leftDiv:hover .leftHide .zi {
  animation: am_top 0.8s ease-out 0.7s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.7s backwards;
}
.indexP2 .topDiv .rightDiv {
  right: 0;
  top: 0;
  width: 54.4%;
  position: absolute;
  height: 5.22rem;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.indexP2 .topDiv .rightDiv .tiltDiv {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transform: skew(-16.15deg);
  transform-origin: right bottom;
  /* 从左侧固定 */
  border-radius: 0.16rem;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.indexP2 .topDiv .rightDiv .tiltDiv .bg {
  position: absolute;
  right: 5%;
  top: 0;
  transform: skew(16.15deg);
  width: 105%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.indexP2 .topDiv .rightDiv .tiltDiv .bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.indexP2 .topDiv .rightDiv .tiltDiv .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .topDiv .rightDiv .beforeDiv {
  position: absolute;
  right: 0.9rem;
  top: 0.7rem;
  z-index: 2;
}
.indexP2 .topDiv .rightDiv .limg {
  float: right;
  height: 1.2rem;
}
.indexP2 .topDiv .rightDiv .limg img {
  width: 2.57rem;
}
.indexP2 .topDiv .rightDiv .name {
  clear: both;
  text-align: right;
  line-height: 0.48rem;
  color: #fff;
  font-size: var(--fs30);
}
.indexP2 .topDiv .rightDiv .name strong {
  font-size: var(--fs36);
  display: block;
}
.indexP2 .topDiv .rightDiv .msg {
  text-align: right;
  position: relative;
  right: -0.1rem;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  min-height: 0.64rem;
  color: rgba(255, 255, 255, 0.5);
}
.indexP2 .topDiv .rightDiv .msg em {
  padding: 0 0.1rem;
}
.indexP2 .topDiv .rightDiv .btnDiv {
  float: right;
  margin-top: 0.18rem;
}
.indexP2 .topDiv .rightDiv .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 1.52rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  background-image: linear-gradient(90deg, #e60012 0%, #ce0d1a 100%);
  background-blend-mode: normal, normal;
}
.indexP2 .topDiv .rightDiv .btnDiv a em {
  display: block;
  margin-left: 0.16rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP2 .topDiv .rightDiv .rightHide {
  position: absolute;
  display: none;
  left: 0;
  padding-top: 0.5rem;
  width: 68%;
  height: 100%;
  text-align: center;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.indexP2 .topDiv .rightDiv .rightHide .rimg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 8.74rem;
  height: 3.65rem;
  margin: 0 auto;
}
.indexP2 .topDiv .rightDiv .rightHide .rimg img {
  max-width: 100%;
  max-height: 100%;
}
.indexP2 .topDiv .rightDiv .rightHide .zi {
  padding-top: 0.1rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
}
.indexP2 .topDiv .rightDiv:hover {
  width: 100%;
  z-index: 3;
}
.indexP2 .topDiv .rightDiv:hover .tiltDiv {
  transform: skew(0deg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.indexP2 .topDiv .rightDiv:hover .tiltDiv .bg {
  transform: skew(0deg);
  right: 0;
  width: 32%;
}
.indexP2 .topDiv .rightDiv:hover .rightHide {
  display: block;
  z-index: 2;
}
.indexP2 .topDiv .rightDiv:hover .rightHide .rimg {
  animation: am_top 0.8s ease-out 0.4s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.4s backwards;
}
.indexP2 .topDiv .rightDiv:hover .rightHide .zi {
  animation: am_top 0.8s ease-out 0.7s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.7s backwards;
}
.indexP2 .botList {
  padding-top: 0.2rem;
}
.indexP2 .botList::after {
  content: '';
  display: block;
  clear: both;
}
.indexP2 .botList ul {
  margin-right: -0.28rem;
}
.indexP2 .botList li {
  float: left;
  width: 33.33%;
}
.indexP2 .botList li .box {
  position: relative;
  overflow: hidden;
  border-radius: 0.1rem;
  margin-right: 0.28rem;
  height: 2.7rem;
  background: #fff;
}
.indexP2 .botList li .box .beforeDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .botList li .box .beforeDiv .imgDiv {
  height: 2.7rem;
}
.indexP2 .botList li .box .beforeDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP2 .botList li .box .beforeDiv .name {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.24rem;
  padding: 0 0.4rem;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  font-weight: bold;
}
.indexP2 .botList li .box .beforeDiv .name::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.09rem;
  width: 0.23rem;
  height: 0.18rem;
  background: url(/html/vancheer/cn/img/nimg23_1.png) no-repeat;
  background-size: 0.23rem;
}
.indexP2 .botList li .box .afterDiv {
  padding: 0.45rem;
  height: 100%;
  position: relative;
}
.indexP2 .botList li .box .afterDiv .lie::after {
  content: '';
  display: block;
  clear: both;
}
.indexP2 .botList li .box .afterDiv .lie dd {
  float: left;
  width: 25%;
}
.indexP2 .botList li .box .afterDiv .lie dd .ico {
  width: 0.35rem;
  height: 0.45rem;
  margin: 0 auto;
}
.indexP2 .botList li .box .afterDiv .lie dd .ico img {
  width: 100%;
}
.indexP2 .botList li .box .afterDiv .lie dd .zi {
  text-align: center;
  font-size: var(--fs15);
  color: #333;
  line-height: 0.32rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .botList li .box .afterDiv .lie dd:hover .zi {
  color: #e50012;
}
.indexP2 .botList li .box .afterDiv .more {
  position: absolute;
  right: 0.45rem;
  bottom: 0.3rem;
  z-index: 1;
}
.indexP2 .botList li .box .afterDiv .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.3rem;
  height: 0.48rem;
  border-radius: 0.48rem;
  border: #e50012 solid 1px;
  font-size: var(--fs16);
  color: #e50012;
}
.indexP2 .botList li .box .afterDiv .more a:hover {
  background: #e50012;
  color: #fff;
}
.indexP2 .botList li .box:hover .beforeDiv {
  top: 100%;
}
.indexP2 .moreBtn {
  margin: 0.45rem auto 0;
  width: 1.82rem;
}
.indexP2 .moreBtn 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-radius: 0.48rem;
  border: #e50012 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.indexP2 .moreBtn a em {
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 0.16rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP2 .moreBtn a:hover {
  background: #e50012;
  color: #fff;
}
.indexP2 .moreBtn a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP3 {
  padding-bottom: 0.5rem;
}
.indexP3 .bigBox {
  overflow: hidden;
  position: relative;
}
.indexP3 .bigBox::after {
  content: '';
  position: absolute;
  left: 0.32rem;
  top: 0;
  border-radius: 0.2rem;
  width: calc(100% - 0.64rem);
  height: 100%;
  background: #fff;
}
.indexP3 .canvas {
  position: absolute;
  left: 0.32rem;
  bottom: -2rem;
  z-index: 1;
  opacity: 0.2;
  width: calc(100% - 0.64rem);
  height: 5rem;
}
.indexP3 .canvas.fixed {
  position: fixed;
}
.indexP3 .indTitle {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0.9rem;
  z-index: 2;
  text-align: center;
}
.indexP3 .indTitle::after {
  left: 50%;
  margin-left: -0.15rem;
}
.indexP3 .indTitle.fixed {
  position: fixed;
}
.indexP3 .indTitle.abso {
  position: absolute;
}
.hmc2itemEx {
  height: 100vh;
}
.hmc2SwiperWpr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
.hmc2SwiperWprFixed {
  position: fixed;
}
.hmc2SwiperWprBom {
  position: absolute;
  top: auto;
  bottom: 0;
}
.hmc2item {
  height: 100vh !important;
  display: flex !important;
  flex-direction: column;
  position: relative;
}
.hmc2item .mxfDiv {
  padding-top: 2.35rem;
  width: 11rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(35px);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hmc2item .msg {
  text-align: center;
  color: #333;
  font-size: var(--fs30);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.hmc2item .msg em {
  font-family: 'Din-B';
  font-size: var(--fs72);
  line-height: 0.6rem;
  color: #e50012;
  padding: 0 0.1rem;
}
.hmc2item .list {
  margin-top: 0.4rem;
  text-align: center;
}
.hmc2item .list::after {
  content: '';
  display: block;
  clear: both;
}
.hmc2item .list li {
  float: left;
  width: 33.33%;
  color: #333;
  padding: 0.45rem 0;
  font-size: var(--fs16);
}
.hmc2item .list li .pj {
  height: 0.85rem;
}
.hmc2item .list li .num {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.hmc2item .list li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.hmc2item .list li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: url(/html/vancheer/cn/img/nimg22_1.png) no-repeat;
}
.hmc2item .list li .numUp,
.hmc2item .list li .name {
  font-size: 0.85rem;
  line-height: 0.64rem;
  padding-right: 0.05rem;
  background-image: linear-gradient(top, #e60012, #cd0714);
  background-image: linear-gradient(to bottom, #e60012, #cd0714);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Din-B";
}
.hmc2item .list li .hala {
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 0.64rem;
  background-image: linear-gradient(top, #e60012, #cd0714);
  background-image: linear-gradient(to bottom, #e60012, #cd0714);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hmc2item .list li .wen {
  line-height: 0.3rem;
  min-height: 0.3rem;
}
.hmc2item .imgDiv {
  width: 7.03rem;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  right: 0.32rem;
  bottom: 0;
  transform: translateY(35px);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.hmc2item .imgDiv img {
  width: 100%;
}
.hmc2item .bigImg img {
  width: 100%;
}
.hmc2item.on .mxfDiv,
.hmc2item.on .imgDiv {
  opacity: 1;
  transform: translateY(0);
}
.hmc2Swiper .slick-dots {
  position: absolute;
  width: 2rem;
  left: 50%;
  margin-left: -7.68rem;
  bottom: auto;
  transform: translateY(-50%);
  top: 50%!important;
}
.hmc2Swiper .slick-dots li {
  position: relative;
  cursor: pointer;
  display: block;
  width: 2rem;
  height: 24px;
  opacity: 1;
  background: none;
  border: none;
  border-radius: 50%;
  margin: 0.46rem 0 !important;
}
.hmc2Swiper .slick-dots li .ico {
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
.hmc2Swiper .slick-dots li .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #999999;
  border-radius: 50%;
}
.hmc2Swiper .slick-dots li span {
  padding-left: 0.4rem;
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #999;
}
.hmc2Swiper .slick-dots .slick-active .ico {
  background: #ffe5e5;
}
.hmc2Swiper .slick-dots .slick-active .ico::after {
  background: #e50012;
}
.hmc2Swiper .slick-dots .slick-active span {
  font-weight: bold;
  color: #333;
}
.indexP4 {
  padding: 0 0.32rem 0.4rem;
}
.indexP4 .bigBox {
  padding: 0.9rem 0 1.2rem;
  background: #fff;
  border-radius: 0.2rem;
}
.indexP4 .toptop {
  position: relative;
  margin-bottom: 0.4rem;
}
.indexP4 .aboutTitle {
  text-align: left;
}
.indexP4 .tab2 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 0.35rem;
}
.indexP4 .tab2 ul {
  font-size: 0;
}
.indexP4 .tab2 li {
  display: inline-block;
  margin: 0 0.3rem;
  position: relative;
  height: 0.32rem;
  line-height: 0.2rem;
  font-size: var(--fs18);
  color: #333;
}
.indexP4 .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ee1d23;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .tab2 .on {
  font-weight: bold;
}
.indexP4 .tab2 .on::after {
  width: 100%;
  left: 0;
}
.indexP4 .moreBtn {
  position: absolute;
  right: 0;
  top: 0.23rem;
  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.52rem;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
  background-image: linear-gradient(90deg, #e60012 0%, #ce0d1a 100%);
  background-blend-mode: normal, normal;
}
.indexP4 .moreBtn em {
  display: block;
  margin-left: 0.16rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.indexP4 .baozhe {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.indexP4 .leftDiv {
  width: 60%;
  animation: am_right 0.5s ease-out 0.1s backwards;
  -webkit-animation: am_right 0.5s ease-out 0.1s backwards;
}
.indexP4 .leftDiv::after {
  content: '';
  display: block;
  clear: both;
}
.indexP4 .leftDiv ul {
  margin-right: -0.2rem;
}
.indexP4 .leftDiv li {
  float: left;
  width: 50%;
}
.indexP4 .leftDiv li .box {
  margin-right: 0.2rem;
}
.indexP4 .leftDiv li a {
  display: block;
  background: #f8f8f8;
  border-radius: 0.12rem;
  overflow: hidden;
}
.indexP4 .leftDiv li a .imgDiv {
  height: 3.2rem;
  overflow: hidden;
}
.indexP4 .leftDiv li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.indexP4 .leftDiv li a .botDiv {
  padding: 0.25rem 0.4rem 0;
  height: 2.6rem;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .leftDiv li a .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  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 li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.36rem;
  color: #333;
  font-weight: bold;
  height: 0.72rem;
}
.indexP4 .leftDiv li a .time {
  font-family: 'Mont-R';
  font-size: var(--fs16);
  line-height: 0.4rem;
  color: #999;
}
.indexP4 .leftDiv li a .ico {
  margin-top: 0.35rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #e4e4e4 solid 1px;
  background: #fff url(/html/vancheer/cn/img/ico2on.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexP4 .leftDiv li a:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.indexP4 .leftDiv li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.indexP4 .leftDiv li a:hover .botDiv::after {
  height: 3px;
}
.indexP4 .leftDiv li a:hover .ico {
  background: #e50012 url(/html/vancheer/cn/img/ico2.png) center no-repeat;
  border: #e50012 solid 1px;
}
.indexP4 .rightDiv {
  animation: am_left 0.5s ease-out 0.1s backwards;
  -webkit-animation: am_left 0.5s ease-out 0.1s backwards;
  width: 38.6%;
  height: 5.8rem;
  background: #f8f8f8;
  border-radius: 0.12rem;
  padding: 0.35rem 0.65rem 0 0.3rem;
}
.indexP4 .rightDiv li {
  margin-bottom: 0.62rem;
}
.indexP4 .rightDiv li:last-child {
  margin-bottom: 0;
}
.indexP4 .rightDiv li a {
  display: block;
  padding: 0.08rem 0 0 0.85rem;
  position: relative;
  min-height: 0.75rem;
}
.indexP4 .rightDiv li a .time {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs14);
  color: #999;
  font-family: 'Poppins-M';
}
.indexP4 .rightDiv li a .time strong {
  display: block;
  font-size: var(--fs60);
  line-height: 0.52rem;
  color: #333;
  font-family: 'Din-B';
}
.indexP4 .rightDiv li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--fs18);
  line-height: 0.3rem;
  height: 0.6rem;
  color: #333;
  overflow: hidden;
  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 .name {
  color: #e50012;
}
.indexForm .baozhe {
  padding: 0.8rem 0 0.9rem;
  border-radius: 0.2rem;
  position: relative;
  overflow: hidden;
}
.indexForm .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.indexForm .bg video,
.indexForm .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexForm .mxfDiv {
  position: relative;
  z-index: 1;
  width: 11.14rem;
}
.indexForm .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin: 0 0 0.2rem;
  font-weight: bold;
}
.indexForm .msg {
  color: #333;
  font-size: var(--fs30);
  line-height: 0.48rem;
  margin-bottom: 0.55rem;
}
.indexForm .form {
  position: relative;
  z-index: 1;
}
.indexForm .form::after {
  content: '';
  display: block;
  clear: both;
}
.indexForm .form ul {
  margin-right: -0.3rem;
}
.indexForm .form li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.2rem;
}
.indexForm .form li:last-child {
  width: 66.66%;
}
.indexForm .form li .box {
  margin-right: 0.3rem;
  border: #e6e6e6 solid 1px;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.indexForm .form li .zi {
  position: absolute;
  left: 0.2rem;
  top: 0;
  line-height: 0.58rem;
  color: #333;
  font-size: var(--fs16);
  padding-left: 0.32rem;
}
.indexForm .form li .zi img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.13rem;
  width: 0.26rem;
}
.indexForm .form li .input1 {
  width: 100%;
  height: 0.58rem;
  line-height: 0.58rem;
  padding-left: 1.1rem;
  font-size: var(--fs16);
  border-radius: 8px;
}
.indexForm .selgroup {
  height: 0.58rem;
  padding-left: 1.5rem;
}
.indexForm .selgroup::after {
  content: '';
  display: block;
  clear: both;
}
.indexForm .selgroup dl {
  margin-bottom: 0;
}
.indexForm .selgroup dd {
  float: left;
  width: 50%;
}
.indexForm .selgroup select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs16);
  width: 100%;
  padding-right: 0.3rem;
  height: 0.58rem;
  border-radius: 6px;
  color: #333;
  border: solid 1px #e0e0e0;
  border-right: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  outline: none;
  cursor: pointer;
  padding-left: 0.15rem;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat scroll right 0.1rem center #fff;
  background-size: 12px;
}
.indexForm .select {
  width: 100%;
  position: relative;
}
.indexForm .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.58rem;
  line-height: 0.58rem;
  padding-left: 1.5rem;
  font-size: var(--fs16);
  color: #333;
}
.indexForm .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat right center;
  background-size: 12px;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.indexForm .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 1.8rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
}
.indexForm .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.indexForm .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.indexForm .select .xlist::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.indexForm .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #333;
  height: 0.45rem;
  line-height: 0.45rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #e0e0e0;
}
.indexForm .select .xlist a:hover {
  color: #e50012;
}
.indexForm .select .xlist a:last-child {
  border-bottom: none;
}
.indexForm .btnGroup {
  margin-top: 0.3rem;
}
.indexForm .btnGroup li {
  float: left;
  margin-right: 0.3rem;
}
.indexForm .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 2rem;
  height: 0.58rem;
  border: #e6e6e6 solid 1px;
  background: #fff;
  font-size: var(--fs18);
  color: #333;
  border-radius: 0.48rem;
}
.indexForm .btnGroup li a::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #e60012 0, #cf1723);
  transition: 0.5s;
}
.indexForm .btnGroup li a p {
  position: relative;
  z-index: 1;
}
.indexForm .btnGroup li a em {
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 0.2rem;
  width: 0.3rem;
  height: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.indexForm .btnGroup li:nth-child(1) a em {
  background: url(/html/vancheer/cn/img/nimg30_1.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(1) a:hover em {
  background: url(/html/vancheer/cn/img/nimg30_1on.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(2) a em {
  background: url(/html/vancheer/cn/img/nimg30_2.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li:nth-child(2) a:hover em {
  background: url(/html/vancheer/cn/img/nimg30_2on.png) no-repeat;
  background-size: 0.3rem;
}
.indexForm .btnGroup li a:hover {
  color: #fff;
  border: #e50012 solid 1px;
}
.indexForm .btnGroup li a:hover::after {
  width: 100%;
}
.indexForm2 {
  padding: 0 0.32rem 0.4rem;
}
.indexForm3 {
  background: #f8f8f8;
}
.indexBox .indexForm {
  padding: 0 0.32rem;
}
@media (max-width: 1600px) {
  .hmc2Swiper .slick-dots {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .indTitle {
    padding-bottom: 0.24rem;
  }
  .indTitle::after {
    width: 0.48rem;
    height: 2px;
  }
  .indTitle .en {
    font-size: var(--fs24);
  }
  .indTitle .cn {
    font-size: var(--fs17);
    line-height: 0.48rem;
    margin-top: 0;
  }
  .indexP1 {
    padding: 0 var(--offset);
  }
  .indexP1 .baozhe {
    border-radius: 0.28rem;
  }
  .indexP1 .bg img {
    width: 100%;
  }
  .indexP1 .layerDiv {
    position: relative;
    top: 0;
  }
  .indexP1 .indTitle {
    position: relative;
    top: 0;
    margin-bottom: 0.5rem;
  }
  .indexP1 .indTitle::after {
    margin-left: -0.24rem;
  }
  .indexP1 .conDiv {
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
  }
  .indexP1 .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .indexP1 .conDiv .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .indexP1 .conDiv .btnGroup li a {
    width: 2.16rem;
    height: 0.78rem;
    font-size: var(--fs14);
  }
  .indexP1 .conDiv .btnGroup li a em {
    margin-left: 0.15rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP1 .conDiv .btnGroup li a:hover em {
    background-size: 12px;
  }
  .indexP1 .list li .ziDiv {
    width: 1.6rem;
    height: 0.64rem;
  }
  .indexP1 .list li .ziDiv a {
    line-height: 0.64rem;
    font-size: var(--fs14);
  }
  .indexP1 .list li .ziDiv a img {
    display: none;
  }
  .indexP1 .list li .round {
    width: 0.6rem;
    height: 0.6rem;
    background: none;
  }
  .indexP1 .list li .round::after {
    display: none;
  }
  .indexP1 .list li .round::before {
    display: none;
  }
  .indexP1 .list li:nth-child(1) {
    left: 4%;
    top: 21%;
  }
  .indexP1 .list li:nth-child(2) {
    left: 25.5%;
    bottom: 5.7%;
  }
  .indexP1 .list li:nth-child(3) {
    left: 45.8%;
    top: 23.7%;
  }
  .indexP1 .list li:nth-child(4) {
    right: 9.1%;
    bottom: 5.4%;
  }
  .indexP2 {
    padding: 0.8rem var(--offset) 0.7rem;
  }
  .indexP2 .wrap {
    padding: 0;
  }
  .indexP2 .indTitle {
    margin-bottom: 0.6rem;
  }
  .indexP2 .indTitle::after {
    margin-left: -0.24rem;
  }
  .indexP2 .topDiv {
    height: auto;
    border-radius: 0.2rem;
  }
  .indexP2 .topDiv .leftDiv {
    width: 100%;
    position: relative;
    height: 4.8rem;
    margin-bottom: 0.3rem;
  }
  .indexP2 .topDiv .leftDiv .tiltDiv {
    transform: skew(0);
    border-radius: 0.2rem;
  }
  .indexP2 .topDiv .leftDiv .tiltDiv .bg {
    left: 0;
    transform: skew(0);
    width: 100%;
  }
  .indexP2 .topDiv .leftDiv .beforeDiv {
    left: 0.3rem;
    top: 0.5rem;
  }
  .indexP2 .topDiv .leftDiv .limg {
    height: 0.8rem;
  }
  .indexP2 .topDiv .leftDiv .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .indexP2 .topDiv .leftDiv .name strong {
    font-size: var(--fs20);
    display: block;
  }
  .indexP2 .topDiv .leftDiv .msg {
    margin-top: 0.12rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
    min-height: 0.84rem;
  }
  .indexP2 .topDiv .leftDiv .btnDiv {
    margin-top: 0.15rem;
  }
  .indexP2 .topDiv .leftDiv .btnDiv a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .indexP2 .topDiv .leftDiv .btnDiv a em {
    margin-left: 0.12rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP2 .topDiv .leftDiv .leftHide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    right: 0;
    padding-top: 0.5rem;
    width: 68%;
    height: 100%;
    background: #f3f3f3;
    text-align: center;
    z-index: 2;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .indexP2 .topDiv .leftDiv .leftHide .rimg {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 8.74rem;
    height: 3.65rem;
    margin: 0 auto;
  }
  .indexP2 .topDiv .leftDiv .leftHide .rimg img {
    max-width: 100%;
    max-height: 100%;
  }
  .indexP2 .topDiv .leftDiv .leftHide .zi {
    padding-top: 0.1rem;
    font-size: var(--fs18);
    line-height: 0.32rem;
    color: #333;
  }
  .indexP2 .topDiv .leftDiv:hover .tiltDiv {
    transform: skew(0deg);
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
  }
  .indexP2 .topDiv .leftDiv:hover .tiltDiv .bg {
    width: 100%;
  }
  .indexP2 .topDiv .leftDiv:hover .leftHide {
    opacity: 0;
    visibility: hidden;
  }
  .indexP2 .topDiv .rightDiv {
    width: 100%;
    position: relative;
    height: 4.8rem;
  }
  .indexP2 .topDiv .rightDiv .tiltDiv {
    border-radius: 0.2rem;
    transform: skew(0);
  }
  .indexP2 .topDiv .rightDiv .tiltDiv .bg {
    right: 0;
    transform: skew(0);
    width: 100%;
  }
  .indexP2 .topDiv .rightDiv .beforeDiv {
    right: 0.3rem;
    top: 0.5rem;
  }
  .indexP2 .topDiv .rightDiv .limg {
    height: 0.8rem;
  }
  .indexP2 .topDiv .rightDiv .name {
    line-height: 0.52rem;
    font-size: var(--fs17);
  }
  .indexP2 .topDiv .rightDiv .name strong {
    font-size: var(--fs20);
  }
  .indexP2 .topDiv .rightDiv .msg {
    margin-top: 0.12rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
    min-height: 0.84rem;
  }
  .indexP2 .topDiv .rightDiv .btnDiv {
    margin-top: 0.15rem;
  }
  .indexP2 .topDiv .rightDiv .btnDiv a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .indexP2 .topDiv .rightDiv .btnDiv a em {
    margin-left: 0.12rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP2 .topDiv .rightDiv .rightHide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    left: 0;
    padding-top: 0.5rem;
    width: 68%;
    height: 100%;
    background: #f3f3f3;
    text-align: center;
    z-index: 2;
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease;
  }
  .indexP2 .topDiv .rightDiv .rightHide .rimg {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 8.74rem;
    height: 3.65rem;
    margin: 0 auto;
  }
  .indexP2 .topDiv .rightDiv .rightHide .rimg img {
    max-width: 100%;
    max-height: 100%;
  }
  .indexP2 .topDiv .rightDiv .rightHide .zi {
    padding-top: 0.1rem;
    font-size: var(--fs16);
    line-height: 0.32rem;
    color: #333;
  }
  .indexP2 .topDiv .rightDiv:hover {
    width: 100%;
    z-index: 3;
  }
  .indexP2 .topDiv .rightDiv:hover .tiltDiv {
    transform: skew(0deg);
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
  }
  .indexP2 .topDiv .rightDiv:hover .tiltDiv .bg {
    width: 100%;
  }
  .indexP2 .topDiv .rightDiv:hover .rightHide {
    opacity: 0;
    visibility: hidden;
  }
  .indexP2 .botList {
    padding-top: 0.2rem;
  }
  .indexP2 .botList ul {
    margin-right: 0;
  }
  .indexP2 .botList li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .indexP2 .botList li:last-child {
    margin-bottom: 0;
  }
  .indexP2 .botList li .box {
    border-radius: 0.16rem;
    margin-right: 0;
    height: 4rem;
  }
  .indexP2 .botList li .box .beforeDiv .imgDiv {
    height: 4rem;
  }
  .indexP2 .botList li .box .beforeDiv .name {
    bottom: 0.3rem;
    padding: 0 0.3rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .indexP2 .botList li .box .beforeDiv .name::after {
    right: 0.3rem;
    margin-top: -0.12rem;
    width: 0.32rem;
    height: 0.25rem;
    background-size: 0.32rem;
  }
  .indexP2 .botList li .box .afterDiv {
    padding: 0.3rem;
  }
  .indexP2 .botList li .box .afterDiv .lie dd {
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
  .indexP2 .botList li .box .afterDiv .lie dd .ico {
    width: 0.48rem;
    height: 0.66rem;
  }
  .indexP2 .botList li .box .afterDiv .lie dd .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP2 .botList li .box .afterDiv .more {
    right: 0.3rem;
    bottom: 0.25rem;
  }
  .indexP2 .botList li .box .afterDiv .more a {
    width: 2.1rem;
    height: 0.78rem;
    font-size: var(--fs14);
  }
  .indexP2 .botList li .box:hover .beforeDiv {
    top: 100%;
  }
  .indexP2 .moreBtn {
    margin: 0.5rem auto 0;
    width: 2.62rem;
  }
  .indexP2 .moreBtn a {
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .indexP2 .moreBtn a em {
    margin-left: 0.15rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP2 .moreBtn a:hover em {
    background-size: 12px;
  }
  .indexP3 {
    padding-bottom: 0.5rem;
  }
  .indexP3 .bigBox::after {
    left: 0.3rem;
    border-radius: 0.28rem;
    width: calc(100% - 0.6rem);
  }
  .indexP3 .canvas {
    display: none;
    position: absolute;
    left: 0.32rem;
    bottom: -2rem;
    z-index: 1;
    opacity: 0.2;
    width: calc(100% - 0.64rem);
    height: 5rem;
  }
  .indexP3 .indTitle {
    top: 0.9rem;
  }
  .indexP3 .indTitle::after {
    margin-left: -0.24rem;
  }
  .hmc2Swiper {
    position: relative;
    left: auto;
    top: auto;
  }
  .hmc2SwiperWpr {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
  }
  .hmc2SwiperWprFixed {
    position: fixed;
  }
  .hmc2SwiperWprBom {
    position: absolute;
    top: auto;
    bottom: 0;
  }
  .hmc2item {
    height: 100vh !important;
    display: flex !important;
    flex-direction: column;
    position: relative;
  }
  .hmc2item .mxfDiv {
    padding-top: 3rem;
    width: 90%;
    margin: 0 auto;
  }
  .hmc2item .msg {
    font-size: var(--fs14);
    line-height: 0.56rem;
    display: block;
  }
  .hmc2item .msg em {
    font-size: var(--fs24);
    line-height: 0.56rem;
  }
  .hmc2item .list {
    margin-top: 0.5rem;
  }
  .hmc2item .list li {
    padding: 0.3rem 0;
    font-size: var(--fs14);
  }
  .hmc2item .list li .pj {
    height: 0.75rem;
  }
  .hmc2item .list li .num {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: flex-end;
    -webkit-align-items: flex-end;
  }
  .hmc2item .list li .num p {
    height: 0.56rem;
    font-size: var(--fs13);
  }
  .hmc2item .list li .num span {
    top: -4px;
    width: 12px;
    height: 12px;
    background-size: 12px;
  }
  .hmc2item .list li .numUp,
  .hmc2item .list li .name {
    font-size: var(--fs36);
    padding-right: 0.1rem;
  }
  .hmc2item .list li .hala {
    font-size: var(--fs28);
  }
  .hmc2item .list li .wen {
    font-size: var(--fs13);
    line-height: 0.42rem;
    min-height: 0.84rem;
  }
  .hmc2item .imgDiv {
    width: calc(100% - 0.64rem);
    right: 0.32rem;
    bottom: 5vh;
  }
  .hmc2Swiper .slick-dots {
    width: 100%;
    left: 0;
    margin-left: 0;
    bottom: 0;
    transform: translateY(0);
    top: auto!important;
    text-align: center;
  }
  .hmc2Swiper .slick-dots li {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 10px!important;
  }
  .hmc2Swiper .slick-dots li .ico {
    top: 0;
    width: 18px;
    height: 18px;
    margin-top: 0;
  }
  .hmc2Swiper .slick-dots li span {
    display: none;
  }
  .indexP4 {
    padding: 0 var(--offset) 0.4rem;
  }
  .indexP4 .bigBox {
    padding: 0.8rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .indexP4 .toptop {
    margin-bottom: 0.6rem;
  }
  .indexP4 .tab2 {
    position: relative;
    margin-top: 0.4rem;
    top: 0;
  }
  .indexP4 .tab2 li {
    height: 0.48rem;
    line-height: 0.32rem;
    font-size: var(--fs15);
  }
  .indexP4 .tab2 li::after {
    height: 2px;
  }
  .indexP4 .moreBtn {
    top: 0.16rem;
  }
  .indexP4 .moreBtn a {
    width: 2.32rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .indexP4 .moreBtn em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .indexP4 .baozhe {
    display: block;
  }
  .indexP4 .leftDiv {
    width: auto;
    animation: am_top 0.5s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.5s ease-out 0.1s backwards;
  }
  .indexP4 .leftDiv ul {
    margin-right: 0;
  }
  .indexP4 .leftDiv li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .indexP4 .leftDiv li .box {
    margin-right: 0;
  }
  .indexP4 .leftDiv li a {
    position: relative;
    height: 1.8rem;
    padding: 0 0.2rem 0 2.4rem;
    border-radius: 0.16rem;
  }
  .indexP4 .leftDiv li a .imgDiv {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 1.8rem;
  }
  .indexP4 .leftDiv li a .botDiv {
    padding: 0.2rem 0 0;
    height: auto;
  }
  .indexP4 .leftDiv li a .botDiv::after {
    display: none;
  }
  .indexP4 .leftDiv li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP4 .leftDiv li a .time {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .indexP4 .leftDiv li a .ico {
    display: none;
  }
  .indexP4 .rightDiv {
    animation: am_top 0.5s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.5s ease-out 0.1s backwards;
    width: auto;
    height: auto;
    border-radius: 0.16rem;
    padding: 0.4rem;
  }
  .indexP4 .rightDiv li {
    margin-bottom: 0.3rem;
  }
  .indexP4 .rightDiv li:last-child {
    margin-bottom: 0;
  }
  .indexP4 .rightDiv li a {
    padding: 0 0 0 1.35rem;
    min-height: 1rem;
  }
  .indexP4 .rightDiv li a .time {
    font-size: var(--fs13);
  }
  .indexP4 .rightDiv li a .time strong {
    font-size: var(--fs24);
    line-height: 0.6rem;
  }
  .indexP4 .rightDiv li a .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexBox {
    padding: 0.8rem 0 0.4rem;
  }
  .indexBox .indexForm {
    padding: 0 var(--offset);
  }
  .indexForm .baozhe {
    padding: 0.7rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .indexForm .mxfDiv {
    width: auto;
  }
  .indexForm .title {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .indexForm .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .indexForm .form ul {
    margin-right: 0;
  }
  .indexForm .form li {
    float: none;
    width: auto;
  }
  .indexForm .form li:last-child {
    width: auto;
  }
  .indexForm .form li .box {
    margin-right: 0;
    border-radius: 0.16rem;
  }
  .indexForm .form li .zi {
    line-height: 0.88rem;
    font-size: var(--fs14);
    padding-left: 0.42rem;
  }
  .indexForm .form li .zi img {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .indexForm .form li .input1 {
    height: 0.88rem;
    line-height: 0.88rem;
    padding-left: 2rem;
    font-size: var(--fs14);
  }
  .indexForm .selgroup {
    height: 0.88rem;
    padding-left: 2rem;
  }
  .indexForm .selgroup select {
    font-size: var(--fs14);
    height: 0.88rem;
  }
  .indexForm .select .caption {
    height: 0.88rem;
    line-height: 0.88rem;
    padding-left: 2rem;
    font-size: var(--fs14);
  }
  .indexForm .select .xlist {
    max-height: 3.2rem;
  }
  .indexForm .select .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .indexForm .btnGroup {
    margin-top: 0.4rem;
  }
  .indexForm .btnGroup li {
    margin-right: 0.2rem;
  }
  .indexForm .btnGroup li a {
    width: 2.4rem;
    height: 0.88rem;
    font-size: var(--fs14);
  }
  .indexForm .btnGroup li a em {
    width: 0.36rem;
    height: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(1) a em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(1) a:hover em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(2) a em {
    background-size: 0.36rem;
  }
  .indexForm .btnGroup li:nth-child(2) a:hover em {
    background-size: 0.36rem;
  }
}
.newsP1 {
  padding: 0.65rem 0 1rem;
  background: #f6f7f8;
}
.newsP1 .toptop {
  padding-bottom: 0.56rem;
  position: relative;
  z-index: 1;
}
.newsP1 .rightDiv {
  position: absolute;
  right: 0;
  top: 0.25rem;
  z-index: 1;
}
.newsP1 .select {
  width: 2.48rem;
  position: relative;
}
.newsP1 .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #666;
  border: #dadada solid 1px;
  background: #fff;
  border-radius: 6px;
  font-family: 'Mont-R';
}
.newsP1 .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP1 .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.newsP1 .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  max-height: 2.5rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #dadada;
  border-top: none;
}
.newsP1 .select .xlist::-webkit-scrollbar {
  height: 3px;
}
.newsP1 .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.newsP1 .select .xlist::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.newsP1 .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #666;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.25rem;
  border-bottom: 1px solid #dadada;
  font-family: 'Mont-R';
}
.newsP1 .select .xlist a:last-child {
  border-bottom: none;
}
.newsP1 .select .xlist a:hover {
  color: #e50012;
}
.newsP1 .form {
  margin-left: 0.3rem;
  width: 2.48rem;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #dadada;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.newsP1 .form .input1 {
  width: 100%;
  padding-left: 0.25rem;
  font-size: var(--fs16);
  color: #666;
  height: 0.58rem;
  line-height: 0.58rem;
}
.newsP1 .form .input1::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1:-moz-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1::-moz-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .input1:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
.newsP1 .form .btn1 {
  position: absolute;
  right: 0;
  width: 0.5rem;
  height: 0.6rem;
  background: url(/html/vancheer/cn/img/nimg16_1.png) center no-repeat;
}
.newsP1 .notice {
  padding-bottom: 0.6rem;
}
.newsP1 .notice ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.newsP1 .notice li {
  width: calc(50% - 0.18rem);
  margin-bottom: 0.4rem;
  min-height: 3.76rem;
  background: #fff;
  padding: 0.4rem 0.5rem 0.5rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP1 .notice li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ef3422;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP1 .notice li:hover {
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.newsP1 .notice li:hover::after {
  width: 100%;
}
.newsP1 .notice li .name {
  font-size: var(--fs30);
  color: #333;
  font-weight: bold;
  line-height: 0.46rem;
  margin-bottom: 0.2rem;
}
.newsP1 .notice li .msg {
  line-height: 0.3rem;
  font-size: var(--fs16);
}
.newsP1 .notice li .msg em {
  color: #e50012;
  font-family: 'Poppins-L';
}
.newsP1 .notice li .state {
  padding: 0.3rem 0 0.2rem;
  line-height: 0.3rem;
  font-size: var(--fs16);
}
.newsP1 .notice li .btnGroup::after {
  content: '';
  display: block;
  clear: both;
}
.newsP1 .notice li .btnGroup dd {
  float: left;
  margin-right: 0.32rem;
}
.newsP1 .notice li .btnGroup dd 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.56rem;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
  border: #b8b8b8 solid 1px;
}
.newsP1 .notice li .btnGroup dd a em {
  margin-right: 0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP1 .notice li .btnGroup dd a:hover {
  border: #e50012 solid 1px;
  background: #e50012;
  color: #fff;
}
.newsP1 .notice li .btnGroup dd:nth-child(1) a em {
  background: url(/html/vancheer/cn/img/nimg30_14.png) no-repeat;
  background-size: 0.3rem;
}
.newsP1 .notice li .btnGroup dd:nth-child(1) a:hover em {
  background: url(/html/vancheer/cn/img/nimg30_14on.png) no-repeat;
  background-size: 0.3rem;
}
.newsP1 .notice li .btnGroup dd:nth-child(2) a {
  border: #e50012 solid 1px;
}
.newsP1 .notice li .btnGroup dd:nth-child(2) a em {
  background: url(/html/vancheer/cn/img/nimg30_15.png) no-repeat;
  background-size: 0.3rem;
}
.newsP1 .notice li .btnGroup dd:nth-child(2) a:hover em {
  background: url(/html/vancheer/cn/img/nimg30_15on.png) no-repeat;
  background-size: 0.3rem;
}
.newsPic {
  position: relative;
  overflow: hidden;
}
.newsPic .imgList {
  overflow: hidden;
}
.newsPic .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsPic .mxfDiv {
  position: relative;
  padding: 0 0.5rem 0 8.1rem;
  height: 5.33rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.16rem;
}
.newsPic .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.5rem;
  height: 5.33rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.newsPic .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsPic .time {
  padding: 0.42rem 0 0.1rem;
  font-size: var(--fs18);
  line-height: 0.18rem;
  color: #999;
  font-family: 'Poppins-M';
}
.newsPic .time em {
  display: block;
  color: #e50012;
  font-size: var(--fs48);
  line-height: 0.48rem;
  font-family: 'Din-B';
}
.newsPic .name {
  font-size: var(--fs30);
  color: #333;
  line-height: 0.48rem;
  height: 0.96rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .content {
  margin-top: 0.16rem;
  font-size: var(--fs16);
  color: #666;
  text-align: justify;
  line-height: 0.3rem;
  height: 1.2rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.newsPic .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 0.34rem;
  width: 1.6rem;
  height: 0.56rem;
  color: #e50012;
  font-size: var(--fs16);
  border-radius: 0.48rem;
  border: #e50012 solid 1px;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsPic .more em {
  margin-left: 0.15rem;
  width: 16px;
  height: 12px;
  background: url(/html/vancheer/cn/img/ico2on.png) no-repeat;
}
.newsPic .swiper-pagination {
  bottom: 1.1rem !important;
  left: auto!important;
  right: 0.5rem;
  margin-left: 0;
  text-align: left;
  width: auto!important;
}
.newsPic .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-left: 0.2rem !important;
  background: #e1e1e1;
  opacity: 1;
}
.newsPic .swiper-pagination .swiper-pagination-bullet-active {
  background: #e50012;
}
.newsPic .swiper-slide:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsPic .swiper-slide:hover .name {
  color: #e50012;
}
.newsPic .swiper-slide:hover .more {
  color: #fff;
  background: #e50012;
}
.newsPic .swiper-slide:hover .more em {
  background: url(/html/vancheer/cn/img/ico2.png) no-repeat;
}
.newsP2 .toptop {
  background: #f6f7f8;
  height: 0.56rem;
  position: relative;
}
.newsP2 .newsTab ul {
  margin-bottom: 0;
}
.newsP2 .newsTab li {
  float: left;
  margin-right: 0.5rem;
}
.newsP2 .newsTab li a {
  display: block;
  position: relative;
  z-index: 2;
  height: 0.56rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #333;
}
.newsP2 .newsTab li a::after {
  content: '';
  position: absolute;
  width: 0;
  left: 50%;
  height: 4px;
  bottom: 0;
  background: #e50012;
}
.newsP2 .newsTab li a:hover {
  color: #e50012;
}
.newsP2 .newsTab li .aNow {
  font-size: var(--fs24);
  color: #333 !important;
}
.newsP2 .newsTab li .aNow::after {
  width: 100%;
  left: 0;
}
.newsP2 .botbot {
  padding: 0.9rem 0 1.9rem;
}
.newsP2 .list {
  padding-bottom: 0.35rem;
}
.newsP2 .list::after {
  content: '';
  display: block;
  clear: both;
}
.newsP2 .list ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  flex-flow: wrap;
}
.newsP2 .list li {
  width: calc((100% - 1.84rem) / 3);
  margin-right: 0.92rem;
  margin-bottom: 0.95rem;
}
.newsP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.newsP2 .list li .box {
  border-radius: 0.16rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li .imgDiv {
  height: 3.2rem;
  overflow: hidden;
}
.newsP2 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.newsP2 .list li .botDiv {
  padding: 0.25rem 0.35rem 0;
  height: 2.6rem;
  background: #f8f8f8;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
  height: 0.6rem;
}
.newsP2 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #999;
}
.newsP2 .list li .time {
  margin-top: 0.08rem;
  line-height: 0.48rem;
  color: #999;
  font-size: var(--fs16);
  position: relative;
  font-family: 'Poppins-L';
}
.newsP2 .list li .time::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #e4e4e4 solid 1px;
  background: #fff url(/html/vancheer/cn/img/ico2on.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.newsP2 .list li .box:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.newsP2 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.newsP2 .list li .box:hover .botDiv {
  background: #fff;
}
.newsP2 .list li .box:hover .botDiv::after {
  height: 3px;
}
.newsP2 .list li .box:hover .time::after {
  background: #e50012 url(/html/vancheer/cn/img/ico2.png) center no-repeat;
  border: #e50012 solid 1px;
}
.noticeBox {
  padding: 0 0.32rem 0.5rem;
}
.noticeBox .baozhe {
  height: 0.8rem;
  background: #f6f6f6;
  border-radius: 0.2rem;
}
.noticeBox .wrap {
  position: relative;
}
.noticeBox .moreBtn {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.21rem;
}
.noticeBox .moreBtn a {
  display: block;
  width: 1.2rem;
  text-align: center;
  height: 0.42rem;
  line-height: 0.42rem;
  border-radius: 0.48rem;
  background: #fff;
  color: #333;
  font-size: var(--fs16);
}
.noticeBox .moreBtn a:hover {
  background: #e50012;
  color: #fff;
}
.noticePic {
  position: relative;
  padding-left: 0.5rem;
  padding-right: 2rem;
}
.noticePic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.09rem;
  width: 0.19rem;
  height: 0.17rem;
  background: url(/html/vancheer/cn/img/nimg19_1.png) left center no-repeat;
  background-size: 0.19rem;
}
.noticePic .list {
  overflow: hidden;
  height: 0.8rem;
}
.noticePic .list li a {
  display: block;
  height: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--fs16);
  color: #333;
}
.noticePic .list li a .time {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Poppins-M';
  color: #999;
  line-height: 0.8rem;
}
.noticePic .list li a .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 0.8rem;
  line-height: 0.28rem;
}
.noticePic .list li a:hover .name {
  color: #e50012;
}
@media (max-width: 1004px) {
  .newsP1 {
    padding: 0.8rem 0 1rem;
  }
  .newsP1 .toptop {
    padding-bottom: 0.5rem;
  }
  .newsP1 .rightDiv {
    margin-top: 0.5rem;
    position: relative;
    top: 0;
  }
  .newsP1 .select {
    width: 100%;
    float: none;
  }
  .newsP1 .select .caption {
    height: 0.96rem;
    line-height: 0.96rem;
    font-size: var(--fs14);
  }
  .newsP1 .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    right: 0.3rem;
    margin-top: -4px;
  }
  .newsP1 .select .xlist {
    max-height: 4.8rem;
  }
  .newsP1 .select .xlist a {
    font-size: var(--fs14);
    height: 0.96rem;
    line-height: 0.96rem;
  }
  .newsP1 .form {
    float: none;
    margin-top: 0.25rem;
    margin-left: 0;
    width: 100%;
    height: 0.96rem;
  }
  .newsP1 .form .input1 {
    font-size: var(--fs14);
    height: 0.94rem;
    line-height: 0.94rem;
  }
  .newsP1 .form .btn1 {
    width: 0.96rem;
    height: 0.96rem;
    background-size: 0.32rem;
  }
  .newsP1 .notice {
    padding-bottom: 0.4rem;
  }
  .newsP1 .notice ul {
    display: block;
  }
  .newsP1 .notice li {
    width: 100%;
    padding: 0.6rem 0.4rem;
    border-radius: 0.16rem;
  }
  .newsP1 .notice li .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .newsP1 .notice li .msg {
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .newsP1 .notice li .state {
    padding: 0.4rem 0 0.3rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .newsP1 .notice li .btnGroup dd {
    margin-right: 0.2rem;
  }
  .newsP1 .notice li .btnGroup dd a {
    width: 2.2rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .newsP1 .notice li .btnGroup dd a em {
    width: 0.36rem;
    height: 0.36rem;
  }
  .newsP1 .notice li .btnGroup dd:nth-child(1) a em {
    background-size: 0.36rem;
  }
  .newsP1 .notice li .btnGroup dd:nth-child(1) a:hover em {
    background-size: 0.36rem;
  }
  .newsP1 .notice li .btnGroup dd:nth-child(2) a em {
    background-size: 0.36rem;
  }
  .newsP1 .notice li .btnGroup dd:nth-child(2) a:hover em {
    background-size: 0.36rem;
  }
  .newsPic .mxfDiv {
    padding: 0 0 1.2rem 0;
    height: auto;
  }
  .newsPic .imgDiv {
    position: relative;
    width: auto;
    height: auto;
  }
  .newsPic .imgDiv img {
    height: auto;
  }
  .newsPic .time {
    padding: 0.5rem 0.4rem 0.3rem;
    font-size: var(--fs14);
    line-height: 0.28rem;
  }
  .newsPic .time em {
    font-size: var(--fs28);
    line-height: 0.6rem;
  }
  .newsPic .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
    height: 0.96rem;
    padding: 0 0.4rem;
  }
  .newsPic .content {
    display: none;
  }
  .newsPic .more {
    margin: 0.5rem 0.4rem 0;
    width: 2.2rem;
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsPic .more em {
    width: 10px;
    height: 8px;
    background-size: 10px;
  }
  .newsPic .swiper-pagination {
    bottom: 0.5rem !important;
    left: auto!important;
    right: 0.4rem;
  }
  .newsP2 .toptop {
    height: auto;
  }
  .newsP2 .newsTab li a {
    height: 0.8rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .newsP2 .newsTab li a::after {
    height: 3px;
  }
  .newsP2 .newsTab li .aNow {
    font-size: var(--fs16);
  }
  .newsP2 .botbot {
    padding: 0.75rem 0 1rem;
  }
  .newsP2 .list {
    padding-bottom: 0.4rem;
  }
  .newsP2 .list ul {
    display: block;
  }
  .newsP2 .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .newsP2 .list li .box {
    border-radius: 0.2rem;
  }
  .newsP2 .list li .imgDiv {
    height: 4rem;
  }
  .newsP2 .list li .botDiv {
    padding: 0.35rem 0.3rem 0;
    height: 3.4rem;
  }
  .newsP2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .newsP2 .list li .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .newsP2 .list li .time {
    font-size: var(--fs14);
  }
  .newsP2 .list li .time::after {
    display: none;
  }
  .noticeBox {
    padding: 0 0.3rem 0.5rem;
  }
  .noticeBox .baozhe {
    height: auto;
    border-radius: 0.28rem;
    padding-bottom: 0.4rem;
  }
  .noticeBox .moreBtn {
    position: relative;
    top: 0;
    width: 2rem;
    margin: 0.3rem auto 0;
  }
  .noticeBox .moreBtn a {
    width: 2rem;
    height: 0.84rem;
    line-height: 0.84rem;
    font-size: var(--fs14);
  }
  .noticePic {
    padding-left: 0.6rem;
    padding-right: 0;
  }
  .noticePic::before {
    margin-top: -0.15rem;
    width: 0.32rem;
    height: 0.29rem;
    background-size: 0.32rem;
  }
  .noticePic .list {
    height: 1.2rem;
  }
  .noticePic .list li a {
    height: 1.2rem;
    padding-left: 0;
    font-size: var(--fs14);
  }
  .noticePic .list li a .time {
    display: none;
    line-height: 1.2rem;
    font-size: var(--fs13);
  }
  .noticePic .list li a .name {
    height: 1.2rem;
    line-height: 0.48rem;
  }
}
.newsTop {
  padding: 1.1rem 0 0.9rem;
  border-bottom: #e50012 solid 1px;
}
.newsTop .name {
  width: 12.8rem;
  margin: 0 auto 0.4rem;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.64rem;
}
.newsTop .time {
  text-align: center;
}
.newsTop .time li {
  position: relative;
  display: inline-block;
  margin: 0 0.45rem;
  padding-left: 0.4rem;
  color: #999;
  font-size: var(--fs18);
  line-height: 0.36rem;
  font-family: 'Poppins-L';
}
.newsTop .time li img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.1rem;
  width: 0.2rem;
}
.newsTop.on {
  padding: 1.8rem 0 0.9rem;
}
.newsBot {
  background: #f8f8f8;
  padding-bottom: 1.4rem;
  overflow: visible;
}
.newsBot .leftDiv {
  width: 72%;
  padding-left: calc((100% - 15.36rem) / 2);
}
.newsBot .conDiv {
  background: #fff;
  padding: 0.8rem 1.38rem 1.4rem;
  border-bottom-left-radius: 0.16rem;
  border-bottom-right-radius: 0.16rem;
}
.newsBot .content {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.32rem;
  text-align: justify;
}
.newsBot .imgDiv {
  text-align: center;
}
.newsBot .imgDiv img {
  max-width: 100%;
}
.newsBot .botbot {
  margin-top: 1rem;
  position: relative;
}
.newsBot .share {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-left: 0.8rem;
  position: relative;
  height: 0.56rem;
}
.newsBot .share em {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.56rem;
  font-size: var(--fs18);
}
.newsBot .share li {
  float: left;
  margin-right: 0.2rem;
}
.newsBot .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 32px;
  height: 32px;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
}
.newsBot .share li a:hover {
  border: #e50012 solid 1px;
}
.newsBot .backBtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 1.8rem;
}
.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: 18px;
  height: 14px;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
}
.newsBot .backBtn a:hover {
  border: #e50012 solid 1px;
  background: #e50012;
  color: #fff;
}
.newsBot .backBtn a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
}
.pageDown {
  margin-top: 0.95rem;
}
.pageDown ul {
  margin-right: -0.56rem;
}
.pageDown li {
  float: left;
  width: 50%;
  font-size: var(--fs16);
}
.pageDown li .box {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-right: 0.56rem;
  height: 0.8rem;
  background: #fff;
  position: relative;
  padding-left: 1rem;
  padding-right: 0.35rem;
  border-radius: 8px;
}
.pageDown li .box .border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.pageDown li .box .border-path {
  fill: none;
  stroke: #e50012;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s ease-in-out;
  opacity: 0;
}
.pageDown li .box:hover .border-path {
  opacity: 1;
  stroke-dashoffset: 0;
}
.pageDown li em {
  position: absolute;
  left: 0.32rem;
  top: 50%;
  margin-top: -0.15rem;
  line-height: 0.3rem;
  color: #333;
}
.pageDown li a {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 0.48rem;
  line-height: 0.24rem;
  overflow: hidden;
  color: #333;
}
.pageDown li .box:hover {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.pageDown li .box:hover:after {
  width: 100%;
}
.pageDown li .box:hover a {
  color: #e50012;
}
.sideRight {
  width: 28%;
  position: sticky;
  top: 0;
}
.sideRight .title {
  font-size: var(--fs18);
  padding-left: 0.22rem;
  line-height: 0.2rem;
  font-weight: bold;
  margin: 0 0 0.25rem;
  color: #333;
  background: url(/html/vancheer/cn/img/ico5.png) left center no-repeat;
  background-size: 0.12rem;
}
.sideRight .sideNews {
  position: relative;
  padding: 0.4rem 39% 0.5rem 0.5rem;
}
.sideRight .sideNews::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.sideRight .sideNews .list li {
  padding-bottom: 0.2rem;
}
.sideRight .sideNews .list li .imgDiv {
  border-radius: 0.12rem;
  overflow: hidden;
}
.sideRight .sideNews .list li .imgDiv img {
  width: 100%;
}
.sideRight .sideNews .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
  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;
}
.sideRight .sideNews .list li:hover .name {
  color: #e50012;
}
.sideRight .sideRead {
  position: relative;
  padding: 0.4rem 39% 0.56rem 0.5rem;
}
.sideRight .sideRead::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.sideRight .sideRead .list li {
  padding-bottom: 0.24rem;
}
.sideRight .sideRead .list li .name {
  font-size: var(--fs16);
  color: #666;
  line-height: 0.24rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sideRight .sideRead .list li:hover .name {
  color: #e50012;
}
.sideRight .sideLabel {
  padding: 0.4rem 39% 0.4rem 0.5rem;
}
.sideRight .sideLabel .list::after {
  content: '';
  display: block;
  clear: both;
}
.sideRight .sideLabel .list ul {
  margin-right: -0.1rem;
}
.sideRight .sideLabel .list li {
  float: left;
  width: 50%;
  padding-bottom: 0.1rem;
  font-size: var(--fs15);
}
.sideRight .sideLabel .list li .box {
  margin-right: 0.1rem;
}
.sideRight .sideLabel .list li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  text-align: center;
  padding: 0 0.1rem;
  color: #666;
  height: 0.4rem;
  background: #fff;
  border: #ececec solid 1px;
  border-radius: 0.12rem;
  overflow: hidden;
}
.sideRight .sideLabel .list li a:hover {
  color: #e50012;
}
.sideRight .sideLabel .list li a em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sideRight .moreBtn {
  margin-top: 0.1rem;
}
.sideRight .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.68rem;
  height: 0.5rem;
  background: #e50012;
  border-radius: 0.48rem;
  font-size: var(--fs16);
  color: #fff;
}
.sideRight .moreBtn em {
  margin-left: 0.2rem;
  width: 18px;
  height: 14px;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
}
@media (max-width: 1600px) {
  .newsBot .leftDiv {
    padding-left: calc((100% - 16rem) / 2);
  }
  .sideRight .sideNews {
    padding: 0.4rem 28% 0.5rem 0.5rem;
  }
  .sideRight .sideRead {
    padding: 0.4rem 28% 0.5rem 0.5rem;
  }
  .sideRight .sideLabel {
    padding: 0.4rem 28% 0.4rem 0.5rem;
  }
}
@media (max-width: 1004px) {
  .newsTop {
    padding: 0.7rem 0 0.6rem;
  }
  .newsTop .name {
    width: auto;
    font-size: var(--fs18);
    line-height: 0.56rem;
    margin: 0 auto 0.3rem;
  }
  .newsTop .time li {
    margin: 0 0.2rem;
    padding-left: 0.46rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .newsTop .time li img {
    margin-top: -0.16rem;
    width: 0.32rem;
  }
  .newsTop.on {
    padding: 0.7rem 0 0.6rem;
  }
  .newsBot {
    padding-bottom: 1rem;
  }
  .newsBot .leftDiv {
    width: auto;
    float: none;
    padding-left: 0;
  }
  .newsBot .conDiv {
    padding: 0.75rem 0.3rem 0.8rem;
  }
  .newsBot .content {
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .newsBot .botbot {
    margin-top: 0.8rem;
  }
  .newsBot .share {
    padding-left: 1.2rem;
  }
  .newsBot .share em {
    font-size: var(--fs14);
  }
  .newsBot .backBtn {
    position: relative;
    top: 0;
    margin: 0.7rem auto 0;
    width: 2.4rem;
  }
  .newsBot .backBtn a {
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .newsBot .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .newsBot .backBtn a:hover em {
    background-size: 10px;
  }
  .pageDown {
    margin-top: 0.65rem;
    padding: 0 0.3rem;
  }
  .pageDown ul {
    margin-right: 0;
  }
  .pageDown li {
    float: none;
    width: auto;
    font-size: var(--fs13);
    margin-bottom: 0.25rem;
  }
  .pageDown li .box {
    margin-right: 0;
    height: 1.4rem;
    padding-left: 1.35rem;
    padding-right: 0.35rem;
  }
  .pageDown li em {
    margin-top: -0.2rem;
    line-height: 0.4rem;
    left: 0.3rem;
  }
  .pageDown li a {
    max-height: 0.84rem;
    line-height: 0.42rem;
  }
  .sideRight {
    display: none;
  }
}
.proBanner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.proBanner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 128px;
  background: url(/html/vancheer/cn/img/bg1.png) bottom repeat-x;
  z-index: 1;
}
.proBanner .swiper-slide {
  position: relative;
}
.proBanner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.proBanner .swiper-slide .img img {
  width: 100%;
}
.proBanner .onebox {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
}
.proBanner .onebox .cn {
  margin: 0 0 0.15rem;
  font-size: var(--fs72);
  line-height: 0.9rem;
  color: #fff;
  font-weight: bold;
}
.proBanner .onebox .zi {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.proBanner .onebox .btnGroup li {
  float: left;
  margin-right: 0.1rem;
}
.proBanner .onebox .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.66rem;
  height: 0.5rem;
  border: #fff solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proBanner .onebox .btnGroup li a em {
  margin-left: 0.15rem;
  display: block;
  width: 14px;
  height: 13px;
  background: url(/html/vancheer/cn/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;
}
.proBanner .onebox .btnGroup li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #b40914 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proBanner .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);
}
.proBanner .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);
}
.proBanner .circle-chart__circle {
  stroke-linecap: square;
  fill: none;
}
.proBanner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.5rem;
  z-index: 2;
}
.proBanner .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  background: #cdcdcd;
  position: relative;
  fill: none;
  opacity: 1;
}
.proBanner .swiper-pagination .swiper-pagination-bullet svg {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  margin-top: -19px;
  left: 50%;
  margin-left: -19px;
}
.proBanner .swiper-pagination .swiper-pagination-bullet svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.proBanner .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
.proBanner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__background {
  stroke: #373637;
  stroke-width: 1;
}
.proBanner .swiper-pagination .swiper-pagination-bullet-active .circle-chart__circle {
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: square;
  fill: none;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  -moz-transform-origin: center;
  animation: circle-chart-fill 3.8s linear reverse;
  -moz-animation: circle-chart-fill 3.8s linear reverse;
  -webkit-animation: circle-chart-fill 3.8s linear reverse;
  -ms-animation: circle-chart-fill 3.8s linear reverse;
}
.proBanner .swiper-pagination .swiper-pagination-bullet.one .swiper-pagination-bullet-active .circle-chart__circle {
  animation: circle-chart-fill 2.4s linear reverse;
  -moz-animation: circle-chart-fill 2.4s linear reverse;
  -webkit-animation: circle-chart-fill 2.4s linear reverse;
  -ms-animation: circle-chart-fill 2.4s linear reverse;
}
.productTop {
  width: 100%;
  padding: 0.4rem 0 0.3rem;
  border-bottom: #c4c4c4 solid 1px;
  background: #fff;
}
.productTop .mxfDiv {
  padding-left: 2.5rem;
  padding-right: 10%;
}
.productTop .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  margin-top: 0.15rem;
}
.productTop .clearBtn {
  font-size: var(--fs16);
  line-height: 0.2rem;
  color: #333;
}
.productTop .clearBtn:hover {
  color: #e50012;
}
.productTop.fixed {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 0.2rem 0 0;
  height: 1.5rem;
}
.productTop.fixed .pageClass li {
  margin-bottom: 0.1rem;
}
.pageClass ul {
  margin-bottom: 0;
}
.pageClass li {
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
  position: relative;
  font-size: var(--fs16);
}
.pageClass li::after {
  content: '';
  display: block;
  clear: both;
}
.pageClass li b {
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
  line-height: 0.28rem;
}
.pageClass li dl {
  margin-bottom: 0;
}
.pageClass li dd {
  float: left;
  position: relative;
  cursor: pointer;
  padding-right: 0.3rem;
  min-width: 1.6rem;
}
.pageClass li dd:first-child {
  min-width: 0.85rem;
}
.pageClass li dd:last-child {
  min-width: auto;
}
.pageClass li dd .name {
  line-height: 0.28rem;
  color: #666;
  position: relative;
  padding-left: 25px;
  font-size: var(--fs16);
}
.pageClass li dd .name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 15px;
  height: 15px;
  background: url(/html/vancheer/cn/img/nimg15_1.png) no-repeat;
}
.pageClass li .on .name::before {
  background: url(/html/vancheer/cn/img/nimg15_1on.png) no-repeat;
}
.pageClass li:last-child dd {
  padding-top: 0;
}
.pageClass .select {
  width: 2rem;
  position: relative;
}
.pageClass .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.5rem;
  line-height: 0.5rem;
  padding-left: 0.2rem;
  font-size: var(--fs16);
  color: #666;
  background: #fff;
}
.pageClass .select .caption::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -5px;
  width: 17px;
  height: 11px;
  background: url(/html/vancheer/cn/img/selectIco2.png) left no-repeat;
}
.pageClass .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2rem;
  overflow: auto;
  display: none;
}
.pageClass .select .xlist::-webkit-scrollbar {
  width: 2px;
}
.pageClass .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.pageClass .select .xlist::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.pageClass .select .xlist a {
  display: block;
  font-size: var(--fs14);
  background: #fff;
  color: #666;
  height: 0.4rem;
  line-height: 0.4rem;
  border-bottom: #f6f6f6 solid 1px;
  padding: 0 0.2rem;
}
.pageClass .select .xlist a:hover {
  color: #e50012;
}
.pageClass2 li dd {
  padding-top: 0;
}
.pageClass2 li dd:first-child {
  min-width: 1.3rem;
}
.productBot {
  background: #f5f5f5;
  padding-top: 1rem;
  padding-left: 0.25rem;
  padding-bottom: 2rem;
  padding-right: 10%;
}
.productBot .rightDiv {
  padding-left: 0.4rem;
  width: calc(100% - 1.85rem);
}
.productBot.on {
  padding-top: 2.5rem;
}
.proNav {
  width: 1.85rem;
  position: sticky;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.6rem 0.22rem 0.3rem;
  top: 1.6rem;
}
.proNav li {
  font-size: var(--fs16);
}
.proNav li a {
  position: relative;
  display: block;
  padding-left: 0.24rem;
  padding-bottom: 0.45rem;
  line-height: 0.24rem;
  color: #999;
}
.proNav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proNav li a::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.2rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: #e0e0e0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proNav li .aNow {
  color: #333;
}
.proNav li .aNow::before {
  background: #e50012;
}
.proNav li .aNow::after {
  background: #e50012;
}
.proNav li:last-child a::after {
  display: none;
}
.productDiv {
  padding-bottom: 0.15rem;
}
.productDiv .title {
  position: relative;
  padding-bottom: 0.2rem;
  color: #222;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.productDiv .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  background: #e50012;
}
.productDiv .list {
  padding-top: 0.6rem;
}
.productDiv .list::after {
  content: '';
  display: block;
  clear: both;
}
.productDiv .list ul {
  margin-right: -0.42rem;
}
.productDiv .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.5rem;
}
.productDiv .list li .box {
  margin-right: 0.42rem;
}
.productDiv .list li a {
  padding: 0.3rem 0.3rem 0;
  display: block;
  height: 5.4rem;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.productDiv .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
}
.productDiv .list li a .imgDiv img {
  max-width: 3.6rem;
  max-height: 3.2rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.productDiv .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  height: 0.46rem;
  line-height: 0.46rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  text-align: center;
}
.productDiv .list li a .msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  line-height: 0.32rem;
  font-size: var(--fs16);
  color: #999;
  text-align: center;
}
.productDiv .list li a .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.12rem auto 0;
  width: 1.3rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  border: #ef3722 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.productDiv .list li a:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.productDiv .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.productDiv .list li a:hover .btnDiv {
  border: none;
  color: #fff;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3e22 100%);
  background-blend-mode: normal, normal;
}
.productDiv .moreBtn {
  margin-top: 0.15rem;
  padding-bottom: 0.5rem;
  text-align: center;
}
.productDiv .moreBtn a {
  position: relative;
  overflow: hidden;
  font-size: var(--fs18);
  color: #222;
  display: inline-block;
  line-height: 0.42rem;
}
.productDiv .moreBtn a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ef3722;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productDiv .moreBtn a:hover {
  color: #e50012;
}
.productDiv:nth-of-type(1) .list li {
  width: 50%;
}
.productDiv:nth-of-type(1) .list li a .imgDiv img {
  max-width: 6.2rem;
}
@media (max-width: 1600px) {
  .proBanner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .proBanner::before {
    height: 1.2rem;
  }
  .proBanner .swiper-slide .img {
    height: 7rem;
  }
  .proBanner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .proBanner .onebox {
    left: 0.3rem;
    margin-left: 0;
  }
  .proBanner .onebox .cn {
    font-size: var(--fs24);
    line-height: 0.56rem;
  }
  .proBanner .onebox .zi {
    font-size: var(--fs17);
    line-height: 0.52rem;
    margin-bottom: 0.3rem;
  }
  .proBanner .onebox .btnGroup li a {
    font-size: var(--fs14);
    width: 2.72rem;
    height: 0.8rem;
  }
  .proBanner .onebox .btnGroup li a em {
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .proBanner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 15px;
  }
  .proBanner .swiper-pagination .swiper-pagination-bullet svg {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
  }
  .productTop {
    padding: 0.6rem 0 0.3rem;
  }
  .productTop .mxfDiv {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
  .productTop .botbot {
    margin-top: 0.3rem;
  }
  .productTop .clearBtn {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .productTop.fixed {
    position: relative;
    padding: 0.6rem 0 0.3rem;
    height: auto;
  }
  .productTop.fixed .pageClass li {
    margin-bottom: 0.3rem;
  }
  .pageClass li {
    padding-left: 0;
    margin-bottom: 0.3rem;
    font-size: var(--fs15);
  }
  .pageClass li b {
    display: block;
    position: relative;
    line-height: 0.64rem;
    margin-bottom: 0.1rem;
  }
  .pageClass li dd {
    padding-top: 0;
    padding-right: 0.2rem;
    margin-bottom: 0.2rem;
    min-width: 1.6rem;
  }
  .pageClass li dd:first-child {
    min-width: 0.9rem;
  }
  .pageClass li dd .name {
    line-height: 0.4rem;
    font-size: var(--fs14);
  }
  .pageClass li dd .limg {
    display: none;
  }
  .pageClass li dd .limg img {
    height: 0.7rem;
  }
  .pageClass .select {
    width: 3.6rem;
  }
  .pageClass .select .caption {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
    padding-left: 0.3rem;
  }
  .pageClass .select .caption::after {
    right: 0.2rem;
    margin-top: -3px;
    width: 12px;
    height: 7px;
    background-size: 12px;
  }
  .pageClass .select .xlist {
    max-height: 4rem;
  }
  .pageClass .select .xlist a {
    font-size: var(--fs13);
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.3rem;
  }
  .pageClass2 li dd {
    padding-top: 0;
  }
  .pageClass2 li dd:first-child {
    min-width: 1.5rem;
  }
  .productBot {
    padding-top: 0.8rem;
    padding-left: 0.3rem;
    padding-bottom: 1.2rem;
    padding-right: 0.3rem;
  }
  .productBot .rightDiv {
    padding-left: 0;
    width: 100%;
  }
  .productBot.on {
    padding-top: 0.8rem;
  }
  .productDiv {
    padding-bottom: 0.15rem;
  }
  .productDiv .title {
    padding-bottom: 0.2rem;
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productDiv .title::after {
    width: 0.45rem;
    height: 2px;
  }
  .productDiv .list ul {
    margin-right: -0.2rem;
  }
  .productDiv .list li {
    width: 50%;
    margin-bottom: 0.4rem;
  }
  .productDiv .list li .box {
    margin-right: 0.2rem;
  }
  .productDiv .list li a {
    padding: 0.3rem 0.2rem 0;
    border-radius: 0.2rem;
  }
  .productDiv .list li a .imgDiv {
    height: 2.5rem;
  }
  .productDiv .list li a .imgDiv img {
    max-width: 2.7rem;
    max-height: 2.5rem;
  }
  .productDiv .list li a .name {
    margin-top: 0.15rem;
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .productDiv .list li a .msg {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .productDiv .list li a .btnDiv {
    margin: 0.16rem auto 0;
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .productDiv .moreBtn {
    margin-top: 0.3rem;
    padding-bottom: 0.4rem;
  }
  .productDiv .moreBtn a {
    font-size: var(--fs16);
    line-height: 0.64rem;
  }
  .productDiv .moreBtn a::after {
    height: 2px;
  }
  .productDiv:nth-of-type(1) .list li {
    width: 100%;
  }
  .productDiv:nth-of-type(1) .list li a .imgDiv img {
    max-width: 5.2rem;
  }
}
.proShowBan {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.proShowBan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 128px;
  background: url(/html/vancheer/cn/img/bg1.png) bottom repeat-x;
  z-index: 1;
}
.proShowBan .bg img {
  width: 100%;
  transform: scale(1.1) translateZ(0);
  -o-transform: scale(1.1) translateZ(0);
  -moz-transform: scale(1.1) translateZ(0);
  -webkit-transform: scale(1.1) translateZ(0);
  transition: all,4s ease;
}
.proShowBan .bg video {
  width: 100%;
  display: block;
}
.proShowBan .baozhe {
  position: relative;
}
.proShowBan .txtLayer {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  text-align: center;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.proShowBan .txtLayer .cn {
  margin: 0 0 0.25rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  font-weight: bold;
}
.proShowBan .txtLayer .zi {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #fff;
}
.proShowBan .txtLayer .name {
  margin: 0 0 0.25rem;
  font-size: var(--fs56);
  line-height: 0.72rem;
  color: #fff;
  letter-spacing: 4px;
  text-indent: 4px;
  font-weight: bold;
}
.proShowBan .txtLayer .wen {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.proShowBan .txtLayer .tel {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  font-family: 'Din-B';
}
.proShowBan .btnGroup {
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.proShowBan .btnGroup ul {
  font-size: 0;
}
.proShowBan .btnGroup li {
  display: inline-block;
  margin: 0 0.1rem;
}
.proShowBan .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #333;
  border: #e50012 solid 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.56rem;
  height: 0.5rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowBan .btnGroup li a em {
  margin-left: 0.15rem;
  display: block;
  width: 16px;
  height: 12px;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 16px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowBan .btnGroup li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #b40914 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proShowBan .btnGroup li a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 16px;
}
.proShowBan .btnGroup2 {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}
.proShowBan .btnGroup2 ul {
  font-size: 0;
}
.proShowBan .btnGroup2 li {
  display: inline-block;
  margin: 0 0.1rem;
}
.proShowBan .btnGroup2 li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  color: #333;
  border: #e50012 solid 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 2rem;
  height: 0.6rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowBan .btnGroup2 li a img {
  margin-right: 0.2rem;
  width: 0.35rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowBan .btnGroup2 li a em {
  margin-right: 0.2rem;
  display: block;
  width: 0.35rem;
  height: 0.35rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowBan .btnGroup2 li a:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #b40914 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.proShowBan .btnGroup2 li a:hover img {
  filter: brightness(0) invert(1);
}
.proShowBan .mouse {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0.6rem;
  z-index: 3;
  width: 18px;
}
.proShowBan .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 18px;
  height: 32px;
  border-radius: 0.2rem;
  border: 1px solid #fff;
}
.proShowBan .mouse .kuang span {
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 13px;
  width: 2px;
  height: 5px;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
.proShowBan.animated .bg img {
  transform: scale(1) translateZ(0);
  -o-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
}
.proShowBan.on {
  padding-bottom: 0.7rem;
}
.proshowNav li {
  float: left;
  margin-right: 0.36rem;
  font-size: var(--fs14);
}
.proshowNav li a {
  line-height: 0.7rem;
  color: #333;
}
.proshowNav li .aNow {
  color: #e50012;
}
@media (max-width: 1004px) {
  .proShowBan .bg {
    height: 5rem;
  }
  .proShowBan .bg img {
    height: 100%;
    object-fit: cover;
  }
  .proShowBan .bg video {
    height: 100%;
    object-fit: cover;
  }
  .proShowBan .txtLayer .cn {
    margin: 0 0 0.25rem;
    padding: 0 0.3rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .proShowBan .txtLayer .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0 0.3rem;
  }
  .proShowBan .txtLayer .name {
    margin: 0 0 0.15rem;
    font-size: var(--fs24);
    line-height: 0.56rem;
    letter-spacing: 2px;
    text-indent: 2px;
  }
  .proShowBan .txtLayer .wen {
    font-size: var(--fs16);
    line-height: 0.52rem;
    padding: 0 0.3rem;
  }
  .proShowBan .txtLayer .tel {
    font-size: var(--fs26);
    line-height: 0.64rem;
  }
  .proShowBan .btnGroup {
    bottom: 0.4rem;
  }
  .proShowBan .btnGroup li a {
    font-size: var(--fs14);
    width: 2.16rem;
    height: 0.8rem;
  }
  .proShowBan .btnGroup li a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .proShowBan .btnGroup li a:hover em {
    background-size: 12px;
  }
  .proShowBan .btnGroup2 {
    margin-top: 0.4rem;
  }
  .proShowBan .btnGroup2 li a {
    font-size: var(--fs14);
    width: 2.46rem;
    height: 0.86rem;
  }
  .proShowBan .btnGroup2 li a img {
    margin-right: 0.15rem;
    width: 0.4rem;
  }
  .proShowBan .btnGroup2 li a em {
    margin-right: 0.15rem;
    width: 0.4rem;
    height: 0.4rem;
  }
  .proShowBan .btnGroup2 li:nth-child(1) a em {
    background-size: 0.4rem;
  }
  .proShowBan .btnGroup2 li:nth-child(1) a:hover em {
    background-size: 0.4rem;
  }
  .proShowBan .btnGroup2 li:nth-child(2) a em {
    background-size: 0.4rem;
  }
  .proShowBan .btnGroup2 li:nth-child(2) a:hover em {
    background-size: 0.4rem;
  }
  .proShowBan .mouse {
    display: none;
  }
  .proShowBan.on {
    padding-bottom: 0;
  }
}
.productShowBox {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.proTitle {
  text-align: center;
  position: relative;
  padding-bottom: 0.24rem;
}
.proTitle::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  background: #fff;
}
.proTitle .en {
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-family: 'Mont-B';
  text-transform: uppercase;
  opacity: 0.2;
  background-image: linear-gradient(top, #bab9b9, #2c2a2c);
  background-image: linear-gradient(to bottom, #bab9b9, #2c2a2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proTitle .cn {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #fff;
}
.proShowP1 {
  margin-bottom: 0.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
  padding-top: 0.7rem;
  height: 8.46rem;
  background: center no-repeat;
  background-size: cover;
}
.proShowP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.proShowP1 .zi {
  font-size: var(--fs16);
  text-align: center;
  margin-bottom: 1rem;
}
.proShowP1 .zi em {
  padding: 0 0.1rem;
}
.proShowP1 .list {
  width: 100%;
  position: relative;
  min-height: 4.8rem;
}
.proShowP1 .list li {
  position: absolute;
  padding-left: 58px;
  max-width: 5.1rem;
}
.proShowP1 .list li .headIco {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -23px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.proShowP1 .list li .headIco img {
  width: 100%;
}
.proShowP1 .list li .conDiv {
  padding: 0.15rem 0.3rem;
  background: #f5f5f5;
  border-radius: 0.12rem;
  border: #dcdcdc solid 1px;
}
.proShowP1 .list li .name {
  font-size: var(--fs20);
  line-height: 0.24rem;
  color: #e50012;
  font-weight: bold;
}
.proShowP1 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.2rem;
}
.proShowP1 .list li:nth-child(1) {
  left: 10.7%;
  top: 0;
}
.proShowP1 .list li:nth-child(2) {
  right: 8.6%;
  top: 0.5rem;
}
.proShowP1 .list li:nth-child(3) {
  left: 19.8%;
  bottom: 1rem;
}
.proShowP1 .list li:nth-child(4) {
  left: 50%;
  bottom: 0;
}
.proShowP2 {
  padding-top: 0.9rem;
  padding-bottom: 0.6rem;
  margin-bottom: 0.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background: center no-repeat;
  background-size: cover;
}
.proShowP2 .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 5.7rem;
  width: 10rem;
  margin: 0 auto;
}
.proShowP2 .imgDiv img {
  max-width: 10rem;
  max-height: 5.7rem;
}
.proShowP2 .msgList {
  padding: 0.35rem 0 0.3rem;
}
.proShowP2 .msgList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
}
.proShowP2 .msgList li {
  padding: 0 0.6rem;
  position: relative;
  min-height: 0.46rem;
  margin-bottom: 0.25rem;
}
.proShowP2 .msgList li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 0.46rem;
  background: #999;
}
.proShowP2 .msgList li:first-child {
  padding: 0 0.6rem 0 0;
}
.proShowP2 .msgList li:last-child {
  padding: 0 0 0 0.6rem;
}
.proShowP2 .msgList li:last-child::after {
  display: none;
}
.proShowP2 .msgList li .zi {
  font-size: var(--fs24);
  line-height: 0.28rem;
  font-weight: bold;
}
.proShowP2 .msgList li .wen {
  margin-top: 0.05rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.proShowP2 .btnDiv {
  width: 1.56rem;
  margin: 0 auto;
}
.proShowP2 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: #e50012 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.proShowP2 .btnDiv a em {
  display: block;
  margin-left: 0.18rem;
  width: 0.18rem;
  height: 0.14rem;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 0.18rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP2 .btnDiv a:hover {
  background: #e50012;
  color: #fff;
}
.proShowP2 .btnDiv a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.18rem;
}
.proShowP3 {
  padding-top: 0.85rem;
  height: 9.4rem;
  background: #000;
  border-radius: 0.2rem;
  position: relative;
  overflow: hidden;
}
.proShowP3 .proTitle::after {
  background: #e50012;
}
.proShowP3 .proTitle .en {
  background-image: linear-gradient(top, #e5e5e5, #1a1a1a);
  background-image: linear-gradient(to bottom, #e5e5e5, #1a1a1a);
}
.proShowP3 .swiper-box {
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: 1.6rem;
  height: 7rem;
}
.proShowP3 .btn-box {
  position: absolute;
  left: 0.56rem;
  top: 1.6rem;
}
.proShowP3 .btn-box .se {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
  margin: 0;
  top: auto;
  background: #1e1e20;
}
.proShowP3 .btn-box .swiper-button-prev {
  margin-bottom: 0.3rem;
  left: 0;
}
.proShowP3 .btn-box .swiper-button-prev::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 9px;
  margin-left: -7px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg14_top.jpg) no-repeat;
}
.proShowP3 .btn-box .swiper-button-next {
  right: 0;
}
.proShowP3 .btn-box .swiper-button-next::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 14px;
  height: 9px;
  margin-left: -7px;
  margin-bottom: -5px;
  background: url(/html/vancheer/cn/img/nimg14_bot.jpg) no-repeat;
}
.proShowP3 .thumb-box {
  width: 4.2rem;
  font-size: 0;
}
.proShowP3 .thumb-box a {
  display: block;
  position: relative;
  margin-bottom: 0.1rem;
}
.proShowP3 .thumb-box a .name {
  background: #1e1e20;
  display: inline-block;
  overflow: hidden;
  border-radius: 0.48rem;
  padding: 0 0.3rem 0 0.5rem;
  font-size: var(--fs18);
  height: 0.54rem;
  line-height: 0.54rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP3 .thumb-box a .name::before {
  content: '';
  position: absolute;
  left: 0.13rem;
  top: 50%;
  width: 0.26rem;
  height: 0.26rem;
  margin-top: -0.13rem;
  border: #fff solid 1px;
  border-radius: 50%;
  background: url(/html/vancheer/cn/img/nimg10_2.png) center no-repeat;
  background-size: 0.1rem;
}
.proShowP3 .thumb-box a .hideDiv {
  opacity: 0;
  display: none;
  background: #1e1e20;
  overflow: hidden;
  padding: 0.2rem 0.4rem 0.3rem 0.3rem;
  border-radius: 0.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP3 .thumb-box a .zi {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.proShowP3 .thumb-box a .content {
  font-size: var(--fs14);
  line-height: 0.24rem;
  color: #fff;
}
.proShowP3 .thumb-box a.on .name {
  display: none;
  opacity: 0;
}
.proShowP3 .thumb-box a.on .hideDiv {
  display: block;
  opacity: 1;
}
.proShowP3 .imgList {
  position: absolute;
  overflow: hidden;
  right: 0;
  bottom: 0;
  width: 12.5rem;
}
.proShowP3 .imgList .pic {
  transform: translateX(50px);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 7rem;
  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-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.proShowP3 .imgList .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proShowP3 .imgList .zi {
  font-size: var(--fs16);
  line-height: 0.56rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.2rem;
}
.proShowP3 .imgList .content {
  text-align: center;
  font-size: var(--fs14);
  line-height: 0.48rem;
  color: #fff;
}
.proShowP3 .imgList .swiper-slide-active .pic {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.proShowP4 {
  position: relative;
  padding: 1.1rem 0;
}
.proShowP4 .videobox {
  overflow: hidden;
  position: relative;
}
.proShowP4 .videobox .imgDiv {
  width: 15.36rem;
  margin: 0 auto;
  border-radius: 0.2rem;
  overflow: hidden;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.proShowP4 .videobox .imgDiv img {
  width: 100%;
}
.proShowP4 .videobox .videoDiv {
  display: none;
}
.proShowP4 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 104px;
  margin-left: -52px;
  margin-top: -52px;
  border-radius: 50%;
  z-index: 1;
}
.proShowP4 .videobox .playbox img {
  width: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 1;
}
.proShowP4 .videobox .playbox .dwq {
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -100px;
  margin-top: -100px;
  width: 200px;
  height: 200px;
}
.proShowP4 .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;
}
.proShowP4 .videobox .playbox .delay-04 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.proShowP4 .videobox .playbox .delay-05 {
  -webkit-animation-delay: 1.6s;
  -moz-animation-delay: 1.6s;
  -o-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.proShowP4 .videobox .playbox .delay-06 {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}
.proShowP4.on .videobox .imgDiv {
  width: 100%;
}
.videoModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100vh;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #e50012 url(../img/close.png) center no-repeat;
  background-size: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
.proShowP5 {
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.75rem 0 1.4rem;
  margin-bottom: 0.6rem;
}
.proShowP5 .title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
  line-height: 0.5rem;
  text-align: center;
  margin: 0 0 0.95rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proShowP5 .tableDiv .firstRow {
  position: sticky;
  top: 0.7rem;
}
.proShowP5 .tableDiv table {
  border-left: #e0e0e0 solid 1px;
  font-family: "Poppins-M";
}
.proShowP5 .tableDiv table th {
  border-right: #f25055 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  height: 0.7rem;
  background: #ee1f25;
  color: #fff;
  font-size: var(--fs22);
  font-weight: 400;
  text-align: center;
}
.proShowP5 .tableDiv table th:first-child {
  text-align: left;
  padding-left: 0.4rem;
}
.proShowP5 .tableDiv table .one {
  width: 2.6rem;
}
.proShowP5 .tableDiv table td {
  text-align: center;
  border-right: #e0e0e0 solid 1px;
  border-bottom: #e0e0e0 solid 1px;
  padding: 0.12rem 0.2rem 0.12rem 0.1rem;
  min-height: 0.54rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Poppins-L';
}
.proShowP5 .tableDiv table td:first-child {
  text-align: left;
  padding: 0.12rem 0.1rem 0.12rem 0.4rem;
}
.proShowP5 .tips {
  margin-top: 0.6rem;
  text-align: center;
  font-size: var(--fs14);
}
.proShowP5 .hint {
  margin-top: 0.35rem;
  font-size: var(--fs16);
  color: #999;
}
.proShowP6 {
  border-radius: 0.2rem;
  overflow: hidden;
  padding: 1.4rem 0;
  background: center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.proShowP6 .proTitle {
  margin-bottom: 0.5rem;
}
.proShowP6-2 {
  border-radius: 0;
}
.installPic {
  position: relative;
  padding-bottom: 1.2rem;
}
.installPic .imgList {
  width: 20.4rem;
  overflow: hidden;
  position: static;
}
.installPic .swiper-slide {
  width: auto;
}
.installPic .swiper-slide .box {
  background: #fff;
  border-radius: 0.16rem;
  width: 3.6rem;
  height: 3.92rem;
  padding: 0.6rem 0.6rem 0;
}
.installPic .swiper-slide .ico {
  margin: 0 auto;
  width: 0.7rem;
  height: 1rem;
}
.installPic .swiper-slide .ico img {
  width: 100%;
}
.installPic .swiper-slide .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  color: #000;
  font-weight: bold;
}
.installPic .swiper-slide .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
}
.installPic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.installPic .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.installPic .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 2px;
  background-color: #e1e6e7;
}
.installPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.installPic .num1,
.installPic .num2 {
  font-family: 'Poppins-L';
  font-size: var(--fs14);
  color: #fff;
  width: 24px;
  text-align: center;
}
.installPic .num1 {
  padding-right: 0.08rem;
  color: #e50012;
}
.installPic .num2 {
  padding-left: 0.08rem;
}
.installPic .arrowDiv {
  margin-right: 0.3rem;
}
.installPic .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.2rem;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border: #c3c4c5 solid 1px;
  border-radius: 50%;
}
.installPic .arrowDiv .se:hover {
  border: #e50012 solid 1px;
  background: #e50012;
}
.installPic .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.installPic .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.proShowP7 {
  margin-top: 0.6rem;
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.55rem 0 1rem;
}
.proShowP7 .title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
  line-height: 0.5rem;
  text-align: center;
  margin: 0 0 0.8rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proShowP7 .list li {
  position: relative;
  padding-bottom: 10px;
}
.proShowP7 .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #f6f7f9;
  cursor: pointer;
}
.proShowP7 .list li .ico {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.proShowP7 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .name {
  position: relative;
  color: #333;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.proShowP7 .list li .wen {
  position: absolute;
  color: #999;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  border: #cdcdcd solid 1px;
  background: #fff;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.proShowP7 .list li .box {
  display: none;
}
.proShowP7 .list li .msgDiv.aNow .ico {
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef482e 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.proShowP7 .list li .msgDiv.aNow .ico:before {
  background: #fff;
}
.proShowP7 .list li .msgDiv.aNow .ico:after {
  background: #fff;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.proShowP7 .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.2rem 0.65rem 0.8rem;
}
.proShowP7 .list li .zi {
  position: absolute;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef482e 100%);
  background-blend-mode: normal, normal;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.38rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: var(--fs16);
  color: #fff;
  font-family: 'Mont-R';
}
.proShowP7 .list li .content {
  color: #999;
  line-height: 0.36rem;
  font-size: var(--fs16);
  text-align: justify;
}
.proShowP7 .moreBtn {
  width: 1.54rem;
  margin: 0.45rem auto 0;
}
.proShowP7 .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;
  background-image: linear-gradient(90deg, #e70e1f 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs16);
}
.proShowP7 .moreBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 16px;
  height: 12px;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 16px;
}
.proShowP7-2 {
  margin-top: 0;
  padding: 0.9rem 0 1rem;
}
.proShowP8 {
  padding: 1rem 0 0.75rem;
  overflow: hidden;
}
.proShowP8 .title {
  font-size: var(--fs48);
  font-weight: bold;
  color: #333;
  line-height: 0.5rem;
  text-align: center;
  margin: 0 0 0.65rem;
  letter-spacing: 6px;
  text-indent: 6px;
}
.proShowP8 .backBtn {
  width: 1.8rem;
  margin: 0.65rem auto 0;
}
.proShowP8 .backBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border: #d1d1d1 solid 1px;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #333;
  font-size: var(--fs16);
}
.proShowP8 .backBtn a em {
  margin-left: 0.15rem;
  display: block;
  width: 18px;
  height: 14px;
  background: url(/html/vancheer/cn/img/ico4.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;
}
.proShowP8 .backBtn a:hover {
  border: #e50012 solid 1px;
  background: #e50012;
  color: #fff;
}
.proShowP8 .backBtn a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
}
.proShowP8 .aboutTitle {
  margin-bottom: 0.3rem;
}
.proShowP8-2 {
  padding: 1rem 0 1.6rem;
}
.proShowP8-3 {
  padding: 1.4rem 0 1.6rem;
  background: #f9f9f9;
}
.proShowP8-4 {
  padding: 1.4rem 0 1.3rem;
  background: #f3f3f3;
}
.hotProduct {
  position: relative;
}
.hotProduct .imgList {
  overflow: hidden;
  padding: 0.2rem;
  margin: -0.2rem;
}
.hotProduct .imgList a {
  padding: 0.4rem 0.3rem 0;
  display: block;
  height: 5.64rem;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.hotProduct .imgList a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.2rem;
}
.hotProduct .imgList a .imgDiv img {
  max-width: 3.6rem;
  max-height: 3.2rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.hotProduct .imgList a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
  height: 0.46rem;
  line-height: 0.46rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  text-align: center;
}
.hotProduct .imgList a .msg {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 0.32rem;
  line-height: 0.32rem;
  font-size: var(--fs16);
  color: #999;
  text-align: center;
}
.hotProduct .imgList a .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0.12rem auto 0;
  width: 1.3rem;
  height: 0.46rem;
  border-radius: 0.48rem;
  border: #ef3722 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.hotProduct .imgList a:hover {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.hotProduct .imgList a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.hotProduct .imgList a:hover .btnDiv {
  border: none;
  color: #fff;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3e22 100%);
  background-blend-mode: normal, normal;
}
.hotProduct .se {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 50%;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border: #959595 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.hotProduct .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3e22 100%);
  background-blend-mode: normal, normal;
}
.hotProduct .prev {
  left: 50%;
  margin-left: -8.6rem;
}
.hotProduct .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left.png) no-repeat;
}
.hotProduct .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.hotProduct .next {
  right: 50%;
  margin-right: -8.6rem;
}
.hotProduct .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right.png) no-repeat;
}
.hotProduct .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.proshowImg {
  margin: 0.4rem -0.32rem 0;
}
.proshowImg .imgDiv {
  height: 100%;
}
.proshowImg .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .installPic .pjDiv {
    margin-right: -8rem;
  }
  .hotProduct .prev {
    margin-left: -8.78rem;
  }
  .hotProduct .next {
    margin-right: -8.78rem;
  }
}
@media (max-width: 1004px) {
  .productShowBox {
    padding: 0.8rem var(--offset) 0.4rem;
  }
  .proTitle {
    padding-bottom: 0.3rem;
  }
  .proTitle::after {
    margin-left: -0.24rem;
    width: 0.48rem;
    height: 2px;
  }
  .proTitle .en {
    font-size: var(--fs24);
    line-height: 0.48rem;
    opacity: 1;
  }
  .proTitle .cn {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .proShowP1 {
    margin-bottom: 0.4rem;
    border-radius: 0.28rem;
    padding: 0.7rem 0;
    height: auto;
  }
  .proShowP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin: 0 0 0.2rem;
  }
  .proShowP1 .zi {
    font-size: var(--fs14);
    margin-bottom: 0.8rem;
    line-height: 0.48rem;
  }
  .proShowP1 .zi em {
    padding: 0 0.15rem;
  }
  .proShowP1 .list {
    min-height: 1rem;
    padding: 0 0.3rem;
  }
  .proShowP1 .list li {
    position: relative;
    padding-left: 1rem;
    max-width: 100%;
    margin-bottom: 0.3rem;
  }
  .proShowP1 .list li:last-child {
    margin-bottom: 0;
  }
  .proShowP1 .list li .headIco {
    margin-top: -0.36rem;
    width: 0.72rem;
    height: 0.72rem;
  }
  .proShowP1 .list li .conDiv {
    padding: 0.25rem 0.3rem;
    border-radius: 0.16rem;
  }
  .proShowP1 .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .proShowP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .proShowP1 .list li:nth-child(1) {
    left: 0;
  }
  .proShowP1 .list li:nth-child(2) {
    right: 0;
    top: 0;
  }
  .proShowP1 .list li:nth-child(3) {
    left: 0;
    bottom: 0;
  }
  .proShowP1 .list li:nth-child(4) {
    left: 0;
  }
  .proShowP2 {
    padding-bottom: 0.7rem;
    border-radius: 0.28rem;
  }
  .proShowP2 .imgDiv {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    height: 4.5rem;
    width: 100%;
  }
  .proShowP2 .imgDiv img {
    max-width: 90%;
    max-height: 4.5rem;
  }
  .proShowP2 .msgList {
    padding: 0.45rem 0 0.5rem;
  }
  .proShowP2 .msgList ul {
    display: block;
  }
  .proShowP2 .msgList li {
    padding: 0.2rem 0;
    min-height: 0.46rem;
    margin-bottom: 0;
  }
  .proShowP2 .msgList li::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .proShowP2 .msgList li:first-child {
    padding: 0.2rem 0;
  }
  .proShowP2 .msgList li:last-child {
    padding: 0.2rem 0;
  }
  .proShowP2 .msgList li .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .proShowP2 .msgList li .wen {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proShowP2 .btnDiv {
    width: 2.36rem;
  }
  .proShowP2 .btnDiv a {
    height: 0.82rem;
    font-size: var(--fs15);
  }
  .proShowP2 .btnDiv a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .proShowP2 .btnDiv a:hover em {
    background-size: 12px;
  }
  .proShowP3 {
    padding: 0.8rem 0;
    height: auto;
    border-radius: 0.28rem;
  }
  .proShowP3 .proTitle {
    margin-bottom: 0.6rem;
  }
  .proShowP3 .swiper-box {
    position: relative;
    padding-left: 0;
    height: auto;
    padding: 0 0.3rem;
  }
  .proShowP3 .btn-box {
    position: relative;
    left: 0;
    top: 0;
  }
  .proShowP3 .btn-box .se {
    width: 0.78rem;
    height: 0.78rem;
    position: absolute;
    top: auto;
    margin-top: 25%;
  }
  .proShowP3 .btn-box .swiper-button-prev {
    margin-bottom: 0;
    left: 0;
  }
  .proShowP3 .btn-box .swiper-button-prev::after {
    transform: rotate(-90deg);
  }
  .proShowP3 .btn-box .swiper-button-next {
    right: 0;
  }
  .proShowP3 .btn-box .swiper-button-next::after {
    transform: rotate(-90deg);
  }
  .proShowP3 .imgList {
    position: relative;
    width: 100%;
  }
  .proShowP3 .imgList .pic {
    height: 4rem;
    margin-bottom: 0.3rem;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .proShowP4 {
    padding: 0.6rem 0;
  }
  .proShowP4 .videobox .imgDiv {
    width: 100%;
    border-radius: 0.28rem;
  }
  .proShowP4 .videobox .playbox {
    width: 1.1rem;
    height: 1.1rem;
    margin-left: -0.55rem;
    margin-top: -0.55rem;
  }
  .proShowP4 .videobox .playbox img {
    width: 0.86rem;
    margin-left: -0.43rem;
    margin-top: -0.43rem;
  }
  .proShowP4 .videobox .playbox .dwq {
    margin-right: -1rem;
    margin-top: -1rem;
    width: 2rem;
    height: 2rem;
  }
  .proShowP4 .videobox .playbox .pulse2 {
    margin-left: -1rem;
    margin-top: -1rem;
    height: 2rem;
    width: 2rem;
  }
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
  .proShowP5 {
    background: #fff;
    border-radius: 0.28rem;
    padding: 0.75rem 0 1rem;
  }
  .proShowP5 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin: 0 0 0.65rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proShowP5 .longDiv {
    overflow: auto;
  }
  .proShowP5 .tableDiv {
    width: 16rem;
  }
  .proShowP5 .tableDiv .firstRow {
    top: 0;
  }
  .proShowP5 .tableDiv table th {
    height: 1rem;
    font-size: var(--fs15);
  }
  .proShowP5 .tableDiv table th:first-child {
    padding-left: 0.3rem;
  }
  .proShowP5 .tableDiv table .one {
    width: 5.4rem;
  }
  .proShowP5 .tableDiv table td {
    padding: 0.15rem 0.2rem 0.15rem 0.1rem;
    font-size: var(--fs13);
  }
  .proShowP5 .tableDiv table td:first-child {
    padding: 0.15rem 0.1rem 0.15rem 0.3rem;
  }
  .proShowP5 .hint {
    margin-top: 0.45rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .proShowP6 {
    border-radius: 0.28rem;
    padding: 0.8rem 0;
  }
  .proShowP6 .proTitle {
    margin-bottom: 0.65rem;
  }
  .proShowP6 .proTitle .en {
    font-size: var(--fs18);
  }
  .proShowP6-2 {
    border-radius: 0;
  }
  .installPic {
    padding-bottom: 1.4rem;
  }
  .installPic .imgList {
    width: 100%;
    position: relative;
  }
  .installPic .swiper-slide {
    width: auto;
  }
  .installPic .swiper-slide .box {
    border-radius: 0.2rem;
    width: 100%;
    height: auto;
    padding: 0.6rem 0.35rem;
  }
  .installPic .swiper-slide .ico {
    width: 0.9rem;
    height: 1.4rem;
  }
  .installPic .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .installPic .swiper-slide .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .installPic .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .installPic .swiper-pagination {
    width: 2.2rem;
  }
  .installPic .num1,
  .installPic .num2 {
    width: 0.48rem;
  }
  .installPic .num1 {
    padding-right: 0.1rem;
  }
  .installPic .num2 {
    padding-left: 0.1rem;
  }
  .installPic .arrowDiv {
    margin-right: 0.2rem;
  }
  .installPic .arrowDiv .se {
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .proShowP7 {
    border-radius: 0.28rem;
    padding: 0.75rem 0 0.9rem;
  }
  .proShowP7 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin: 0 0 0.65rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proShowP7 .list li {
    padding-bottom: 0.25rem;
  }
  .proShowP7 .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .proShowP7 .list li .ico {
    right: 0.4rem;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: -0.35rem;
  }
  .proShowP7 .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .proShowP7 .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .proShowP7 .list li .name {
    height: auto;
    line-height: 0.52rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .proShowP7 .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .proShowP7 .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .proShowP7 .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .proShowP7 .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
  .proShowP7 .moreBtn {
    width: 2.34rem;
  }
  .proShowP7 .moreBtn a {
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .proShowP7 .moreBtn a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .proShowP7-2 {
    padding: 0.75rem 0 0.9rem;
  }
  .proShowP8 {
    padding: 0.8rem 0 0.75rem;
  }
  .proShowP8 .wrap {
    padding: 0;
  }
  .proShowP8 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    letter-spacing: 4px;
    text-indent: 4px;
  }
  .proShowP8 .backBtn {
    width: 2.56rem;
  }
  .proShowP8 .backBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .proShowP8 .backBtn a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .proShowP8 .backBtn a:hover em {
    background-size: 12px;
  }
  .proShowP8 .aboutTitle {
    margin-bottom: 0.65rem;
  }
  .proShowP8-2 {
    padding: 0.8rem 0 0.75rem;
  }
  .proShowP8-3,
  .proShowP8-4 {
    padding: 0.8rem var(--offset) 0.9rem;
  }
  .hotProduct .imgList {
    padding: 0;
    margin: 0;
  }
  .hotProduct .imgList a {
    padding: 0.3rem 0.2rem 0;
    height: 6.4rem;
    border-radius: 0.2rem;
  }
  .hotProduct .imgList a .imgDiv {
    height: 3.5rem;
  }
  .hotProduct .imgList a .imgDiv img {
    max-width: 5.2rem;
    max-height: 3.5rem;
  }
  .hotProduct .imgList a .name {
    margin-top: 0.15rem;
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: var(--fs17);
  }
  .hotProduct .imgList a .msg {
    height: 0.48rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .hotProduct .imgList a .btnDiv {
    margin: 0.16rem auto 0;
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .hotProduct .imgList a:hover {
    box-shadow: none;
  }
  .hotProduct .se {
    top: 30%;
    margin-top: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .hotProduct .prev {
    left: 0.3rem;
    margin-left: 0;
  }
  .hotProduct .next {
    right: 0.3rem;
    margin-right: 0;
  }
  .proshowImg {
    margin: 0.4rem 0 0;
  }
  .proshowImg .imgDiv {
    height: auto;
  }
  .proshowImg .imgDiv img {
    height: auto;
  }
}
.aboutDiv {
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutTitle {
  text-align: center;
  position: relative;
  padding-bottom: 0.24rem;
}
.aboutTitle::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  background: #e50012;
}
.aboutTitle .en {
  font-size: var(--fs48);
  line-height: 0.42rem;
  font-family: 'Mont-B';
  text-transform: uppercase;
  background-image: linear-gradient(top, #d1d1d1, #fafafa);
  background-image: linear-gradient(to bottom, #d1d1d1, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aboutTitle .cn {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #222;
  font-weight: bold;
}
.aboutP1 {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.aboutP1 .aboutDiv {
  padding: 0.9rem 0 5.9rem;
  background: #fff url(../img/aboutP1.jpg) center bottom no-repeat;
  background-size: 100%;
}
.aboutP1 .name {
  text-align: center;
  font-size: var(--fs72);
  line-height: 0.86rem;
  color: #000;
  font-weight: bold;
  text-indent: 4px;
  letter-spacing: 4px;
  margin: 0.35rem 0 0.2rem;
}
.aboutP1 .zi {
  text-align: center;
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #000;
  margin-bottom: 0.56rem;
}
.aboutP1 .content {
  width: 11.5rem;
  margin: 0 auto;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
  text-align: center;
  overflow: hidden;
  max-height: 1.6rem;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.aboutP1 .content.show {
  max-height: 10rem;
}
.aboutP1 .lookMore {
  padding: 0.3rem 0;
}
.aboutP1 .lookMore a {
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 20px;
  font-size: var(--fs16);
  color: #333;
}
.aboutP1 .lookMore a::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -8px;
  bottom: 0;
  width: 17px;
  height: 10px;
  background: url(/html/vancheer/cn/img/nimg17_1.png) no-repeat;
  transition: transform 0.3s ease;
}
.aboutP1 .lookMore a span {
  display: none;
}
.aboutP1 .lookMore.cur a::after {
  transform: translateY(-50%) rotate(180deg);
}
.aboutP1 .lookMore.cur a em {
  display: none;
}
.aboutP1 .lookMore.cur a span {
  display: inline-block;
}
.aboutP1 .numList {
  width: 12.4rem;
  margin: 0.6rem auto 0;
}
.aboutP1 .numList::after {
  content: '';
  display: block;
  clear: both;
}
.aboutP1 .numList li {
  float: left;
  position: relative;
  padding-left: 0.7rem;
  color: #333;
  font-size: var(--fs16);
}
.aboutP1 .numList li .ico {
  position: absolute;
  left: 0;
  top: 0;
}
.aboutP1 .numList li .ico img {
  width: 0.6rem;
}
.aboutP1 .numList li .pj {
  height: 0.76rem;
}
.aboutP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.aboutP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url(/html/vancheer/cn/img/nimg16_2.png) no-repeat;
}
.aboutP1 .numList li .numUp {
  font-size: 0.8rem;
  line-height: 0.64rem;
  padding-right: 0.12rem;
  color: #e50012;
  font-family: "Din-B";
}
.aboutP1 .numList li .wen {
  line-height: 0.16rem;
}
.aboutP1 .numList li:nth-child(1) {
  width: 2.6rem;
}
.aboutP1 .numList li:nth-child(2) {
  width: 3.52rem;
}
.aboutP1 .numList li:nth-child(3) {
  width: 2.65rem;
}
.aboutP1 .numList li:nth-child(4) {
  width: auto;
  float: right;
}
.aboutP1 .numList2 {
  padding-left: 2.6rem;
}
.aboutP1 .numList2 li:nth-child(1) {
  width: 3.52rem;
}
.aboutP1 .numList2 li:nth-child(2) {
  width: 3.32rem;
}
.aboutP2 {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.aboutP2 .bigBox {
  height: 250vh;
  border-radius: 0.2rem;
  position: relative;
  background: #fff;
}
.aboutP2 .bigBox .aboutTitle {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0.9rem;
  z-index: 2;
  text-align: center;
}
.aboutP2 .bigBox .aboutTitle::after {
  left: 50%;
  margin-left: -0.15rem;
}
.aboutP2 .bigBox .tips {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  text-align: center;
  font-size: var(--fs15);
  z-index: 2;
  color: #333;
}
@media (max-width: 1004px) {
  .aboutP2 .bigBox .aboutTitle {
    top: 0.6rem;
  }
}
.aboutP2 .c-main {
  position: relative;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .aboutP2 .c-main {
    align-items: flex-start;
  }
}
.aboutP2 .c-main .c-list1 {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 2.7rem;
  height: 4.7rem;
  z-index: 5;
  padding-top: 0.5rem;
}
.aboutP2 .c-main .c-list1::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}
@media (max-width: 1600px) {
  .aboutP2 .c-main .c-list1 {
    margin-right: -8rem;
  }
}
@media (max-width: 991px) {
  .aboutP2 .c-main .c-list1 {
    padding: 1.2rem 0;
    width: 100%;
    display: none;
  }
}
@media (max-width: 767px) {
  .aboutP2 .c-main .c-list1 {
    padding-bottom: 0;
  }
}
.aboutP2 .c-main .c-list1 li {
  position: relative;
  z-index: 1;
  line-height: 0.36rem;
  padding-right: 0.4rem;
  font-size: var(--fs24);
  text-align: right;
  margin-bottom: 0.25rem;
}
.aboutP2 .c-main .c-list1 li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .c-main .c-list1 li.on {
  color: #e50012;
}
.aboutP2 .c-main .c-list1 li.on::after {
  top: 0;
  height: 100%;
}
@media (max-width: 767px) {
  .aboutP2 .c-main .c-list1 li {
    padding-bottom: 0.4rem;
  }
}
.aboutP2 .c-main .c-list1 li .c-round {
  cursor: pointer;
}
.aboutP2 .c-main .c-list2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .aboutP2 .c-main .c-list2 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .aboutP2 .c-main .c-list2 {
    top: 25%;
    left: 0;
    width: 100%;
    height: 75vh;
  }
}
.aboutP2 .c-main .c-list2 li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.aboutP2 .c-main .c-list2 li .bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.aboutP2 .c-main .c-list2 li .bg:nth-of-type(2) {
  display: none;
}
@media (max-width: 991px) {
  .aboutP2 .c-main .c-list2 li .bg:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 991px) {
  .aboutP2 .c-main .c-list2 li .bg:nth-of-type(1) {
    display: none;
  }
}
@media (max-width: 767px) {
  .aboutP2 .c-main .c-list2 li .bg {
    height: 100%;
    object-fit: contain;
  }
}
.aboutP2 .c-main .c-list2 li.on {
  opacity: 1;
}
.aboutP2 .mxfDiv {
  position: relative;
  left: 0;
  top: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-top: 2.7rem;
  width: 15.36rem;
  margin: 0 auto;
  z-index: 1;
}
.aboutP2 .conDiv {
  width: 7rem;
  padding-right: 2.48rem;
  overflow: hidden;
}
.aboutP2 .conDiv .name {
  font-size: var(--fs60);
  line-height: 1rem;
  color: #000;
  font-weight: bold;
}
.aboutP2 .conDiv .tab2 {
  margin-top: 0.4rem;
}
.aboutP2 .conDiv .tab2 dd {
  cursor: pointer;
  font-size: var(--fs18);
  color: #999;
  margin-bottom: 0.16rem;
}
.aboutP2 .conDiv .tab2 dd em {
  position: relative;
  line-height: 0.24rem;
}
.aboutP2 .conDiv .tab2 dd em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .conDiv .tab2 .on {
  color: #e50012;
}
.aboutP2 .conDiv .tab2 .on em::after {
  width: 100%;
}
.aboutP2 .tabContentDiv2 {
  width: 50%;
}
.aboutP2 .imgDiv {
  animation: am_left 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_left 0.8s ease-out 0.1s backwards;
  height: 4.7rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutP2 .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .aboutP2 .mxfDiv {
    width: 16rem;
  }
}
@media (max-width: 1004px) {
  .aboutP2 .mxfDiv {
    display: block;
    width: auto;
    padding: 0 0.3rem;
  }
  .aboutP2 .tabContentDiv2 {
    width: auto;
  }
  .aboutP2 .tabContentDiv2 .imgDiv {
    animation: am_top 0.8s ease-out 0.1s backwards;
    -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
    height: 3.6rem;
    border-radius: 0.24rem;
  }
  .aboutP2 .conDiv {
    width: auto;
    padding-top: 0.45rem;
    padding-right: 0;
  }
  .aboutP2 .conDiv .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .aboutP2 .conDiv .tab2 dl {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
  }
  .aboutP2 .conDiv .tab2 dd {
    width: 50%;
    font-size: var(--fs14);
    margin-bottom: 0.25rem;
  }
  .aboutP2 .conDiv .tab2 dd em {
    line-height: 0.42rem;
  }
}
.aboutP3 {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.aboutP3 .bigBox {
  height: 250vh;
  border-radius: 0.2rem;
  position: relative;
  background: #fff;
}
.aboutP3 .bigBox .aboutTitle {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0.9rem;
  z-index: 2;
  text-align: center;
}
.aboutP3 .bigBox .aboutTitle::after {
  left: 50%;
  margin-left: -0.15rem;
}
.aboutP3 .bigBox .tips {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
  text-align: center;
  font-size: var(--fs15);
  z-index: 2;
  color: #333;
}
@media (max-width: 1004px) {
  .aboutP3 .bigBox .aboutTitle {
    top: 0.8rem;
  }
}
.aboutP3 .c-main {
  position: relative;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  border-radius: 0.2rem;
}
.aboutP3 .c-main::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6.8rem;
  background: url(/html/vancheer/cn/img/aboutP3.jpg) center bottom no-repeat;
  background-size: 100%;
}
@media (max-width: 991px) {
  .aboutP3 .c-main {
    align-items: flex-start;
  }
}
.aboutP3 .c-main .c-list1 {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  height: 5.64rem;
  top: 2.7rem;
  z-index: 5;
  padding-top: 0.5rem;
}
.aboutP3 .c-main .c-list1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}
@media (max-width: 1600px) {
  .aboutP3 .c-main .c-list1 {
    margin-left: -8rem;
  }
}
@media (max-width: 991px) {
  .aboutP3 .c-main .c-list1 {
    position: relative;
    margin-left: 0;
    left: auto;
    padding: 0;
    width: 100%;
    top: 3rem;
  }
  .aboutP3 .c-main .c-list1::after {
    width: 100%;
    height: 2px;
  }
}
.aboutP3 .c-main .c-list1 li {
  position: relative;
  z-index: 1;
  line-height: 0.36rem;
  padding-left: 0.4rem;
  font-size: var(--fs24);
  margin-bottom: 0.25rem;
}
.aboutP3 .c-main .c-list1 li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP3 .c-main .c-list1 li.on {
  color: #e50012;
}
.aboutP3 .c-main .c-list1 li.on::after {
  top: 0;
  height: 100%;
}
@media (max-width: 991px) {
  .aboutP3 .c-main .c-list1 li {
    float: left;
    text-align: center;
    width: 33.33%;
    line-height: 0.72rem;
    padding-left: 0;
    font-size: var(--fs15);
    margin-bottom: 0;
  }
  .aboutP3 .c-main .c-list1 li::after {
    left: 50%;
    top: 0;
    width: 0;
    height: 2px;
  }
  .aboutP3 .c-main .c-list1 li.on::after {
    left: 0;
    width: 100%;
    height: 2px;
  }
}
.aboutP3 .c-main .c-list1 li .c-round {
  cursor: pointer;
}
.aboutP3 .c-main .c-list2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .aboutP3 .c-main .c-list2 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 50vh;
  }
}
@media (max-width: 767px) {
  .aboutP3 .c-main .c-list2 {
    top: 25vh;
    left: 0;
    width: 100%;
    height: 75vh;
  }
}
.aboutP3 .c-main .c-list2 li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.aboutP3 .c-main .c-list2 li .opacityBg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.aboutP3 .c-main .c-list2 li .opacityBg:nth-of-type(2) {
  display: none;
}
@media (max-width: 991px) {
  .aboutP3 .c-main .c-list2 li .opacityBg:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 991px) {
  .aboutP3 .c-main .c-list2 li .opacityBg:nth-of-type(1) {
    display: none;
  }
}
@media (max-width: 767px) {
  .aboutP3 .c-main .c-list2 li .opacityBg {
    height: 100%;
    object-fit: contain;
  }
}
.aboutP3 .c-main .c-list2 li.on {
  opacity: 1;
}
.aboutP3 .c-main .c-list2 li.on .imgDiv {
  animation: am_zoomIn 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_zoomIn 0.8s ease-out 0.1s backwards;
}
.aboutP3 .c-main .c-list2 li.on .bg {
  animation: am_right 0.8s ease-out 0.4s backwards;
  -webkit-animation: am_right 0.8s ease-out 0.4s backwards;
}
.aboutP3 .c-main .c-list2 li.on .txtLayer {
  animation: am_top 0.8s ease-out 0.7s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.7s backwards;
}
.aboutP3 .mxfDiv {
  position: relative;
  left: 0;
  top: 0;
  padding-top: 2.7rem;
  padding-left: 3.84rem;
  width: 15.36rem;
  margin: 0 auto;
  z-index: 1;
}
.aboutP3 .baozhe {
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.aboutP3 .baozhe .imgDiv {
  height: 5.64rem;
}
.aboutP3 .baozhe .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP3 .baozhe .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5.7rem;
  height: 3.58rem;
  background: url(/html/vancheer/cn/img/nimg570Bg.png) no-repeat;
  background-size: 5.7rem;
}
.aboutP3 .baozhe .txtLayer {
  position: absolute;
  left: 0.5rem;
  top: 48%;
  z-index: 1;
  color: #fff;
}
.aboutP3 .baozhe .txtLayer .en {
  font-size: var(--fs48);
  line-height: 0.52rem;
  font-family: 'Din-B';
  text-transform: uppercase;
}
.aboutP3 .baozhe .txtLayer .cn {
  margin: 0.2rem 0;
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
}
.aboutP3 .baozhe .txtLayer .msg {
  font-size: var(--fs30);
  line-height: 0.36rem;
}
@media (max-width: 1600px) {
  .aboutP3 .mxfDiv {
    width: 16rem;
  }
}
@media (max-width: 1004px) {
  .aboutP3 .mxfDiv {
    display: block;
    width: auto;
    padding: 1.5rem 0.3rem 0;
  }
  .aboutP3 .baozhe {
    border-radius: 0.24rem;
  }
  .aboutP3 .baozhe .imgDiv {
    height: 3.6rem;
  }
  .aboutP3 .baozhe .bg {
    width: 3.79rem;
    height: 2.38rem;
    background-size: 3.79rem;
  }
  .aboutP3 .baozhe .txtLayer {
    left: 0.3rem;
    top: auto;
    bottom: 10%;
  }
  .aboutP3 .baozhe .txtLayer .en {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .aboutP3 .baozhe .txtLayer .cn {
    margin: 0.1rem 0;
    font-size: var(--fs20);
    line-height: 0.56rem;
  }
  .aboutP3 .baozhe .txtLayer .msg {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
}
.aboutP4 {
  height: 9.4rem;
  padding-top: 0.95rem;
  background: center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.aboutP4 .aboutTitle .en {
  opacity: 0.2;
}
.aboutP4 .aboutTitle .cn {
  color: #fff;
}
.brand-wrapper-3 .box-container {
  position: relative;
  z-index: 10;
}
.brand-wrapper-3 .swiper-box {
  padding-top: 1.75rem;
  position: relative;
}
.brand-wrapper-3 .swiper-box .layerDiv {
  position: absolute;
  right: 0;
  top: 0.4rem;
  z-index: 2;
}
.brand-wrapper-3 .swiper-box .swiper-btn {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 12px;
  z-index: 2;
  outline: none;
}
.brand-wrapper-3 .swiper-box .swiper-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: url(/html/vancheer/cn/img/line1.png) center no-repeat;
}
.brand-wrapper-3 .swiper-box .prev {
  top: 50%;
  margin-top: -0.78rem;
  background: url("/html/vancheer/cn/img/nimg19_top.png") center no-repeat;
}
.brand-wrapper-3 .swiper-box .next {
  bottom: 50%;
  margin-bottom: -0.78rem;
  background: url("/html/vancheer/cn/img/nimg19_bot.png") center no-repeat;
}
.brand-wrapper-3 .swiper-box .img-swiper {
  width: 3.2rem;
  height: 4.2rem;
  overflow: hidden;
}
.brand-wrapper-3 .swiper-box .img-swiper .swiper-slide .year {
  font-family: 'Din-B';
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1.4rem;
  text-align: center;
}
.brand-wrapper-3 .swiper-box .img-swiper .swiper-slide .year em {
  display: inline-block;
}
.brand-wrapper-3 .swiper-box .img-swiper .swiper-slide-prev .year {
  opacity: 0.1;
  background-image: linear-gradient(top, #2a2a2a, #f8f8f8);
  background-image: linear-gradient(to bottom, #2a2a2a, #f8f8f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-wrapper-3 .swiper-box .img-swiper .swiper-slide-next .year {
  opacity: 0.1;
  background-image: linear-gradient(top, #f8f8f8, #2a2a2a);
  background-image: linear-gradient(to bottom, #f8f8f8, #2a2a2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-wrapper-3 .swiper-box .img-swiper .on .year {
  color: #e50012;
}
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide {
  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 */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide-active .conDiv,
.brand-wrapper-3 .swiper-box .history-swiper .swiper-slide-active .info {
  display: block;
}
.brand-wrapper-3 .conDiv {
  width: 5.8rem;
  display: none;
  overflow: hidden;
}
.brand-wrapper-3 .conDiv .cn {
  color: #fff;
  font-size: var(--fs48);
  line-height: 0.72rem;
}
.brand-wrapper-3 .conDiv .cn b {
  font-size: var(--fs72);
  font-weight: 400;
}
.brand-wrapper-3 .conDiv .cn2 {
  padding-left: 0.8rem;
}
.brand-wrapper-3 .conDiv .msg {
  margin-top: 0.8rem;
  color: #fff;
  font-size: var(--fs24);
  line-height: 0.36rem;
  width: 4.5rem;
}
.brand-wrapper-3 .info {
  display: none;
  width: 9.6rem;
  padding-right: 3.75rem;
}
.brand-wrapper-3 .info .desc li {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #fff;
  padding-left: 0.35rem;
  background: url(/html/vancheer/cn/img/ico5.png) left 0.1rem no-repeat;
  background-size: 0.12rem;
}
.brand-wrapper-3 .year-box {
  margin-top: 0.95rem;
  position: relative;
  z-index: 10;
}
.brand-wrapper-3 .year-box .swiper-container {
  padding: 0 calc((100% - 15.36rem) / 2);
}
.brand-wrapper-3 .year-box .swiper-slide {
  position: relative;
  font-family: "Poppins-L";
  font-size: var(--fs18);
  line-height: 24px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  padding-bottom: 0.25rem;
}
.brand-wrapper-3 .year-box .swiper-slide em {
  position: absolute;
  left: 50%;
  margin-left: -0.1rem;
  bottom: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: #000;
  border: #999 solid 1px;
  border-radius: 50%;
}
.brand-wrapper-3 .year-box .swiper-slide em::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.08rem;
  height: 0.08rem;
  margin-left: -0.04rem;
  margin-top: -0.04rem;
  background: #999;
  border-radius: 50%;
}
.brand-wrapper-3 .year-box .on {
  color: #e50012;
}
.brand-wrapper-3 .year-box .on em {
  border: #fff solid 1px;
  background: #fff;
}
.brand-wrapper-3 .year-box .on em::after {
  width: 0.14rem;
  height: 0.14rem;
  margin-left: -0.07rem;
  margin-top: -0.07rem;
  background: #e50012;
}
.brand-wrapper-3 .swiper-pagination {
  cursor: pointer;
  width: 100%;
  position: relative;
  margin-top: -0.1rem;
  left: 0;
  top: 0;
  height: 1px;
  z-index: 1;
  background-color: #515151;
  border-radius: 0;
}
.brand-wrapper-3 .swiper-pagination-progressbar-fill {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #e50012;
  border-radius: 0;
  top: -1px;
  position: absolute;
  left: 0;
  z-index: 10;
  transform-origin: left center;
}
.aboutP5 {
  padding: 0.4rem 0.32rem;
  background: #f8f8f8;
}
.aboutP5 .aboutDiv {
  padding-top: 0.9rem;
  height: 9.4rem;
  background: #fff url(../img/aboutP5.jpg) center bottom no-repeat;
  background-size: cover;
}
.aboutP5 .toptop {
  position: relative;
  margin-top: 0.75rem;
  height: 2.2rem;
}
.aboutP5 .toptop .msg {
  font-size: var(--fs24);
  line-height: 0.42rem;
  color: #333;
}
.aboutP5 .toptop .msg b {
  color: #e50012;
}
.aboutP5 .links {
  position: absolute;
  right: 0;
  top: 0.12rem;
  width: 6.3rem;
  z-index: 1;
}
.aboutP5 .links ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP5 .links li {
  cursor: pointer;
}
.aboutP5 .links li .ico {
  position: relative;
  margin: 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  border: #e5e5e5 solid 1px;
}
.aboutP5 .links li .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.17rem;
  margin-top: -0.17rem;
  width: 0.35rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP5 .links li .ico .img1 {
  opacity: 0;
}
.aboutP5 .links li .name {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #999;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP5 .links .on .ico {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #ce0714 100%);
  background-blend-mode: normal, normal;
}
.aboutP5 .links .on .ico img {
  opacity: 0;
}
.aboutP5 .links .on .ico .img1 {
  opacity: 1;
}
.aboutP5 .links .on .name {
  color: #333;
  font-weight: bold;
}
.aboutP5 .lunbo {
  display: none;
  position: relative;
}
.aboutP5 .lunbo .arrowDiv {
  position: absolute;
  top: 0.9rem;
  left: 0;
  z-index: 1;
}
.aboutP5 .lunbo .arrowDiv .se {
  display: block;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
}
.aboutP5 .lunbo .arrowDiv .prev {
  margin-bottom: 0.35rem;
  background: #fff url(/html/vancheer/cn/img/nimg12_left.png) center no-repeat;
}
.aboutP5 .lunbo .arrowDiv .prev:hover {
  background: #e50012 url(/html/vancheer/cn/img/nimg12_lefton.png) center no-repeat;
}
.aboutP5 .lunbo .arrowDiv .next {
  background: #fff url(/html/vancheer/cn/img/nimg12_right.png) center no-repeat;
}
.aboutP5 .lunbo .arrowDiv .next:hover {
  background: #e50012 url(/html/vancheer/cn/img/nimg12_righton.png) center no-repeat;
}
.aboutP5 .lunbo .imgList {
  width: 15.4rem;
  margin-left: 1.95rem;
  overflow: hidden;
}
.aboutP5 .lunbo .swiper-slide {
  width: auto;
}
.aboutP5 .lunbo .mxfDiv {
  min-width: 3rem;
  /* max-width: 3.5rem;*/
  height: 3rem;
  position: relative;
  cursor: pointer;
}
.aboutP5 .lunbo .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.aboutP5 .lunbo .imgDiv img {
  max-width: 3rem;
  max-height: 3rem;
}
.aboutP5 .lunbo .name {
  margin-top: 0.35rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.36rem;
}
@media (max-width: 1600px) {
  .about2Swiper .slick-dots {
    margin-right: -8rem;
  }
  .about3Swiper .slick-dots {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .aboutDiv {
    border-radius: 0.28rem;
  }
  .aboutTitle {
    padding-bottom: 0.3rem;
  }
  .aboutTitle::after {
    margin-left: -0.24rem;
    width: 0.48rem;
    height: 2px;
  }
  .aboutTitle .en {
    font-size: var(--fs24);
    line-height: 0.48rem;
  }
  .aboutTitle .cn {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .aboutP1 {
    padding: 0.4rem var(--offset);
  }
  .aboutP1 .aboutDiv {
    padding: 0.8rem 0 2.9rem;
  }
  .aboutP1 .name {
    font-size: var(--fs30);
    line-height: 0.82rem;
    text-indent: 2px;
    letter-spacing: 2px;
    margin: 0.45rem 0 0.3rem;
  }
  .aboutP1 .zi {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.5rem;
  }
  .aboutP1 .content {
    width: auto;
    font-size: var(--fs14);
    line-height: 0.52rem;
    max-height: 100%;
    margin-bottom: 0.75rem;
  }
  .aboutP1 .lookMore {
    display: none;
  }
  .aboutP1 .numList {
    width: auto;
    margin: 0;
  }
  .aboutP1 .numList ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
  }
  .aboutP1 .numList li {
    width: 50%;
    padding-left: 0.8rem;
    font-size: var(--fs14);
    margin-bottom: 0.4rem;
  }
  .aboutP1 .numList li .ico img {
    width: 0.7rem;
  }
  .aboutP1 .numList li .pj {
    height: 0.86rem;
  }
  .aboutP1 .numList li .num p {
    height: 0.56rem;
  }
  .aboutP1 .numList li .num span {
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
  .aboutP1 .numList li .numUp {
    font-size: var(--fs30);
    line-height: 0.56rem;
  }
  .aboutP1 .numList li .wen {
    line-height: 0.42rem;
  }
  .aboutP1 .numList li:nth-child(1) {
    width: 50%;
  }
  .aboutP1 .numList li:nth-child(2) {
    width: 50%;
  }
  .aboutP1 .numList li:nth-child(3) {
    width: 50%;
  }
  .aboutP1 .numList li:nth-child(4) {
    width: 50%;
    float: left;
  }
  .aboutP1 .numList2 {
    padding-left: 0;
  }
  .aboutP1 .numList2 li:nth-child(1) {
    width: 50%;
  }
  .aboutP1 .numList2 li:nth-child(2) {
    width: 50%;
  }
  .aboutP4 {
    height: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.6rem;
  }
  .aboutP4 .aboutTitle .en {
    opacity: 0.5;
  }
  .aboutP4 .aboutTitle .cn {
    color: #fff;
  }
  .brand-wrapper-3 .swiper-box {
    padding-top: 0.65rem;
  }
  .brand-wrapper-3 .swiper-box .history-swiper .swiper-slide {
    display: block;
  }
  .brand-wrapper-3 .conDiv {
    width: auto;
  }
  .brand-wrapper-3 .conDiv .cn {
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .brand-wrapper-3 .conDiv .cn b {
    font-size: var(--fs30);
  }
  .brand-wrapper-3 .conDiv .cn2 {
    padding-left: 0.65rem;
  }
  .brand-wrapper-3 .conDiv .msg {
    margin-top: 0.4rem;
    font-size: var(--fs17);
    line-height: 0.52rem;
    width: auto;
  }
  .brand-wrapper-3 .info {
    display: none;
    width: auto;
    padding-top: 0.6rem;
    padding-right: 0;
  }
  .brand-wrapper-3 .info .desc li {
    font-size: var(--fs14);
    line-height: 0.52rem;
    background: url(/html/vancheer/cn/img/ico5.png) left 0.16rem no-repeat;
    background-size: 0.14rem;
  }
  .brand-wrapper-3 .year-box {
    margin-top: 0.75rem;
  }
  .brand-wrapper-3 .year-box .swiper-container {
    padding: 0 0.3rem;
  }
  .brand-wrapper-3 .year-box .swiper-slide {
    font-size: var(--fs14);
    line-height: 0.42rem;
    padding-bottom: 0.3rem;
  }
  .brand-wrapper-3 .year-box .swiper-slide em {
    margin-left: -5px;
    width: 10px;
    height: 10px;
  }
  .brand-wrapper-3 .year-box .swiper-slide em::after {
    width: 4px;
    height: 4px;
    margin-left: -2px;
    margin-top: -2px;
  }
  .brand-wrapper-3 .year-box .on em::after {
    width: 0.14rem;
    height: 0.14rem;
    margin-left: -0.07rem;
    margin-top: -0.07rem;
    background: #e50012;
  }
  .brand-wrapper-3 .swiper-pagination-progressbar-fill {
    display: none;
  }
  .aboutP5 {
    padding: 0.4rem var(--offset);
  }
  .aboutP5 .aboutDiv {
    padding-top: 0.75rem;
    height: auto;
    background: #fff;
    padding-bottom: 1rem;
  }
  .aboutP5 .aboutTitle .en {
    font-size: var(--fs20);
  }
  .aboutP5 .toptop {
    margin: 0.65rem 0 0.5rem;
    height: auto;
  }
  .aboutP5 .toptop .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .aboutP5 .links {
    position: relative;
    margin-top: 0.45rem;
    top: 0;
    width: 100%;
  }
  .aboutP5 .links li .ico {
    width: 0.86rem;
    height: 0.86rem;
  }
  .aboutP5 .links li .ico img {
    margin-left: -0.24rem;
    margin-top: -0.24rem;
    width: 0.48rem;
  }
  .aboutP5 .links li .name {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .aboutP5 .lunbo {
    padding-bottom: 1.2rem;
  }
  .aboutP5 .lunbo .arrowDiv {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .aboutP5 .lunbo .arrowDiv .se {
    display: inline-block;
    margin: 0 0.2rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .aboutP5 .lunbo .arrowDiv .prev {
    margin-bottom: 0;
  }
  .aboutP5 .lunbo .imgList {
    width: 100%;
    margin-left: 0;
  }
  .aboutP5 .lunbo .mxfDiv {
    min-width: 2.7rem;
    height: 3rem;
  }
  .aboutP5 .lunbo .imgDiv img {
    max-width: 2.8rem;
  }
  .aboutP5 .lunbo .name {
    margin-top: 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.videoPart {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.videoPart .baozhe {
  padding: 0.9rem 0 1.5rem;
  background: #fff;
  border-radius: 0.2rem;
}
.videoPic {
  margin-top: 0.3rem;
}
.videoPic .detail-box .list .item {
  display: none;
  position: relative;
}
.videoPic .detail-box .list .item .imgDiv {
  height: 8rem;
  cursor: pointer;
}
.videoPic .detail-box .list .item .imgDiv::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  background: url(/html/vancheer/cn/img/play3.png) no-repeat;
  background-size: 0.8rem;
}
.videoPic .detail-box .list .item .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoPic .detail-box .list .item video {
  max-width: 100%;
  max-height: 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;
}
.videoPic .detail-box .list .item iframe {
  width: 100%;
  height: 6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.videoPic .detail-box .list .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.videoPic .detail-box .list .item.cur {
  background: #000;
}
.videoPic .detail-box .list .item.cur video,
.videoPic .detail-box .list .item.cur iframe {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.videoPic .detail-box .list .item.cur .imgDiv {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.videoPic .detail-box .list .item.cur .imgDiv::after {
  display: none;
}
.videoPic .box-container {
  position: relative;
  margin-top: 0.5rem;
  padding: 0 0.2rem;
}
.videoPic .img-swiper {
  padding: 0.2rem;
  margin: -0.2rem;
  overflow: hidden;
}
.videoPic .img-swiper .limg {
  cursor: pointer;
  height: 1.8rem;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
}
.videoPic .img-swiper .limg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoPic .img-swiper .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoPic .img-swiper .name {
  margin-top: 0.3rem;
  line-height: 0.36rem;
  font-size: var(--fs18);
  color: #333;
}
.videoPic .img-swiper .swiper-slide-active .limg {
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
}
.videoPic .img-swiper .swiper-slide-active .limg::after {
  opacity: 0;
}
.videoPic .img-swiper .swiper-slide-active .name {
  color: #e50012;
}
.videoPic .se {
  position: absolute;
  display: block;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  z-index: 3;
  top: 0.7rem;
  border: #e50012 solid 1px;
}
.videoPic .prev {
  left: -0.6rem;
  background: url(/html/vancheer/cn/img/nimg12_left.png) center no-repeat;
}
.videoPic .prev:hover {
  background: #e50012 url(/html/vancheer/cn/img/nimg12_lefton.png) center no-repeat;
}
.videoPic .next {
  right: -0.6rem;
  background: url(/html/vancheer/cn/img/nimg12_right.png) center no-repeat;
}
.videoPic .next:hover {
  background: #e50012 url(/html/vancheer/cn/img/nimg12_righton.png) center no-repeat;
}
@media (max-width: 1004px) {
  .videoPart {
    padding: 0.4rem var(--offset);
  }
  .videoPart .baozhe {
    padding: 0.75rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .videoPic {
    margin-top: 0.6rem;
  }
  .videoPic .detail-box .list .item .imgDiv {
    height: 4rem;
  }
  .videoPic .detail-box .list .item .imgDiv::after {
    left: 0.3rem;
    bottom: 0.3rem;
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
  .videoPic .detail-box .list .item video {
    max-height: 4rem;
  }
  .videoPic .detail-box .list .item iframe {
    height: 4rem;
  }
  .videoPic .box-container {
    padding: 0 0 1.2rem;
  }
  .videoPic .img-swiper {
    padding: 0;
    margin: 0;
  }
  .videoPic .img-swiper .limg {
    height: 1.5rem;
  }
  .videoPic .img-swiper .name {
    margin-top: 0.2rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .videoPic .img-swiper .swiper-slide-active .limg {
    box-shadow: none;
  }
  .videoPic .se {
    width: 0.8rem;
    height: 0.8rem;
    top: auto;
    bottom: 0;
  }
  .videoPic .prev {
    left: 50%;
    margin-left: -0.9rem;
  }
  .videoPic .next {
    right: 50%;
    margin-right: -0.9rem;
  }
}
.complaint {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.complaint .baozhe {
  padding: 0.9rem 0 2rem;
  background: #fff;
  border-radius: 0.2rem;
}
.complaint .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 1.1rem;
}
.complaint .imgDiv {
  width: 9.2rem;
  overflow: hidden;
  border-radius: 0.24rem;
  order: 1;
}
.complaint .imgDiv img {
  width: 100%;
}
.complaint .conDiv {
  width: 5.4rem;
}
.complaint .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
}
.complaint .name em {
  display: inline-block;
  background-image: linear-gradient(left, #f53400, #d1010e);
  background-image: linear-gradient(to right, #f53400, #d1010e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.complaint .content {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  text-align: justify;
}
@media (max-width: 1004px) {
  .complaint {
    padding: 0.4rem var(--offset);
  }
  .complaint .baozhe {
    padding: 0.75rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .complaint .aboutTitle .en {
    font-size: var(--fs16);
  }
  .complaint .mxfDiv {
    display: block;
    margin-top: 0.75rem;
  }
  .complaint .imgDiv {
    width: auto;
  }
  .complaint .conDiv {
    margin-top: 0.6rem;
    width: auto;
  }
  .complaint .name {
    font-size: var(--fs22);
  }
  .complaint .content {
    margin-top: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
}
.download {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.download .baozhe {
  padding: 0.9rem 0 1.6rem;
  background: #fff;
  border-radius: 0.2rem;
}
.download .list {
  padding: 0.95rem 0 1rem;
}
.download .list li {
  margin-bottom: 0.3rem;
}
.download .list li a {
  display: block;
  height: 1rem;
  background: #f8f8f8;
  position: relative;
  padding: 0 3.2rem 0 1rem;
}
.download .list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.download .list li .ico {
  position: absolute;
  left: 0.45rem;
  top: 50%;
  margin-top: -0.15rem;
}
.download .list li .ico img {
  width: 0.3rem;
}
.download .list li .txtDiv {
  float: left;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 7.45rem;
  height: 1rem;
  padding-right: 0.5rem;
}
.download .list li .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
  font-weight: bold;
}
.download .list li .zi {
  margin-top: 0.05rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #333;
}
.download .list li .time {
  float: left;
  font-size: var(--fs18);
  line-height: 1rem;
  color: #333;
  font-family: 'Poppins-M';
}
.download .list li .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  position: absolute;
  color: #333;
  right: 1.2rem;
  top: 50%;
  width: 1.62rem;
  height: 0.48rem;
  margin-top: -0.24rem;
  border-radius: 0.48rem;
  border: #ededed solid 2px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.download .list li .btnDiv em {
  margin-left: 0.14rem;
  width: 0.12rem;
  height: 0.16rem;
  background: url(/html/vancheer/cn/img/nimg12_1.png) no-repeat;
  background-size: 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;
}
.download .list li a:hover {
  background: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.download .list li a:hover::before {
  width: 3px;
}
.download .list li a:hover .btnDiv {
  border: #e50012 solid 2px;
  background: #e50012;
  color: #fff;
}
.download .list li a:hover .btnDiv em {
  background: url(/html/vancheer/cn/img/nimg12_1on.png) no-repeat;
  background-size: 0.12rem;
}
@media (max-width: 1004px) {
  .download {
    padding: 0.4rem var(--offset);
  }
  .download .baozhe {
    padding: 0.75rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .download .aboutTitle .en {
    font-size: var(--fs20);
  }
  .download .list {
    padding: 0.75rem 0 0.5rem;
  }
  .download .list li a {
    height: auto;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
  }
  .download .list li .ico {
    left: 0.3rem;
    top: 0.3rem;
    margin-top: 0;
  }
  .download .list li .ico img {
    width: 0.4rem;
  }
  .download .list li .txtDiv {
    float: none;
    display: block;
    width: auto;
    height: auto;
    padding-right: 0;
  }
  .download .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .download .list li .zi {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .download .list li .time {
    float: none;
    padding-top: 0.15rem;
    font-size: var(--fs15);
    line-height: 0.56rem;
  }
  .download .list li .btnDiv {
    font-size: var(--fs14);
    right: 0.3rem;
    top: auto;
    bottom: 0.35rem;
    width: 2.2rem;
    height: 0.8rem;
    margin-top: 0;
    border: #ededed solid 1px;
  }
  .download .list li .btnDiv em {
    width: 8px;
    height: 12px;
    background-size: 8px;
  }
  .download .list li a:hover .btnDiv {
    border: #e50012 solid 1px;
  }
  .download .list li a:hover .btnDiv em {
    background-size: 8px;
  }
}
.contactP1 {
  padding: 0.95rem 0 0.5rem;
  background: #f8f8f8;
}
.contactP1 .list {
  margin-top: 0.5rem;
}
.contactP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.contactP1 .list li {
  width: calc((100% - 1rem) / 3);
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  min-height: 3rem;
  background: #fff;
  padding: 0.55rem 0.4rem 0.3rem;
  border-radius: 0.12rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0.4rem 0px rgba(0, 0, 0, 0.08);
}
.contactP1 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #e50012;
}
.contactP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.contactP1 .list li .cn {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  font-weight: bold;
}
.contactP1 .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: 'Poppins-M';
}
.contactP1 .list li .en:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 2px;
  background: #e50012;
}
.contactP1 .list li .zi {
  font-size: var(--fs18);
  line-height: 0.24rem;
  margin-top: 0.2rem;
  color: #333;
  font-family: 'Poppins-L';
}
.contactP1 .list li .tel {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  color: #e50012;
  font-family: 'Mont-R';
}
.contactP1 .list li .ico {
  position: absolute;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  right: 0.4rem;
  top: 0.36rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #f53906 0%, #d1000e 100%);
  background-blend-mode: normal, normal;
}
.contactP1 .list li .ico img {
  width: 0.44rem;
}
.contactP1 .list li .btnDiv {
  margin-top: 0.1rem;
}
.contactP1 .list li .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: #e50012 solid 1px;
  width: 1.14rem;
  height: 0.42rem;
  font-size: var(--fs16);
  color: #000;
  border-radius: 0.48rem;
}
.contactP1 .list li .btnDiv a:hover {
  background: #e50012;
  color: #fff;
}
.contactP2 {
  padding: 0.45rem 0 1.15rem;
  background: #f8f8f8;
}
.contactP2 .msg {
  margin: 0.32rem 0 0.65rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  text-align: center;
}
.contactP2 .form {
  position: relative;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.75rem 2rem 1.2rem;
  overflow: hidden;
}
.contactP2 .form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: #e50012;
}
.contactP2 .list {
  padding-bottom: 0.2rem;
}
.contactP2 .list::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .list ul {
  margin-bottom: 0;
  margin-right: -0.4rem;
}
.contactP2 .list li {
  float: left;
  width: 50%;
  margin-bottom: 0.35rem;
}
.contactP2 .list li .box {
  margin-right: 0.4rem;
}
.contactP2 .list li .wen {
  position: relative;
  padding-left: 0.34rem;
  line-height: 0.48rem;
  font-size: var(--fs18);
  color: #333;
  font-weight: bold;
}
.contactP2 .list li .wen img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
}
.contactP2 .list li .input1 {
  width: 100%;
  height: 0.6rem;
  padding-left: 0.35rem;
  border: #e0e0e0 solid 1px;
  border-radius: 6px;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.58rem;
}
.contactP2 .list li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li textarea {
  width: 100%;
  height: 2rem;
  padding: 0.1rem 0.35rem 0;
  border: #e0e0e0 solid 1px;
  border-radius: 6px;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.36rem;
  font-family: inherit;
}
.contactP2 .list li textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .list li .selgroup {
  height: 0.6rem;
}
.contactP2 .list li .selgroup::after {
  content: '';
  display: block;
  clear: both;
}
.contactP2 .list li .selgroup dl {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0;
}
.contactP2 .list li .selgroup dd {
  width: 32%;
}
.contactP2 .list li .selgroup select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs16);
  width: 100%;
  padding-right: 0.3rem;
  height: 0.6rem;
  border-radius: 6px;
  color: #333;
  border: solid 1px #e0e0e0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  outline: none;
  cursor: pointer;
  padding-left: 0.15rem;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat scroll right 0.1rem center #fff;
  background-size: 12px;
}
.contactP2 .list li .select {
  width: 100%;
  position: relative;
}
.contactP2 .list li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.58rem;
  line-height: 0.58rem;
  padding-left: 0.35rem;
  font-size: var(--fs16);
  color: #333;
  border: #e0e0e0 solid 1px;
  border-radius: 6px;
}
.contactP2 .list li .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat right center;
  background-size: 12px;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
}
.contactP2 .list li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 12;
  background: #fff;
  max-height: 2rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #e0e0e0;
  border-top: none;
}
.contactP2 .list li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.contactP2 .list li .select .xlist::-webkit-scrollbar-track {
  background-color: #eee;
}
.contactP2 .list li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.contactP2 .list li .select .xlist a {
  display: block;
  font-size: var(--fs16);
  background: #fff;
  color: #333;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.35rem;
  border-bottom: 1px solid #e0e0e0;
}
.contactP2 .list li .select .xlist a:hover {
  color: #e50012;
}
.contactP2 .list li .select .xlist a:last-child {
  border-bottom: none;
}
.contactP2 .list .li01 {
  width: 100%;
}
.contactP2 .botbot {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  padding-left: 0.7rem;
}
.contactP2 .botbot .wen {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fs18);
  color: #000;
  font-weight: bold;
  line-height: 0.6rem;
}
.contactP2 .botbot .input1 {
  width: 1.5rem;
  height: 0.6rem;
  padding-left: 0.2rem;
  border: #e0e0e0 solid 1px;
  border-radius: 6px;
  font-size: var(--fs16);
  color: #999;
  line-height: 0.58rem;
}
.contactP2 .botbot .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .botbot .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .botbot .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .botbot .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contactP2 .botbot .yzm {
  margin-left: 0.25rem;
  cursor: pointer;
}
.contactP2 .botbot .submit {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.6rem;
  margin-left: -0.8rem;
}
.contactP2 .botbot .submit a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.6rem;
  font-size: var(--fs18);
  color: #fff;
  font-weight: bold;
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #f53400 0%, #d1000e 100%);
  background-blend-mode: normal, normal;
}
@media (max-width: 1004px) {
  .contactP1 {
    padding: 0.8rem 0 0.3rem;
  }
  .contactP1 .list {
    margin-top: 0.65rem;
  }
  .contactP1 .list ul {
    display: block;
  }
  .contactP1 .list li {
    width: auto;
    margin-right: 0;
    margin-bottom: 0.4rem;
    min-height: 3rem;
    padding: 0.55rem 0.4rem 0.6rem;
    border-radius: 0.16rem;
  }
  .contactP1 .list li::before {
    height: 2px;
  }
  .contactP1 .list li .cn {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .contactP1 .list li .en {
    padding-bottom: 0.3rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .contactP1 .list li .zi {
    font-size: var(--fs14);
    line-height: 0.48rem;
    margin-top: 0.3rem;
  }
  .contactP1 .list li .tel {
    font-size: var(--fs20);
  }
  .contactP1 .list li .ico {
    top: 0.45rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .contactP1 .list li .ico img {
    width: 0.72rem;
  }
  .contactP1 .list li .btnDiv {
    margin-top: 0.2rem;
  }
  .contactP1 .list li .btnDiv a {
    width: 2.14rem;
    height: 0.82rem;
    font-size: var(--fs14);
  }
  .contactP2 {
    padding: 0.45rem 0 1rem;
  }
  .contactP2 .msg {
    margin: 0.32rem 0 0.65rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .contactP2 .form {
    border-radius: 0.16rem;
    padding: 0.75rem 0.3rem 0.9rem;
  }
  .contactP2 .form::before {
    height: 2px;
  }
  .contactP2 .list {
    padding-bottom: 0.2rem;
  }
  .contactP2 .list ul {
    margin-right: 0;
  }
  .contactP2 .list li {
    float: none;
    width: auto;
  }
  .contactP2 .list li .box {
    margin-right: 0;
  }
  .contactP2 .list li .wen {
    padding-left: 0.54rem;
    line-height: 0.64rem;
    font-size: var(--fs14);
  }
  .contactP2 .list li .wen img {
    margin-top: -0.22rem;
    width: 0.44rem;
  }
  .contactP2 .list li .input1 {
    height: 0.86rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.84rem;
  }
  .contactP2 .list li textarea {
    height: 3rem;
    padding: 0.15rem 0.3rem 0;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .contactP2 .list li .selgroup {
    height: 0.86rem;
  }
  .contactP2 .list li .selgroup select {
    font-size: var(--fs14);
    height: 0.86rem;
  }
  .contactP2 .list li .select .caption {
    height: 0.88rem;
    line-height: 0.88rem;
    padding-left: 0.3rem;
    font-size: var(--fs14);
  }
  .contactP2 .list li .select .xlist {
    max-height: 3.2rem;
  }
  .contactP2 .list li .select .xlist a {
    font-size: var(--fs14);
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .contactP2 .botbot {
    padding-left: 1.2rem;
    padding-bottom: 1.4rem;
  }
  .contactP2 .botbot .wen {
    font-size: var(--fs15);
    line-height: 0.86rem;
  }
  .contactP2 .botbot .input1 {
    width: 1.8rem;
    height: 0.86rem;
    font-size: var(--fs14);
    line-height: 0.84rem;
  }
  .contactP2 .botbot .yzm img {
    height: 0.56rem;
  }
  .contactP2 .botbot .submit {
    bottom: 0;
    top: auto;
    width: 2.2rem;
    margin-left: -1.1rem;
  }
  .contactP2 .botbot .submit a {
    height: 0.86rem;
    font-size: var(--fs15);
  }
}
.family {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.family .baozhe {
  padding: 0.9rem 0 0.88rem;
  background: #f4f4f4;
  border-radius: 0.2rem;
}
.family .list {
  padding-top: 0.6rem;
}
.family .list::after {
  content: '';
  display: block;
  clear: both;
}
.family .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.32rem;
}
.family .list li .box {
  position: relative;
  height: 1.42rem;
}
.family .list li .box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e50012;
}
.family .list li .box .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1.42rem;
  overflow: hidden;
}
.family .list li .box .imgDiv img {
  max-width: 4.9rem;
  max-height: 1.42rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.family .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.family .list li:nth-child(3n) .box::after {
  display: none;
}
.family .list li:nth-child(3n-2) .box .imgDiv {
  padding-left: 21%;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
@media (max-width: 1004px) {
  .family {
    padding: 0.4rem var(--offset);
  }
  .family .baozhe {
    padding: 0.8rem 0 0.88rem;
    border-radius: 0.28rem;
  }
  .family .list {
    padding-top: 0.7rem;
  }
  .family .list li {
    width: 50%;
  }
  .family .list li .box {
    height: 1.2rem;
  }
  .family .list li .box .imgDiv {
    height: 1.2rem;
  }
  .family .list li .box .imgDiv img {
    max-width: 1.8rem;
    max-height: 1rem;
  }
  .family .list li:nth-child(3n) .box::after {
    display: block;
  }
  .family .list li:nth-child(2n) .box::after {
    display: none;
  }
  .family .list li:nth-child(3n-2) .box .imgDiv {
    padding-left: 0;
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.familyshow {
  padding: 0.9rem 0.32rem 0.5rem;
}
.familyshow .content {
  width: 11.56rem;
  margin: 0.65rem auto 1.05rem;
  font-size: var(--fs16);
  line-height: 0.32rem;
  color: #333;
  text-align: center;
}
.familyshow .imgDiv {
  border-radius: 0.2rem;
  overflow: hidden;
}
.familyshow .imgDiv img {
  width: 100%;
}
@media (max-width: 1004px) {
  .familyshow {
    padding: 0.8rem var(--offset) 0.3rem;
  }
  .familyshow .content {
    width: auto;
    margin: 0.45rem auto 0.75rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .familyshow .imgDiv {
    border-radius: 0.24rem;
  }
}
.announcementP1 {
  padding: 1rem 0;
  background: #f1f1f1;
}
.announcementP1 .pageTitle .en {
  background-image: linear-gradient(top, #d0d0d1, #ededed);
  background-image: linear-gradient(to bottom, #d0d0d1, #ededed);
}
.announcementP1 .list {
  padding-top: 0.45rem;
}
.announcementP1 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.announcementP1 .list li {
  position: relative;
  width: calc((100% - 0.36rem) / 3);
  margin-right: 0.18rem;
  margin-bottom: 0.2rem;
  background: #fff;
  border-radius: 0.2rem;
  height: 2.82rem;
  color: #333;
  padding: 0.8rem 0.65rem 0 2.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.announcementP1 .list li:nth-child(3n) {
  margin-right: 0;
}
.announcementP1 .list li .layer {
  width: 1.46rem;
  height: 1.46rem;
  position: absolute;
  left: 0.35rem;
  top: 50%;
  margin-top: -0.72rem;
  background: url(/html/vancheer/cn/img/nimg19Bg.png) right center no-repeat;
  background-size: 0.19rem;
}
.announcementP1 .list li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 50%;
  margin-left: -0.68rem;
  margin-top: -0.68rem;
  background: rgba(220, 3, 19, 0.08);
}
.announcementP1 .list li .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.14rem;
  height: 1.14rem;
  border-radius: 50%;
  margin-left: -0.57rem;
  margin-top: -0.57rem;
  background-image: linear-gradient(180deg, #e70c1d 0%, #b70000 100%);
  background-blend-mode: normal, normal;
}
.announcementP1 .list li .ico img {
  position: relative;
  z-index: 1;
  width: 0.57rem;
}
.announcementP1 .list li .name {
  font-weight: bold;
  font-size: var(--fs30);
  line-height: 0.42rem;
}
.announcementP1 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.announcementP1 .list li:hover {
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.announcementP2 {
  background: #f8f8f8;
  padding-bottom: 1.3rem;
}
.announcementP2 .mxfDiv {
  height: 9.4rem;
  position: relative;
  background: center no-repeat;
  background-size: cover;
}
.announcementP2 .pageTitle {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.1rem;
  z-index: 2;
}
.announcementP2 .pageTitle::after {
  background: #fff;
}
.announcementP2 .pageTitle .en {
  background-image: linear-gradient(top, #ebeef0, #486076);
  background-image: linear-gradient(to bottom, #ebeef0, #486076);
}
.announcementP2 .pageTitle .cn {
  color: #fff;
}
.announcementP2 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.announcementP2 .list li {
  cursor: pointer;
  width: 25%;
  padding-left: 0.5rem;
  padding-right: 0.2rem;
  padding-top: 4rem;
  position: relative;
  height: 9.4rem;
  color: #fff;
}
.announcementP2 .list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.announcementP2 .list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #fff;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.announcementP2 .list li .bg {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.announcementP2 .list li .name {
  position: relative;
  z-index: 2;
  font-size: var(--fs24);
  font-weight: bold;
  height: 0.7rem;
  line-height: 0.3rem;
}
.announcementP2 .list li .msg {
  position: relative;
  z-index: 2;
  padding-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
}
.announcementP2 .list li .ico {
  position: absolute;
  left: 0.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  margin-top: -10px;
}
.announcementP2 .list li .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fff;
}
.announcementP2 .list li .ico::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border: rgba(255, 255, 255, 0.4) solid 1px;
  box-sizing: border-box;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.announcementP2 .list li:hover::before {
  width: 100%;
}
.announcementP2 .list li:hover .bg {
  opacity: 1;
  visibility: visible;
}
.announcementP2 .list li:hover .ico::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.bidding-modal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.bidding-modal-box .close {
  display: block;
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  width: 30px;
  height: 30px;
  z-index: 10;
  background: url(/html/vancheer/cn/img/close2.png) center no-repeat;
}
.bidding-modal-box .bigBox {
  position: relative;
  background: #fff;
  width: 10rem;
  margin: 0 auto;
  padding: 0.6rem 0.4rem;
  border-radius: 0.2rem;
}
.bidding-modal-box .form ul {
  margin-right: -0.3rem;
}
.bidding-modal-box .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.3rem;
}
.bidding-modal-box .form li .box {
  margin-right: 0.3rem;
}
.bidding-modal-box .form li .zi {
  font-size: var(--fs16);
  color: #333;
  line-height: 0.2rem;
  height: 0.32rem;
}
.bidding-modal-box .form li .zi em {
  color: #f00;
}
.bidding-modal-box .form li .select {
  width: 100%;
  position: relative;
}
.bidding-modal-box .form li .select .caption {
  position: relative;
  cursor: pointer;
  height: 0.48rem;
  line-height: 0.48rem;
  padding-left: 0.2rem;
  font-size: var(--fs14);
  color: #666;
  border: #dadada solid 1px;
  background: #fff;
  border-radius: 6px;
  font-family: 'Mont-R';
}
.bidding-modal-box .form li .select .caption::after {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background: url(/html/vancheer/cn/img/selectIco2.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 0.2rem;
  top: 50%;
  margin-top: -5px;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.bidding-modal-box .form li .select .on::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.bidding-modal-box .form li .select .xlist {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 4;
  background: #fff;
  max-height: 2.5rem;
  overflow-y: auto;
  display: none;
  border: 1px solid #dadada;
  border-top: none;
}
.bidding-modal-box .form li .select .xlist::-webkit-scrollbar {
  width: 3px;
}
.bidding-modal-box .form li .select .xlist::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.bidding-modal-box .form li .select .xlist::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.bidding-modal-box .form li .select .xlist a {
  display: block;
  font-size: var(--fs14);
  background: #fff;
  color: #666;
  height: 0.4rem;
  line-height: 0.4rem;
  padding: 0 0.2rem;
  border-bottom: 1px solid #dadada;
  font-family: 'Mont-R';
}
.bidding-modal-box .form li .select .xlist a:last-child {
  border-bottom: none;
}
.bidding-modal-box .form li .select .xlist a:hover {
  color: #e50012;
}
.bidding-modal-box .form li .input1 {
  width: 100%;
  height: 0.48rem;
  line-height: 0.48rem;
  padding-left: 0.2rem;
  font-size: var(--fs14);
  color: #666;
  border: #dadada solid 1px;
  background: #fff;
  border-radius: 6px;
}
.bidding-modal-box .btnDiv {
  padding-top: 0.3rem;
}
.bidding-modal-box .btnDiv 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-radius: 0.48rem;
  font-size: var(--fs16);
  color: #333;
  border: #b8b8b8 solid 1px;
}
.bidding-modal-box .btnDiv a:hover {
  background: #e50012;
  border: #e50012;
  color: #fff;
}
.bidding-modal-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
@media (max-width: 1600px) {
  .announcementP2 .pageTitle {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .announcementP1 {
    padding: 0.8rem 0;
  }
  .announcementP1 .pageTitle .en {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .announcementP1 .list {
    padding-top: 0.65rem;
  }
  .announcementP1 .list ul {
    display: block;
  }
  .announcementP1 .list li {
    width: 100%;
    margin-bottom: 0.3rem;
    margin-right: 0;
    border-radius: 0.24rem;
    padding: 0.5rem 0.3rem 0 2.5rem;
  }
  .announcementP1 .list li .layer {
    width: 1.86rem;
    height: 1.86rem;
    left: 0.3rem;
    margin-top: -0.93rem;
    background-size: 0.22rem;
  }
  .announcementP1 .list li .ico {
    width: 1.76rem;
    height: 1.76rem;
    margin-left: -0.88rem;
    margin-top: -0.88rem;
  }
  .announcementP1 .list li .ico::before {
    width: 1.54rem;
    height: 1.54rem;
    margin-left: -0.77rem;
    margin-top: -0.77rem;
  }
  .announcementP1 .list li .ico img {
    width: 0.72rem;
  }
  .announcementP1 .list li .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .announcementP1 .list li .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .announcementP2 {
    padding-bottom: 0.9rem;
  }
  .announcementP2 .mxfDiv {
    padding-top: 0.9rem;
    height: auto;
  }
  .announcementP2 .pageTitle {
    padding-left: 0.3rem;
    position: relative;
    left: 0%;
    margin-left: 0;
    top: auto;
  }
  .announcementP2 .pageTitle::after {
    left: 0.3rem;
  }
  .announcementP2 .list {
    margin-top: 0.7rem;
    padding-bottom: 0.5rem;
  }
  .announcementP2 .list ul {
    display: block;
  }
  .announcementP2 .list li {
    width: auto;
    padding-left: 0.6rem;
    padding-right: 0.2rem;
    padding-top: 0.2rem;
    padding-bottom: 0.3rem;
    height: auto;
  }
  .announcementP2 .list li::after {
    left: 0.35rem;
    top: 0;
    width: 1px;
    height: 100%;
  }
  .announcementP2 .list li::before {
    left: 0.35rem;
    top: 0;
    width: 1px;
    height: 0;
  }
  .announcementP2 .list li .name {
    font-size: var(--fs18);
    height: 0.56rem;
    line-height: 0.48rem;
  }
  .announcementP2 .list li .msg {
    padding-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .announcementP2 .list li .ico {
    left: 0.13rem;
    width: 20px;
    height: 20px;
    top: 0.24rem;
    margin-top: 0;
  }
  .announcementP2 .list li:hover::before {
    width: 1px;
    height: 100%;
  }
  .bidding-modal-box .close {
    top: 0.2rem;
    background-size: 24px;
  }
  .bidding-modal-box .bigBox {
    padding: 0.7rem 0.3rem;
    width: 94%;
    height: 90vh;
    overflow: auto;
  }
  .bidding-modal-box .form ul {
    margin-right: 0;
  }
  .bidding-modal-box .form li {
    float: none;
    width: auto;
    margin-bottom: 0.35rem;
  }
  .bidding-modal-box .form li .box {
    margin-right: 0;
  }
  .bidding-modal-box .form li .zi {
    font-size: var(--fs14);
    line-height: 0.32rem;
    height: 0.52rem;
  }
  .bidding-modal-box .form li .select .caption {
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .bidding-modal-box .form li .select .caption::after {
    width: 12px;
    height: 8px;
    background-size: 12px;
    margin-top: -4px;
  }
  .bidding-modal-box .form li .select .xlist {
    max-height: 3rem;
  }
  .bidding-modal-box .form li .select .xlist a {
    height: 0.75rem;
    line-height: 0.75rem;
  }
  .bidding-modal-box .form li .input1 {
    height: 0.8rem;
    line-height: 0.8rem;
  }
  .bidding-modal-box .btnDiv {
    padding-top: 0.2rem;
  }
  .bidding-modal-box .btnDiv a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
}
.joinP1 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.joinP1 .baozhe {
  padding: 0.9rem 0 1.4rem;
  background: #fff;
  border-radius: 0.2rem;
}
.joinP1 .list {
  padding-top: 1.15rem;
}
.joinP1 .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.9rem;
}
.joinP1 .list li:last-child {
  margin-bottom: 0;
}
.joinP1 .list li .conDiv {
  width: 5.2rem;
  padding-top: 0.4rem;
}
.joinP1 .list li .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
}
.joinP1 .list li .name em {
  background-image: linear-gradient(left, #f53400, #d7222e);
  background-image: linear-gradient(to right, #f53400, #d7222e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.joinP1 .list li .content {
  margin-top: 0.32rem;
  color: #333;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.joinP1 .list li .imgDiv {
  order: 1;
  width: 9.2rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.joinP1 .list li .imgDiv img {
  width: 100%;
}
.joinP1 .list li:nth-child(2) .conDiv {
  padding-top: 1.1rem;
}
.joinP1 .list li:nth-child(2) .imgDiv {
  order: 0;
}
.joinP2 {
  padding: 1rem 0 0.8rem;
  background: #f8f8f8;
}
.joinP2 .list {
  padding: 0.6rem 0 0.95rem;
}
.joinP2 .list li {
  margin-bottom: 0.2rem;
}
.joinP2 .list li .box {
  background: #fff;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP2 .list li .box.on {
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.1);
}
.joinP2 .list li .topDiv {
  cursor: pointer;
  border-left: #e50012 solid 3px;
  overflow: hidden;
}
.joinP2 .list li .topDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: #e50012;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP2 .list li .name {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding: 0 0.35rem;
  line-height: 0.3rem;
}
.joinP2 .list li .name .dj {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  width: 5.7rem;
  height: 1.2rem;
  padding-right: 0.2rem;
  font-size: var(--fs24);
  color: #666;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP2 .list li .name dd {
  display: inline-block;
  position: relative;
  font-size: var(--fs16);
  color: #969696;
  padding: 0 0.25rem;
}
.joinP2 .list li .name dd::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 20px;
  background: #e50012;
  margin-top: -10px;
}
.joinP2 .list li .name dd:last-child::after {
  display: none;
}
.joinP2 .list li .hideBox {
  display: none;
  padding: 0 0.35rem 1.2rem;
}
.joinP2 .list li .ico {
  position: absolute;
  right: 0.9rem;
  bottom: 50%;
  margin-bottom: -0.3rem;
  z-index: 1;
  width: 0.6rem;
  height: 0.6rem;
  background: #e50012;
  border-radius: 50%;
}
.joinP2 .list li .ico::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #fff;
}
.joinP2 .list li .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #fff;
}
.joinP2 .list li .zi {
  font-weight: bold;
  font-size: var(--fs18);
  color: #000;
  line-height: 0.3rem;
}
.joinP2 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #666;
  padding-bottom: 0.3rem;
  text-align: justify;
}
.joinP2 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  padding: 0.3rem 0 0.35rem;
  text-align: justify;
}
.joinP2 .list li .content em {
  color: #e50012;
  font-family: 'Mont-R';
}
.joinP2 .list li .btnDiv a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 1.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.48rem;
  color: #fff;
  text-align: center;
  font-size: var(--fs16);
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.joinP2 .list li .liNow {
  border-left: #fff solid 3px;
}
.joinP2 .list li .liNow::before {
  width: 100%;
}
.joinP2 .list li .liNow .name .dj {
  color: #e50012;
}
.joinP2 .list li .liNow .ico {
  bottom: 1rem;
  margin-bottom: 0;
  border: #e50012 solid 3px;
  background: #fff;
}
.joinP2 .list li .liNow .ico::before {
  background: #fff;
}
.joinP2 .list li .liNow .ico::after {
  background: #e50012;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.joinP3 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.joinP3 .baozhe {
  padding: 0.8rem 0 0.6rem;
  background: #fff;
  border-radius: 0.2rem;
}
.joinP3 .list {
  margin-top: 0.6rem;
}
.joinP3 .list::after {
  content: '';
  display: block;
  clear: both;
}
.joinP3 .list ul {
  margin-right: -0.32rem;
}
.joinP3 .list li {
  float: left;
  width: 33.33%;
  padding-bottom: 0.32rem;
}
.joinP3 .list li .box {
  margin-right: 0.32rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  height: 3.38rem;
  cursor: pointer;
}
.joinP3 .list li .txtDiv {
  padding-top: 0.3rem;
}
.joinP3 .list li .txtDiv .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
  font-weight: bold;
}
.joinP3 .list li .txtDiv .name em {
  background-image: linear-gradient(left, #f53400, #d7222e);
  background-image: linear-gradient(to right, #f53400, #d7222e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.joinP3 .list li .txtDiv .zi {
  margin-top: 0.35rem;
  color: #000;
  font-size: var(--fs24);
  line-height: 0.36rem;
}
.joinP3 .list li .imgDiv {
  height: 3.38rem;
}
.joinP3 .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinP3 .list li .before {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  padding: 0 0.3rem;
  font-size: var(--fs22);
  z-index: 1;
  line-height: 0.42rem;
  color: #fff;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP3 .list li .after {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.6rem;
  background: rgba(219, 3, 19, 0.85);
  z-index: 1;
  color: #fff;
  text-align: center;
  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;
}
.joinP3 .list li .after .wen {
  font-size: var(--fs22);
  line-height: 0.24rem;
}
.joinP3 .list li .after .content {
  margin-top: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.joinP3 .list li .box:hover .before {
  opacity: 0;
  visibility: hidden;
}
.joinP3 .list li .box:hover .after {
  opacity: 1;
  visibility: visible;
}
.joinP4 {
  padding: 0.9rem 0 1.1rem;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}
.joinP4::before {
  content: "";
  width: 2rem;
  height: 4.7rem;
  position: absolute;
  bottom: 2.6rem;
  z-index: 2;
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.joinP4::after {
  content: "";
  width: 2rem;
  height: 4.7rem;
  position: absolute;
  bottom: 2.6rem;
  z-index: 2;
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.joinP4 .aboutTitle {
  margin-bottom: 0.7rem;
}
.joinP4 .lunbo {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.joinP4 .imgList {
  width: 30.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.3rem;
  padding: 0.3rem 0;
}
.joinP4 .swiper-slide {
  position: relative;
}
.joinP4 .swiper-slide .box {
  margin: 0 auto;
  width: 9.6rem;
  height: 4.7rem;
  padding: 0.7rem 4rem 0 0.3rem;
  background: #fff;
  border-radius: 0.24rem;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.joinP4 .swiper-slide .imgDiv {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -1.65rem;
  width: 2.9rem;
  height: 3.3rem;
  overflow: hidden;
}
.joinP4 .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.joinP4 .swiper-slide .conDiv {
  padding-left: 0.52rem;
  width: 5.34rem;
  padding-top: 0.56rem;
  position: relative;
  color: #333;
}
.joinP4 .swiper-slide .conDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.46rem;
  height: 0.44rem;
  background: url(/html/vancheer/cn/img/nimg46Bg.png) no-repeat;
  background-size: 0.46rem;
}
.joinP4 .swiper-slide .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.5rem;
  overflow: auto;
}
.joinP4 .swiper-slide .content::-webkit-scrollbar {
  width: 3px;
}
.joinP4 .swiper-slide .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.joinP4 .swiper-slide .content::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.joinP4 .swiper-slide .name {
  margin-top: 0.2rem;
  font-weight: bold;
  font-size: var(--fs36);
  line-height: 0.46rem;
}
.joinP4 .swiper-slide .state {
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.joinP4 .swiper-slide-active .box {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.joinP4 .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.joinP4 .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.joinP4 .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 2px;
  background-color: #d1d1d1;
}
.joinP4 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.joinP4 .num1,
.joinP4 .num2 {
  font-family: 'Poppins-L';
  font-size: var(--fs14);
  color: #333;
  width: 24px;
  text-align: center;
}
.joinP4 .num1 {
  padding-right: 0.08rem;
  color: #e50012;
}
.joinP4 .num2 {
  padding-left: 0.08rem;
}
.joinP4 .arrowDiv {
  margin-right: 0.3rem;
}
.joinP4 .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.2rem;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border: #c3c4c5 solid 1px;
  border-radius: 50%;
}
.joinP4 .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.joinP4 .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.joinP4 .arrowDiv .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.joinP4 .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.joinP4 .arrowDiv .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
@media (max-width: 1600px) {
  .joinP4 .pjDiv {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .joinP1 {
    padding: 0.4rem var(--offset) 0;
  }
  .joinP1 .baozhe {
    padding: 0.8rem 0 1rem;
    border-radius: 0.28rem;
  }
  .joinP1 .list {
    padding-top: 0.65rem;
  }
  .joinP1 .list li {
    display: block;
    margin-bottom: 0.5rem;
  }
  .joinP1 .list li .conDiv {
    width: auto;
    padding-top: 0.6rem;
  }
  .joinP1 .list li .name {
    font-size: var(--fs22);
    line-height: 0.66rem;
  }
  .joinP1 .list li .content {
    margin-top: 0.32rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .joinP1 .list li .imgDiv {
    width: auto;
    border-radius: 0.24rem;
  }
  .joinP1 .list li:nth-child(2) .conDiv {
    padding-top: 0.6rem;
  }
  .joinP2 {
    padding: 0.85rem 0 0.8rem;
  }
  .joinP2 .list {
    padding: 0.75rem 0 0.7rem;
  }
  .joinP2 .list li .topDiv {
    border-left: #e50012 solid 2px;
  }
  .joinP2 .list li .name {
    display: block;
    padding: 0.2rem 1.5rem 0.2rem 0.3rem;
    line-height: 0.48rem;
  }
  .joinP2 .list li .name .dj {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    width: auto;
    height: auto;
    padding-right: 0.2rem;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .joinP2 .list li .name dd {
    display: inline-block;
    font-size: var(--fs13);
    padding: 0 0.15rem 0 0;
  }
  .joinP2 .list li .name dd::after {
    width: 1px;
    height: 12px;
    margin-top: -6px;
  }
  .joinP2 .list li .name dd:last-child::after {
    display: none;
  }
  .joinP2 .list li .hideBox {
    padding: 0 0.4rem 0.9rem;
  }
  .joinP2 .list li .ico {
    right: 0.3rem;
    margin-bottom: -0.43rem;
    width: 0.86rem;
    height: 0.86rem;
  }
  .joinP2 .list li .zi {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .joinP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP2 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP2 .list li .btnDiv a {
    width: 2.3rem;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: var(--fs14);
  }
  .joinP2 .list li .liNow {
    border-left: #fff solid 2px;
  }
  .joinP2 .list li .liNow .name .dj {
    color: #e50012;
  }
  .joinP2 .list li .liNow .ico {
    bottom: 0.8rem;
    border: #e50012 solid 2px;
  }
  .joinP3 {
    padding: 0 var(--offset);
  }
  .joinP3 .baozhe {
    padding: 0.8rem 0;
    border-radius: 0.28rem;
  }
  .joinP3 .list {
    margin-top: 0.7rem;
  }
  .joinP3 .list ul {
    margin-right: 0;
  }
  .joinP3 .list li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .joinP3 .list li .box {
    margin-right: 0;
    border-radius: 0.24rem;
    height: auto;
  }
  .joinP3 .list li .txtDiv {
    padding-top: 0;
    padding-bottom: 0.3rem;
  }
  .joinP3 .list li .txtDiv .name {
    font-size: var(--fs22);
    line-height: 0.66rem;
  }
  .joinP3 .list li .txtDiv .zi {
    margin-top: 0.35rem;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .joinP3 .list li .imgDiv {
    height: auto;
  }
  .joinP3 .list li .imgDiv img {
    height: auto;
  }
  .joinP3 .list li .before {
    padding: 0 0.2rem;
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .joinP3 .list li .after {
    padding: 0 0.2rem;
  }
  .joinP3 .list li .after .wen {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .joinP3 .list li .after .content {
    margin-top: 0.1rem;
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .joinP4 {
    padding: 0.8rem var(--offset) 0.9rem;
  }
  .joinP4::before {
    display: none;
  }
  .joinP4::after {
    display: none;
  }
  .joinP4 .aboutTitle {
    margin-bottom: 0.5rem;
  }
  .joinP4 .lunbo {
    padding-bottom: 1rem;
  }
  .joinP4 .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .joinP4 .swiper-slide .box {
    width: 100%;
    height: auto;
    padding: 0.5rem 0.3rem;
  }
  .joinP4 .swiper-slide .imgDiv {
    display: none;
  }
  .joinP4 .swiper-slide .conDiv {
    width: auto;
  }
  .joinP4 .swiper-slide .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.88rem;
  }
  .joinP4 .swiper-slide .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .joinP4 .swiper-slide .state {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .joinP4 .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .joinP4 .swiper-pagination {
    width: 2.2rem;
  }
  .joinP4 .num1,
  .joinP4 .num2 {
    width: 0.48rem;
  }
  .joinP4 .num1 {
    padding-right: 0.1rem;
  }
  .joinP4 .num2 {
    padding-left: 0.1rem;
  }
  .joinP4 .arrowDiv {
    margin-right: 0.2rem;
  }
  .joinP4 .arrowDiv .se {
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.caseBox {
  padding: 0 0.32rem;
}
.caseBox .baozhe {
  background: #f9f9f9;
  padding: 0.5rem 0 1.1rem;
  border-radius: 0.2rem;
}
.caseBox .caseTop {
  padding-bottom: 0.2rem;
  border-bottom: #ececec solid 1px;
}
.caseBox .caseBot {
  padding-top: 0.6rem;
}
.caseBox .list {
  padding-bottom: 0.6rem;
}
.caseBox .list::after {
  content: '';
  display: block;
  clear: both;
}
.caseBox .list ul {
  margin-right: -0.35rem;
}
.caseBox .list li {
  float: left;
  width: 33.33%;
  margin-bottom: 0.6rem;
}
.caseBox .list li .box {
  position: relative;
  margin-right: 0.35rem;
  padding: 0.2rem 0.2rem 0;
  height: 6.75rem;
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseBox .list li .box::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseBox .list li .imgDiv {
  border-radius: 0.12rem;
  overflow: hidden;
  height: 3.2rem;
}
.caseBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.caseBox .list li .videoDiv {
  border-radius: 0.12rem;
  overflow: hidden;
  height: 3.2rem;
  position: relative;
}
.caseBox .list li .videoDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.3rem;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  background: url(/html/vancheer/cn/img/play2.png) no-repeat;
  background-size: 0.6rem;
}
.caseBox .list li .videoDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseBox .list li .videoDiv video {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: fill;
}
.caseBox .list li .videoDiv iframe {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: fill;
}
.caseBox .list li .cur .videoDiv {
  background: #000;
}
.caseBox .list li .cur .videoDiv img {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.caseBox .list li .cur .videoDiv video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.caseBox .list li .cur .videoDiv iframe {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.caseBox .list li .conDiv {
  padding: 0.42rem 0.18rem 0;
}
.caseBox .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.3rem;
  height: 0.6rem;
  font-weight: bold;
  color: #333;
}
.caseBox .list li .content {
  margin-top: 0.2rem;
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 0.28rem;
  height: 0.84rem;
  font-size: var(--fs16);
  color: #999;
}
.caseBox .list li .botbot {
  margin-top: 0.22rem;
  height: 0.48rem;
  position: relative;
}
.caseBox .list li .time {
  font-size: var(--fs16);
  color: #999;
  font-family: 'Poppins-L';
  line-height: 0.48rem;
}
.caseBox .list li .ico {
  position: absolute;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
}
.caseBox .list li .ico::after {
  content: '';
  width: 14px;
  height: 13px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -7px;
  background: url(/html/vancheer/cn/img/ico2on.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;
}
.caseBox .list li .box:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.caseBox .list li .box:hover::after {
  width: 100%;
}
.caseBox .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.caseBox .list li .box:hover .ico {
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.caseBox .list li .box:hover .ico::after {
  background: url(/html/vancheer/cn/img/ico2.png) no-repeat;
}
.brandBox {
  padding: 1.2rem 0 1.3rem;
}
.brandBox .aboutTitle {
  margin-bottom: 0.8rem;
}
.brandBox .leftScroll .list li,
.brandBox .rightScroll .list li {
  float: left;
  padding: 0.1rem 0;
  cursor: pointer;
}
.brandBox .leftScroll .list li .box,
.brandBox .rightScroll .list li .box {
  margin: 0 0.1rem;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.brandBox .leftScroll .list li .box .limg,
.brandBox .rightScroll .list li .box .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background: #fff;
  height: 1.2rem;
  width: 2.3rem;
  border-radius: 4px;
  border: #d3d3d3 solid 1px;
}
.brandBox .leftScroll .list li .box .limg img,
.brandBox .rightScroll .list li .box .limg img {
  max-width: 1.6rem;
  max-height: 1rem;
}
.brandBox .leftScroll .list li .box .border-svg,
.brandBox .rightScroll .list li .box .border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brandBox .leftScroll .list li .box .border-path,
.brandBox .rightScroll .list li .box .border-path {
  fill: none;
  stroke: #e50012;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s ease-in-out;
  opacity: 0;
}
.brandBox .leftScroll .list li .box:hover,
.brandBox .rightScroll .list li .box:hover {
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.15);
}
.brandBox .leftScroll .list li .box:hover .border-path,
.brandBox .rightScroll .list li .box:hover .border-path {
  opacity: 1;
  stroke-dashoffset: 0;
}
.tempWrap {
  width: 100%!important;
}
@media (max-width: 1004px) {
  .caseBox {
    padding: 0.4rem var(--offset) 0;
  }
  .caseBox .baozhe {
    padding: 0.5rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .caseBox .caseBot {
    padding-top: 0.75rem;
  }
  .caseBox .list {
    padding-bottom: 0.3rem;
  }
  .caseBox .list ul {
    margin-right: 0;
  }
  .caseBox .list li {
    float: none;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .caseBox .list li .box {
    margin-right: 0;
    padding: 0.2rem 0.2rem 0.3rem;
    height: auto;
    border-radius: 0.2rem;
  }
  .caseBox .list li .box::after {
    height: 2px;
  }
  .caseBox .list li .imgDiv {
    border-radius: 0.16rem;
  }
  .caseBox .list li .videoDiv {
    border-radius: 0.16rem;
  }
  .caseBox .list li .videoDiv::after {
    margin-left: -0.45rem;
    margin-top: -0.45rem;
    width: 0.9rem;
    height: 0.9rem;
    background-size: 0.9rem;
  }
  .caseBox .list li .conDiv {
    padding: 0.3rem 0.18rem 0;
  }
  .caseBox .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .caseBox .list li .content {
    margin-top: 0.1rem;
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 0.48rem;
    height: 0.96rem;
    font-size: var(--fs14);
  }
  .caseBox .list li .botbot {
    margin-top: 0.2rem;
    height: 0.64rem;
  }
  .caseBox .list li .time {
    font-size: var(--fs13);
    line-height: 0.64rem;
  }
  .caseBox .list li .ico {
    width: 0.64rem;
    height: 0.64rem;
  }
  .caseBox .list li .ico::after {
    width: 10px;
    height: 9px;
    margin-left: -5px;
    margin-top: -4px;
    background-size: 10px;
  }
  .caseBox .list li .box:hover .ico::after {
    background-size: 10px;
  }
  .brandBox {
    padding: 0.9rem 0 1rem;
  }
  .brandBox .aboutTitle {
    margin-bottom: 0.65rem;
  }
  .brandBox .leftScroll .list li .box .limg,
  .brandBox .rightScroll .list li .box .limg {
    height: 1.2rem;
    width: 2.4rem;
  }
  .brandBox .leftScroll .list li .box .limg img,
  .brandBox .rightScroll .list li .box .limg img {
    max-width: 1.5rem;
    max-height: 0.8rem;
  }
  .brandBox .leftScroll .list li .box .border-svg,
  .brandBox .rightScroll .list li .box .border-svg {
    display: none;
  }
}
.caseP1 {
  padding: 0.6rem 0;
  background: #f6f7f8;
}
.caseP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-radius: 0.16rem;
  background: #fff;
  overflow: hidden;
}
.caseP1 .leftDiv {
  width: 9.6rem;
}
.caseP1 .leftDiv .item {
  display: none;
  position: relative;
}
.caseP1 .leftDiv .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.caseP1 .leftDiv .imgDiv {
  height: 6.82rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.caseP1 .leftDiv .imgDiv img,
.caseP1 .leftDiv .imgDiv video,
.caseP1 .leftDiv .imgDiv iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseP1 .rightDiv {
  order: 1;
  padding-top: 0.65rem;
  padding-right: 0.6rem;
  width: 5.4rem;
}
.caseP1 .rightDiv .name {
  font-size: var(--fs40);
  line-height: 0.6rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.2rem;
}
.caseP1 .rightDiv .time {
  font-size: var(--fs18);
  line-height: 0.2rem;
  font-family: 'Poppins-L';
}
.caseP1 .rightDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  margin-top: 0.5rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 1.8rem;
}
.caseP1 .rightDiv .btnGroup {
  margin-top: 0.6rem;
}
.caseP1 .rightDiv .btnGroup li {
  float: left;
  margin-right: 0.2rem;
}
.caseP1 .rightDiv .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.55rem;
  height: 0.52rem;
  border-radius: 0.48rem;
  border: #e50012 solid 1px;
  font-size: var(--fs16);
  color: #333;
}
.caseP1 .rightDiv .btnGroup li a:hover {
  color: #fff;
  border: transparent solid 1px;
  background-image: linear-gradient(90deg, #e60012 0%, #d11926 100%);
  background-blend-mode: normal, normal;
}
.caseP1 .rightDiv .btnGroup li:nth-child(1) a em {
  margin-right: 0.15rem;
  width: 0.25rem;
  height: 0.26rem;
  background: url(/html/vancheer/cn/img/nimg25_1.png) no-repeat;
  background-size: 0.25rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(1) a:hover em {
  background: url(/html/vancheer/cn/img/nimg25_1on.png) no-repeat;
  background-size: 0.25rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a {
  width: 2.4rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a em {
  margin-left: 0.1rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 0.16rem;
}
.caseP1 .rightDiv .btnGroup li:nth-child(2) a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.caseP1 .botbot {
  margin-top: 0.4rem;
  width: 6.38rem;
  position: relative;
}
.caseP1 .box-container {
  width: 5.14rem;
  margin: 0 auto;
  overflow: hidden;
}
.caseP1 .box-container .swiper-slide {
  position: relative;
  cursor: pointer;
}
.caseP1 .box-container .limg {
  border-radius: 0.12rem;
  overflow: hidden;
  height: 1.1rem;
  border: transparent solid 1px;
}
.caseP1 .box-container .limg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caseP1 .box-container .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 16px;
  margin-left: -7px;
  margin-top: -8px;
  background: url(/html/vancheer/cn/img/play4.png) no-repeat;
}
.caseP1 .box-container .swiper-slide-active .limg {
  border: #e50012 solid 1px;
}
.caseP1 .se {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.caseP1 .se:hover {
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3d22 100%);
  background-blend-mode: normal, normal;
}
.caseP1 .prev {
  left: 0;
}
.caseP1 .prev::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(/html/vancheer/cn/img/nimg12_left.png) no-repeat;
}
.caseP1 .prev:hover::after {
  background: url(/html/vancheer/cn/img/nimg12_lefton.png) no-repeat;
}
.caseP1 .next {
  right: 0;
}
.caseP1 .next::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(/html/vancheer/cn/img/nimg12_right.png) no-repeat;
}
.caseP1 .next:hover::after {
  background: url(/html/vancheer/cn/img/nimg12_righton.png) no-repeat;
}
.caseP1.on {
  padding: 1.3rem 0 0.6rem;
}
.caseP2 {
  border-bottom: #dbdbdb solid 1px;
  overflow: hidden;
}
.caseP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.caseP2 .leftDiv {
  width: 9rem;
  padding: 0.85rem 0 1.3rem;
}
.caseP2 .leftDiv .title {
  font-size: var(--fs30);
  letter-spacing: 3px;
  line-height: 0.32rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.caseP2 .leftDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: justify;
}
.caseP2 .leftDiv .list {
  margin-bottom: 0.85rem;
}
.caseP2 .leftDiv .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.caseP2 .leftDiv .list li {
  width: calc((100% - 0.64rem) / 3);
  margin-right: 0.32rem;
  border: #d3d3d3 solid 1px;
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  min-height: 3.2rem;
  padding: 0.45rem 0.1rem 0.3rem 0.4rem;
}
.caseP2 .leftDiv .list li:nth-child(3n) {
  margin-right: 0;
}
.caseP2 .leftDiv .list li .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background: center no-repeat;
  background-size: cover;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseP2 .leftDiv .list li .bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.caseP2 .leftDiv .list li .qian {
  padding-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}
.caseP2 .leftDiv .list li .hou {
  position: relative;
  z-index: 1;
}
.caseP2 .leftDiv .list li .zi {
  font-size: var(--fs18);
  color: #333;
  line-height: 0.24rem;
  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;
}
.caseP2 .leftDiv .list li .name {
  font-size: var(--fs30);
  line-height: 0.36rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseP2 .leftDiv .list li .wen {
  font-size: var(--fs18);
  line-height: 0.24rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseP2 .leftDiv .list li .wen span {
  color: #ccc;
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-family: 'Din-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseP2 .leftDiv .list li .wen em {
  color: #ef3722;
  font-size: var(--fs36);
  line-height: 0.42rem;
  font-family: 'Din-B';
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.caseP2 .leftDiv .list li:hover .bg {
  opacity: 1;
  visibility: visible;
}
.caseP2 .leftDiv .list li:hover .zi {
  color: #fff;
}
.caseP2 .leftDiv .list li:hover .name {
  color: #fff;
}
.caseP2 .leftDiv .list li:hover .wen {
  color: #fff;
}
.caseP2 .leftDiv .list li:hover .wen span {
  color: #fff;
}
.caseP2 .leftDiv .list li:hover .wen em {
  color: #fff;
}
.caseP2 .rightDiv {
  width: 5.75rem;
  position: relative;
  padding: 0.8rem 0 1.3rem;
}
.caseP2 .rightDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dbdbdb;
}
.caseP2 .msgList {
  position: relative;
  z-index: 1;
  padding-bottom: 0.8rem;
}
.caseP2 .msgList li {
  padding-bottom: 0.5rem;
}
.caseP2 .msgList li:last-child {
  padding-bottom: 0;
}
.caseP2 .msgList li .zi {
  position: relative;
  margin-bottom: 0.1rem;
  padding-left: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
}
.caseP2 .msgList li .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ee2123;
}
.caseP2 .msgList li .wen {
  color: #333;
  font-size: var(--fs24);
  line-height: 0.3rem;
  font-family: 'Poppins-M';
  padding-left: 0.25rem;
}
.caseP2 .share {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  padding-left: 1.05rem;
  position: relative;
  height: 0.56rem;
}
.caseP2 .share em {
  position: absolute;
  left: 0.25rem;
  top: 0;
  line-height: 0.56rem;
  font-size: var(--fs18);
}
.caseP2 .share ul {
  margin-bottom: 0;
}
.caseP2 .share li {
  float: left;
  margin-right: 0.2rem;
}
.caseP2 .share li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 32px;
  height: 32px;
  border: #e5e5e5 solid 1px;
  border-radius: 50%;
}
.caseP2 .share li a:hover {
  border: #e50012 solid 1px;
}
.caseP2 .backBtn {
  padding: 0.55rem 0 0 0.25rem;
  width: 1.8rem;
}
.caseP2 .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;
}
.caseP2 .backBtn em {
  margin-left: 0.15rem;
  width: 18px;
  height: 14px;
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
}
.caseP2 .backBtn a:hover {
  border: #e50012 solid 1px;
  background: #e50012;
  color: #fff;
}
.caseP2 .backBtn a:hover em {
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
}
@media (max-width: 1600px) {
  .caseP2 .leftDiv {
    width: 9.45rem;
  }
}
@media (max-width: 1004px) {
  .caseP1 {
    padding: 0.8rem 0;
  }
  .caseP1 .mxfDiv {
    display: block;
    border-radius: 0.2rem;
  }
  .caseP1 .leftDiv {
    width: auto;
  }
  .caseP1 .leftDiv .imgDiv {
    height: 4.3rem;
  }
  .caseP1 .rightDiv {
    padding-right: 0.3rem;
    padding-left: 0.3rem;
    padding-bottom: 0.6rem;
    width: auto;
    overflow: hidden;
  }
  .caseP1 .rightDiv .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .caseP1 .rightDiv .time {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .caseP1 .rightDiv .content {
    margin-top: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: auto;
  }
  .caseP1 .rightDiv .btnGroup {
    margin-top: 0.5rem;
  }
  .caseP1 .rightDiv .btnGroup li {
    margin-bottom: 0.2rem;
  }
  .caseP1 .rightDiv .btnGroup li a {
    width: 2.1rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(1) a em {
    margin-right: 0.1rem;
    width: 0.32rem;
    height: 0.33rem;
    background-size: 0.32rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(1) a:hover em {
    background-size: 0.32rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a {
    width: 4rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a em {
    margin-left: 0.1rem;
    width: 0.22rem;
    height: 0.18rem;
    background-size: 0.22rem;
  }
  .caseP1 .rightDiv .btnGroup li:nth-child(2) a:hover em {
    background-size: 0.22rem;
  }
  .caseP1 .botbot {
    width: 100%;
  }
  .caseP1 .box-container {
    width: calc(100% - 2rem);
  }
  .caseP1 .box-container .limg {
    height: 1rem;
  }
  .caseP1 .box-container .ico {
    width: 10px;
    height: 12px;
    margin-left: -5px;
    margin-top: -6px;
    background-size: 10px;
  }
  .caseP1 .se {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }
  .caseP1.on {
    padding: 0.8rem 0;
  }
  .caseP2 .mxfDiv {
    display: block;
  }
  .caseP2 .leftDiv {
    width: auto;
    padding: 0.75rem 0;
  }
  .caseP2 .leftDiv .title {
    font-size: var(--fs18);
    letter-spacing: 2px;
    line-height: 0.56rem;
  }
  .caseP2 .leftDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .caseP2 .leftDiv .list {
    margin-bottom: 0.7rem;
  }
  .caseP2 .leftDiv .list ul {
    display: block;
  }
  .caseP2 .leftDiv .list li {
    width: auto;
    border-radius: 0.16rem;
    min-height: 3.2rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
    padding: 0.45rem 0.4rem 0.3rem 0.4rem;
  }
  .caseP2 .leftDiv .list li .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .caseP2 .leftDiv .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .caseP2 .leftDiv .list li .wen {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .caseP2 .leftDiv .list li .wen span {
    font-size: var(--f18);
    line-height: 0.56rem;
  }
  .caseP2 .leftDiv .list li .wen em {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .caseP2 .rightDiv {
    width: auto;
    padding: 0.8rem 0 1rem;
  }
  .caseP2 .msgList li .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .caseP2 .msgList li .wen {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .caseP2 .share {
    padding-left: 1.2rem;
  }
  .caseP2 .share em {
    font-size: var(--fs14);
  }
  .caseP2 .backBtn {
    width: 2.4rem;
  }
  .caseP2 .backBtn a {
    height: 0.86rem;
    font-size: var(--fs13);
  }
  .caseP2 .backBtn em {
    margin-left: 0.15rem;
    width: 10px;
    height: 9px;
    background-size: 10px;
  }
  .caseP2 .backBtn a:hover em {
    background-size: 10px;
  }
}
.serviceNav {
  display: none;
  left: 0.22rem;
  z-index: 5;
  position: fixed;
  top: 0.5rem;
  background: #fff;
  padding: 0.1rem;
  border-radius: 4px;
}
.serviceNav li {
  font-size: var(--fs16);
}
.serviceNav li a {
  position: relative;
  display: block;
  padding-left: 0.24rem;
  padding-bottom: 0.45rem;
  line-height: 0.24rem;
  color: #999;
}
.serviceNav li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav li a::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.2rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: #e0e0e0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav li .aNow {
  color: #333;
}
.serviceNav li .aNow::before {
  background: #e50012;
}
.serviceNav li .aNow::after {
  background: #e50012;
}
.serviceNav li:last-child a::after {
  display: none;
}
.serviceNav2 {
  display: none;
  left: 0.22rem;
  z-index: 5;
  position: fixed;
  top: 0.5rem;
  background: #fff;
  padding: 0.1rem;
  border-radius: 4px;
}
.serviceNav2 li {
  font-size: var(--fs16);
}
.serviceNav2 li a {
  position: relative;
  display: block;
  padding-left: 0.24rem;
  padding-bottom: 0.45rem;
  line-height: 0.24rem;
  color: #999;
}
.serviceNav2 li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav2 li a::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.2rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: #e0e0e0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav2 li .aNow {
  color: #333;
}
.serviceNav2 li .aNow::before {
  background: #e50012;
}
.serviceNav2 li .aNow::after {
  background: #e50012;
}
.serviceNav2 li:last-child a::after {
  display: none;
}
.serviceNav3 {
  display: none;
  left: 0.22rem;
  z-index: 5;
  position: fixed;
  top: 0.5rem;
  background: #fff;
  padding: 0.1rem;
  border-radius: 4px;
}
.serviceNav3 li {
  font-size: var(--fs16);
}
.serviceNav3 li a {
  position: relative;
  display: block;
  padding-left: 0.24rem;
  padding-bottom: 0.45rem;
  line-height: 0.24rem;
  color: #999;
}
.serviceNav3 li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav3 li a::after {
  content: '';
  position: absolute;
  left: 0.05rem;
  top: 0.2rem;
  width: 1px;
  height: calc(100% - 0.2rem);
  background: #e0e0e0;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceNav3 li .aNow {
  color: #333;
}
.serviceNav3 li .aNow::before {
  background: #e50012;
}
.serviceNav3 li .aNow::after {
  background: #e50012;
}
.serviceNav3 li:last-child a::after {
  display: none;
}
.serviceP1 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.serviceP1 .baozhe {
  padding: 0.9rem 0 1.6rem;
  background: #fff;
  border-radius: 0.2rem;
}
.serviceP1 .mxfDiv {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  height: 4.7rem;
  border-radius: 0.16rem;
  background: center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.serviceP1 .title {
  font-size: var(--fs48);
  line-height: 0.64rem;
  text-align: center;
  color: #333;
}
.serviceP1 .title strong {
  display: block;
}
.serviceP1 .list {
  margin-top: 0.4rem;
  text-align: center;
}
.serviceP1 .list ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.serviceP1 .list li {
  padding: 0 0.8rem;
  color: #333;
  font-size: var(--fs16);
}
.serviceP1 .list li .pj {
  height: 0.85rem;
}
.serviceP1 .list li .num {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.serviceP1 .list li .num p {
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.serviceP1 .list li .num span {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: url(/html/vancheer/cn/img/nimg22_1.png) no-repeat;
}
.serviceP1 .list li .numUp {
  font-size: 0.8rem;
  line-height: 0.64rem;
  padding-right: 0.05rem;
  color: #e50012;
  font-family: "Din-B";
}
.serviceP1 .list li .wen {
  line-height: 0.3rem;
}
.serviceP2 {
  background: #f8f8f8;
  padding: 1rem 0 0.8rem;
}
.serviceP2 .list {
  padding-top: 0.75rem;
}
.serviceP2 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
  margin-bottom: 0;
}
.serviceP2 .list li {
  position: relative;
  width: calc((100% - 0.36rem) / 3);
  margin-right: 0.18rem;
  margin-bottom: 0.2rem;
  background: #fff;
  border-radius: 0.2rem;
  height: 2.82rem;
  color: #333;
  padding: 0.8rem 0.65rem 0 2.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP2 .list li:nth-child(3n) {
  margin-right: 0;
}
.serviceP2 .list li .layer {
  width: 1.46rem;
  height: 1.46rem;
  position: absolute;
  left: 0.35rem;
  top: 50%;
  margin-top: -0.72rem;
  background: url(/html/vancheer/cn/img/nimg19Bg.png) right center no-repeat;
  background-size: 0.19rem;
}
.serviceP2 .list li .num {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.36rem;
  height: 1.36rem;
  color: #fff;
  font-size: var(--fs72);
  font-family: "Din-R";
  border-radius: 50%;
  margin-left: -0.68rem;
  margin-top: -0.68rem;
  background: rgba(220, 3, 19, 0.08);
}
.serviceP2 .list li .num::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.14rem;
  height: 1.14rem;
  border-radius: 50%;
  margin-left: -0.57rem;
  margin-top: -0.57rem;
  background-image: linear-gradient(180deg, #e70c1d 0%, #b70000 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.serviceP2 .list li .num em {
  position: relative;
  z-index: 1;
}
.serviceP2 .list li .name {
  font-weight: bold;
  font-size: var(--fs30);
  line-height: 0.42rem;
}
.serviceP2 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.serviceP2 .list li:hover {
  box-shadow: 0px 0px 0.3rem 0px rgba(0, 0, 0, 0.1);
}
.serviceP2 .list li:hover .num::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-top: 0;
}
.serviceP3 {
  padding: 0 0.32rem 0.4rem;
  background: #f8f8f8;
}
.serviceP3 .baozhe {
  position: relative;
  padding-top: 1rem;
  height: 8.46rem;
  border-radius: 0.2rem;
  background: url(/html/vancheer/cn/img/bg2.jpg) center repeat-y;
  background-size: contain;
  overflow: hidden;
}
.serviceP3 .baozhe::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(/html/vancheer/cn/img/serviceP3.png) center bottom no-repeat;
  background-size: contain;
}
.serviceP3 .baozhe::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4.72rem;
  height: 2.7rem;
  background: url(/html/vancheer/cn/img/nimg472Bg.png) no-repeat;
  background-size: 4.72rem;
  z-index: 1;
}
.serviceP3 .conDiv {
  padding-top: 1rem;
}
.serviceP3 .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
}
.serviceP3 .conDiv .content {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
}
.serviceP3 .imgDiv {
  position: absolute;
  right: 50%;
  margin-right: -7rem;
  bottom: 1.3rem;
  z-index: 2;
}
.serviceP3 .imgDiv img {
  width: 6.87rem;
}
.serviceP4 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.serviceP4 .baozhe {
  position: relative;
  padding: 1rem 0 0.8rem;
  border-radius: 0.2rem;
  background: url(/html/vancheer/cn/img/serviceP4.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.serviceP4 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.6rem;
  padding-right: 0.55rem;
}
.serviceP4 .conDiv {
  padding-top: 1rem;
}
.serviceP4 .conDiv .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #333;
  font-weight: bold;
}
.serviceP4 .conDiv .content {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
}
.serviceP4 .appList {
  padding-top: 1rem;
}
.serviceP4 .appList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0;
}
.serviceP4 .appList li {
  width: 1.7rem;
}
.serviceP4 .appList li .limg {
  border-radius: 0.1rem;
  overflow: hidden;
}
.serviceP4 .appList li .limg img {
  width: 100%;
}
.serviceP4 .appList li .zi {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  text-align: center;
  color: #333;
  line-height: 0.3rem;
}
.serviceP4 .appList li .more {
  margin: 0.3rem auto 0;
  width: 1.36rem;
}
.serviceP4 .appList li .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0.42rem;
  color: #fff;
  font-size: var(--fs18);
  background: #e50012;
  border-radius: 0.48rem;
}
.serviceP4 .imgList {
  width: 5.3rem;
}
.serviceP4 .imgList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0;
}
.serviceP4 .imgList li img {
  width: 2.53rem;
}
.serviceP5 {
  background: #f8f8f8;
  padding: 1.4rem 0 1.6rem;
}
.serviceP5 .list {
  padding-top: 0.6rem;
}
.serviceP5 .list ul {
  margin-bottom: 0;
}
.serviceP5 .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.serviceP5 .list li .imgDiv {
  width: 50%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.serviceP5 .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;
}
.serviceP5 .list li .conDiv {
  width: 50%;
  background: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
  padding: 1.1rem 1.8rem 0 0.95rem;
}
.serviceP5 .list li .name {
  font-weight: bold;
  color: #333;
  font-size: var(--fs36);
  line-height: 0.48rem;
}
.serviceP5 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.serviceP5 .list li:nth-child(odd) .imgDiv {
  order: 1;
}
.serviceP5 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.serviceP6 {
  padding: 0 0.32rem 0.45rem;
  background: #f8f8f8;
}
.serviceP6 .baozhe {
  position: relative;
  padding: 1rem 0 1.35rem;
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}
.serviceP6 .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.8rem;
}
.serviceP6 .leftDiv {
  width: 33.33%;
}
.serviceP6 .leftDiv .name {
  font-size: var(--fs36);
  line-height: 0.4rem;
  color: #333;
  font-weight: bold;
}
.serviceP6 .leftDiv .content {
  margin-top: 0.25rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.serviceP6 .rightImg {
  width: 66.66%;
}
.serviceP6 .rightImg img {
  width: 100%;
}
.culturePic {
  margin-top: 0.2rem;
  position: relative;
}
.culturePic .imgList {
  overflow: hidden;
}
.culturePic .imgList li {
  width: calc((100% - 0.6rem) / 3);
  margin-right: 0.3rem;
}
.culturePic .imgList li .imgDiv {
  height: 2.9rem;
  overflow: hidden;
}
.culturePic .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.culturePic .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.culturePic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  margin-top: -0.3rem;
  border: #cfcfcf solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.culturePic .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.culturePic .prev {
  left: 50%;
  margin-left: -8.48rem;
}
.culturePic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.culturePic .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.culturePic .next {
  right: 50%;
  margin-right: -8.48rem;
}
.culturePic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.culturePic .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.serviceP7 {
  padding: 0 0.32rem 0.45rem;
  background: #f8f8f8;
}
.serviceP7 .baozhe {
  position: relative;
  padding: 1.2rem 0 1.6rem;
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}
.serviceP7 .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  text-align: center;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.serviceP7 .list ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-bottom: 0;
}
.serviceP7 .list li {
  padding: 0 0.95rem;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
}
.serviceP7 .list li .ico {
  height: 1rem;
}
.serviceP7 .list li .ico img {
  width: 0.6rem;
}
.serviceP7 .list li .num {
  font-family: "Mont-B";
  font-size: var(--fs30);
  line-height: 0.34rem;
  font-weight: bold;
  padding-bottom: 0.15rem;
}
@media (max-width: 1600px) {
  .culturePic .prev {
    margin-left: -8.78rem;
  }
  .culturePic .next {
    margin-right: -8.78rem;
  }
}
@media (max-width: 1004px) {
  .serviceP1 {
    padding: 0.4rem var(--offset) 0;
  }
  .serviceP1 .baozhe {
    padding: 0.8rem 0 1rem;
    border-radius: 0.28rem;
  }
  .serviceP1 .mxfDiv {
    margin-top: 0.65rem;
    padding-top: 0.6rem;
    padding-bottom: 0.5rem;
    height: auto;
    border-radius: 0.2rem;
  }
  .serviceP1 .title {
    font-size: var(--fs20);
  }
  .serviceP1 .list {
    margin-top: 0.5rem;
    padding: 0 0.6rem;
  }
  .serviceP1 .list ul {
    display: block;
  }
  .serviceP1 .list li {
    padding: 0 0 0.4rem;
    font-size: var(--fs14);
  }
  .serviceP1 .list li .pj {
    height: 0.9rem;
  }
  .serviceP1 .list li .num p {
    height: 0.72rem;
  }
  .serviceP1 .list li .num span {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }
  .serviceP1 .list li .numUp {
    font-size: 0.72rem;
    line-height: 0.72rem;
  }
  .serviceP1 .list li .wen {
    line-height: 0.48rem;
  }
  .serviceP2 {
    padding: 0.9rem 0 0.3rem;
  }
  .serviceP2 .list {
    padding-top: 0.65rem;
  }
  .serviceP2 .list ul {
    display: block;
  }
  .serviceP2 .list li {
    width: 100%;
    margin-bottom: 0.3rem;
    margin-right: 0;
    border-radius: 0.24rem;
    padding: 0.5rem 0.3rem 0 2.5rem;
  }
  .serviceP2 .list li .layer {
    width: 1.86rem;
    height: 1.86rem;
    left: 0.3rem;
    margin-top: -0.93rem;
    background-size: 0.22rem;
  }
  .serviceP2 .list li .num {
    width: 1.76rem;
    height: 1.76rem;
    font-size: var(--fs40);
    margin-left: -0.88rem;
    margin-top: -0.88rem;
  }
  .serviceP2 .list li .num::before {
    width: 1.54rem;
    height: 1.54rem;
    margin-left: -0.77rem;
    margin-top: -0.77rem;
  }
  .serviceP2 .list li .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .serviceP2 .list li .msg {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .serviceP3 {
    padding: 0 var(--offset) 0.4rem;
  }
  .serviceP3 .baozhe {
    padding: 0.8rem 0 0.4rem;
    height: auto;
    border-radius: 0.28rem;
  }
  .serviceP3 .baozhe::after {
    width: 2rem;
    height: 1.14rem;
    background-size: 2rem;
  }
  .serviceP3 .conDiv {
    padding-top: 0.5rem;
  }
  .serviceP3 .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .serviceP3 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP3 .imgDiv {
    margin-top: 0.5rem;
    text-align: center;
    position: relative;
    right: 0;
    margin-right: 0;
    bottom: 0;
  }
  .serviceP3 .imgDiv img {
    width: 70%;
  }
  .serviceP4 {
    padding: 0 var(--offset);
  }
  .serviceP4 .baozhe {
    padding: 0.8rem 0 0.8rem;
    border-radius: 0.28rem;
  }
  .serviceP4 .mxfDiv {
    display: block;
    margin-top: 0.5rem;
    padding-right: 0;
  }
  .serviceP4 .conDiv {
    padding-top: 0;
  }
  .serviceP4 .conDiv .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .serviceP4 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP4 .appList {
    padding-top: 0.6rem;
    width: auto;
  }
  .serviceP4 .appList li {
    width: 50%;
  }
  .serviceP4 .appList li .limg {
    width: 2rem;
    margin: 0 auto;
    border-radius: 0.16rem;
  }
  .serviceP4 .appList li .zi {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .serviceP4 .appList li .more {
    width: 1.86rem;
  }
  .serviceP4 .appList li .more a {
    width: 100%;
    height: 0.72rem;
    font-size: var(--fs14);
  }
  .serviceP4 .imgList {
    padding-top: 0.4rem;
    width: auto;
  }
  .serviceP4 .imgList li {
    width: 48%;
    padding: 0 2%;
  }
  .serviceP5 {
    padding: 0.8rem 0 1rem;
  }
  .serviceP5 .list {
    padding-top: 0.65rem;
  }
  .serviceP5 .list li {
    display: block;
    margin-bottom: 0.4rem;
  }
  .serviceP5 .list li:last-child {
    margin-bottom: 0;
  }
  .serviceP5 .list li .imgDiv {
    width: 100%;
    border-radius: 0.24rem;
  }
  .serviceP5 .list li .conDiv {
    width: auto;
    border-radius: 0.24rem;
    padding: 0.6rem 0.35rem;
  }
  .serviceP5 .list li .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .serviceP5 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP6 {
    padding: 0 var(--offset) 0.4rem;
  }
  .serviceP6 .baozhe {
    padding: 0.8rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .serviceP6 .toptop {
    display: block;
    margin-top: 0.6rem;
  }
  .serviceP6 .leftDiv {
    width: auto;
  }
  .serviceP6 .leftDiv .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .serviceP6 .leftDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .serviceP6 .rightImg {
    margin-top: 0.5rem;
    width: auto;
  }
  .culturePic .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .culturePic .imgList li .imgDiv {
    height: 3.6rem;
    border-radius: 0.16rem;
  }
  .culturePic .se {
    width: 0.86rem;
    height: 0.86rem;
    background: #fff;
    border: #fff solid 1px;
    margin-top: -0.43rem;
  }
  .culturePic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .culturePic .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .serviceP7 {
    padding: 0 var(--offset) 0.4rem;
  }
  .serviceP7 .baozhe {
    padding: 0.8rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .serviceP7 .baozhe .wrap {
    padding: 0;
  }
  .serviceP7 .title {
    font-size: var(--fs20);
    line-height: 0.54rem;
    margin-bottom: 0.65rem;
  }
  .serviceP7 .list ul {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .serviceP7 .list li {
    padding: 0 0.2rem;
    font-size: var(--fs13);
  }
  .serviceP7 .list li .ico img {
    width: 0.72rem;
  }
  .serviceP7 .list li .num {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
}
.investBan {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.investBan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 128px;
  background: url(/html/vancheer/cn/img/bg1.png) bottom repeat-x;
  z-index: 1;
}
.investBan .bg img {
  width: 100%;
  transform: scale(1.1) translateZ(0);
  -o-transform: scale(1.1) translateZ(0);
  -moz-transform: scale(1.1) translateZ(0);
  -webkit-transform: scale(1.1) translateZ(0);
  transition: all,4s ease;
}
.investBan .baozhe {
  position: relative;
}
.investBan .txtLayer {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  text-align: center;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.investBan .txtLayer .name {
  font-size: var(--fs72);
  line-height: 0.9rem;
  color: #fff;
  margin: 0 0 0.6rem;
}
.investBan .txtLayer .name em {
  display: block;
  color: #e50012;
  font-weight: bold;
  font-size: 0.8rem;
}
.investBan .txtLayer .wen {
  text-indent: 8px;
  color: #fff;
  font-size: var(--fs48);
  line-height: 0.64rem;
  letter-spacing: 8px;
}
.investBan .btnDiv {
  width: 2rem;
  margin: 0.8rem auto 0;
}
.investBan .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0.6rem;
  font-size: var(--fs24);
  border-radius: 0.48rem;
  background: #e50012;
  color: #fff;
  font-weight: bold;
}
.investBan .mouse {
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0.6rem;
  z-index: 3;
  width: 18px;
}
.investBan .mouse .kuang {
  position: relative;
  margin: 0 auto;
  width: 18px;
  height: 32px;
  border-radius: 0.2rem;
  border: 1px solid #fff;
}
.investBan .mouse .kuang span {
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 13px;
  width: 2px;
  height: 5px;
  background-color: #fff;
  animation: upDown 1s ease-out infinite;
}
.investBan.animated .bg img {
  transform: scale(1) translateZ(0);
  -o-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
}
@media (max-width: 1004px) {
  .investBan .bg {
    height: 5rem;
  }
  .investBan .bg img {
    height: 100%;
    object-fit: cover;
  }
  .investBan .txtLayer .name {
    font-size: var(--fs22);
    line-height: 0.72rem;
    margin: 0 0 0.2rem;
  }
  .investBan .txtLayer .name em {
    font-size: var(--fs26);
  }
  .investBan .txtLayer .wen {
    text-indent: 3px;
    font-size: var(--fs18);
    letter-spacing: 3px;
  }
  .investBan .btnDiv {
    width: 2.4rem;
    margin: 0.2rem auto 0;
  }
  .investBan .btnDiv a {
    height: 0.8rem;
    font-size: var(--fs16);
  }
  .investBan .mouse {
    display: none;
  }
}
.investTitle {
  text-align: center;
}
.investTitle .num {
  font-size: 1.2rem;
  line-height: 0.9rem;
  font-family: 'Din-B';
  background-image: linear-gradient(top, #dc0313, #fff);
  background-image: linear-gradient(to bottom, #dc0313, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investTitle .cn {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0;
  font-weight: bold;
  font-size: var(--fs60);
  line-height: 0.64rem;
}
.investTitle .cn em {
  padding-right: 0.1rem;
  background-image: linear-gradient(top, #000, #626161);
  background-image: linear-gradient(to bottom, #000, #626161);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investTitle .cn span {
  padding-left: 0.1rem;
  background-image: linear-gradient(top, #e60012, #b80000);
  background-image: linear-gradient(to bottom, #e60012, #b80000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investTitle .cn img {
  width: 0.4rem;
}
.investTitle .en {
  margin: 3px 0 0;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #ccc;
  font-family: 'Mont-B';
  text-transform: uppercase;
}
.investTxt {
  font-weight: bold;
  margin: 0;
  font-size: var(--fs48);
  line-height: 0.52rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.25rem;
  background-image: linear-gradient(top, #353535, #8a8a8a);
  background-image: linear-gradient(to bottom, #353535, #8a8a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investTxt::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -0.15rem;
  width: 0.3rem;
  height: 0.05rem;
  background: #e50012;
}
.investP1 {
  padding: 0.6rem 0 0.95rem;
}
.investP1 .toptop {
  border-radius: 0.2rem;
  background: #f8f8f8;
  margin-top: 0.3rem;
  padding: 0.9rem 0;
}
.investP1 .toptop .content {
  width: 11.2rem;
  margin: 0.3rem auto 0;
  font-size: var(--fs16);
  line-height: 0.32rem;
  text-align: center;
}
.investP1 .numList {
  padding: 0.4rem 0 0.65rem;
}
.investP1 .numList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP1 .numList li {
  width: calc(20% - 0.11rem);
  background-image: linear-gradient(180deg, #e60012 0%, #b70000 100%);
  background-blend-mode: normal, normal;
  border-radius: 0.2rem;
  min-height: 2.4rem;
  padding: 0.2rem 0.3rem;
  font-size: var(--fs16);
  text-align: center;
}
.investP1 .numList li .ico {
  height: 0.65rem;
}
.investP1 .numList li .ico img {
  width: 0.6rem;
}
.investP1 .numList li .pj {
  height: 0.75rem;
}
.investP1 .numList li .num {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.investP1 .numList li .num p {
  color: rgba(255, 255, 255, 0.5);
  height: 0.56rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.investP1 .numList li .num span {
  position: absolute;
  left: 0;
  top: -0.05rem;
  font-size: var(--fs36);
  line-height: 0.24rem;
  color: #fff;
  font-family: 'Mont-B';
}
.investP1 .numList li .numUp {
  font-size: 0.8rem;
  line-height: 0.64rem;
  padding-right: 0.1rem;
  background-image: linear-gradient(top, #fff, #f3848d);
  background-image: linear-gradient(to bottom, #fff, #f3848d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Din-B";
}
.investP1 .numList li .wen {
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
}
.investP1 .list {
  padding-top: 0.5rem;
}
.investP1 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP1 .list li {
  width: calc(50% - 0.39rem);
  border: #cc0000 solid 1px;
  background: #f8f8f8;
  min-height: 3.76rem;
  padding: 0.15rem 0.5rem 0.3rem 0.2rem;
  border-radius: 0.2rem;
}
.investP1 .list li .name {
  width: 1.65rem;
  height: 0.56rem;
  line-height: 0.56rem;
  background: #cc0000;
  font-size: var(--fs24);
  border-radius: 0.16rem;
  color: #fff;
  text-align: center;
}
.investP1 .list li .msg {
  padding: 0.15rem 0 0 0.3rem;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.32rem;
}
.investP2 .toptop {
  overflow: hidden;
  padding-top: 0.9rem;
  background: #f8f8f8;
}
.investP2 .toptop .investTxt {
  margin: 0.65rem 0 0.5rem;
}
.investP2 .midmid {
  background: #f8f8f8;
  padding-top: 0.7rem;
}
.investP2 .midmid .content {
  color: #333;
  text-align: center;
  font-size: var(--fs16);
  line-height: 0.3rem;
  width: 12.2rem;
  margin: 0 auto;
  padding: 0.3rem 0 0.45rem;
}
.investP2 .midmid .bigImg img {
  width: 100%;
}
.investP2 .botbot {
  background: #f8f8f8;
  padding: 0.7rem 0 0.9rem;
}
.investP2 .botbot .list {
  padding-top: 0.5rem;
}
.investP2 .botbot .list li {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.investP2 .botbot .list li .imgDiv {
  width: 50%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.investP2 .botbot .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;
}
.investP2 .botbot .list li .conDiv {
  width: 50%;
  background: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
  padding: 1.1rem 1rem 0 0.7rem;
}
.investP2 .botbot .list li .name {
  font-weight: bold;
  color: #e50012;
  font-size: var(--fs36);
  line-height: 0.48rem;
}
.investP2 .botbot .list li .msg {
  margin-top: 0.4rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
}
.investP2 .botbot .list li:nth-child(even) .imgDiv {
  order: 1;
}
.investP2 .botbot .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.investP2 .botbot .title {
  padding: 0.3rem 0 0.4rem 0.75rem;
  color: #333;
  font-weight: bold;
  font-size: var(--fs24);
}
.basicPic {
  position: relative;
}
.basicPic .imgList li {
  width: 6rem;
  margin-right: 0.32rem;
}
.basicPic .imgList li .box {
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
}
.basicPic .imgList li .imgDiv {
  height: 4rem;
}
.basicPic .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.basicPic .imgList li .txtLayer {
  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;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  color: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 0.3rem;
  background: rgba(204, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.basicPic .imgList li .txtLayer .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  font-weight: bold;
}
.basicPic .imgList li .txtLayer .address {
  font-size: var(--fs18);
  line-height: 0.3rem;
  padding-bottom: 0.2rem;
  position: relative;
}
.basicPic .imgList li .txtLayer .address::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -12px;
  bottom: 0;
  width: 25px;
  height: 3px;
  background: #fff;
}
.basicPic .imgList li .txtLayer .msg {
  margin-top: 0.45rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: center;
}
.basicPic .imgList li .zi {
  margin-top: 0.15rem;
  line-height: 0.3rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  font-size: var(--fs18);
}
.basicPic .imgList li:hover .txtLayer {
  opacity: 1;
  visibility: visible;
}
.labPic {
  position: relative;
}
.labPic .lie {
  overflow: hidden;
}
.labPic .lie li {
  width: calc((100% - 0.32rem) / 3);
  margin-right: 0.16rem;
}
.labPic .lie li .box {
  padding: 0.5rem 0.8rem 0;
  height: 2.8rem;
  border-radius: 0.2rem;
  border: #ccc solid 1px;
  background: #fff;
  overflow: hidden;
}
.labPic .lie li .name {
  color: #e50012;
  font-size: var(--fs24);
  line-height: 0.36rem;
  font-weight: bold;
}
.labPic .lie li .content {
  margin-top: 0.08rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #333;
  height: 1.6rem;
  overflow: auto;
}
.labPic .lie li .content::-webkit-scrollbar {
  width: 3px;
}
.labPic .lie li .content::-webkit-scrollbar-track {
  background-color: #eee;
}
.labPic .lie li .content::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.labPic .lie li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.labPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  margin-top: -0.25rem;
  border: #e50012 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.labPic .se:hover {
  background: #e50012;
}
.labPic .prev {
  left: 0.1rem;
}
.labPic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(/html/vancheer/cn/img/nimg12_left.png) no-repeat;
}
.labPic .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg12_lefton.png) no-repeat;
}
.labPic .next {
  right: 0.1rem;
}
.labPic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(/html/vancheer/cn/img/nimg12_right.png) no-repeat;
}
.labPic .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg12_righton.png) no-repeat;
}
.investP3 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.investP3 .baozhe {
  padding: 0.9rem 0 1rem;
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}
.investP3 .list {
  padding: 1rem 0 0.7rem;
}
.investP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.investP3 .list li {
  width: calc((100% - 0.4rem) / 3);
  background: #f8f8f8;
  border-radius: 0.16rem;
  min-height: 2.8rem;
  padding: 0.35rem 0.36rem 0;
  margin-bottom: 0.2rem;
  margin-right: 0.2rem;
}
.investP3 .list li:nth-child(3n) {
  margin-right: 0;
}
.investP3 .list li:last-child {
  width: 100%;
  margin-right: 0;
}
.investP3 .list li .name {
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #e50012;
  font-weight: bold;
}
.investP3 .list li .name em {
  display: inline-block;
  position: relative;
  padding-bottom: 0.2rem;
}
.investP3 .list li .name em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #333;
}
.investP3 .list li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.investP3 .list li .lie {
  margin-top: 0.3rem;
  padding-bottom: 1px;
}
.investP3 .list li .lie dl {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP3 .list li .lie dd {
  width: calc(25% - 0.16rem);
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.2rem;
  min-height: 2.8rem;
}
.investP3 .list li .lie dd .wen {
  height: 0.45rem;
  border-radius: 0.06rem;
  padding-left: 0.12rem;
  font-size: var(--fs22);
  color: #fff;
  font-weight: bold;
  line-height: 0.45rem;
  background-image: linear-gradient(90deg, #dc0313 0%, #fffcfc 100%);
  background-blend-mode: normal, normal;
}
.investP3 .list li .lie dd .zi {
  margin-top: 5px;
  padding: 0 0.12rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.investP3 .mxfDiv {
  position: relative;
  margin-top: 0.9rem;
  border-radius: 0.24rem;
  padding: 0.75rem 0.65rem 0.65rem;
  overflow: hidden;
  background-image: linear-gradient(left top, #de635f, #cc0101);
  background-image: linear-gradient(to right bottom, #de635f, #cc0101);
}
.investP3 .mxfDiv .title {
  position: relative;
  z-index: 1;
  text-align: center;
}
.investP3 .mxfDiv .title .en {
  font-size: var(--fs30);
  line-height: 0.26rem;
  font-family: 'Din-B';
  text-transform: uppercase;
  background-image: linear-gradient(top, #f9e2e1, #d22322);
  background-image: linear-gradient(to bottom, #f9e2e1, #d22322);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investP3 .mxfDiv .title .cn {
  color: #fff;
  font-size: var(--fs36);
  line-height: 0.38rem;
  font-weight: 100;
}
.investP3 .mxfDiv .bigImg {
  margin-top: 0.6rem;
}
.investP3 .mxfDiv .bigImg img {
  width: 100%;
}
.investP4 {
  padding: 0.9rem 0;
  background: #f8f8f8;
}
.investP4 .lunbo {
  margin-top: 0.9rem;
  position: relative;
  overflow: hidden;
}
.investP4 .imgList {
  width: 31.6rem;
  position: relative;
  left: 50%;
  margin-left: -15.8rem;
}
.investP4 .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 13.42rem;
  margin: 0 0.43rem;
}
.investP4 .swiper-slide .img {
  width: 100%;
  height: 7.52rem;
  position: relative;
  margin: 0 auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.investP4 .swiper-slide .img::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;
  background: url(/html/vancheer/cn/img/bg1.png) repeat-x;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.investP4 .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investP4 .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  background: #fff;
  margin-top: -0.25rem;
  border: #e50012 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.investP4 .se:hover {
  background: #e50012;
}
.investP4 .prev {
  left: 50%;
  margin-left: -7.38rem;
}
.investP4 .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(/html/vancheer/cn/img/nimg12_left.png) no-repeat;
}
.investP4 .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg12_lefton.png) no-repeat;
}
.investP4 .next {
  right: 50%;
  margin-right: -7.38rem;
}
.investP4 .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(/html/vancheer/cn/img/nimg12_right.png) no-repeat;
}
.investP4 .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg12_righton.png) no-repeat;
}
.investP5 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.investP5 .baozhe {
  padding: 0.9rem 0 0.8rem;
  border-radius: 0.2rem;
  background: #fff;
  overflow: hidden;
}
.investP5 .investTitle {
  margin-bottom: 0.7rem;
}
.investP5 .msg {
  padding: 0.2rem 0 0.6rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: center;
}
.investP5 .flagImg {
  background: #f5f5f5;
  border-radius: 0.24rem;
  overflow: hidden;
  padding: 0.48rem 0.4rem;
  margin-bottom: 1rem;
}
.investP5 .flagImg img {
  width: 100%;
}
.investP5 .bigImg {
  border-radius: 0.24rem;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.investP5 .bigImg img {
  width: 100%;
}
.investP5 .imgList::after {
  content: '';
  display: block;
  clear: both;
}
.investP5 .imgList ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.investP5 .imgList li {
  width: calc((100% - 0.48rem) / 4);
  margin-right: 0.16rem;
  padding-bottom: 0.35rem;
}
.investP5 .imgList li:nth-child(4n) {
  margin-right: 0;
}
.investP5 .imgList li .imgDiv {
  border-radius: 0.1rem;
  overflow: hidden;
  height: 2.48rem;
}
.investP5 .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.investP5 .imgList li .name {
  margin-top: 0.1rem;
  line-height: 0.36rem;
  text-align: center;
  color: #333;
  font-size: var(--fs18);
}
.investP5 .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.investP6 {
  padding: 0.7rem 0;
  background: #f8f8f8;
}
.investP6 .list {
  margin-top: 0.5rem;
}
.investP6 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP6 .list li {
  width: calc(50% - 0.18rem);
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  min-height: 2.88rem;
  padding: 0.3rem 0.25rem 0.6rem;
  margin-bottom: 0.2rem;
}
.investP6 .list li .name {
  position: relative;
  font-size: var(--fs30);
  line-height: 0.32rem;
  padding-left: 0.52rem;
  font-weight: bold;
  background-image: linear-gradient(top, #353535, #8a8a8a);
  background-image: linear-gradient(to bottom, #353535, #8a8a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investP6 .list li .name::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 50%;
  margin-top: -0.13rem;
  width: 0.05rem;
  height: 0.26rem;
  background: #e50012;
}
.investP6 .list li .content {
  margin-top: 0.25rem;
  padding: 0 0.6rem 0 0.52rem;
  font-size: var(--fs16);
  line-height: 0.26rem;
  min-height: 1.04rem;
  text-align: justify;
  color: #333;
}
.live-action {
  margin-top: 0.15rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}
.live-action .imgDiv {
  height: 3.76rem;
}
.live-action .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-action .swiper-pagination {
  width: auto;
  right: 0.38rem;
  left: auto;
  bottom: 0.2rem !important;
}
.live-action .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin-left: 8px!important;
  margin-right: 8px!important;
}
.live-action .swiper-pagination-bullet-active {
  background: #fff;
}
.investP7 {
  padding: 0 0.32rem;
  background: #f8f8f8;
}
.investP7 .baozhe {
  padding: 1.2rem 0 0.95rem;
  border-radius: 0.2rem;
  background: #fff url(../img/investP7.jpg) center bottom no-repeat;
  background-size: 100%;
  overflow: hidden;
}
.investP7 .investTitle {
  margin-bottom: 0.35rem;
}
.investP7 .content {
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.32rem;
  width: 7.1rem;
  margin: 0 auto;
}
.investP7 .list {
  padding-top: 0.5rem;
}
.investP7 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP7 .list li {
  width: calc(25% - 0.18rem);
  border-radius: 0.2rem;
  min-height: 4.64rem;
  padding: 0.6rem 0.36rem 0.3rem;
  margin-bottom: 0.16rem;
  background: rgba(255, 255, 255, 0.9);
}
.investP7 .list li .name {
  font-size: var(--fs24);
  line-height: 0.3rem;
  text-align: center;
  font-weight: bold;
}
.investP7 .list li .name b {
  background-image: linear-gradient(top, #e50012, #ba0001);
  background-image: linear-gradient(to bottom, #e50012, #ba0001);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investP7 .list li .msg {
  margin-top: 0.22rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  text-align: center;
}
.investP7 .botbot {
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.7rem 0.4rem 0.3rem;
}
.investP7 .botbot .name {
  font-size: var(--fs24);
  line-height: 0.3rem;
  text-align: center;
  font-weight: bold;
}
.investP7 .botbot .name b {
  background-image: linear-gradient(top, #e50012, #ba0001);
  background-image: linear-gradient(to bottom, #e50012, #ba0001);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.investP7 .botbot .lie {
  margin-top: 0.4rem;
}
.investP7 .botbot .lie ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.investP7 .botbot .lie li:nth-child(2) {
  width: 4.32rem;
}
.investP7 .botbot .lie dd .zi {
  position: relative;
  padding-left: 0.24rem;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.investP7 .botbot .lie dd .zi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.07rem;
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  border: #e50012 solid 3px;
  box-sizing: border-box;
}
.investP7 .botbot .lie dd .wen {
  font-size: var(--fs16);
  line-height: 0.24rem;
  padding-left: 0.24rem;
  padding-bottom: 0.35rem;
}
.investP8 {
  padding: 1.2rem 0.32rem 0.4rem;
  background: #f8f8f8;
}
.investP8 .part1 {
  padding-top: 0.6rem;
}
.investP8 .part1 .title {
  padding-top: 0.6rem;
  text-align: center;
  font-size: var(--fs24);
  line-height: 0.3rem;
  color: #000;
  font-weight: bold;
}
.investP8 .part1 .zi {
  padding: 0.15rem 0 0.7rem;
  text-align: center;
  font-size: var(--fs16);
}
.investP8 .part1 .mxfDiv {
  overflow: hidden;
  border-radius: 0.24rem;
  padding: 1.1rem 0 1.8rem;
  background: url(/html/vancheer/cn/img/investP8.jpg) center no-repeat;
  background-size: cover;
}
.investP8 .part1 .mxfDiv .cn {
  font-size: var(--fs30);
  line-height: 0.3rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.investP8 .part1 .mxfDiv .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP8 .part1 .mxfDiv .list li {
  width: calc(33.33% - 0.12rem);
  border-radius: 0.2rem;
  min-height: 3.76rem;
  padding: 0.2rem;
  border: rgba(255, 255, 255, 0.5) solid 1px;
  background: rgba(0, 0, 0, 0.5);
}
.investP8 .part1 .mxfDiv .list li .name {
  background: #e50012;
  font-size: var(--fs30);
  line-height: 0.62rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border-radius: 0.1rem;
}
.investP8 .part1 .mxfDiv .list li .hala {
  margin-top: 0.2rem;
  text-align: center;
  color: #e50012;
  font-size: var(--fs30);
  line-height: 0.42rem;
  font-weight: bold;
}
.investP8 .part1 .mxfDiv .list li .hala em {
  display: block;
  font-size: var(--fs18);
  font-weight: normal;
}
.investP8 .part1 .mxfDiv .list li .msg {
  margin-top: 0.05rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  text-align: center;
  color: #fff;
}
.investP8 .part2 {
  padding-top: 1.2rem;
}
.investP8 .part2 .investTxt {
  margin-bottom: 0.9rem;
}
.investP8 .part2 .baozhe {
  border-radius: 0.2rem;
  background: #fff;
  padding: 0.4rem 0 1.4rem;
}
.investP8 .part2 .title {
  width: 1.64rem;
  height: 0.56rem;
  color: #fff;
  margin: 0 auto;
  border-radius: 0.12rem;
  background: #cc0000;
  font-size: var(--fs24);
  text-align: center;
  line-height: 0.56rem;
  font-weight: bold;
}
.investP8 .part2 .content {
  width: 12.3rem;
  margin: 0.2rem auto 0.4rem;
  line-height: 0.32rem;
  text-align: center;
  font-size: var(--fs16);
}
.investP8 .part2 .list {
  padding-bottom: 1.2rem;
}
.investP8 .part2 .list ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.investP8 .part2 .list li {
  width: calc(50% - 0.16rem);
  border-radius: 0.16rem;
  min-height: 3.1rem;
  margin-bottom: 0.1rem;
  padding: 0.38rem 0.9rem 0.4rem;
  border: #dc0313 solid 1px;
  background: #fff;
  box-shadow: 0 0 0.46rem rgba(0, 0, 0, 0.08);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.investP8 .part2 .list li .name {
  font-size: var(--fs26);
  line-height: 0.42rem;
  font-weight: bold;
  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;
}
.investP8 .part2 .list li .msg {
  margin-top: 0.15rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  text-align: justify;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.investP8 .part2 .list li:hover {
  background: #dc0313;
}
.investP8 .part2 .list li:hover .name,
.investP8 .part2 .list li:hover .msg {
  color: #fff;
}
.investP8 .part2 .list2 {
  padding-top: 0.7rem;
}
.investP8 .part2 .pjDiv {
  margin-top: 0.9rem;
  position: relative;
}
.investP8 .part2 .pjDiv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 10%;
  height: 100%;
  background: #fff;
  z-index: 1;
}
.investP8 .part2 .pjDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 16%;
  width: 100%;
  height: 50%;
  border: #e2e2e2 solid 2px;
  border-radius: 0.48rem;
}
.investP8 .part2 .pjDiv li {
  position: relative;
  float: left;
  width: 20%;
  margin: 0.2rem 0;
  z-index: 2;
}
.investP8 .part2 .pjDiv li .round {
  position: relative;
  width: 1.4rem;
  height: 1.35rem;
  padding-right: 0.05rem;
  margin: 0 auto;
  background: url(/html/vancheer/cn/img/nimg19Bg.png) right center no-repeat;
  background-size: 0.19rem;
}
.investP8 .part2 .pjDiv li .num {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: #fff;
  font-size: var(--fs48);
  font-family: "Mont-R";
  border-radius: 50%;
  background: #fcebec;
}
.investP8 .part2 .pjDiv li .num::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.14rem;
  height: 1.14rem;
  border-radius: 50%;
  margin-left: -0.57rem;
  margin-top: -0.57rem;
  background-image: linear-gradient(180deg, #e70c1d 0%, #b70000 100%);
  background-blend-mode: normal, normal;
}
.investP8 .part2 .pjDiv li .num em {
  position: relative;
  z-index: 1;
}
.investP8 .part2 .pjDiv li .name {
  margin-top: 0.2rem;
  text-align: center;
  font-weight: bold;
  font-size: var(--fs24);
  line-height: 0.36rem;
  height: 0.72rem;
  color: #333;
}
.investP8 .part2 .pjDiv li:nth-child(6),
.investP8 .part2 .pjDiv li:nth-child(7),
.investP8 .part2 .pjDiv li:nth-child(8),
.investP8 .part2 .pjDiv li:nth-child(9),
.investP8 .part2 .pjDiv li:nth-child(10) {
  float: right;
}
.investP8 .part3 {
  margin-top: 0.4rem;
  padding: 1.75rem 0 1.5rem;
  background: url(/html/vancheer/cn/img/nimg1856Bg.jpg) center no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  color: #fff;
  text-align: center;
}
.investP8 .part3 .title {
  font-size: var(--fs72);
  line-height: 0.96rem;
  font-weight: bold;
}
.investP8 .part3 .msg {
  padding: 0.3rem 0 0.6rem;
  line-height: 0.48rem;
  font-size: var(--fs24);
}
.investP8 .part3 .list li {
  font-size: var(--fs30);
  line-height: 0.48rem;
  font-family: 'Poppins-L';
  padding-bottom: 0.25rem;
}
.investP8 .part3 .list li:last-child {
  padding-bottom: 0;
}
.investP8 .part3 .list li .tel {
  font-size: var(--fs72);
  line-height: 0.86rem;
  font-family: 'Din-B';
}
@media (max-width: 1004px) {
  .investTitle .num {
    font-size: var(--fs48);
  }
  .investTitle .cn {
    font-size: var(--fs26);
    line-height: 0.76rem;
  }
  .investTitle .cn img {
    width: 0.36rem;
    position: relative;
    top: 2px;
  }
  .investTitle .en {
    margin-top: 0;
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .investTxt {
    font-size: var(--fs19);
    line-height: 0.64rem;
  }
  .investTxt::after {
    margin-left: -0.24rem;
    width: 0.48rem;
  }
  .investP1 {
    padding: 0.8rem 0 0.95rem;
  }
  .investP1 .toptop {
    border-radius: 0.28rem;
    margin-top: 0.45rem;
    padding: 0.8rem 0;
  }
  .investP1 .toptop .content {
    width: auto;
    margin: 0.45rem auto 0;
    padding: 0 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP1 .numList {
    padding: 0.4rem 0 0.75rem;
  }
  .investP1 .numList li {
    width: calc(50% - 0.1rem);
    border-radius: 0.24rem;
    padding: 0.4rem 0.3rem;
    font-size: var(--fs14);
    margin-bottom: 0.2rem;
  }
  .investP1 .numList li:last-child {
    width: 100%;
  }
  .investP1 .numList li .ico {
    height: 0.9rem;
  }
  .investP1 .numList li .ico img {
    width: 0.75rem;
  }
  .investP1 .numList li .pj {
    height: 0.75rem;
  }
  .investP1 .numList li .num p {
    height: 0.64rem;
  }
  .investP1 .numList li .num span {
    top: 0;
    font-size: var(--fs20);
  }
  .investP1 .numList li .numUp {
    font-size: 0.72rem;
  }
  .investP1 .numList li .wen {
    line-height: 0.48rem;
  }
  .investP1 .list {
    padding-top: 0.65rem;
  }
  .investP1 .list ul {
    display: block;
  }
  .investP1 .list li {
    width: 100%;
    min-height: 1rem;
    padding: 0.25rem 0.3rem 0.56rem 0.2rem;
    border-radius: 0.24rem;
    margin-bottom: 0.3rem;
  }
  .investP1 .list li:last-child {
    margin-bottom: 0;
  }
  .investP1 .list li .name {
    width: 2.2rem;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: var(--fs17);
  }
  .investP1 .list li .msg {
    padding: 0.2rem 0 0 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP2 .toptop .investTxt {
    margin: 0.5rem 0 0.65rem;
  }
  .investP2 .midmid {
    padding-top: 0.8rem;
  }
  .investP2 .midmid .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    padding: 0.45rem 0.3rem 0.5rem;
  }
  .investP2 .botbot {
    padding: 0.8rem 0 0.9rem;
  }
  .investP2 .botbot .list {
    padding-top: 0.65rem;
  }
  .investP2 .botbot .list li {
    display: block;
    margin-bottom: 0.3rem;
  }
  .investP2 .botbot .list li:last-child {
    margin-bottom: 0;
  }
  .investP2 .botbot .list li .imgDiv {
    width: auto;
  }
  .investP2 .botbot .list li .conDiv {
    width: auto;
    padding: 0.6rem 0.3rem 0.5rem 0.4rem;
  }
  .investP2 .botbot .list li .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .investP2 .botbot .list li .msg {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP2 .botbot .title {
    padding: 0.45rem 0 0.4rem 0.25rem;
    font-size: var(--fs15);
  }
  .basicPic .imgList {
    overflow: hidden;
  }
  .basicPic .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .basicPic .imgList li .box {
    border-radius: 0.16rem;
  }
  .basicPic .imgList li .txtLayer .name {
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .basicPic .imgList li .txtLayer .address {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .basicPic .imgList li .txtLayer .msg {
    margin-top: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .basicPic .imgList li .zi {
    margin-top: 0.25rem;
    line-height: 0.52rem;
    font-size: var(--fs15);
  }
  .labPic .lie li {
    width: 100%;
    margin-right: 0;
  }
  .labPic .lie li .box {
    padding: 0.4rem 1rem 0;
    height: 4.5rem;
    border-radius: 0.24rem;
  }
  .labPic .lie li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .labPic .lie li .content {
    margin-top: 0.12rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.88rem;
  }
  .labPic .se {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }
  .investP3 {
    padding: 0 var(--offset);
  }
  .investP3 .baozhe {
    padding: 0.8rem 0;
    border-radius: 0.28rem;
  }
  .investP3 .list {
    padding: 0.7rem 0;
  }
  .investP3 .list ul {
    display: block;
  }
  .investP3 .list li {
    width: 100%;
    border-radius: 0.2rem;
    min-height: 2rem;
    padding: 0.4rem 0.3rem;
    margin-bottom: 0.3rem;
    margin-right: 0;
  }
  .investP3 .list li .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .investP3 .list li .name em {
    padding-bottom: 0.2rem;
  }
  .investP3 .list li .msg {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .investP3 .list li .lie {
    margin-top: 0.4rem;
  }
  .investP3 .list li .lie dl {
    display: block;
  }
  .investP3 .list li .lie dd {
    width: 100%;
    border-radius: 0.16rem;
    padding: 0.3rem;
    min-height: 1rem;
    margin-bottom: 0.25rem;
  }
  .investP3 .list li .lie dd:last-child {
    margin-bottom: 0;
  }
  .investP3 .list li .lie dd .wen {
    height: 0.7rem;
    border-radius: 0.1rem;
    padding-left: 0.2rem;
    font-size: var(--fs15);
    line-height: 0.7rem;
  }
  .investP3 .list li .lie dd .zi {
    margin-top: 0.1rem;
    padding: 0 0.2rem;
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .investP3 .mxfDiv {
    margin-top: 0.75rem;
    padding: 0.65rem 0.2rem 0.5rem;
  }
  .investP3 .mxfDiv .title .en {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .investP3 .mxfDiv .title .cn {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .investP4 {
    padding: 0.8rem 0;
  }
  .investP4 .lunbo {
    margin-top: 0.7rem;
  }
  .investP4 .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .investP4 .swiper-slide {
    width: 100%;
    margin: 0;
  }
  .investP4 .swiper-slide .img {
    height: auto;
    border-radius: 0.2rem;
  }
  .investP4 .swiper-slide .img img {
    height: auto;
  }
  .investP4 .se {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }
  .investP4 .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .investP4 .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .investP5 {
    padding: 0 var(--offset);
  }
  .investP5 .baozhe {
    padding: 0.7rem 0 0.6rem;
    border-radius: 0.28rem;
  }
  .investP5 .investTitle {
    margin-bottom: 0.5rem;
  }
  .investP5 .msg {
    padding: 0.4rem 0 0.5rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP5 .flagImg {
    border-radius: 0.2rem;
    padding: 0.3rem;
    margin-bottom: 0.75rem;
  }
  .investP5 .bigImg {
    border-radius: 0.2rem;
    margin-bottom: 0.65rem;
  }
  .investP5 .imgList li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    padding-bottom: 0.3rem;
  }
  .investP5 .imgList li:nth-child(2n) {
    margin-right: 0;
  }
  .investP5 .imgList li .imgDiv {
    border-radius: 0.16rem;
    height: auto;
  }
  .investP5 .imgList li .imgDiv img {
    height: auto;
  }
  .investP5 .imgList li .name {
    margin-top: 0.15rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .investP6 {
    padding: 0.8rem 0;
  }
  .investP6 .list {
    margin-top: 0.65rem;
  }
  .investP6 .list li {
    width: 100%;
    border-radius: 0.24rem;
    min-height: 2.88rem;
    padding: 0.4rem 0.3rem 0.5rem;
    margin-bottom: 0.2rem;
  }
  .investP6 .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
    padding-left: 0.25rem;
  }
  .investP6 .list li .name::before {
    left: 0;
    margin-top: -0.18rem;
    width: 2px;
    height: 0.36rem;
  }
  .investP6 .list li .content {
    margin-top: 0.35rem;
    padding: 0 0.6rem 0 0.25rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    min-height: 0.96rem;
  }
  .live-action {
    margin-top: 0.25rem;
    border-radius: 0.24rem;
  }
  .live-action .imgDiv {
    height: auto;
  }
  .live-action .imgDiv img {
    height: auto;
  }
  .live-action .swiper-pagination {
    right: 0.3rem;
  }
  .live-action .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .investP7 {
    padding: 0 var(--offset);
  }
  .investP7 .baozhe {
    padding: 0.8rem 0 0.75rem;
    border-radius: 0.28rem;
  }
  .investP7 .investTitle {
    margin-bottom: 0.45rem;
  }
  .investP7 .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
  }
  .investP7 .list {
    padding-top: 0.5rem;
  }
  .investP7 .list li {
    width: auto;
    border-radius: 0.24rem;
    min-height: 2rem;
    padding: 0.5rem 0.3rem;
    margin-bottom: 0.2rem;
    background: #f5f5f5;
  }
  .investP7 .list li .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .investP7 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP7 .botbot {
    border-radius: 0.24rem;
    background: #f5f5f5;
    padding: 0.5rem 0.3rem;
  }
  .investP7 .botbot .name {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .investP7 .botbot .lie {
    margin-top: 0.6rem;
  }
  .investP7 .botbot .lie ul {
    display: block;
  }
  .investP7 .botbot .lie li:nth-child(2) {
    width: auto;
  }
  .investP7 .botbot .lie dd .zi {
    padding-left: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP7 .botbot .lie dd .zi::before {
    margin-top: 0;
    top: 0.16rem;
    width: 8px;
    height: 8px;
    border: #e50012 solid 1px;
  }
  .investP7 .botbot .lie dd .wen {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-left: 0.3rem;
  }
  .investP8 {
    padding: 0.8rem var(--offset) 0.4rem;
  }
  .investP8 .part1 {
    padding-top: 0.5rem;
  }
  .investP8 .part1 .title {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .investP8 .part1 .zi {
    padding: 0.2rem 0 0.7rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP8 .part1 .mxfDiv {
    padding: 0.8rem 0 1rem;
  }
  .investP8 .part1 .mxfDiv .cn {
    font-size: var(--fs18);
    line-height: 0.52rem;
    margin-bottom: 0.65rem;
  }
  .investP8 .part1 .mxfDiv .list li {
    width: 100%;
    border-radius: 0.24rem;
    min-height: 2rem;
    margin-bottom: 0.3rem;
  }
  .investP8 .part1 .mxfDiv .list li:last-child {
    margin-bottom: 0;
  }
  .investP8 .part1 .mxfDiv .list li .name {
    font-size: var(--fs18);
    line-height: 0.78rem;
  }
  .investP8 .part1 .mxfDiv .list li .hala {
    margin-top: 0.2rem;
    font-size: var(--fs18);
    line-height: 0.56rem;
  }
  .investP8 .part1 .mxfDiv .list li .hala em {
    font-size: var(--fs14);
  }
  .investP8 .part1 .mxfDiv .list li .msg {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP8 .part2 {
    padding-top: 0.8rem;
  }
  .investP8 .part2 .investTxt {
    margin-bottom: 0.7rem;
  }
  .investP8 .part2 .baozhe {
    border-radius: 0.28rem;
    padding: 0.6rem 0 0.8rem;
  }
  .investP8 .part2 .title {
    width: 2.16rem;
    height: 0.76rem;
    border-radius: 0.16rem;
    font-size: var(--fs16);
    line-height: 0.76rem;
  }
  .investP8 .part2 .content {
    width: auto;
    margin: 0.3rem auto 0.4rem;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .investP8 .part2 .list {
    padding-bottom: 0.8rem;
  }
  .investP8 .part2 .list li {
    width: 100%;
    border-radius: 0.2rem;
    min-height: 2rem;
    margin-bottom: 0.2rem;
    padding: 0.45rem 0.3rem;
  }
  .investP8 .part2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .investP8 .part2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .investP8 .part2 .pjDiv {
    margin-top: 0.65rem;
    position: relative;
  }
  .investP8 .part2 .pjDiv::before {
    display: none;
  }
  .investP8 .part2 .pjDiv::after {
    display: none;
  }
  .investP8 .part2 .pjDiv ul {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .investP8 .part2 .pjDiv li {
    width: 50%;
    margin: 0 0 0.3rem;
  }
  .investP8 .part2 .pjDiv li .num {
    font-size: var(--fs24);
  }
  .investP8 .part2 .pjDiv li .name {
    font-size: var(--fs15);
    line-height: 0.48rem;
    height: auto;
  }
  .investP8 .part2 .pjDiv li:nth-child(6),
  .investP8 .part2 .pjDiv li:nth-child(7),
  .investP8 .part2 .pjDiv li:nth-child(8),
  .investP8 .part2 .pjDiv li:nth-child(9),
  .investP8 .part2 .pjDiv li:nth-child(10) {
    float: left;
  }
  .investP8 .part3 {
    padding: 1rem 0 0.9rem;
    border-radius: 0.24rem;
  }
  .investP8 .part3 .title {
    font-size: var(--fs20);
    line-height: 0.76rem;
  }
  .investP8 .part3 .msg {
    line-height: 0.52rem;
    font-size: var(--fs15);
  }
  .investP8 .part3 .list li {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .investP8 .part3 .list li .tel {
    font-size: var(--fs24);
    line-height: 0.76rem;
  }
}
.solution {
  background: #f5f5f5;
  padding-top: 0.9rem;
}
.solution .zi {
  font-size: var(--fs56);
  line-height: 0.72rem;
  text-align: center;
  color: #333;
  font-weight: bold;
  padding: 0.5rem 0 0.2rem;
}
.solution .msg {
  color: #333;
  font-size: var(--fs24);
  line-height: 0.42rem;
  text-align: center;
}
.solution .list {
  padding-top: 0.9rem;
}
.solution .list::after {
  content: '';
  display: block;
  clear: both;
}
.solution .list ul {
  margin-right: -0.36rem;
}
.solution .list li {
  float: left;
  width: 50%;
  padding-bottom: 0.4rem;
}
.solution .list li .box {
  margin-right: 0.36rem;
}
.solution .list li a {
  display: block;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.solution .list li a .imgDiv {
  height: 4rem;
}
.solution .list li a .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution .list li a .beforeDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 0.5rem 0.5rem 0.3rem;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solution .list li a .beforeDiv .ico img {
  width: 1.07rem;
}
.solution .list li a .beforeDiv .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
  font-weight: bold;
}
.solution .list li a .beforeDiv .more {
  margin: 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: rgba(255, 255, 255, 0.8) solid 1px;
  background: url(/html/vancheer/cn/img/ico2.png) center no-repeat;
}
.solution .list li a .afterDiv {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0.6rem 0.6rem 0.3rem 1.45rem;
  background: rgba(0, 0, 0, 0.6);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solution .list li a .afterDiv .ico {
  position: absolute;
  left: 0.2rem;
  top: 0.5rem;
}
.solution .list li a .afterDiv .ico img {
  width: 1.07rem;
}
.solution .list li a .afterDiv .name {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #fff;
  font-weight: bold;
}
.solution .list li a .afterDiv .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 0.16rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #fff;
  max-height: 0.72rem;
  overflow: hidden;
}
.solution .list li a .afterDiv .label {
  margin-top: 0.22rem;
}
.solution .list li a .afterDiv .label::after {
  content: '';
  display: block;
  clear: both;
}
.solution .list li a .afterDiv .label dd {
  float: left;
  margin-right: 0.1rem;
  padding: 0 0.12rem;
  line-height: 0.4rem;
  background: #fff;
  border-radius: 0.1rem;
  font-size: var(--fs15);
  margin-bottom: 0.1rem;
  font-weight: 400;
  color: #666;
}
.solution .list li a .afterDiv .more {
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: #e50012 solid 1px;
  background: #e50012 url(/html/vancheer/cn/img/ico2.png) center no-repeat;
}
.solution .list li a:hover .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.solution .list li a:hover .afterDiv {
  opacity: 1;
  visibility: visible;
}
.goodcase {
  padding: 1.9rem 0 1.2rem;
}
.goodcase .casePic {
  margin-top: 0.7rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.goodcase .imgList {
  width: 24.8rem;
  position: relative;
  left: 50%;
  margin-left: -12.4rem;
}
.goodcase .swiper-slide {
  position: relative;
}
.goodcase .swiper-slide a {
  display: block;
  width: 7.68rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.24rem;
}
.goodcase .swiper-slide .img {
  width: 100%;
  height: 5.46rem;
}
.goodcase .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goodcase .swiper-slide .bg {
  position: absolute;
  left: -5.2rem;
  bottom: -4.1rem;
  width: 5.2rem;
  height: 4.1rem;
  background: url(/html/vancheer/cn/img/nimg520Bg.png) no-repeat;
  background-size: 5.2rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodcase .swiper-slide .beforeDiv {
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  z-index: 1;
  width: 100%;
  padding: 0 0.35rem;
  font-size: var(--fs20);
  line-height: 0.36rem;
  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;
}
.goodcase .swiper-slide .afterDiv {
  position: absolute;
  left: 0;
  bottom: -4.1rem;
  z-index: 1;
  width: 100%;
  padding: 0 0.4rem;
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
}
.goodcase .swiper-slide .afterDiv .name {
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #fff;
  width: 3.3rem;
}
.goodcase .swiper-slide .afterDiv .zi {
  font-size: var(--fs16);
  color: #fff;
  line-height: 0.32rem;
  margin: 0.2rem 0 0.35rem;
  width: 3.3rem;
  max-height: 0.96rem;
  overflow: hidden;
}
.goodcase .swiper-slide .afterDiv .more {
  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-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs16);
  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;
}
.goodcase .swiper-slide .afterDiv .more em {
  margin-left: 0.2rem;
  width: 16px;
  height: 13px;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 16px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.goodcase .swiper-slide .afterDiv .more:hover {
  background: #fff;
  border: #fff solid 1px;
  color: #333;
}
.goodcase .swiper-slide .afterDiv .more:hover em {
  background: url(/html/vancheer/cn/img/ico4.png) no-repeat;
  background-size: 16px;
}
.goodcase .swiper-slide-active .bg {
  left: 0;
  bottom: 0;
}
.goodcase .swiper-slide-active .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.goodcase .swiper-slide-active .afterDiv {
  bottom: 0.6rem;
}
.goodcase .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.goodcase .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.goodcase .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 2px;
  background-color: #d1d1d1;
}
.goodcase .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.goodcase .num1,
.goodcase .num2 {
  font-family: 'Poppins-L';
  font-size: var(--fs14);
  color: #333;
  width: 24px;
  text-align: center;
}
.goodcase .num1 {
  padding-right: 0.08rem;
  color: #e50012;
}
.goodcase .num2 {
  padding-left: 0.08rem;
}
.goodcase .arrowDiv {
  margin-right: 0.3rem;
}
.goodcase .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.2rem;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border: #c3c4c5 solid 1px;
  border-radius: 50%;
}
.goodcase .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.goodcase .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.goodcase .arrowDiv .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.goodcase .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.goodcase .arrowDiv .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.goodcase-2 {
  padding: 1.3rem 0 1.7rem;
}
@media (max-width: 1600px) {
  .goodcase .pjDiv {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .solution {
    padding-top: 0.8rem;
  }
  .solution .zi {
    font-size: var(--fs24);
    padding: 0.5rem 0 0.3rem;
  }
  .solution .msg {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .solution .list {
    padding-top: 0.75rem;
  }
  .solution .list ul {
    margin-right: 0;
  }
  .solution .list li {
    float: none;
    width: auto;
    padding-bottom: 0.3rem;
  }
  .solution .list li .box {
    margin-right: 0;
  }
  .solution .list li a {
    border-radius: 0.12rem;
  }
  .solution .list li a .beforeDiv {
    padding: 0.4rem 0.3rem 0.3rem;
  }
  .solution .list li a .beforeDiv .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .solution .list li a .beforeDiv .more {
    width: 0.76rem;
    height: 0.76rem;
  }
  .solution .list li a .afterDiv {
    padding: 0.5rem 0.3rem 0.3rem 1.45rem;
  }
  .solution .list li a .afterDiv .ico {
    top: 0.5rem;
  }
  .solution .list li a .afterDiv .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .solution .list li a .afterDiv .content {
    margin-top: 0.2rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
    max-height: 1.44rem;
  }
  .solution .list li a .afterDiv .label {
    display: none;
  }
  .solution .list li a .afterDiv .more {
    width: 0.76rem;
    height: 0.76rem;
  }
  .goodcase {
    padding: 1rem var(--offset) 0.9rem;
  }
  .goodcase .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .goodcase .swiper-slide a {
    width: 100%;
  }
  .goodcase .swiper-slide .img {
    height: 4.2rem;
  }
  .goodcase .swiper-slide .bg {
    left: -4.2rem;
    bottom: -3.3rem;
    width: 4.2rem;
    height: 3.3rem;
    background-size: 4.2rem;
  }
  .goodcase .swiper-slide .beforeDiv {
    padding: 0 0.3rem;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .goodcase .swiper-slide .afterDiv {
    bottom: -3.5rem;
    padding: 0 0.3rem;
  }
  .goodcase .swiper-slide .afterDiv .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    width: 3rem;
  }
  .goodcase .swiper-slide .afterDiv .zi {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs14);
    line-height: 0.42rem;
    margin: 0.2rem 0 0;
    width: 3rem;
    height: 0.42rem;
  }
  .goodcase .swiper-slide .afterDiv .more {
    display: none;
  }
  .goodcase .swiper-slide-active .bg {
    left: 0;
    bottom: 0;
  }
  .goodcase .swiper-slide-active .afterDiv {
    bottom: 0.3rem;
  }
  .goodcase .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .goodcase .swiper-pagination {
    width: 2.2rem;
  }
  .goodcase .num1,
  .goodcase .num2 {
    width: 0.48rem;
  }
  .goodcase .num1 {
    padding-right: 0.1rem;
  }
  .goodcase .num2 {
    padding-left: 0.1rem;
  }
  .goodcase .arrowDiv {
    margin-right: 0.2rem;
  }
  .goodcase .arrowDiv .se {
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}
.soluShowBan {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.soluShowBan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 128px;
  background: url(/html/vancheer/cn/img/bg1.png) bottom repeat-x;
  z-index: 1;
}
.soluShowBan .bg img {
  width: 100%;
  transform: scale(1.1) translateZ(0);
  -o-transform: scale(1.1) translateZ(0);
  -moz-transform: scale(1.1) translateZ(0);
  -webkit-transform: scale(1.1) translateZ(0);
  transition: all,4s ease;
}
.soluShowBan .bg video {
  width: 100%;
  display: block;
}
.soluShowBan .baozhe {
  position: relative;
}
.soluShowBan .txtLayer {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 0;
  height: 100%;
  z-index: 2;
}
.soluShowBan .txtLayer .name {
  margin: 0 0 0.15rem;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #fff;
  font-weight: bold;
}
.soluShowBan .txtLayer .wen {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #fff;
  width: 5.5rem;
}
.soluShowBan .btnGroup {
  margin-top: 0.45rem;
}
.soluShowBan .btnGroup li {
  float: left;
  margin-right: 0.1rem;
}
.soluShowBan .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #fff;
  padding: 0 0.2rem;
  border: #fff solid 1px;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  min-width: 1.54rem;
  height: 0.5rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.soluShowBan .btnGroup li a em {
  margin-left: 0.15rem;
  display: block;
  width: 16px;
  height: 12px;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 16px;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.soluShowBan .btnGroup li a:hover {
  border: transparent solid 1px;
  background-image: linear-gradient(90deg, #e60012 0%, #b40914 100%);
  background-blend-mode: normal, normal;
  color: #fff;
}
.soluShowBan.animated .bg img {
  transform: scale(1) translateZ(0);
  -o-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
}
.solutionP1 {
  padding: 0.55rem 0.32rem;
}
.solutionP1 .wrap {
  width: 90%;
}
.solutionP1 .baozhe {
  border-radius: 0.2rem;
  overflow: hidden;
  padding-top: 0.7rem;
  height: 8.46rem;
  background: center no-repeat;
  background-size: cover;
}
.solutionP1 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
.solutionP1 .zi {
  font-size: var(--fs16);
  text-align: center;
  margin-bottom: 1rem;
}
.solutionP1 .zi em {
  padding: 0 0.1rem;
}
.solutionP1 .list {
  width: 100%;
  position: relative;
  min-height: 4.8rem;
}
.solutionP1 .list li {
  position: absolute;
  padding-left: 58px;
  max-width: 5.1rem;
}
.solutionP1 .list li .headIco {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -23px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}
.solutionP1 .list li .headIco img {
  width: 100%;
}
.solutionP1 .list li .conDiv {
  padding: 0.15rem 0.3rem;
  background: #f5f5f5;
  border-radius: 0.12rem;
  border: #dcdcdc solid 1px;
}
.solutionP1 .list li .name {
  font-size: var(--fs20);
  line-height: 0.24rem;
  color: #e50012;
  font-weight: bold;
}
.solutionP1 .list li .msg {
  font-size: var(--fs16);
  line-height: 0.2rem;
}
.solutionP1 .list li:nth-child(1) {
  left: 10.7%;
  top: 0;
}
.solutionP1 .list li:nth-child(2) {
  right: 8.6%;
  top: 0.5rem;
}
.solutionP1 .list li:nth-child(3) {
  left: 16.8%;
  bottom: 1rem;
}
.solutionP1 .list li:nth-child(4) {
  left: 50%;
  bottom: 0;
}
.solutionP2 {
  padding: 1.1rem 0 1.9rem;
  background: #f9f9f9 url(../img/solutionP2.jpg) center bottom no-repeat;
  background-size: 100%;
}
.solutionP2 .list {
  margin-top: 0.8rem;
}
.solutionP2 .list ul {
  display: inline-flex;
  width: 100%;
}
.solutionP2 .list li {
  width: 25%;
  position: relative;
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.65s;
}
.solutionP2 .list li .box {
  cursor: pointer;
  width: 100%;
  height: 4.7rem;
  border-radius: 0.08rem;
  position: relative;
  background: #fff;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #dc0313;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .beforeDiv {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0.8rem 0.3rem 0;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .afterDiv {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0.8rem 0.55rem 0;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP2 .list li .afterDiv .name {
  color: #333;
}
.solutionP2 .list li .ico {
  height: 1rem;
}
.solutionP2 .list li .ico img {
  width: 0.95rem;
}
.solutionP2 .list li .name {
  font-size: var(--fs26);
  line-height: 0.36rem;
  color: #000;
  font-weight: bold;
}
.solutionP2 .list li .more {
  position: absolute;
  left: 50%;
  margin-left: -0.25rem;
  bottom: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #e23542 url(/html/vancheer/cn/img/ico2.png) center no-repeat;
}
.solutionP2 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  color: #333;
}
.solutionP2 .list .on {
  width: 48%;
}
.solutionP2 .list .on .box {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.solutionP2 .list .on .box::before {
  width: 100%;
}
.solutionP2 .list .on .beforeDiv {
  opacity: 0;
  visibility: hidden;
}
.solutionP2 .list .on .afterDiv {
  opacity: 1;
  visibility: visible;
}
.solutionP3 {
  padding: 0.7rem 0 0.8rem;
  background: #f9f9f9;
}
.solutionP3 .bigImg {
  margin-top: 0.45rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.solutionP3 .bigImg img {
  width: 100%;
}
.solutionP4 {
  padding: 1.2rem 0 0.9rem;
}
.solutionP4 .links {
  text-align: center;
  padding: 0.4rem 0 0.55rem;
}
.solutionP4 .links ul {
  font-size: 0;
}
.solutionP4 .links li {
  display: inline-block;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #333;
  font-weight: bold;
}
.solutionP4 .links li .box {
  cursor: pointer;
  position: relative;
  margin: 0 0.38rem;
  height: 0.3rem;
  padding: 0 5px;
}
.solutionP4 .links li .box::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ee1d23;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.solutionP4 .links .on .box::after {
  width: 100%;
  left: 0;
}
.solutionP4 .lunbo {
  position: relative;
}
.solutionP4 .imgList {
  overflow: hidden;
}
.solutionP4 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.solutionP4 .leftDiv {
  width: 5.76rem;
}
.solutionP4 .leftDiv .conDiv {
  height: 2.65rem;
  position: relative;
  padding: 0.4rem 0 0 1.2rem;
}
.solutionP4 .leftDiv .num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1rem;
  font-family: 'Din-R';
  background-image: linear-gradient(top, #dc0313, #fdf4f4);
  background-image: linear-gradient(to bottom, #dc0313, #fdf4f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solutionP4 .leftDiv .name {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #333;
}
.solutionP4 .leftDiv .content {
  margin-top: 0.1rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
}
.solutionP4 .leftDiv .pjDiv {
  height: 3.6rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
.solutionP4 .leftDiv .pjDiv .imgDiv {
  height: 3.6rem;
}
.solutionP4 .leftDiv .pjDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionP4 .leftDiv .pjDiv p {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.solutionP4 .rightDiv {
  padding-top: 0.55rem;
  width: 9.1rem;
}
.solutionP4 .rightDiv .pjDiv {
  height: 5.7rem;
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
}
.solutionP4 .rightDiv .pjDiv .imgDiv {
  height: 5.7rem;
}
.solutionP4 .rightDiv .pjDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionP4 .rightDiv .pjDiv p {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.solutionP4 .botbot {
  margin-top: 0.15rem;
}
.solutionP4 .botbot .wen {
  color: #333;
  font-size: var(--fs24);
  line-height: 0.32rem;
  font-weight: bold;
}
.solutionP4 .botbot .msg {
  margin-top: 0.05rem;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #999;
}
.solutionP4 .videoDiv {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0.24rem;
}
.solutionP4 .videoDiv .imgDiv {
  height: 5.7rem;
}
.solutionP4 .videoDiv .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionP4 .videoDiv video {
  max-width: 100%;
  max-height: 5.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.solutionP4 .videoDiv .playbox {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.solutionP4 .videoDiv .playbox .ico {
  margin: 0 auto;
  width: 1rem;
  position: relative;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.solutionP4 .videoDiv .playbox .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}
.solutionP4 .videoDiv .playbox .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -8px;
  z-index: 1;
}
.solutionP4 .videoDiv .playbox p {
  margin-top: 0.1rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.solutionP4 .videoDiv.cur {
  background: #000;
}
.solutionP4 .videoDiv.cur .imgDiv,
.solutionP4 .videoDiv.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.solutionP4 .videoDiv.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.solutionP4 .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  background: #fff;
  margin-top: -0.3rem;
  border: #e87d85 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.solutionP4 .se:hover {
  background: #e03340;
  border: #e03340 solid 1px;
}
.solutionP4 .prev {
  left: 50%;
  margin-left: -8.48rem;
}
.solutionP4 .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.solutionP4 .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.solutionP4 .next {
  right: 50%;
  margin-right: -8.48rem;
}
.solutionP4 .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.solutionP4 .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.solutionP5 {
  padding: 1.2rem 0 1.8rem;
  background: #f3f3f3;
}
.contrastPic {
  margin-top: 0.65rem;
  position: relative;
}
.contrastPic .list {
  overflow: hidden;
}
.contrastPic .list .box {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contrastPic .list .box .imgDiv {
  width: 50%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.contrastPic .list .box .imgDiv img {
  width: 100%;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.contrastPic .list .box .videoDiv {
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}
.contrastPic .list .box .videoDiv .limg img {
  width: 100%;
}
.contrastPic .list .box .videoDiv video {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.contrastPic .list .box .videoDiv .playbox {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
.contrastPic .list .box .videoDiv .playbox .ico {
  margin: 0 auto;
  width: 1rem;
  position: relative;
  height: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.contrastPic .list .box .videoDiv .playbox .ico::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}
.contrastPic .list .box .videoDiv .playbox .ico img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -8px;
  z-index: 1;
}
.contrastPic .list .box .videoDiv .playbox p {
  margin-top: 0.1rem;
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
}
.contrastPic .list .box .videoDiv.cur {
  background: #000;
}
.contrastPic .list .box .videoDiv.cur .limg,
.contrastPic .list .box .videoDiv.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.contrastPic .list .box .videoDiv.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
.contrastPic .list .box .conDiv {
  width: 50%;
  background: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
  padding: 1.1rem 0.95rem 0 0.95rem;
}
.contrastPic .list .box .name {
  font-weight: bold;
  color: #333;
  font-size: var(--fs48);
  line-height: 0.64rem;
}
.contrastPic .list .box .msg {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 2.1rem;
  overflow: auto;
}
.contrastPic .list .box .msg::-webkit-scrollbar {
  width: 3px;
}
.contrastPic .list .box .msg::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.contrastPic .list .box .msg::-webkit-scrollbar-thumb {
  background-color: #e50012;
}
.contrastPic .list .box:nth-child(odd) .imgDiv,
.contrastPic .list .box:nth-child(odd) .videoDiv {
  order: 1;
}
.contrastPic .list .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.contrastPic .se {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  top: 50%;
  margin-top: -0.3rem;
  border: #e87d85 solid 1px;
  border-radius: 50%;
  z-index: 2;
}
.contrastPic .se:hover {
  background: #e03340;
  border: #e03340 solid 1px;
}
.contrastPic .prev {
  left: 50%;
  margin-left: -8.48rem;
}
.contrastPic .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.contrastPic .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.contrastPic .next {
  right: 50%;
  margin-right: -8.48rem;
}
.contrastPic .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.contrastPic .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.solutionP6 {
  padding: 0 0.32rem 0.6rem;
}
.solutionP6 .baozhe {
  position: relative;
  padding-top: 1.4rem;
  height: 9.4rem;
  background: center no-repeat;
  background-size: cover;
  border-radius: 0.2rem;
  overflow: hidden;
}
.solutionP6 .aboutTitle .en {
  background-image: linear-gradient(top, #cfcfcf, #e9e6e6);
  background-image: linear-gradient(to bottom, #cfcfcf, #e9e6e6);
}
.solutionP6 .conDiv {
  padding-top: 0.45rem;
}
.solutionP6 .conDiv .name {
  color: #333;
  font-size: 0.38rem;
  line-height: 0.56rem;
}
.solutionP6 .conDiv .name h4 {
  margin: 0;
  color: #ee2223;
  font-size: var(--fs72);
  font-weight: bold;
  line-height: 0.86rem;
}
.solutionP6 .conDiv .msg {
  margin-top: 0.4rem;
  color: #333;
  line-height: 0.36rem;
  font-size: var(--fs18);
}
.solutionP6 .imgDiv img {
  width: 100%;
}
@media (max-width: 1600px) {
  .soluShowBan .txtLayer {
    margin-left: -8rem;
  }
  .solutionP4 .prev {
    margin-left: -8.78rem;
  }
  .solutionP4 .next {
    margin-right: -8.78rem;
  }
  .contrastPic .prev {
    margin-left: -8.78rem;
  }
  .contrastPic .next {
    margin-right: -8.78rem;
  }
}
@media (max-width: 1004px) {
  .soluShowBan .bg {
    height: 5rem;
  }
  .soluShowBan .bg img {
    height: 100%;
    object-fit: cover;
  }
  .soluShowBan .bg video {
    height: 100%;
    object-fit: cover;
  }
  .soluShowBan .txtLayer {
    left: 0.3rem;
    margin-left: 0;
  }
  .soluShowBan .txtLayer .name {
    font-size: var(--fs20);
  }
  .soluShowBan .txtLayer .wen {
    display: none;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: 80%;
  }
  .soluShowBan .btnGroup {
    margin-top: 0.25rem;
  }
  .soluShowBan .btnGroup li a {
    font-size: var(--fs14);
    height: 0.8rem;
  }
  .soluShowBan .btnGroup li a em {
    margin-left: 0.1rem;
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .solutionP1 {
    padding: 0.4rem var(--offset);
  }
  .solutionP1 .wrap {
    width: auto;
  }
  .solutionP1 .baozhe {
    border-radius: 0.28rem;
    padding: 0.7rem 0;
    height: auto;
  }
  .solutionP1 .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin: 0 0 0.2rem;
  }
  .solutionP1 .zi {
    font-size: var(--fs14);
    margin-bottom: 0.8rem;
    line-height: 0.48rem;
  }
  .solutionP1 .zi em {
    padding: 0 0.15rem;
  }
  .solutionP1 .list {
    min-height: 1rem;
    padding: 0;
  }
  .solutionP1 .list li {
    position: relative;
    padding-left: 1rem;
    max-width: 100%;
    margin-bottom: 0.3rem;
  }
  .solutionP1 .list li:last-child {
    margin-bottom: 0;
  }
  .solutionP1 .list li .headIco {
    margin-top: -0.36rem;
    width: 0.72rem;
    height: 0.72rem;
  }
  .solutionP1 .list li .conDiv {
    padding: 0.25rem 0.3rem;
    border-radius: 0.16rem;
  }
  .solutionP1 .list li .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .solutionP1 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .solutionP1 .list li:nth-child(1) {
    left: 0;
  }
  .solutionP1 .list li:nth-child(2) {
    right: 0;
    top: 0;
  }
  .solutionP1 .list li:nth-child(3) {
    left: 0;
    bottom: 0;
  }
  .solutionP1 .list li:nth-child(4) {
    left: 0;
  }
  .solutionP2 {
    padding: 0.9rem 0;
  }
  .solutionP2 .list {
    margin-top: 0.65rem;
  }
  .solutionP2 .list ul {
    display: block;
  }
  .solutionP2 .list li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.3rem;
  }
  .solutionP2 .list li .box {
    height: auto;
    border-radius: 0.12rem;
  }
  .solutionP2 .list li .beforeDiv {
    opacity: 0;
    visibility: hidden;
  }
  .solutionP2 .list li .afterDiv {
    display: block;
    position: relative;
    padding: 0.5rem 0.35rem;
    min-height: 4.2rem;
    opacity: 1;
    visibility: visible;
  }
  .solutionP2 .list li .ico {
    height: 1.5rem;
  }
  .solutionP2 .list li .ico img {
    width: 1.3rem;
  }
  .solutionP2 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .solutionP2 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP2 .list .on {
    width: 100%;
  }
  .solutionP3 {
    padding: 0.8rem 0 0.9rem;
  }
  .solutionP3 .bigImg {
    margin-top: 0.65rem;
    border-radius: 0.24rem;
  }
  .solutionP4 {
    padding: 0.9rem 0;
  }
  .solutionP4 .links {
    text-align: center;
    padding: 0.6rem 0 0.25rem;
    overflow: hidden;
  }
  .solutionP4 .links li {
    float: left;
    width: 25%;
    display: block;
    margin-bottom: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .solutionP4 .links li .box {
    display: inline-block;
    margin: 0;
    height: 0.56rem;
  }
  .solutionP4 .links li .box::after {
    height: 2px;
  }
  .solutionP4 .mxfDiv {
    display: block;
  }
  .solutionP4 .leftDiv {
    width: auto;
  }
  .solutionP4 .leftDiv .conDiv {
    height: auto;
    padding: 0 0 0.5rem 1.2rem;
  }
  .solutionP4 .leftDiv .name {
    font-size: var(--fs24);
  }
  .solutionP4 .leftDiv .content {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .solutionP4 .leftDiv .pjDiv {
    height: 4rem;
  }
  .solutionP4 .leftDiv .pjDiv .imgDiv {
    height: 4rem;
  }
  .solutionP4 .leftDiv .pjDiv p {
    font-size: var(--fs18);
  }
  .solutionP4 .rightDiv {
    padding-top: 0.55rem;
    width: auto;
  }
  .solutionP4 .rightDiv .pjDiv {
    height: 4.2rem;
  }
  .solutionP4 .rightDiv .pjDiv .imgDiv {
    height: 4.2rem;
  }
  .solutionP4 .rightDiv .pjDiv p {
    font-size: var(--fs18);
  }
  .solutionP4 .botbot {
    margin-top: 0.2rem;
  }
  .solutionP4 .botbot .wen {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .solutionP4 .botbot .msg {
    margin-top: 0.1rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .solutionP4 .videoDiv .imgDiv {
    height: 4.2rem;
  }
  .solutionP4 .videoDiv video {
    max-height: 4.2rem;
  }
  .solutionP4 .videoDiv .playbox {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
  }
  .solutionP4 .videoDiv .playbox .ico {
    margin: 0 auto;
    width: 1rem;
    position: relative;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  .solutionP4 .videoDiv .playbox .ico::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
  }
  .solutionP4 .videoDiv .playbox .ico img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -8px;
    z-index: 1;
  }
  .solutionP4 .videoDiv .playbox p {
    margin-top: 0.15rem;
    font-size: var(--fs18);
  }
  .solutionP4 .se {
    top: 45%;
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .solutionP4 .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .solutionP4 .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .solutionP5 {
    padding: 0.9rem 0 1rem;
  }
  .contrastPic .list .box {
    display: block;
  }
  .contrastPic .list .box .imgDiv {
    height: 4.2rem;
    width: 100%;
    border-radius: 0.24rem;
  }
  .contrastPic .list .box .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .contrastPic .list .box .videoDiv {
    width: 100%;
    border-radius: 0.24rem;
  }
  .contrastPic .list .box .videoDiv .limg {
    height: 4.2rem;
  }
  .contrastPic .list .box .videoDiv .limg img {
    height: 100%;
    object-fit: cover;
  }
  .contrastPic .list .box .videoDiv video {
    max-height: 4.2rem;
  }
  .contrastPic .list .box .videoDiv .playbox {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
  }
  .contrastPic .list .box .videoDiv .playbox .ico {
    margin: 0 auto;
    width: 1rem;
    position: relative;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  .contrastPic .list .box .videoDiv .playbox .ico::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.8rem;
    height: 0.8rem;
    margin-left: -0.4rem;
    margin-top: -0.4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
  }
  .contrastPic .list .box .videoDiv .playbox .ico img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -7px;
    margin-top: -8px;
    z-index: 1;
  }
  .contrastPic .list .box .videoDiv .playbox p {
    margin-top: 0.15rem;
    font-size: var(--fs18);
  }
  .contrastPic .list .box .conDiv {
    width: auto;
    border-radius: 0.24rem;
    padding: 0.6rem 0.35rem;
  }
  .contrastPic .list .box .name {
    font-size: var(--fs18);
    line-height: 0.54rem;
  }
  .contrastPic .list .box .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 2.4rem;
  }
  .contrastPic .se {
    width: 0.86rem;
    height: 0.86rem;
    margin-top: -0.43rem;
  }
  .contrastPic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .contrastPic .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .solutionP6 {
    padding: 0.8rem var(--offset) 0.7rem;
  }
  .solutionP6 .baozhe {
    padding-top: 0.9rem;
    height: auto;
    background: none;
    border-radius: 0.28rem;
  }
  .solutionP6 .conDiv {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .solutionP6 .conDiv .name {
    text-align: center;
    font-size: var(--fs17);
    line-height: 0.64rem;
  }
  .solutionP6 .conDiv .name h4 {
    font-size: var(--fs30);
    line-height: 0.76rem;
  }
  .solutionP6 .conDiv .msg {
    text-align: center;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
}
.story {
  padding: 0.95rem 0 0.4rem;
  background: #f8f8f8;
}
.story .aboutTitle {
  margin-bottom: 0.75rem;
}
.story .baozhe {
  padding: 0 0.32rem;
}
.story .part2 {
  margin-top: 0.4rem;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.8rem 0 1.7rem;
}
.story .part2 .msgList li {
  padding-bottom: 0.75rem;
  text-align: center;
}
.story .part2 .msgList li .name {
  color: #000;
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
  margin-bottom: 0.12rem;
}
.story .part2 .msgList li .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
}
.story .part2 .content {
  text-align: center;
  color: #333;
  font-size: var(--fs24);
  line-height: 0.36rem;
  padding-bottom: 1.8rem;
}
.story .part2 .content em {
  display: block;
  color: #dc0313;
  font-size: var(--fs72);
  line-height: 0.86rem;
}
.storyP2 {
  background: #f8f8f8;
  padding-bottom: 0.4rem;
}
.storyP2 .baozhe {
  padding: 0 0.32rem;
}
.storyP2 .part3 {
  background: #fff;
  border-radius: 0.24rem;
  padding: 0.95rem 0 1rem;
}
.storyP2 .part3 .tab2 {
  padding-bottom: 1rem;
}
.storyP2 .part3 .tab2::after {
  content: '';
  display: block;
  clear: both;
}
.storyP2 .part3 .tab2 li {
  float: left;
  font-size: var(--fs18);
  margin-right: 0.35rem;
  line-height: 0.48rem;
  position: relative;
  color: #333;
}
.storyP2 .part3 .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #e50012;
}
.storyP2 .part3 .tab2 .on {
  font-size: var(--fs24);
  font-weight: bold;
}
.storyP2 .part3 .tab2 .on::after {
  left: 0;
  width: 100%;
}
.storyP2 .part3 .tabContent2 {
  animation: am_top 0.5s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.5s ease-out 0.1s backwards;
}
.storyP2 .part3 .list {
  padding-bottom: 0.9rem;
}
.storyP2 .part3 .list ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  flex-flow: wrap;
}
.storyP2 .part3 .list li {
  width: calc((100% - 1.84rem) / 3);
  margin-right: 0.92rem;
}
.storyP2 .part3 .list li:nth-child(3n) {
  margin-right: 0;
}
.storyP2 .part3 .list li .box {
  border-radius: 0.16rem;
  overflow: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.storyP2 .part3 .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;
}
.storyP2 .part3 .list li .botDiv {
  padding: 0.3rem 0.35rem 0;
  height: 2.8rem;
  background: #f8f8f8;
  position: relative;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.storyP2 .part3 .list li .botDiv::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.storyP2 .part3 .list li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--fs22);
  line-height: 0.3rem;
  color: #333;
  font-weight: bold;
  height: 0.6rem;
}
.storyP2 .part3 .list li .content {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.12rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  height: 0.72rem;
  color: #999;
}
.storyP2 .part3 .list li .ico {
  margin-top: 0.2rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  border: #e4e4e4 solid 1px;
  background: #fff url(/html/vancheer/cn/img/ico2on.png) center no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.storyP2 .part3 .list li .box:hover {
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.storyP2 .part3 .list li .box:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.storyP2 .part3 .list li .box:hover .botDiv {
  background: #fff;
}
.storyP2 .part3 .list li .box:hover .botDiv::after {
  height: 3px;
}
.storyP2 .part3 .list li .box:hover .ico {
  background: #e50012 url(/html/vancheer/cn/img/ico2.png) center no-repeat;
  border: #e50012 solid 1px;
}
.storyP2 .part3 .more {
  width: 1.56rem;
  margin: 0 auto;
}
.storyP2 .part3 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: var(--fs16);
  color: #fff;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  background-image: linear-gradient(90deg, #e60012 0%, #ce0d1a 100%);
  background-blend-mode: normal, normal;
}
.storyP2 .part3 .more a em {
  margin-left: 0.15rem;
  width: 0.16rem;
  height: 0.12rem;
  background: url(/html/vancheer/cn/img/ico4on.png) no-repeat;
  background-size: 0.16rem;
}
.storyPic {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.storyPic .imgList {
  width: 30rem;
  position: relative;
  left: 50%;
  margin-left: -15rem;
}
.storyPic .swiper-slide {
  position: relative;
}
.storyPic .swiper-slide .box {
  display: block;
  width: 9.6rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0.24rem;
}
.storyPic .swiper-slide .box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.storyPic .swiper-slide .imgDiv {
  width: 100%;
  height: 4.9rem;
}
.storyPic .swiper-slide .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storyPic .swiper-slide .videoDiv {
  display: none;
}
.storyPic .swiper-slide .playbox {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: 1;
}
.storyPic .swiper-slide .playbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.storyPic .swiper-slide .playbox .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.storyPic .swiper-slide-active .box::after {
  opacity: 0;
  visibility: hidden;
}
.storyPic .pjDiv {
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  bottom: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.storyPic .temeDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.storyPic .swiper-pagination {
  position: relative;
  width: 2.1rem;
  height: 2px;
  background-color: #d1d1d1;
}
.storyPic .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 2px;
  background-color: #e50012;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  transform-origin: left center;
}
.storyPic .num1,
.storyPic .num2 {
  font-family: 'Poppins-L';
  font-size: var(--fs14);
  color: #333;
  width: 24px;
  text-align: center;
}
.storyPic .num1 {
  padding-right: 0.08rem;
  color: #e50012;
}
.storyPic .num2 {
  padding-left: 0.08rem;
}
.storyPic .arrowDiv {
  margin-right: 0.3rem;
}
.storyPic .arrowDiv .se {
  position: relative;
  float: left;
  margin: 0 0.2rem;
  display: block;
  overflow: hidden;
  width: 0.6rem;
  height: 0.6rem;
  border: #c3c4c5 solid 1px;
  border-radius: 50%;
}
.storyPic .arrowDiv .se:hover {
  border: none;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.storyPic .arrowDiv .prev::before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_left2.png) no-repeat;
}
.storyPic .arrowDiv .prev:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_lefton.png) no-repeat;
}
.storyPic .arrowDiv .next::before {
  content: '';
  z-index: 1;
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: -4px;
  width: 7px;
  height: 10px;
  margin-top: -5px;
  background: url(/html/vancheer/cn/img/nimg7_right2.png) no-repeat;
}
.storyPic .arrowDiv .next:hover::before {
  background: url(/html/vancheer/cn/img/nimg7_righton.png) no-repeat;
}
.indmh {
  width: 100%;
  position: relative;
  height: 350vh;
}
.indmh-sticky {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  overflow: hidden;
  border-radius: 0.24rem;
}
.indmh-bg {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.indmh-logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.indmh-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indmh-text {
  width: 100%;
  height: 100%;
  padding: 1.2rem 0;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  text-align: center;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  transition: all 1s ease;
}
.indmh-text.active {
  opacity: 0;
}
.indmh-text .logoDiv img {
  width: 2.42rem;
}
.indmh-text .ziDiv .cn {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.indmh-text .ziDiv .en {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #666;
  font-family: 'Poppins-L';
}
.indmh-shade {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
}
.indmh-content {
  position: absolute;
  width: 100%;
  z-index: 4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
.indmh-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 2rem;
}
.indmh-more {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.indmh-more .cn {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.indmh-more .en {
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins-L';
}
/* -- */
.indmh-content {
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s ease;
}
.indmh-content.active {
  opacity: 1;
  pointer-events: auto;
}
.indmh-content.active .indTitle {
  animation: indmhRun 1s ease both 0.4s;
}
.indmh-content.active .indmh-desc {
  animation: indmhRun 1s ease both 0.6s;
}
.indmh-content.active .indmh-more {
  animation: indmhRun 1s ease both 0.8s;
}
@media (max-width: 1004px) {
  .story {
    padding: 0.85rem 0 0.4rem;
  }
  .story .baozhe {
    padding: 0 var(--offset);
  }
  .story .part2 {
    border-radius: 0.28rem;
    padding: 0.8rem 0.3rem 1rem;
  }
  .story .part2 .msgList li {
    padding-bottom: 0.6rem;
  }
  .story .part2 .msgList li .name {
    font-size: var(--fs20);
    line-height: 0.72rem;
  }
  .story .part2 .msgList li .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .story .part2 .content {
    font-size: var(--fs16);
    line-height: 0.48rem;
    padding-bottom: 1rem;
  }
  .story .part2 .content em {
    font-size: var(--fs24);
  }
  .storyP2 .baozhe {
    padding: 0 var(--offset);
  }
  .storyP2 .part3 {
    border-radius: 0.28rem;
    padding: 0.8rem 0 0.9rem;
  }
  .storyP2 .part3 .tab2 {
    padding-bottom: 0.7rem;
  }
  .storyP2 .part3 .tab2 li {
    float: left;
    font-size: var(--fs15);
    margin-right: 0.25rem;
    line-height: 0.64rem;
  }
  .storyP2 .part3 .tab2 li::after {
    height: 2px;
  }
  .storyP2 .part3 .tab2 .on {
    font-size: var(--fs17);
  }
  .storyP2 .part3 .list {
    padding-bottom: 0.5rem;
  }
  .storyP2 .part3 .list ul {
    display: block;
  }
  .storyP2 .part3 .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
  .storyP2 .part3 .list li .box {
    border-radius: 0.2rem;
  }
  .storyP2 .part3 .list li .botDiv {
    padding: 0.35rem 0.3rem 0;
    height: 2.8rem;
  }
  .storyP2 .part3 .list li .name {
    font-size: var(--fs17);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .storyP2 .part3 .list li .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs13);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .storyP2 .part3 .list li .ico {
    display: none;
  }
  .storyP2 .part3 .more {
    width: 2.16rem;
  }
  .storyP2 .part3 .more a {
    font-size: var(--fs14);
    height: 0.8rem;
  }
  .storyP2 .part3 .more a em {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
  .storyPic .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .storyPic .swiper-slide .box {
    width: 100%;
  }
  .storyPic .swiper-slide .imgDiv {
    height: 3.8rem;
  }
  .storyPic .swiper-slide .playbox .ico img {
    width: 14px;
  }
  .storyPic .pjDiv {
    right: 0;
    margin-right: 0;
  }
  .storyPic .swiper-pagination {
    width: 2.2rem;
  }
  .storyPic .num1,
  .storyPic .num2 {
    width: 0.48rem;
  }
  .storyPic .num1 {
    padding-right: 0.1rem;
  }
  .storyPic .num2 {
    padding-left: 0.1rem;
  }
  .storyPic .arrowDiv {
    margin-right: 0.2rem;
  }
  .storyPic .arrowDiv .se {
    margin: 0 0.1rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .indmh {
    height: auto;
  }
  .indmh-sticky {
    border-radius: 0.28rem;
  }
  .indmh-sticky::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .indmh-bg {
    height: 70vh;
    position: relative;
  }
  .indmh-logo {
    display: none;
  }
  .indmh-text {
    padding: 0.9rem 0;
  }
  .indmh-text .logoDiv img {
    width: 2.8rem;
  }
  .indmh-text .ziDiv .cn {
    font-size: var(--fs18);
    line-height: 0.64rem;
    color: #fff;
  }
  .indmh-text .ziDiv .en {
    font-size: var(--fs14);
    line-height: 0.42rem;
    color: rgba(255, 255, 255, 0.4);
  }
  .indmh-text .limg img {
    width: 12px;
  }
}
.goodVideo {
  padding: 0 0.32rem;
}
.goodVideo .baozhe {
  background: #f9f9f9;
  padding: 0.9rem 0 1.1rem;
  border-radius: 0.2rem;
}
.goodVideo .list {
  padding-bottom: 0.6rem;
}
.goodVideo .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.goodVideo .list li {
  height: 3.5rem;
  width: calc((100% - 0.5rem) / 2);
  margin-right: 0.5rem;
  margin-bottom: 0.6rem;
  position: relative;
  padding-right: 0.5rem;
  background: #fff;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
}
.goodVideo .list li:nth-child(2n) {
  margin-right: 0;
}
.goodVideo .list li .pj {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.goodVideo .list li .pj .imgDiv {
  width: 100%;
  height: 3.5rem;
}
.goodVideo .list li .pj .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.goodVideo .list li .pj::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background: #f5f5f5 url(../img/play5.png) center no-repeat;
}
.goodVideo .list li .conDiv {
  padding-top: 0.6rem;
  padding-left: 60%;
}
.goodVideo .list li .conDiv .name a {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--fs24);
  line-height: 0.3rem;
  height: 0.9rem;
  font-weight: bold;
  color: #333;
}
.goodVideo .list li .conDiv .name a:hover {
  color: #e50012;
}
.goodVideo .list li .conDiv .time {
  margin-top: 0.2rem;
  font-size: var(--fs16);
  color: #999;
  font-family: 'Poppins-L';
  line-height: 0.48rem;
}
.goodVideo .list li .videoDiv {
  display: none;
}
.goodVideo .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1004px) {
  .goodVideo {
    padding: 0.4rem var(--offset) 0;
  }
  .goodVideo .baozhe {
    padding: 0.7rem 0 0.9rem;
    border-radius: 0.28rem;
  }
  .goodVideo .list {
    padding-bottom: 0.3rem;
  }
  .goodVideo .list ul {
    display: block;
  }
  .goodVideo .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
    padding-right: 0.3rem;
    height: 2.1rem;
  }
  .goodVideo .list li:nth-child(2n) {
    margin-right: 0;
  }
  .goodVideo .list li .pj {
    width: 44%;
  }
  .goodVideo .list li .pj::after {
    width: 0.72rem;
    height: 0.72rem;
    background-size: 0.24rem;
  }
  .goodVideo .list li .pj .imgDiv {
    height: 2.1rem;
  }
  .goodVideo .list li .conDiv {
    padding-top: 0.25rem;
    padding-left: 52%;
  }
  .goodVideo .list li .conDiv .name a {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs16);
    line-height: 0.52rem;
    height: 1.04rem;
  }
  .goodVideo .list li .conDiv .time {
    margin-top: 0.1rem;
    font-size: var(--fs13);
  }
}
.in3 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.in3 .cont1 {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.in3 .cont1 .bgimg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in3 .cont2 {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.in3 .cont3 {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.in3 .cont3 .item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.9rem;
}
.in3 .cont3 .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.in3 .cont3 .item:nth-child(2n) {
  flex-direction: row-reverse;
}
.in3 .cont3 .item:nth-child(2n) .itemimg .tit_box {
  margin-top: 0.2rem;
}
.in3 .cont3 .item .itemimg {
  height: auto;
  position: relative;
}
.in3 .cont3 .item .itemimg .tit_box {
  margin-top: 0.2rem;
}
.in3 .cont3 .item .itemimg .tit_box .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.1rem;
  font-weight: 600;
  font-size: var(--fs24);
  line-height: 0.32rem;
  color: #333;
}
.in3 .cont3 .item .itemimg .tit_box .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs18);
  color: #666;
}
.in3 .cont3 .item .itemimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.in3 .cont3 .item .itemimg:nth-child(1) {
  width: 6rem;
  height: 4.27rem;
  aspect-ratio: 360 / 393;
}
.in3 .cont3 .item .itemimg:nth-child(2) {
  width: 2.6rem;
  aspect-ratio: 199 / 215;
}
.in3 .cont3 .item:nth-child(1),
.in3 .cont3 .item.item:nth-child(3) {
  left: -2rem;
}
.in3 .cont3 .item.item:nth-child(2) {
  left: auto;
  right: -2rem;
}
.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;
  }
}
