@charset "UTF-8";
.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;
  }
}
@font-face {
  font-family: "Mont-M";
  src: url('/html/vancheer/cn/fonts/Montserrat-Medium.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont-B";
  src: url('/html/vancheer/cn/fonts/Montserrat-Bold.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont-R";
  src: url('/html/vancheer/cn/fonts/Montserrat-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-L";
  src: url('/html/vancheer/cn/fonts/Poppins-Light.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-M";
  src: url('/html/vancheer/cn/fonts/Poppins-Medium.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Din-B";
  src: url('/html/vancheer/cn/fonts/D-DIN-PRO-700-Bold.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Din-R";
  src: url('/html/vancheer/cn/fonts/D-DIN-PRO-400-Regular.otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.wrap {
  width: var(--mainWid);
  margin: 0 auto;
}
.padding {
  padding: var(--padding) 0;
}
.pt120 {
  padding-top: var(--padding);
}
.pb120 {
  padding-bottom: var(--padding);
}
.mt120 {
  margin-top: var(--padding);
}
.mb120 {
  margin-bottom: var(--padding);
}
.Phone-Box {
  display: none;
}
.tabContent,
.oneContent {
  display: none;
}
.tab li {
  cursor: pointer;
}
.tabContent2 {
  display: none;
}
.tab2 li {
  cursor: pointer;
}
@media (max-width: 1004px) {
  .wrap {
    padding: 0 var(--offset);
  }
  .PC-Box {
    display: none;
  }
  .Phone-Box {
    display: block;
  }
}
.headD {
  height: 0.94rem;
}
.headDiv {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.94rem;
  z-index: 5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.headDiv .headDiv-logo {
  position: absolute;
  left: 0.64rem;
  top: 0.27rem;
  margin: 0;
  z-index: 3;
}
.headDiv .headDiv-logo a {
  display: block;
  width: 1.44rem;
}
.headDiv .headDiv-logo img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.44rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.headDiv .headDiv-logo .img1 {
  opacity: 0;
}
.headDiv .topRight {
  position: absolute;
  right: 0.4rem;
  top: 0;
  z-index: 1;
}
.headDiv .topSearch {
  height: 0.4rem;
  position: relative;
  margin-left: 0.6rem;
  margin-top: 0.27rem;
}
.headDiv .topSearch em {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(/html/vancheer/cn/img/nimg18_1.png) center no-repeat;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.headDiv .lan {
  margin-top: 0.27rem;
  width: 1.12rem;
  height: 0.4rem;
  line-height: 0.4rem;
  position: relative;
  z-index: 5;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.headDiv .lan .name {
  height: 0.4rem;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  padding-left: 0.5rem;
  color: #fff;
  font-size: var(--fs16);
  text-transform: uppercase;
  font-family: 'Mont-R';
}
.headDiv .lan .name:before {
  content: '';
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  left: 0.12rem;
  top: 50%;
  margin-top: -0.1rem;
  background: url(/html/vancheer/cn/img/nimg20_1.png) no-repeat;
  background-size: 0.2rem;
}
.headDiv .lan .name:after {
  content: '';
  position: absolute;
  right: 0.12rem;
  top: 50%;
  margin-top: -4px;
  width: 11px;
  height: 8px;
  background: url(/html/vancheer/cn/img/ico1.png) center no-repeat;
}
.headDiv .lan dl {
  padding: 0.15rem 0;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0.4rem;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.headDiv .lan dl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #e50012;
}
.headDiv .lan dl a {
  display: block;
  height: 0.36rem;
  line-height: 0.36rem;
  padding-left: 0.5rem;
  color: #999;
  font-size: var(--fs14);
  font-family: 'Mont-R';
  text-transform: uppercase;
}
.headDiv .lan dl a:hover {
  color: #e50012;
}
.headDiv .lan.on dl {
  opacity: 1;
  visibility: visible;
  top: 0.35rem;
  z-index: 1;
}
.headDiv .lanTel {
  margin-top: 0.24rem;
  margin-left: 0.2rem;
}
.headDiv .lanTel a {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  background: url(/html/vancheer/cn/img/nimg20_1.png) center no-repeat;
  background-size: 0.3rem;
}
.headDiv.mini,
.headDiv.ny,
.headDiv:hover {
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.headDiv.mini .headDiv-logo img,
.headDiv.ny .headDiv-logo img,
.headDiv:hover .headDiv-logo img {
  opacity: 0;
}
.headDiv.mini .headDiv-logo .img1,
.headDiv.ny .headDiv-logo .img1,
.headDiv:hover .headDiv-logo .img1 {
  opacity: 1;
}
.headDiv.mini .nav li a,
.headDiv.ny .nav li a,
.headDiv:hover .nav li a {
  color: #333;
}
.headDiv.mini .nav li a:hover,
.headDiv.ny .nav li a:hover,
.headDiv:hover .nav li a:hover {
  color: #e50012;
}
.headDiv.mini .nav li .aNow,
.headDiv.ny .nav li .aNow,
.headDiv:hover .nav li .aNow,
.headDiv.mini .nav li .aNow1,
.headDiv.ny .nav li .aNow1,
.headDiv:hover .nav li .aNow1 {
  color: #e50012;
}
.headDiv.mini .lan .name,
.headDiv.ny .lan .name,
.headDiv:hover .lan .name {
  color: #999;
}
.headDiv.mini .lan .name:before,
.headDiv.ny .lan .name:before,
.headDiv:hover .lan .name:before {
  background: url(/html/vancheer/cn/img/nimg20_1on.png) no-repeat;
  background-size: 0.2rem;
}
.headDiv.mini .lan .name:after,
.headDiv.ny .lan .name:after,
.headDiv:hover .lan .name:after {
  background: url(/html/vancheer/cn/img/ico1on.png) center no-repeat;
}
.headDiv.mini .topSearch em,
.headDiv.ny .topSearch em,
.headDiv:hover .topSearch em {
  background: url(/html/vancheer/cn/img/nimg18_1on.png) center no-repeat;
  background-size: 0.18rem;
}
.nav {
  padding-left: 20.8% !important;
}
.nav li {
  position: relative;
  float: left;
  font-size: var(--fs18);
}
.nav li a {
  display: block;
  padding: 0 0.42rem;
  height: 0.94rem;
  position: relative;
  line-height: 0.94rem;
  color: #fff;
  text-align: center;
}
.nav li a em {
  display: inline-block;
  position: relative;
  height: 0.94rem;
}
.nav li a em:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.23rem;
  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;
}
.nav li a:hover {
  color: #e50012 !important;
}
.nav li a:hover em:after {
  width: 100%;
  left: 0;
}
.nav li .aNow,
.nav li .aNow1,
.nav li .active {
  color: #e50012 !important;
  transform: scale(1.3);
}
.nav li .aNow em:after,
.nav li .aNow1 em:after,
.nav li .active em:after {
  width: 100%;
  left: 0;
}
.subnav-container {
  position: absolute;
  top: 0.94rem;
  left: 0;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  background: #fff;
  height: 0;
  transition: height 0.8s ease;
  -webkit-transition: height 0.8s ease;
  -moz-transition: height 0.8s ease;
  -o-transition: height 0.8s ease;
}
.subnav-container.active {
  height: 3.6rem;
}
.sNav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.sNav .lie {
  position: absolute;
  padding: 0.3rem 0 0 0.42rem;
}
.sNav .lie li {
  font-size: var(--fs18);
  position: relative;
  z-index: 1;
}
.sNav .lie li a {
  display: block;
  position: relative;
  line-height: 0.42rem;
  color: #333;
}
.sNav .lie li a:hover {
  color: #e50012;
  text-decoration: underline;
}
.sNav .imgList {
  padding-top: 0.7rem;
  width: 12rem;
  margin: 0 auto;
}
.sNav .imgList ul {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.sNav .imgList li .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.7rem;
}
.sNav .imgList li .limg img {
  width: 0.5rem;
}
.sNav .imgList li .name {
  margin-top: 0.2rem;
  text-align: center;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #333;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.sNav .imgList li:hover .name {
  color: #e50012;
}
.sNav.active {
  display: block;
}
.menubtn {
  display: none;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
}
.menubtn .btn {
  position: absolute;
  right: 3px;
  top: 7px;
  width: 24px;
  height: 16px;
  z-index: 3;
}
.menubtn .btn span {
  width: 24px;
  display: block;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}
.menubtn .btn span:nth-of-type(1) {
  top: 0;
}
.menubtn .btn span:nth-of-type(2) {
  top: 7px;
  width: 18px;
}
.menubtn .btn span:nth-of-type(3) {
  top: 14px;
}
.menubtn.cur span {
  background: #000;
}
.menubtn.cur span:nth-of-type(1) {
  top: 5px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.menubtn.cur span:nth-of-type(2) {
  opacity: 0;
}
.menubtn.cur span:nth-of-type(3) {
  top: 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.menu-flex {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: 0.88s;
  overflow-x: auto;
  overflow: hidden;
}
.menu-flex::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 1.2rem;
  background: #fff;
  z-index: 2;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-flex.show {
  visibility: visible;
  pointer-events: visible;
}
.menu-flex.show::before {
  width: 100%;
}
.menu-flex.show .menu-right {
  right: 0;
}
.menu-right {
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  background: #fff;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-right .menu-list {
  padding: 1.3rem 0.3rem 0.5rem;
}
.menu-right .botList {
  padding-bottom: 0.5rem;
}
.menu-right .botList::after {
  content: '';
  display: block;
  clear: both;
}
.menu-right .botList li {
  float: left;
  width: 33.33%;
  text-align: center;
}
.menu-right .botList li .ico {
  width: 0.56rem;
  margin: 0 auto;
}
.menu-right .botList li .ico img {
  width: 0.56rem;
}
.menu-right .botList li .name {
  margin-top: 0.2rem;
  font-size: var(--fs15);
  color: #333;
  line-height: 0.32rem;
}
.subNav {
  cursor: pointer;
  display: block;
  height: 1.1rem;
  line-height: 1.1rem;
  position: relative;
  font-size: var(--fs17);
  border-bottom: #d6d6d6 solid 1px;
}
.subNav a {
  display: block;
  color: #000;
}
.subNav1 {
  color: #000;
}
.subNav1::before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 6px;
  width: 2px;
  height: 14px;
  background: #d6d6d6;
}
.subNav1::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 0;
  width: 14px;
  height: 2px;
  background: #d6d6d6;
}
.subNav1 .name {
  position: relative;
}
.currentDt {
  color: #e50012;
}
.currentDt::before {
  display: none;
}
.currentDt::after {
  background: #e50012;
}
.navContent {
  display: none;
}
.navContent::after {
  content: '';
  display: block;
  clear: both;
}
.navContent li a {
  display: block;
  height: 0.9rem;
  line-height: 0.9rem;
  color: #000;
  font-size: var(--fs15);
  padding-left: 0.3rem;
}
.navContent2 {
  padding: 0.5rem 0 0.1rem;
}
.navContent2 li {
  float: left;
  width: 33.33%;
  text-align: center;
  margin-bottom: 0.3rem;
}
.navContent2 li a {
  height: auto;
  line-height: 0.48rem;
  padding-left: 0;
}
.navContent2 li .ico {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.76rem;
}
.navContent2 li .ico img {
  max-width: 1rem;
  max-height: 0.76rem;
}
.navContent2 li .zi {
  margin-top: 0.15rem;
  color: #000;
  font-size: var(--fs14);
}
.head-search {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 59;
}
.head-search .search-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  max-width: 1200px;
  height: auto;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.head-search .search-box .box-cent {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border-bottom: solid 1px #555;
}
.head-search .search-box .box-cent input {
  width: calc(100% - 60px);
  height: 50px;
  padding: 0 20px;
  font-size: var(--fs16);
  color: #fff;
  background: none;
}
.head-search .search-box .box-cent input::placeholder {
  color: #fff;
}
.head-search .search-box .box-cent .box-icon {
  display: block;
  width: 60px;
  height: 50px;
  text-align: right;
  line-height: 50px;
}
.head-search .search-box .box-cent .box-icon img {
  width: 22px;
  opacity: 0.8;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.head-search .search-box .box-cent .box-icon:hover img {
  opacity: 1;
}
.head-search .search-box .box-hiden {
  cursor: pointer;
  width: 24px;
  margin: 50px auto 0;
}
.head-search .search-box .box-hiden img {
  width: 100%;
  opacity: 0.6;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.head-search .search-box .box-hiden:hover img {
  opacity: 1;
}
@media (max-width: 1004px) {
  .nav {
    display: none;
  }
  .navIco {
    display: block;
  }
  .menubtn {
    display: block;
  }
  .headD {
    height: 1.2rem;
  }
  .headDiv {
    height: 1.2rem;
  }
  .headDiv .headDiv-logo {
    left: 0.3rem;
    top: 0.35rem;
  }
  .headDiv .headDiv-logo a {
    width: 2rem;
  }
  .headDiv .headDiv-logo img {
    width: 2rem;
  }
  .headDiv .topRight {
    right: 1.3rem;
    top: 0;
  }
  .headDiv .topSearch {
    margin-top: 0.24rem;
    margin-left: 0.2rem;
  }
  .headDiv .topSearch em {
    width: 0.72rem;
    height: 0.72rem;
    background-size: 0.3rem;
  }
  .headDiv.mini,
  .headDiv:hover {
    background: none;
    box-shadow: none;
  }
  .headDiv.mini .headDiv-logo img,
  .headDiv:hover .headDiv-logo img {
    opacity: 1;
  }
  .headDiv.mini .headDiv-logo .img1,
  .headDiv:hover .headDiv-logo .img1 {
    opacity: 0;
  }
  .headDiv.mini .topSearch em,
  .headDiv:hover .topSearch em {
    background: url(/html/vancheer/cn/img/nimg18_1.png) center no-repeat;
    background-size: 0.3rem;
  }
  .headDiv.ny .topSearch em {
    background: url(/html/vancheer/cn/img/nimg18_1on.png) center no-repeat;
    background-size: 0.3rem;
  }
  .headDiv.ny .lanTel a {
    background: url(/html/vancheer/cn/img/nimg20_1on.png) center no-repeat;
    background-size: 0.3rem;
  }
  .headDiv.ny .menubtn .btn span {
    background-color: #000;
  }
  .headDiv.ny:hover {
    box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  }
  .headDiv.ny:hover .headDiv-logo img {
    opacity: 0;
  }
  .headDiv.ny:hover .headDiv-logo .img1 {
    opacity: 1;
  }
  .headDiv.fixed {
    position: fixed;
  }
  .headDiv.fixed .headDiv-logo img {
    opacity: 0;
  }
  .headDiv.fixed .headDiv-logo .img1 {
    opacity: 1;
  }
  .head-search .search-box {
    width: 90%;
  }
}
.footDiv {
  overflow: hidden;
  position: relative;
  padding: 1.15rem 0;
  background: #202020;
}
.footDiv .zi {
  font-size: var(--fs18);
  margin-bottom: 0.2rem;
  line-height: 0.2rem;
  text-align: right;
  color: #fff;
}
.footDiv .tel {
  color: #c81622;
  text-align: right;
  font-size: var(--fs30);
  line-height: 0.32rem;
  font-family: 'Poppins-M';
}
.footDiv .ewmList {
  float: none;
  padding-top: 0.45rem;
}
.footDiv .ewmList li {
  float: left;
  width: 1.2rem;
  margin-left: 0.5rem;
}
.footDiv .ewmList li .limg img {
  width: 100%;
}
.footDiv .ewmList li p {
  margin-top: 0.1rem;
  line-height: 0.24rem;
  font-size: var(--fs14);
  color: #9a9a9a;
  text-align: center;
}
.footDiv .share {
  float: right;
  margin-top: 0.9rem;
}
.footDiv .share li {
  float: left;
  margin-left: 0.32rem;
  position: relative;
}
.footDiv .share li a {
  display: block;
  position: relative;
  width: 0.46rem;
  height: 0.46rem;
  border: #898989 solid 1px;
  border-radius: 50%;
}
.footDiv .share li a:hover {
  background: #e50012;
  border: #e50012 solid 1px;
}
.footDiv .share li img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.16rem;
  margin-top: -0.16rem;
  width: 0.32rem;
}
.footDiv .share li .ewmLayer {
  position: absolute;
  text-align: center;
  left: 50%;
  margin-left: -0.7rem;
  top: -1.35rem;
  width: 1.4rem;
  padding-bottom: 3px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  z-index: 5;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.footDiv .share li .ewmLayer::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  background: #fff;
  transform: rotate(45deg);
}
.footDiv .share li .ewmLayer .imgDiv {
  padding: 0.1rem;
  background: #fff;
}
.footDiv .share li .ewmLayer .imgDiv img {
  position: relative;
  top: 0;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  width: 1.2rem;
}
.footDiv .share li:hover .ewmLayer {
  opacity: 1;
  filter: alpha(opacity=1);
  visibility: visible;
  top: -1.45rem;
}
.footDiv .botbot {
  margin-top: 0.5rem;
  position: relative;
}
.footDiv .copyright {
  font-size: var(--fs14);
  line-height: 0.28rem;
  color: #9a9a9a;
}
.footDiv .copyright a {
  color: #9a9a9a;
}
.footDiv .copyright a:hover {
  color: #e50012;
}
.footDiv .links {
  position: relative;
  left: -0.32rem;
  padding-bottom: 0.3rem;
  font-size: var(--fs14);
  color: #9a9a9a;
}
.footDiv .links a {
  color: #9a9a9a;
  padding: 0 0.32rem;
}
.footDiv .links a:hover {
  color: #e50012;
}
.footDiv .link2 {
  width: 2.88rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.footDiv .link2 .name {
  height: 0.46rem;
  line-height: 0.46rem;
  font-size: var(--fs14);
  color: #9a9a9a;
  border: rgba(255, 255, 255, 0.3) solid 1px;
  padding-left: 0.25rem;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}
.footDiv .link2 .name:after {
  content: '';
  position: absolute;
  right: 0.27rem;
  top: 50%;
  margin-top: -4px;
  width: 14px;
  height: 9px;
  background: url(/html/vancheer/cn/img/selectIco.png) center no-repeat;
}
.footDiv .link2 dl {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0.46rem;
  width: 100%;
  display: none;
  margin: 0;
}
.footDiv .link2 dd {
  margin-bottom: 1px;
}
.footDiv .link2 dd a {
  display: block;
  height: 0.44rem;
  line-height: 0.44rem;
  padding-left: 0.25rem;
  overflow: hidden;
  background: #202020;
  border: rgba(255, 255, 255, 0.3) solid 1px;
  color: #9a9a9a;
  font-size: var(--fs14);
  border-radius: 4px;
}
.footDiv .link2 dd a:hover {
  color: #e50012;
}
.footNav li {
  float: left;
  width: 1.9rem;
}
.footNav li:last-child {
  width: auto;
}
.footNav li h3 {
  margin-bottom: 0.45rem;
}
.footNav li h3 a {
  position: relative;
  display: block;
  height: 0.32rem;
  font-size: var(--fs18);
  line-height: 0.2rem;
  color: #fff;
  font-weight: bold;
}
.footNav li h3 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.2rem;
  height: 2px;
  background: #e50012;
}
.footNav li h3 a:hover {
  color: #e50012;
}
.footNav li dl {
  margin: 0;
}
.footNav li dd {
  font-size: var(--fs14);
}
.footNav li dd a {
  display: block;
  color: #9a9a9a;
  line-height: 0.3rem;
}
.footNav li dd a:hover {
  color: #e50012;
}
@media (max-width: 1004px) {
  .footNav {
    display: none;
  }
  .footDiv {
    padding: 0.8rem 0;
  }
  .footDiv .rightDiv {
    float: none;
  }
  .footDiv .zi {
    font-size: var(--fs14);
    margin-bottom: 0.1rem;
    line-height: 0.48rem;
    text-align: left;
  }
  .footDiv .tel {
    text-align: left;
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .footDiv .ewmList {
    float: none;
    padding-top: 0.3rem;
  }
  .footDiv .ewmList li {
    width: 2.2rem;
    margin-left: 0;
    margin-right: 0.3rem;
  }
  .footDiv .ewmList li p {
    margin-top: 0.2rem;
    line-height: 0.42rem;
  }
  .footDiv .share {
    float: none;
    margin-top: 0.45rem;
  }
  .footDiv .share li {
    margin-left: 0;
    margin-right: 0.3rem;
  }
  .footDiv .share li a {
    width: 0.86rem;
    height: 0.86rem;
  }
  .footDiv .share li img {
    margin-left: -0.21rem;
    margin-top: -0.21rem;
    width: 0.42rem;
  }
  .footDiv .share li .ewmLayer {
    left: 0;
    margin-left: 0;
    top: -2.15rem;
    width: 2.2rem;
  }
  .footDiv .share li .ewmLayer::after {
    left: 0.4rem;
    margin-left: 0;
  }
  .footDiv .share li .ewmLayer .imgDiv {
    padding: 0.2rem;
  }
  .footDiv .share li .ewmLayer .imgDiv img {
    width: 1.8rem;
  }
  .footDiv .share li:hover .ewmLayer {
    top: -2.25rem;
  }
  .footDiv .copyright {
    font-size: var(--fs13);
    line-height: 0.52rem;
  }
  .footDiv .links {
    left: -0.2rem;
    padding-bottom: 0.3rem;
    font-size: var(--fs13);
  }
  .footDiv .links a {
    padding: 0 0.2rem;
  }
}
.sidebar-box {
  position: fixed;
  width: 0.5rem;
  text-align: center;
  right: 0.2rem;
  top: 18%;
  z-index: 10;
}
.sidebar-box .online {
  background: #dc0313;
  border-radius: 0.48rem;
  padding: 0.14rem 0 0.2rem;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
}
.sidebar-box .online img {
  width: 0.35rem;
  margin: 0 auto 0.16rem;
  display: block;
}
.sidebar-box .online p {
  writing-mode: tb-rl;
  writing-mode: vertical-lr;
  font-size: var(--fs18);
  line-height: 0.5rem;
  color: #fff;
}
.sidebar-box .list {
  margin-top: 0.1rem;
}
.sidebar-box .list li {
  margin-bottom: 0.1rem;
  position: relative;
}
.sidebar-box .list li a {
  display: block;
  position: relative;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: rgba(255, 255, 255, 0.3) solid 1px;
  width: 0.5rem;
  height: 0.5rem;
}
.sidebar-box .list li a .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: -0.15rem;
  margin-top: -0.15rem;
  overflow: hidden;
}
.sidebar-box .list li a .icon::before,
.sidebar-box .list li a .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.48s ease;
  -webkit-transition: all 0.48s ease;
  -moz-transition: all 0.48s ease;
  -ms-transition: all 0.48s ease;
  -o-transition: all 0.48s ease;
}
.sidebar-box .list li a .icon::after {
  top: 100%;
}
.sidebar-box .list .tel a .icon::before {
  background: url(/html/vancheer/cn/img/nimg30_3on.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list .tel a .icon::after {
  background: url(/html/vancheer/cn/img/nimg30_3.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list .tel .hidebox {
  z-index: -1;
  position: absolute;
  top: 50%;
  right: calc(100% + 0.14rem);
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transform: translate(0.5rem, -50%);
  -webkit-transform: translate(0.5rem, -50%);
  opacity: 0;
  visibility: hidden;
  min-width: 2rem;
  line-height: 0.5rem;
  height: 0.5rem;
  padding: 0 0.2rem;
}
.sidebar-box .list .tel .hidebox::after {
  content: "";
  border: 6px solid transparent;
  border-left-color: #fff;
  position: absolute;
  right: -12px;
  top: 50%;
  margin-top: -6px;
}
.sidebar-box .list .tel .hidebox a {
  width: auto;
  background: #fff;
  height: 0.5rem;
  border-radius: 0;
  color: #e50012;
  font-family: "Poppins-L";
  white-space: nowrap;
  font-size: var(--fs22);
}
.sidebar-box .list .msg a .icon::before {
  background: url(/html/vancheer/cn/img/nimg30_4on.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list .msg a .icon::after {
  background: url(/html/vancheer/cn/img/nimg30_4.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list .work a .icon::before {
  background: url(/html/vancheer/cn/img/nimg30_5on.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list .work a .icon::after {
  background: url(/html/vancheer/cn/img/nimg30_5.png) no-repeat;
  background-size: 0.3rem;
}
.sidebar-box .list li:hover .hidebox {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.sidebar-box .list li:hover a {
  background: #fff;
  border: #fff solid 1px;
}
.sidebar-box .list li:hover a .icon::before {
  top: -100%;
}
.sidebar-box .list li:hover a .icon::after {
  top: 0;
}
.topA {
  display: none;
  position: fixed;
  z-index: 10;
  right: 0.2rem;
  bottom: 0.5rem;
}
.topA a {
  display: block;
  position: relative;
  border: rgba(255, 255, 255, 0.3) solid 1px;
  background: rgba(0, 0, 0, 0.3);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}
.topA a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -9px;
  width: 16px;
  height: 18px;
  background: url(/html/vancheer/cn/img/topAon.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;
}
.topA a:hover {
  border: #fff solid 1px;
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
.topA a:hover::after {
  background: url(/html/vancheer/cn/img/topA.png) no-repeat;
}
.topA2 {
  position: relative;
  right: 0;
  bottom: 0;
}
@media (max-width: 1004px) {
  .sidebar-box {
    width: 0.9rem;
  }
  .sidebar-box .online {
    padding: 0.24rem 0 0.28rem;
  }
  .sidebar-box .online img {
    width: 0.54rem;
    margin: 0 auto 0.16rem;
  }
  .sidebar-box .online p {
    font-size: var(--fs14);
    line-height: 0.9rem;
  }
  .sidebar-box .list li a {
    width: 0.9rem;
    height: 0.9rem;
  }
  .sidebar-box .list li a .icon {
    width: 0.4rem;
    height: 0.4rem;
    margin-left: -0.2rem;
    margin-top: -0.2rem;
  }
  .sidebar-box .list .tel a .icon::before {
    background-size: 0.4rem;
  }
  .sidebar-box .list .tel a .icon::after {
    background-size: 0.4rem;
  }
  .sidebar-box .list .tel .hidebox {
    min-width: 3rem;
    line-height: 0.9rem;
    height: 0.9rem;
    padding: 0 0.3rem;
  }
  .sidebar-box .list .tel .hidebox a {
    height: 0.9rem;
    font-size: var(--fs16);
  }
  .sidebar-box .list .msg a .icon::before {
    background-size: 0.4rem;
  }
  .sidebar-box .list .msg a .icon::after {
    background-size: 0.4rem;
  }
  .sidebar-box .list .work a .icon::before {
    background-size: 0.4rem;
  }
  .sidebar-box .list .work a .icon::after {
    background-size: 0.4rem;
  }
  .topA {
    right: 0.3rem;
    bottom: 0.4rem;
  }
  .topA a {
    width: 0.9rem;
    height: 0.9rem;
  }
  .topA a::after {
    margin-left: -7px;
    margin-top: -8px;
    width: 14px;
    height: 16px;
    background-size: 14px;
  }
  .topA a:hover::after {
    background-size: 14px;
  }
  .topA2 {
    right: 0;
    bottom: 0;
  }
}
.page-float {
  position: fixed;
  top: 50%;
  right: 0;
  width: 0.84rem;
  height: auto;
  z-index: 99;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.page-float .float-list {
  display: block;
  position: relative;
  width: 100%;
  height: 0.86rem;
  padding-top: 0.15rem;
  margin-bottom: 0.1rem;
  border-radius: 5px;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.page-float .float-list .list-pic {
  position: relative;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0 auto;
  cursor: pointer;
}
.page-float .float-list .list-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-float .float-list .list-pic .img2 {
  opacity: 0;
}
.page-float .float-list .list-title {
  margin-top: 0.1rem;
  font-size: 0.14rem;
  text-align: center;
  color: #333;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.page-float .float-list .list-cent {
  position: absolute;
  top: 0;
  left: -2.3rem;
  width: 2.3rem;
  height: auto;
  padding-right: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
}
.page-float .float-list .list-cent .cent-title {
  position: relative;
  width: 100%;
  height: 0.4rem;
  font-size: 0.16rem;
  text-align: center;
  line-height: 0.4rem;
  color: #fff;
  background: #e50012;
}
.page-float .float-list .list-cent .cent-title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-right: -16px;
  border: solid 8px #e50012;
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
.page-float .float-list .list-cent .cent-cont {
  padding: 0.2rem;
  font-size: 0.16rem;
  text-align: center;
  color: #333;
  background: #fff;
  box-shadow: 4px 10px 10px rgba(38, 93, 63, 0.2);
}
.page-float .float-list .list-cent .cent-cont img {
  width: 80%;
}
.page-float .float-list .list-tel {
  position: absolute;
  top: 0;
  right: 100%;
  width: auto;
  height: auto;
  padding-right: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
}
.page-float .float-list .list-tel p {
  font-family: 'Poppins-M';
  width: auto;
  height: 0.5rem;
  padding: 0 0.2rem;
  margin-bottom: 2px;
  padding-left: 0.15rem;
  font-size: var(--fs16);
  line-height: 0.5rem;
  color: #fff;
  background: #e50012;
  white-space: nowrap;
}
.page-float .float-list .list-lump {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: -2.5rem;
  width: 2.5rem;
  height: 100%;
  padding-right: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translatey(30px);
  -o-transform: translatey(30px);
  -moz-transform: translatey(30px);
  -webkit-transform: translatey(30px);
}
.page-float .float-list .list-lump a {
  width: auto;
  height: 0.5rem;
  padding: 0 0.1rem;
  margin-bottom: 0.1rem;
  font-size: var(--fs16);
  text-align: center;
  line-height: 0.5rem;
  border-radius: 0.05rem;
  background: #fff;
  box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.1);
}
.page-float .float-list .list-lump a:hover {
  color: #fff;
  background: #e50012;
}
.page-float .float-list:nth-child(1) .list-tel {
  left: -3.2rem;
  width: 3.2rem;
}
.page-float .float-list:hover {
  background: #e50012;
}
.page-float .float-list:hover .list-pic .img1 {
  opacity: 0;
}
.page-float .float-list:hover .list-pic .img2 {
  opacity: 1;
}
.page-float .float-list:hover .list-title {
  color: #fff;
}
.page-float .float-list:hover .list-cent,
.page-float .float-list:hover .list-tel,
.page-float .float-list:hover .list-lump {
  opacity: 1;
  visibility: visible;
  transform: translatey(0);
  -o-transform: translatey(0);
  -moz-transform: translatey(0);
  -webkit-transform: translatey(0);
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
@media (max-width: 1004px) {
  .page-float {
    width: 1.2rem;
  }
  .page-float .float-list {
    height: 1.2rem;
  }
  .page-float .float-list .list-pic {
    width: 0.48rem;
    height: 0.48rem;
  }
  .page-float .float-list .list-title {
    font-size: var(--fs13);
  }
  .page-float .float-list .list-tel p {
    height: 0.86rem;
    font-size: var(--fs15);
    line-height: 0.86rem;
  }
  .page-float .float-list .list-lump a {
    height: 0.86rem;
    padding: 0 0.2rem;
    font-size: var(--fs15);
    line-height: 0.86rem;
  }
}
.pageBanner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pageBanner::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;
}
.pageBanner .bg img,
.pageBanner .bg video {
  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;
}
.pageBanner .bg video {
  display: block;
}
.pageBanner .info {
  position: absolute;
  top: 0;
  height: 100%;
  text-align: center;
  left: 0;
  width: 100%;
  color: #fff;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.pageBanner .cn {
  margin: 0 0 0.2rem;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-weight: bold;
}
.pageBanner .zi {
  font-size: var(--fs36);
  line-height: 0.48rem;
}
.pageBanner .wen {
  padding-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #fff;
}
.pageBanner .hala {
  padding-top: 0.1rem;
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: #fff;
}
.pageBanner .videoDiv {
  display: none;
}
.pageBanner .playbox {
  cursor: pointer;
  margin: 0.3rem auto 0;
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  z-index: 1;
}
.pageBanner .playbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: #fff solid 1px;
  background: #000;
  border-radius: 50%;
  opacity: 0.05;
}
.pageBanner .playbox::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  margin-left: -42px;
  margin-top: -42px;
  border: #fff solid 1px;
  background: #000;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}
.pageBanner .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: 56px;
  height: 56px;
  margin-left: -28px;
  margin-top: -28px;
  background: #444341;
  border-radius: 50%;
}
.pageBanner .numList {
  padding-top: 1rem;
}
.pageBanner .numList ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.pageBanner .numList li {
  padding: 0 0.5rem;
}
.pageBanner .numList li .pj {
  height: 0.7rem;
}
.pageBanner .numList li .num {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.pageBanner .numList li .num p {
  font-size: var(--fs16);
  color: #fff;
  height: 0.62rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.pageBanner .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;
}
.pageBanner .numList li .num i {
  font-size: var(--fs48);
  color: #e50012;
  line-height: 0.62rem;
  padding-right: 0.1rem;
}
.pageBanner .numList li .numUp {
  font-family: 'Din-B';
  font-size: 0.8rem;
  line-height: 0.62rem;
  color: #e50012;
  padding-right: 0.15rem;
}
.pageBanner .links li {
  position: absolute;
  z-index: 1;
}
.pageBanner .links li:nth-child(1) {
  left: 22%;
  top: 56%;
}
.pageBanner .links li:nth-child(2) {
  left: 44%;
  top: 32%;
}
.pageBanner .links li:nth-child(3) {
  right: 15%;
  top: 38%;
}
.pageBanner .links li:nth-child(4) {
  left: 36.4%;
  top: 60%;
}
.pageBanner .links li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageBanner .links li .cname {
  width: 1.52rem;
  height: 0.5rem;
  line-height: 0.5rem;
  position: absolute;
  top: -0.6rem;
  color: #fff;
  background-color: rgba(177, 40, 42, 0.9);
  z-index: 9;
  text-align: center;
  font-size: var(--fs16);
  transition: 0.5s all;
  border-radius: 5px;
}
.pageBanner .links li .bj {
  width: 26px;
  height: 29px;
  background: url(/html/vancheer/cn/img/x-hd1.png) no-repeat center;
  background-size: contain;
  position: relative;
  z-index: 2;
}
.pageBanner .links li i {
  display: inline-block;
  position: absolute;
  top: 10px;
  flex: 0 0 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(177, 40, 42, 0.4);
  opacity: 0;
  animation: scalemap 4s linear infinite;
  -moz-animation: scalemap 4s linear infinite;
  -webkit-animation: scalemap 4s linear infinite;
  z-index: 1;
}
.pageBanner .links li i:nth-of-type(2) {
  animation: scalemap 4s linear 1.3s infinite;
  -moz-animation: scalemap 4s linear 1.3s infinite;
  -webkit-animation: scalemap 4s linear 1.3s infinite;
}
.pageBanner .links li i:nth-of-type(3) {
  animation: scalemap 4s linear 2.6s infinite;
  -moz-animation: scalemap 4s linear 2.6s infinite;
  -webkit-animation: scalemap 4s linear 2.6s infinite;
}
.pageBanner.animated .bg img,
.pageBanner.animated .bg video {
  transform: scale(1) translateZ(0);
  -o-transform: scale(1) translateZ(0);
  -moz-transform: scale(1) translateZ(0);
  -webkit-transform: scale(1) translateZ(0);
}
.pageBanner.on {
  padding-bottom: 0.7rem;
}
@media (max-width: 1004px) {
  .pageBanner::before {
    height: 1.2rem;
  }
  .pageBanner .bg {
    height: 5rem;
  }
  .pageBanner .bg img {
    height: 100%;
    object-fit: cover;
  }
  .pageBanner .cn {
    font-size: var(--fs22);
    line-height: 0.72rem;
  }
  .pageBanner .zi {
    font-size: var(--fs16);
    padding: 0 0.5rem;
    line-height: 0.52rem;
  }
  .pageBanner .wen {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0 0.3rem;
  }
  .pageBanner .hala {
    font-size: var(--fs14);
    line-height: 0.36rem;
  }
  .pageBanner .playbox {
    margin: 0.2rem auto 0;
    width: 1.6rem;
    height: 1.6rem;
  }
  .pageBanner .playbox::after {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
  }
  .pageBanner .playbox .ico {
    width: 0.9rem;
    height: 0.9rem;
    margin-left: -0.45rem;
    margin-top: -0.45rem;
  }
  .pageBanner .playbox .ico img {
    width: 0.6rem;
  }
  .pageBanner .numList {
    padding: 0.2rem 0.3rem 0;
  }
  .pageBanner .numList ul {
    display: block;
  }
  .pageBanner .numList li {
    float: left;
    width: 50%;
    padding: 0 0 0.3rem;
  }
  .pageBanner .numList li .pj {
    height: 0.7rem;
  }
  .pageBanner .numList li .num p {
    font-size: var(--fs13);
    height: 0.7rem;
  }
  .pageBanner .numList li .num span {
    width: 12px;
    height: 12px;
    background-size: 12px;
  }
  .pageBanner .numList li .num i {
    font-size: var(--fs28);
    line-height: 0.7rem;
  }
  .pageBanner .numList li .numUp {
    font-size: 0.8rem;
    line-height: 0.7rem;
    padding-right: 0.1rem;
  }
  .pageBanner .links li:nth-child(1) {
    left: 22%;
    top: 56%;
  }
  .pageBanner .links li:nth-child(2) {
    left: 44%;
    top: 32%;
  }
  .pageBanner .links li:nth-child(3) {
    right: 15%;
    top: 38%;
  }
  .pageBanner .links li:nth-child(4) {
    left: 36.4%;
    top: 60%;
  }
  .pageBanner .links li .cname {
    width: 2.1rem;
    height: 0.76rem;
    line-height: 0.76rem;
    top: -0.6rem;
    font-size: var(--fs13);
  }
  .pageBanner .links li .bj {
    display: none;
  }
  .pageBanner .links li i {
    display: none;
  }
  .pageBanner.on {
    padding-bottom: 0;
  }
}
.pageTop {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0.7rem;
  background: #fff;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.pageTop .rightDiv {
  position: absolute;
  top: 0;
  height: 0.7rem;
  right: 50%;
  margin-right: -7.68rem;
  padding-right: 1.5rem;
}
.pageTop .rightDiv .btnDiv {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.2rem;
}
.pageTop .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: 1rem;
  height: 0.4rem;
  border-radius: 4px;
  font-size: var(--fs14);
  color: #fff;
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
}
.pageTop2 {
  box-shadow: none;
}
.pageTop2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #ececec;
}
.pageTop3 {
  background: #f9f9f9;
  box-shadow: none;
}
.pageTop4 {
  box-shadow: none;
}
.pageTopNow {
  position: fixed;
  top: 0;
  z-index: 6;
  left: 0;
}
.pageNav ul {
  margin-bottom: 0;
}
.pageNav li {
  position: relative;
  z-index: 1;
  float: left;
  font-size: var(--fs16);
}
.pageNav li a {
  display: block;
  position: relative;
  min-width: 1.56rem;
  padding: 0 0.2rem;
  height: 0.7rem;
  line-height: 0.7rem;
  text-align: center;
  color: #333;
}
.pageNav li a:hover {
  color: #e50012;
}
.pageNav li .aNow {
  background-image: linear-gradient(90deg, #e60012 0%, #cd0714 100%);
  background-blend-mode: normal, normal;
  font-weight: bold;
  color: #fff !important;
}
.pageNow {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: absolute;
  right: 50%;
  margin-right: -7.68rem;
  top: 0;
  padding-left: 10px;
  background: url(/html/vancheer/cn/img/nimg10_1.png) left center no-repeat;
  font-size: var(--fs14);
  line-height: 0.7rem;
  z-index: 1;
}
.pageNow a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  padding-right: 23px;
  color: #999;
}
.pageNow a::after {
  content: '';
  width: 4px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  background: url(/html/vancheer/cn/img/ico3.png) center no-repeat;
}
.pageNow a:hover {
  color: #e50012;
}
.pageNow em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #e50012;
  position: relative;
  display: inline-block;
  padding-left: 13px;
  max-width: 2.9rem;
}
.pageNow2 {
  padding-left: 10px;
  background: url(/html/vancheer/cn/img/nimg10_1.png) left center no-repeat;
  font-size: var(--fs14);
  line-height: 0.7rem;
  z-index: 1;
}
.pageNow2 a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  padding-right: 23px;
  color: #999;
}
.pageNow2 a::after {
  content: '';
  width: 4px;
  height: 7px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  background: url(/html/vancheer/cn/img/ico3.png) center no-repeat;
}
.pageNow2 a:hover {
  color: #e50012;
}
.pageNow2 em {
  color: #e50012;
  position: relative;
  display: inline-block;
  padding-left: 13px;
}
.pageTitle {
  padding-bottom: 0.25rem;
  position: relative;
}
.pageTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.3rem;
  height: 3px;
  background: #e50012;
}
.pageTitle .en {
  background-image: -webkit-linear-gradient(top, #d0d0d1, #fff);
  background-image: linear-gradient(to bottom, #d0d0d1, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs48);
  line-height: 0.5rem;
  font-family: 'Mont-B';
  text-transform: uppercase;
}
.pageTitle .cn {
  font-size: var(--fs30);
  line-height: 0.3rem;
  margin: 0;
  font-weight: 400;
  color: #222;
  font-weight: bold;
}
@media (max-width: 1600px) {
  .pageNow {
    margin-right: -8rem;
  }
  .pageTop .rightDiv {
    margin-right: -8rem;
  }
}
@media (max-width: 1004px) {
  .pageTop {
    display: none;
  }
  .pageTitle {
    padding-bottom: 0.3rem;
  }
  .pageTitle::after {
    width: 0.45rem;
    height: 2px;
  }
  .pageTitle .en {
    font-size: var(--fs24);
    line-height: 0.72rem;
  }
  .pageTitle .cn {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
}
.pageNum {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
}
.pageNum a {
  position: relative;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  background: #fff;
  color: #4d4d4d;
  border: #d2d4d3 solid 1px;
  font-family: 'Poppins-L';
  margin: 0 8px;
  border-radius: 4px;
}
.pageNum a:hover {
  color: #fff;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3e22 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.pageNum .aNow {
  color: #fff;
  background-image: linear-gradient(90deg, #ee1d23 0%, #ef3e22 100%);
  background-blend-mode: normal, normal;
  border: none;
}
.pageNum .prev:before {
  content: '';
  position: absolute;
  width: 9px;
  height: 14px;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -7px;
  background: url(/html/vancheer/cn/img/prev.png) no-repeat;
}
.pageNum .prev:hover:before {
  background: url(/html/vancheer/cn/img/prevon.png) no-repeat;
}
.pageNum .next:before {
  content: '';
  position: absolute;
  width: 9px;
  height: 14px;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -7px;
  background: url(/html/vancheer/cn/img/next.png) no-repeat;
}
.pageNum .next:hover:before {
  background: url(/html/vancheer/cn/img/nexton.png) no-repeat;
}
.pageMore a {
  display: block;
  width: 100%;
  height: 1rem;
  background: #e50012;
  line-height: 1rem;
  text-align: center;
  font-size: var(--fs15);
  color: #fff;
}
@media (max-width: 1004px) {
  .pageNum {
    display: none;
  }
}
.sideBar {
  position: fixed;
  right: 10px;
  top: 50%;
  margin-top: -130px;
  z-index: 5;
  width: 125px;
  padding: 90px 0 0 16px;
}
.sideBar .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 125px;
  height: 101px;
  background: url(/html/vancheer/cn/img/nimg125Bg.png) no-repeat;
  background-size: 125px;
}
.sideBar .list {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 90px;
  overflow: hidden;
  background-image: linear-gradient(180deg, #f65802 0%, #ff802f 100%);
  background-blend-mode: normal, normal;
}
.sideBar .list li {
  height: 84px;
  cursor: pointer;
  background: url(/html/vancheer/cn/img/line1.png) center bottom no-repeat;
}
.sideBar .list li:last-child {
  background: none;
}
.sideBar .list li .lbox {
  padding-top: 15px;
}
.sideBar .list li .ico {
  text-align: center;
}
.sideBar .list li .zi {
  margin-top: 8px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.sideBar .list li a {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.sideBar .list li a:hover {
  background: #e85200;
}
@media (max-width: 1004px) {
  .sideBar {
    right: 0.1rem;
    margin-top: -1.85rem;
    width: 1.35rem;
    padding: 1rem 0 0 0;
  }
  .sideBar .bg {
    width: 1.35rem;
    height: 1.1rem;
    background-size: 1.35rem;
  }
  .sideBar .list {
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    width: 1.25rem;
  }
  .sideBar .list li {
    height: 1.3rem;
  }
  .sideBar .list li .lbox {
    padding-top: 0.15rem;
  }
  .sideBar .list li .ico img {
    width: 0.56rem;
  }
  .sideBar .list li .zi {
    margin-top: 0.1rem;
    font-size: var(--fs12);
  }
}
