.slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
@font-face {
  font-family: 'DIN';
  src: local('DIN-Medium'), url('DIN-MEDIUM.OTF');
}
header .pc-menu {
  opacity: 1;
  position: fixed;
  width: 100%;
  height: 70px;
  line-height: 70px;
  padding: 0 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  top: 0;
}
header .pc-menu .logo {
  display: flex;
}
header .pc-menu .menu-list {
  display: flex;
  column-gap: 0.6rem;
  align-items: center;
  height: 100%;
}
header .pc-menu .menu-list .menu-box-one {
  height: 100%;
  position: relative;
}
header .pc-menu .menu-list .menu-box-one:hover .secondary-menu {
  display: flex;
}
header .pc-menu .menu-list .pcAnimated {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.18rem;
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
  display: block;
}
header .pc-menu .menu-list .pcAnimated:hover {
  color: #ffffff;
}
header .pc-menu .menu-list .secondary-menu {
  width: max-content;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
header .pc-menu .menu-list .secondary-menu .secondary-a {
  line-height: 1;
  padding: 0.15rem;
}
header .pc-menu .menu-list .secondary-menu .secondary-a span {
  font-size: 0.16rem;
  color: #fff;
}
header .pc-menu .menu-list .secondary-menu .secondary-a:hover {
  background: #e60012;
}
header .pc-menu .menu-list .secondary-menu .secondary-a:hover span {
  color: #fff;
}
header .pc-menu .menu-list .search {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 0.36rem;
  min-height: 0.36rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .pc-menu .menu-list .search .search-img {
  background: url('../img/search.png') no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
}
header .pc-menu .menu-list .search:hover {
  background: #e60012;
}
header .pc-menu .menu-list .search:hover .search-img {
  background: url('../img/search-wh.png') no-repeat;
  width: 14px;
  height: 14px;
  background-size: cover;
}
header .pc-menu:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}
header .search-box {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 11;
}
header .search-box .search-inner {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerNews-box .search-box .search-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .search-box .search-inner #searchValue,
.innerNews-box .search-box .search-inner #searchValues {
  width: 30%;
  border-radius: 8px;
  font-size: 16px;
  padding: 0.2rem;
  outline: none;
  border: none;
  box-shadow: 0 10px 0.2rem rgba(0, 0, 0, 0.2);
}
header .search-box .search-inner .submit,
.innerNews-box .search-box .search-inner .submit {
  position: relative;
  left: 0.2rem;
  border: none;
  background-color: white;
  color: #212121;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  font-weight: 600;
  gap: 10px;
  border-radius: 8px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 0.2rem rgba(0, 0, 0, 0.2);
  cursor: pointer;
  overflow: hidden;
}
header .search-box .search-inner .submit span,
.innerNews-box .search-box .search-inner .submit span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
header .search-box .search-inner .submit svg,
.innerNews-box .search-box .search-inner .submit svg {
  fill: #e60012;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
header .search-box .search-inner .submit::before,
.innerNews-box .search-box .search-inner .submit::before {
  content: '';
  position: absolute;
  background-color: #e60012;
  width: 100%;
  height: 100%;
  left: 0%;
  bottom: 0%;
  transform: translate(-100%, 100%);
  border-radius: inherit;
}
header .search-box .search-inner .submit:hover::before,
.innerNews-box .search-box .search-inner .submit:hover::before {
  animation: shakeBack 0.6s forwards;
}
header .search-box .search-inner .submit:hover svg,
.innerNews-box .search-box .search-inner .submit:hover svg {
  fill: white;
  scale: 1.3;
}
header .search-box .search-inner .submit:active,
.innerNews-box .search-box .search-inner .submit:active {
  box-shadow: none;
}
@keyframes shakeBack {
  0% {
    transform: translate(-100%, 100%);
  }
  50% {
    transform: translate(20%, -20%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
header .search-box .search-inner .close {
  border: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4em;
  height: 4em;
  background: none;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}
header .search-box .search-inner .close .X {
  position: absolute;
  top: 50%;
  right: 25%;
  width: 2em;
  height: 1.5px;
  background-color: #fff;
  transition: width 0.5s;
  transform: rotate(45deg);
  z-index: 2;
}
header .search-box .search-inner .close .X:after {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s;
}
header .search-box .search-inner .close .Y {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 2em;
  height: 1.5px;
  background-color: #fff;
  transition: width 0.5s;
  transform: rotate(-45deg);
  z-index: 2;
}
header .search-box .search-inner .close .Y:after {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s;
  transform: rotate(0);
}
header .search-box .search-inner .close:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transition: all 0.5s;
  transform: translateY(100%);
}
header .search-box .search-inner .close:hover .X:after,
header .search-box .search-inner .close:hover .Y:after {
  background-color: #e60012;
  width: 100%;
}
header .search-box .search-inner .close:hover:after {
  transform: translateY(0);
}
header .wap-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: -100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 998;
  transition: all 0.25s ease-in-out;
  top: 0;
}
header .wap-menu .menu-box {
  width: 100%;
  height: 100%;
  display: flex;
  padding-top: 90px;
  padding-left: 20px;
  flex-direction: column;
  row-gap: 20px;
}
header .wap-menu .menu-box a {
  font-size: 18px;
  color: #fff;
  display: block;
}
header .wap-menu .menu-box a:hover {
  color: #e60012;
}
.headerActive:after {
  background-image: linear-gradient(180deg, #61748f, transparent);
}
.headerBlock:after {
  background-color: #1e1e1e;
}
.headerHoverClass {
  opacity: 1 !important;
  transition: opacity 0.5s ease-in-out;
}
.headerHoverClass:after {
  background-image: linear-gradient(
    180deg,
    #000000,
    rgba(0, 0, 0, 0.8)
  ) !important;
}
.secondaryColumn {
  width: 100%;
  display: flex;
  padding: 0 3.6rem;
  column-gap: 0.8rem;
}
.secondaryColumn a {
  font-size: 0.22rem;
  color: #999999;
  display: block;
  width: fit-content;
  position: relative;
}
.secondaryColumn a:hover {
  color: #e60012;
}
.secondaryColumn .secondaryColumnActive {
  color: #e60012;
}
.secondaryColumn .secondaryColumnActive:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: #e60012;
}
.innerPaging {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.innerPaging .pagingNum-boxs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.innerPaging a {
  display: block;
  width: 43px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 0.14rem;
  color: #aaaaaa;
}
.innerPaging a:hover {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
}
.innerPaging .pre {
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPaging .pre img {
  width: 8px;
  height: 15px;
}
.innerPaging .pre .img1 {
  display: block;
}
.innerPaging .pre .img2 {
  display: none;
}
.innerPaging .pre:hover .img1 {
  display: none;
}
.innerPaging .pre:hover .img2 {
  display: block;
}
.innerPaging .next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPaging .next img {
  width: 8px;
  height: 15px;
  transform: rotate(-180deg);
}
.innerPaging .next .img1 {
  display: block;
}
.innerPaging .next .img2 {
  display: none;
}
.innerPaging .next:hover .img1 {
  display: none;
}
.innerPaging .next:hover .img2 {
  display: block;
}
.innerPaging .pagingNumActive {
  background: #e60012;
  color: #fff;
  border-color: #e60012;
}
.innerBannerHeight {
  height: 6.6rem;
}
.active {
  color: #fff !important;
}
.indexTit {
  font-weight: 400;
  font-size: 0.48rem;
  color: #000000;
  line-height: normal;
}
.indexsubTit {
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  line-height: normal;
}
.indexSwiper {
  height: 100vh;
}
.indexSwiper .swiper-slide {
  overflow: hidden;
}
.indexSwiper .swiper-slide .playCompleteVideo {
  position: absolute;
  right: 2%;
  bottom: 3%;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s;
}
.indexSwiper .swiper-slide .playCompleteVideo:hover {
  color: #181818;
  background: #fff;
}
.indexSwiper .swiper-slide .banner-text {
  position: absolute;
  left: 1.6rem;
  top: 40%;
  height: 130px;
  color: #fbfdfe;
  line-height: 1.25;
  font-weight: 400;
  font-size: 0.48rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.indexSwiper .swiper-slide .banner-text span {
  display: block;
  letter-spacing: 10px;
  transform: translateY(300%);
  transition: all 0.8s;
}
.indexSwiper .swiper-slide .banner-text i {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  display: block;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 9px;
  transform: translateY(300%);
  transition: all 0.8s;
}
.indexSwiper .swiper-slide .bannerText-style span,
.indexSwiper .swiper-slide .bannerText-style i {
  transform: translateY(0);
}
.indexSwiper .bannerSwiper {
  height: 100%;
}
.indexSwiper .bannerSwiper .swiper-pagination {
  text-align: left;
  left: 1.6rem;
  bottom: 0.8rem;
}
.indexSwiper .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 1px;
  background: #ffffff;
  opacity: 1;
  margin: 0;
  margin-right: 0.12rem;
  cursor: pointer;
}
.indexSwiper .bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #e60012;
}
.mouse {
  position: absolute;
  bottom: 0.6rem;
  z-index: 5;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
}
.mouse .scrllo02 {
  display: flex;
  height: 0.25rem;
  width: 0.17rem;
  justify-content: center;
  border-radius: 40%;
  border: 2px solid #fff;
  padding: 6px 0;
}
.mouse .scrllo02 .scrllo {
  height: 6px;
  width: 3px;
  background: #fff;
  animation: 2s linear infinite Mosescrllo;
}
.mouse .scrlloTxt {
  color: #fff;
  font-size: 0.14rem;
  display: block;
  margin-top: 10px;
}
.CompleteVideo-box {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  justify-content: center;
  align-items: center;
}
.CompleteVideo-box .CompleteVideo-box-video {
  max-width: 65%;
  max-height: 65%;
  position: relative;
}
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose {
  position: absolute;
  right: -60px;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: all 0.4s;
}
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose:hover {
  background-color: #000;
}
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose:hover:after,
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose:hover:before {
  background: #f5f5f5;
}
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 30px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.4s;
}
.CompleteVideo-box .CompleteVideo-box-video .completeVideoClose:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 30px;
  background: #000;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.4s;
}
@keyframes Mosescrllo {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(0.06rem);
  }
}
video.u-img {
  object-position: center bottom;
}
.about {
  background: url('../img/about.jpg') no-repeat;
  background-position: center bottom;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.about-box {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0.7rem;
}
.about-box .abTit {
  color: #333;
  font-size: 0.48rem;
  font-weight: 400;
}
.about-box .abSubTit {
  color: #666;
  font-weight: 400;
  font-size: 0.16rem;
  padding-top: 0.5rem;
  line-height: 0.28rem;
}
.about-box .about-list {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 0.7rem;
  column-gap: 1.2rem;
}
.about-box .about-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  width: 1.8rem;
  height: 1.3rem;
}
.about-box .about-list li .icon {
  background: url('../img/icon01.png') no-repeat;
  width: 0.35rem;
  height: 0.34rem;
  min-height: 0.34rem;
  background-size: contain;
  transition: all 0.35s ease-in-out;
}
.about-box .about-list li .num {
  display: flex;
}
.about-box .about-list li .num .num1 {
  color: #333;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: normal;
  display: block;
  transition: all 0.35s ease-in-out;
  font-family: DIN;
}
.about-box .about-list li .num .num2 {
  display: block;
  margin-left: 0.17rem;
  font-size: 0.18rem;
  text-wrap: nowrap;
}
.about-box .about-list li .about-txt {
  color: #959595;
  font-size: 0.16rem;
  font-weight: 400;
  display: block;
}
.about-box .about-list li:nth-of-type(2) .icon {
  background: url('../img/icon02.png') no-repeat;
  width: 0.34rem;
  height: 0.32rem;
  min-height: 0.32rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(3) .icon {
  background: url('../img/icon03.png') no-repeat;
  width: 0.35rem;
  height: 0.3rem;
  min-height: 0.3rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(4) .icon {
  background: url('../img/icon04.png') no-repeat;
  width: 0.32rem;
  height: 0.32rem;
  min-height: 0.32rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(5) .icon {
  background: url('../img/icon05.png') no-repeat;
  width: 0.34rem;
  height: 0.36rem;
  min-height: 0.36rem;
  background-size: contain;
}
.about-box .about-list li:hover .icon {
  background: url('../img/icon01-1.png') no-repeat;
  width: 0.35rem;
  height: 0.34rem;
  background-size: contain;
}
.about-box .about-list li:hover .num .num1 {
  font-size: 0.6rem;
}
.about-box .about-list li:hover .num span {
  color: #e60012;
}
.about-box .about-list li:nth-of-type(2):hover .icon {
  background: url('../img/icon02-1.png') no-repeat;
  width: 0.34rem;
  height: 0.32rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(2):hover .num span {
  color: #e60012;
}
.about-box .about-list li:nth-of-type(3):hover .icon {
  background: url('../img/icon03-1.png') no-repeat;
  width: 0.35rem;
  height: 0.3rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(3):hover .num span {
  color: #e60012;
}
.about-box .about-list li:nth-of-type(4):hover .icon {
  background: url('../img/icon04-1.png') no-repeat;
  width: 0.32rem;
  height: 0.32rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(4):hover .num span {
  color: #e60012;
}
.about-box .about-list li:nth-of-type(5):hover .icon {
  background: url('../img/icon05-1.png') no-repeat;
  width: 0.34rem;
  height: 0.36rem;
  background-size: contain;
}
.about-box .about-list li:nth-of-type(5):hover .num span {
  color: #e60012;
}
.productSwiper {
  height: 100%;
}
.productSwiper .swiper-slide .product-txt {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.productSwiper .swiper-slide .product-txt .productTit {
  color: #fff;
  font-size: 0.48rem;
  line-height: normal;
}
.productSwiper .swiper-slide .product-txt .productsubTit {
  color: #f9f9f9f9;
  font-size: 16px;
  line-height: 1.625;
  margin-top: 0.5rem;
  width: 60%;
}
.productText {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 1.2rem;
  z-index: 10;
}
.productText .productTextgrid {
  padding: 0 1.8rem;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.productText .product-msg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  color: rgba(255, 255, 255, 0.65);
  height: 100%;
  cursor: pointer;
}
.productText .product-msg:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 0.28rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.25);
}
.productText .product-active {
  color: #ffffff;
}
.productText .product-msg::before,
.productText .product-active::before {
  width: 0%;
  content: '';
  height: 1px;
  background: #e60012;
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.5s;
}
.productText .product-active::before {
  width: 100%;
}
.productText .product-msg:hover::before {
  width: 100%;
}
.productText .scrollbar {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.25);
}
.innovate {
  background: url('../img/bgc01.png') no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 1rem 1.6rem;
}
.innovate .innovate-bigbox {
  width: 100%;
  height: 100%;
}
.innovate .innovate-bigbox .innovate-li {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.innovate .innovate-bigbox .innovate-li .indexsubTit {
  margin-top: 0.28rem;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul li {
  position: relative;
  cursor: pointer;
  font-size: 0.18rem;
  color: #161616;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul li:after {
  transition: all 0.3s;
  width: 0;
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  height: 1px;
  background: #e60012;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul li:hover:after {
  width: 100%;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul li:hover {
  color: #e60012;
}
.innovate .innovate-bigbox .innovate-li .innovate-box ul li.innovate-active {
  color: #e60012;
}
.innovate
  .innovate-bigbox
  .innovate-li
  .innovate-box
  ul
  li.innovate-active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: #e60012;
}
.innovate .innovate-bigbox .innovate-li .innovate-box .bar {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin-top: 0.17rem;
}
.innovate .innovate-bigbox .innovate-list {
  padding-top: 0.8rem;
  height: calc(100% - 1.1rem);
}
.innovate .innovate-bigbox .innovate-list .innovate-list-one {
  display: none;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.24rem;
}
.innovate .innovate-bigbox .innovate-list .car {
  grid-template-columns: repeat(4, 1fr);
}
.innovate .innovate-bigbox .innovate-list a {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.innovate .innovate-bigbox .innovate-list a img {
  transition: all 0.5s ease-in-out;
}
.innovate .innovate-bigbox .innovate-list a .mask {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.innovate .innovate-bigbox .innovate-list a .mask .tit {
  padding: 0.4rem;
  text-align: center;
  font-size: 0.2rem;
}
.innovate .innovate-bigbox .innovate-list a .mask .subTit {
  font-size: 0.16rem;
  opacity: 0.8;
  text-align: justify;
  position: relative;
  left: 0;
  z-index: 10;
  bottom: 0;
}
.innovate .innovate-bigbox .innovate-list a .subTit {
  transform: translateY(500%);
  transition: all 0.5s ease-in-out;
  background-image: linear-gradient(0deg, #000, transparent);
  padding: 0.4rem;
}
.innovate .innovate-bigbox .innovate-list a:hover img {
  transform: scale(1.15);
}
.innovate .innovate-bigbox .innovate-list a:hover .subTit {
  transform: translateY(0%);
}
.innovate .innovate-bigbox .innovate-list a:before {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 2px;
  background: #e60012;
  transition: all 0.5s ease-in-out;
}
.innovate .innovate-bigbox .innovate-list a:hover:before {
  width: 100%;
  z-index: 1;
}
.index-global-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .index-global-img img {
  object-fit: contain;
} */
.news {
  background: url('../img/newsbgc.png') no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 1rem 0 0 1.6rem;
}
.news .news-box {
  width: 100%;
}
.news .news-box .news-li {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-right: 1.6rem;
}
.news .news-box .news-li .indexsubTit {
  display: block;
  margin-top: 0.2rem;
  position: relative;
  width: fit-content;
  height: 0.4rem;
  line-height: 0.4rem;
  border: none;
  background: #999;
}
.news .news-box .news-li .btn-animate {
  background: transparent;
  padding: 0 0.1rem;
}
.news .news-box .news-li .btn-animate > svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.news .news-box .news-li .btn-animate > svg > rect {
  stroke-width: 2px;
  fill: transparent;
  stroke: #999;
  stroke-dasharray: 100 400;
  stroke-dashoffset: -200%;
  transition: 1s all ease;
}
.news .news-box .news-li .btn-animate:hover > svg > rect {
  stroke-dasharray: 50 0;
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke: #999;
}
.news .news-box .news-li .news-box-ul ul {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.news .news-box .news-li .news-box-ul ul li {
  position: relative;
  cursor: pointer;
  font-size: 0.18rem;
  color: #161616;
}
.news .news-box .news-li .news-box-ul ul li:after {
  transition: all 0.3s;
  width: 0;
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  height: 1px;
  background: #e60012;
}
.news .news-box .news-li .news-box-ul ul li:hover:after {
  width: 100%;
}
.news .news-box .news-li .news-box-ul ul li:hover {
  color: #e60012;
}
.news .news-box .news-li .news-box-ul ul li.innovate-active {
  color: #e60012;
}
.news .news-box .news-li .news-box-ul ul li.innovate-active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: #e60012;
}
.news .news-box .news-li .news-box-ul .bar {
  width: 100%;
  height: 1px;
  background: #d8d8d8;
  margin-top: 0.17rem;
}
.news .news-box .news-swiper-box {
  width: 100%;
  height: calc(100% - 2.1rem);
  margin-top: 1.2rem;
  display: none;
}
.news .news-box .news-swiper-box .news-swiper {
  width: 100%;
  height: 100%;
}
.news .news-box .news-swiper-box .news-swiper .swiper-slide {
  background-color: #fff;
  padding: 0.4rem 0.5rem;
  height: fit-content;
  height: 38vh;
  max-height: 18.23vw;
}
.news .news-box .news-swiper-box .news-swiper .swiper-slide .news-tit {
  font-weight: 400;
  font-size: 0.2rem;
  color: #333333;
  min-height: 0.52rem;
}
.news .news-box .news-swiper-box .news-swiper .swiper-slide .news-subtit {
  font-weight: 400;
  font-size: 0.14rem;
  color: #999999;
  margin-top: -0.5rem;
}
.news .news-box .news-swiper-box .news-swiper .swiper-slide .news-arr {
  background: url('../img/arr-aa.png') no-repeat;
  background-size: 7px 13px;
  width: 7px;
  height: 13px;
}
.news .news-box .news-swiper-box .news-swiper .swiper-slide:hover .news-arr {
  background: url('../img/arr-as.png') no-repeat;
  background-size: 7px 13px;
  width: 7px;
  height: 13px;
}
.news .news-box .news-swiper-box .scroll-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 1.3rem;
}
.news .news-box .news-swiper-box .scroll-box .swiper-pagination {
  display: block;
  width: calc(100% - 2.6rem);
  height: 1px;
  background: #d4d4d4;
  opacity: 0.6;
}
.news
  .news-box
  .news-swiper-box
  .scroll-box
  .swiper-pagination
  .swiper-pagination-progressbar-fill {
  background: #e60012;
}
.news .news-box .news-swiper-box .scroll-box .pageing {
  display: flex;
  align-items: center;
  position: absolute;
  right: 1.6rem;
}
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-prev,
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-next {
  display: block;
  cursor: pointer;
}
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-prev {
  background: url('../img/arr.png') no-repeat;
  width: 12px;
  height: 22px;
}
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-prev:hover {
  background: url('../img/arr-a.png') no-repeat;
  width: 12px;
  height: 22px;
  transform: rotate(180deg);
}
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-next {
  margin-left: 0.44rem;
  background: url('../img/arr.png') no-repeat;
  width: 12px;
  height: 22px;
  transform: rotate(180deg);
}
.news .news-box .news-swiper-box .scroll-box .pageing .swiper-next:hover {
  margin-left: 0.44rem;
  background: url('../img/arr-a.png') no-repeat;
  width: 12px;
  height: 22px;
  transform: rotate(0deg);
}
.news .news-box .information-swiper .news-swiper {
  padding-left: 0.3rem;
}
.news .news-box .information-swiper .news-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  padding: 0 0.5rem;
}
.news .news-box .information-swiper .news-swiper .swiper-slide .news-left {
  height: calc(100% - 0.5rem);
  position: absolute;
  left: -0.3rem;
  width: 60%;
  overflow: hidden;
}
.news .news-box .information-swiper .news-swiper .swiper-slide .news-left img {
  transition: all 0.5s ease-in-out;
}
.news .news-box .information-swiper .news-swiper .swiper-slide .news-right {
  width: 40%;
  padding-left: 0.2rem;
}
.news
  .news-box
  .information-swiper
  .news-swiper
  .swiper-slide
  .news-right
  .news-subtit {
  height: 0.76rem;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}
.news
  .news-box
  .information-swiper
  .news-swiper
  .swiper-slide:hover
  .news-left
  img {
  transform: scale(1.1);
}
.news
  .news-box
  .information-swiper
  .news-swiper
  .swiper-slide:hover
  .news-right
  .news-tit {
  color: #e60012;
}
.news .news-box .publicity-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s;
}
.news .news-box .publicity-swiper .swiper-slide:hover {
  transform: scale(0.98);
  box-shadow: 0 0 8px #d4d4d4;
}
.footer {
  width: 100%;
  padding: 0.56rem 1.6rem 0.25rem 1.6rem;
  height: auto;
  background: #1e1e1e;
}
.footer .footer-menu-box {
  display: flex;
  justify-content: space-between;
}
.footer .footer-menu-box .list-box {
  display: flex;
  color: #fff;
  width: 70%;
  justify-content: space-between;
}
.footer .footer-menu-box .list-box .list {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.footer .footer-menu-box .list-box .list .two-a {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.5;
  white-space: nowrap;
}
.footer .footer-menu-box .list-box .list .two-a:hover {
  opacity: 1;
}
.footer .footer-menu-box .list-box .list .footer-two-menu {
  margin-top: 0.1rem;
  display: none;
  flex-direction: column;
  row-gap: 0.1rem;
}
.footer .footer-menu-box .list-box .list .footer-two-menu .two-a {
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  opacity: 0.5;
  white-space: nowrap;
}
.footer .footer-menu-box .list-box .list .footer-two-menu .two-a:hover {
  opacity: 1;
}
.footer .footer-menu-box .list-box .list .firsta {
  font-weight: 400;
  font-size: 0.16rem;
  opacity: 1;
  color: #ffffff;
  margin-bottom: 0.1rem;
}
.footer .footer-menu-box .list-icon {
  display: flex;
  column-gap: 0.2rem;
}
.footer .footer-menu-box .list-icon li {
  position: relative;
  height: fit-content;
}
.footer .footer-menu-box .list-icon li .wx {
  width: 0.45rem;
  height: 0.45rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer .footer-menu-box .list-icon li .wx img {
  object-fit: contain;
}
.footer .footer-menu-box .list-icon li .code {
  display: none;
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background: #e60012;
}
.footer .footer-menu-box .list-icon li:hover .wx {
  background: #e60012;
  border-radius: 50%;
}
.footer .line {
  height: 1px;
  background: #ffffff;
  opacity: 0.15 !important;
  margin-top: 0.5rem;
}
.footer .copyright {
  font-weight: 400;
  font-size: 0.14rem;
  color: #ffffff;
  opacity: 0.2 !important;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
}
.footer .copyright a {
  color: #fff;
    display: flex;
    align-items: center;
}
.footer .index-footer {
  align-items: center;
}
.school-box {
  width: 100%;
}
.school-box .school {
  padding: 1.5rem 2.4rem;
  width: 100%;
  background: #f2f2f2;
}
.top {
  position: fixed;
  right: 3%;
  bottom: 3%;
  width: 50px;
  height: 50px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5) url('../img/arr-a.png') no-repeat;
  background-size: 15px cover;
  background-position: center;
  transform: rotate(-90deg);
  transition: all 0.35s;
  display: none;
  cursor: pointer;
}
.top:hover {
  background: #ffffff url('../img/arr-a.png') no-repeat;
  background-size: 15px cover;
  background-position: center;
  transform: rotate(-90deg);
}
.InnerPage {
  width: 100%;
}
.InnerPageTit {
  font-weight: 400;
  font-size: 0.48rem;
  color: #333333;
  line-height: normal;
  padding-top: 0.7rem;
}
.InnerPageSubTit {
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  line-height: normal;
  margin-top: 0.2rem;
}
.InnerPageBanner {
  width: 100%;
  height: 100vh;
}
.InnerPageBanner .banner-text {
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -37%);
  text-align: center;
  width: 100%;
  color: #ffffff;
}
.InnerPageBanner .banner-text h1 {
  font-weight: 400;
  font-size: 0.6rem;
  line-height: normal;
  margin-bottom: 0.3rem;
}
.InnerPageBanner .banner-text h6 {
  font-weight: 400;
  font-size: 0.18rem;
  line-height: normal;
}
.InnerPageTit-box {
  text-align: center;
}
.InnerPageCar {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.InnerPageCar .innerPageCar-swiper,
.InnerPageCar .Motorcycler-swiper,
.InnerPageCar .agriculture-swiper {
  width: 100%;
  height: 100vh;
  margin-top: 0.4rem;
}
.InnerPageCar .innerPageCar-swiper .swiper-slide img,
.InnerPageCar .Motorcycler-swiper .swiper-slide img,
.InnerPageCar .agriculture-swiper .swiper-slide img {
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
}
.InnerPageCar .innerPageCar-swiper .swiper-slide-active img,
.InnerPageCar .Motorcycler-swiper .swiper-slide-active img,
.InnerPageCar .agriculture-swiper .swiper-slide-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}
.InnerPageCar .innerPageCar-swiper .swiper-slide-active .inner-car-tit,
.InnerPageCar .Motorcycler-swiper .swiper-slide-active .inner-car-tit,
.InnerPageCar .agriculture-swiper .swiper-slide-active .inner-car-tit {
  opacity: 1;
}
.InnerPageCar .innerPageCar-swiper .inner-car-tit,
.InnerPageCar .Motorcycler-swiper .inner-car-tit,
.InnerPageCar .agriculture-swiper .inner-car-tit {
  font-weight: 400;
  font-size: 0.18rem;
  color: #ffffff;
  line-height: normal;
  position: absolute;
  left: 0;
  bottom: 1.7rem;
  z-index: 2;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  opacity: 0;
  transition: all 2s;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.InnerPageCar .innerPageCar-swiper .inner-car-tit .more,
.InnerPageCar .Motorcycler-swiper .inner-car-tit .more,
.InnerPageCar .agriculture-swiper .inner-car-tit .more {
  margin-left: 1%;
  display: block;
  padding: 8px 20px;
  border: 1px solid #fff;
  font-size: 12px;
  color: #fff;
  transition: all 0.35s;
}
.InnerPageCar .innerPageCar-swiper .inner-car-tit .more:hover,
.InnerPageCar .Motorcycler-swiper .inner-car-tit .more:hover,
.InnerPageCar .agriculture-swiper .inner-car-tit .more:hover {
  color: #fff;
  background-color: #e41f2f;
  border: 1px solid #e41f2f;
}
.InnerPageCar .innerPageCar-swiper .scrollActive,
.InnerPageCar .Motorcycler-swiper .scrollActive,
.InnerPageCar .agriculture-swiper .scrollActive {
  opacity: 1;
  transform: translateY(0%);
}
.InnerPageCar .innerPageCar-swiper .car-ul,
.InnerPageCar .Motorcycler-swiper .car-ul,
.InnerPageCar .agriculture-swiper .car-ul {
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  bottom: 0;
  width: 100%;
  height: 1.2rem;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 1;
  /* column-gap: 1.1rem; */
  font-weight: 400;
  font-size: 0.2rem;
  color: #fbfdfe;
  line-height: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li,
.InnerPageCar .agriculture-swiper .car-ul .car-li {
  position: relative;
  width: fit-content;
  height: 100%;
  min-width: 1.8rem;
  padding: 0 0.8rem;
  text-align: center;
  opacity: 0.8;
  cursor: pointer;
  color: #fbfdfe;
  display: flex;
  align-items: center;
  justify-content: center;
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li:hover:after,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li:hover:after,
.InnerPageCar .agriculture-swiper .car-ul .car-li:hover:after {
  left: 0%;
  width: 100%;
  background: #e60012;
  transition: all 6s;
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li:after,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li:after,
.InnerPageCar .agriculture-swiper .car-ul .car-li:after {
  content: '';
  position: absolute;
  top: -1px;
  height: 2px;
  width: 0;
  background: #e60012;
  left: 0;
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li::before,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li::before,
.InnerPageCar .agriculture-swiper .car-ul .car-li::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 0.28rem;
  width: 1px;
  background: rgba(153, 153, 153, 0.8);
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li:last-child:before,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li:last-child:before,
.InnerPageCar .agriculture-swiper .car-ul .car-li:last-child:before {
  display: none;
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li-active,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li-active,
.InnerPageCar .agriculture-swiper .car-ul .car-li-active {
  opacity: 1;
}
.InnerPageCar .innerPageCar-swiper .car-ul .car-li-active:after,
.InnerPageCar .Motorcycler-swiper .car-ul .car-li-active:after,
.InnerPageCar .agriculture-swiper .car-ul .car-li-active:after {
  position: absolute;
  content: '';
  top: -1px;
  left: 0%;
  width: 100%;
  height: 2px;
  transition: all 6s;
}

.InnerPageCar .InnerPageSubTit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.InnerPageCar .InnerPageSubTit .more {
  margin-left: 1%;
  display: block;
  padding: 8px 20px;
  border: 1px solid #999;
  font-size: 12px;
  color: #999;
  transition: all 0.35s;
}
.InnerPageCar .InnerPageSubTit .more:hover {
  color: #fff;
  background-color: #e41f2f;
  border: 1px solid #e41f2f;
}
.InnerPageMotorcycle {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.InnerPageMotorcycle .Motorcycler-swiper {
  width: 100%;
  height: 100%;
  flex: 1;
  margin-top: 0.4rem;
}
/* .InnerPageMotorcycle .Motorcycler-swiper .swiper-slide {
  transform: scale(0.8);
  transition: all 1s 0.5s;
} */
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .videoMask {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.2);
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .playVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .pausedVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.25);
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .pausedVideo img {
  object-fit: contain;
  height: 0.4rem;
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .inner-motorcycler-tit {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: normal;
  width: 100%;
  padding: 0 5%;
  text-align: center;
}
.InnerPageMotorcycle
  .Motorcycler-swiper
  .swiper-slide
  .inner-motorcycler-tit.hidden {
  display: none;
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  transition: background 1s ease-in 0.5s;
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide-active {
  transform: scale(1);
}
.InnerPageMotorcycle .Motorcycler-swiper .swiper-slide-active:after {
  transition: background 1s ease-in 0.5s;
  background: rgba(255, 255, 255, 0);
}
.InnerPageMotorcycle .Motorcycler-swiper .Motorcycler-left {
  background: url('../img/arr.png') no-repeat;
  width: 22px;
  height: 22px;
  background-size: cover 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  z-index: 1;
  transform: rotate(0deg);
  cursor: pointer;
  user-select: none;
}
.InnerPageMotorcycle .Motorcycler-swiper .Motorcycler-left:hover {
  background: url('../img/arr-a.png') no-repeat;
  transform: rotate(-180deg);
  background-position: right;
}
.InnerPageMotorcycle .Motorcycler-swiper .Motorcycler-right {
  background: url('../img/arr.png') no-repeat;
  width: 22px;
  height: 22px;
  background-size: cover 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  z-index: 1;
  transform: rotate(-180deg);
  cursor: pointer;
  user-select: none;
}
.InnerPageMotorcycle .Motorcycler-swiper .Motorcycler-right:hover {
  background: url('../img/arr-a.png') no-repeat;
  transform: rotate(0deg);
  background-position: right;
}
.InnerPageMotorcycle .InnerPageSubTit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.InnerPageMotorcycle .InnerPageSubTit .more {
  margin-left: 1%;
  display: block;
  padding: 8px 20px;
  border: 1px solid #999;
  font-size: 12px;
  color: #999;
  transition: all 0.35s;
}
.InnerPageMotorcycle .InnerPageSubTit .more:hover {
  color: #fff;
  background-color: #e41f2f;
  border: 1px solid #e41f2f;
}
.SmartTravel {
  width: 100%;
  background: #f5f5f5;
}
.SmartTravel .SmartTravel-list {
  padding: 0.4rem 1.6rem 0.8rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.14rem;
  flex-wrap: wrap;
}
.SmartTravel .SmartTravel-list a {
  /* height: 65vh; */
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.SmartTravel .SmartTravel-list a img {
  transition: all 0.5s;
}
.SmartTravel .SmartTravel-list a .SmartTravel-tit {
  width: 100%;
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  font-size: 0.2rem;
  color: #ffffff;
  padding: 0 10px;
  text-align: center;
  transition: all 0.35s;
}
.SmartTravel .SmartTravel-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #e60012;
  transition: all 0.8s;
}
.SmartTravel .SmartTravel-list a:hover {
  box-shadow: 0 7px 21px 0 rgba(0, 0, 0, 0.5);
}
.SmartTravel .SmartTravel-list a:hover img {
  transform: scale(1.1);
}
.SmartTravel .SmartTravel-list a:hover .SmartTravel-tit {
  font-size: 0.22rem;
  font-weight: 700;
}
.SmartTravel .SmartTravel-list a:hover:after {
  width: 100%;
}
.finance {
  width: 100%;
  height: auto;
}
.finance .finance-box {
  display: flex;
  column-gap: 0.14rem;
  margin-top: 0.4rem;
  position: relative;
  height: 6rem;
}
.finance .finance-box .finance-box-b {
  position: relative;
  width: 50%;
  display: block;
}
.finance .finance-box .finance-box-b .finance-ttt {
  height: 100%;
}
.finance .finance-box .finance-box-b .finance-msg {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  color: #ffffff;
  padding: 0 1.6rem 0.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}
.finance .finance-box .finance-box-b .finance-msg .t {
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  margin-bottom: 0.1rem;
}
.finance .finance-box .finance-box-b .finance-msg .s {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  opacity: 0.6;
}
.finance .finance-box .finance-box-b .lease-w-box {
  width: 100vw;
  height: 100%;
  padding: 0 1.6rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.finance .finance-box .finance-box-b .lease-w-box .lease-swiper,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper01,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper02,
.finance .finance-box .finance-box-b .lease-w-box .finance-swiper {
  height: 80%;
  max-height: 100%;
  width: 100%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.finance .finance-box .finance-box-b .lease-w-box .lease-swiper .swiper-slide,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper01 .swiper-slide,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 .swiper-slide,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .finance-swiper
  .swiper-slide {
  overflow: hidden;
}
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .lease-swiper
  .swiper-slide:hover
  img,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper01
  .swiper-slide:hover
  img,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper02
  .swiper-slide:hover
  img,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .finance-swiper
  .swiper-slide:hover
  img {
  transform: scale(1.1);
}
.finance .finance-box .finance-box-b .lease-w-box .lease-swiper img,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper01 img,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 img,
.finance .finance-box .finance-box-b .lease-w-box .finance-swiper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: all 0.5s ease-in-out;
}
.finance .finance-box .finance-box-b .lease-w-box .lease-swiper .lease-box,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper01 .lease-box,
.finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 .lease-box,
.finance .finance-box .finance-box-b .lease-w-box .finance-swiper .lease-box {
  position: absolute;
  top: 55%;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(0deg, #000000, transparent);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .lease-swiper
  .lease-box
  .lease-tit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper01
  .lease-box
  .lease-tit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper02
  .lease-box
  .lease-tit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .finance-swiper
  .lease-box
  .lease-tit {
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .lease-swiper
  .lease-box
  .lease-subTit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper01
  .lease-box
  .lease-subTit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .sport-swiper02
  .lease-box
  .lease-subTit,
.finance
  .finance-box
  .finance-box-b
  .lease-w-box
  .finance-swiper
  .lease-box
  .lease-subTit {
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
  opacity: 0.6;
}
.finance .finance-box .finance-box-b:last-child .lease-w-box {
  left: -0.7%;
  transform: translate(-50%, -50%);
}
.sport {
  background: url('../img/sport02.jpg') no-repeat;
  height: 8.3rem;
  background-size: cover;
  margin-top: 0.14rem;
  display: none;
  background-position: center;
}
.sport .InnerPageTit {
  padding-top: 0.8rem;
  color: #fff;
}
.sport .InnerPageSubTit {
  line-height: 30px;
  color: #fff;
}
h4 {
  font-weight: 400;
  font-size: 0.48rem;
  color: #333333;
  text-align: center;
  margin: 0.9rem 0;
}
.group-shiyuan {
  width: 100%;
  padding: 0 1.6rem;
  padding-top: 1.8rem;
  display: flex;
  gap: 0.6rem;
  background: #fcfcfc;
}
.group-shiyuan h4 {
  text-align: left;
  margin: 0;
}
.group-shiyuan .subline {
  font-weight: 400;
  font-size: 0.24rem;
  color: #666666;
  margin-top: 0.2rem;
}
.group-shiyuan .shiyuan-detail {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
}
.group-shiyuan .shiyuan-img {
  width: 50%;
}
.group-beidou {
  width: 100%;
  padding: 0.8rem 1.6rem;
  background-color: #f1f1f1;
}
.group-beidou h4 {
  margin: 0;
  text-align: left;
}
.group-beidou .beidou-box {
  margin-top: 0.9rem;
  display: flex;
  position: relative;
  overflow: hidden;
}
.group-beidou .beidou-box img {
  object-fit: contain;
  transform: translateX(120%) scale(1.2);
}
.group-beidou .beidou-box .right-box {
  padding-left: 1.2rem;
  transform: translateX(150%);
}
.group-beidou .beidou-box .right-box .source {
  line-height: 0.38rem;
}
.group-beidou .beidou-box .right-box .source .beidou-tit {
  font-size: 0.3rem;
  color: #333333;
  display: block;
  margin-bottom: 0.4rem;
}
.group-beidou .beidou-box .right-box .source p {
  font-size: 0.16rem;
  color: #666666;
  display: flex;
  align-items: baseline;
}
.group-beidou .beidou-box .right-box .source p span {
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: #666666;
  border-radius: 50%;
  margin-right: 0.2rem;
}
.group-beidou .beidou-box .right-box .interpretation {
  margin-top: 0.7rem;
}
.group-philosophy {
  width: 100%;
}
.group-philosophy .philosophy {
  height: 6.6rem;
  padding: 0 1.6rem;
  position: relative;
}
.group-philosophy .philosophy-box {
  margin-bottom: 1.2rem;
  height: 100%;
}
.group-philosophy .philosophy-box .swiper-slide {
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.group-philosophy .philosophy-box .swiper-slide .philosophy-msg {
  position: absolute;
  bottom: 0.4rem;
  font-size: 0.2rem;
  color: #ffffff;
  padding: 0 10px;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.group-philosophy .philosophy-box .swiper-slide img {
  transition: all 0.5s ease-in-out;
}
.group-philosophy .philosophy-box .swiper-slide:hover img {
  transform: scale(1.1);
}
.pop-up {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: n-resize;
}
.pop-up .environment {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  /* background: #f1f1f1; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px) brightness(90%);
  background-color: rgba(255, 255, 255, 0.6);
  /* border-top-right-radius: 10px; */
  /* border-top-left-radius: 10px; */
}
.pop-up .environment .title {
  font-size: 0.3rem;
  color: #333333;
}
.pop-up .environment .subline {
  margin-top: 0.4rem;
  font-size: 0.16rem;
  color: #666666;
  color: #333;
  line-height: 1.8;
  max-height: 50%;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
.group-sing {
  background: url(../img/sing.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 1.6rem;
}
.group-sing h4 {
  color: #fff;
  margin-bottom: 0;
  padding-top: 0.7rem;
  padding-bottom: 0.3rem;
}
.group-sing .sing-box {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}
.group-sing .sing-box .left-sing {
  border-radius: 0.15rem;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.group-sing .sing-box .left-sing:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.group-sing .sing-box .left-sing .sing-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
  width: 0.8rem;
  height: 0.8rem;
}
.group-sing .sing-box .lyric {
  text-align: center;
  height: 100%;
  width: 100%;
  font-weight: 400;
  font-size: 0.16rem;
  color: #e5e5e5;
  line-height: 0.3rem;
  opacity: 0.8;
  max-height: 70vh;
  overflow: hidden;
  scrollbar-width: none;
  overflow-y: scroll;
  padding-bottom: 0.7rem;
}
.group-sing .sing-box .lyric .words {
  font-size: 0.2rem;
  color: #ffffff;
  margin-bottom: 0.1rem;
  opacity: 1;
}
.group-sing .sing-box .lyric::-webkit-scrollbar {
  display: none;
}
.group-community {
  margin-bottom: 5px;
}
.group-community h4 {
  margin-bottom: 0.6rem;
}
.group-community .group-community-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.group-community .group-community-box .subline {
  width: 60%;
  font-size: 0.16rem;
  color: #666666;
  line-height: 30px;
  text-align: center;
}
.group-community .group-community-box .more {
  margin-top: 0.5rem;
  width: 2rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  background: rgba(230, 0, 18, 0);
  border: 1px solid rgba(153, 153, 153, 0.3);
  font-size: 0.14rem;
  color: #999999;
  opacity: 0.7;
  display: block;
}
.group-community .group-community-box .more:hover {
  color: #e60012;
  border: 1px solid #e60012;
}
.group-community .atlas {
  margin-top: 0.7rem;
  gap: 5px;
  display: flex;
  flex-direction: column;
  height: 7.4rem;
}
.group-community .atlas .atlas-top {
  height: 62%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  overflow: hidden;
}
.group-community .atlas .atlas-top .atlas-top-one {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 5px;
}
.group-community .atlas .atlas-top .atlas-top-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.group-community .atlas .atlas-bottom {
  overflow: hidden;
  height: 38%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.entering-about {
  width: 100%;
  padding: 0 1.6rem;
}
.entering-about .entering-about-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}
.entering-about .entering-about-box .entering-about-msg {
  width: 50%;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
}
.entering-about .entering-about-box .entering-about-msg p {
  text-indent: 2em;
}
.entering-about .entering-about-box .entering-about-img {
  width: 50%;
}
.entering-MissionVision {
  height: 8.6rem;
  width: 100%;
  position: relative;
}
.entering-MissionVision p {
  display: block;
  width: 100%;
  height: 100%;
}
.entering-MissionVision .entering-MissionVision-text-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.entering-MissionVision .entering-MissionVision-text-box h4 {
  color: #fff;
  margin-bottom: 0;
}
.entering-MissionVision .entering-MissionVision-text-box h5 {
  margin-top: 0.2rem;
  font-weight: 400;
  color: #fff;
  font-size: 0.2rem;
}
.entering-culture {
  width: 100%;
  padding: 0 20.5%;
  display: none;
}
.entering-culture h4 {
  margin-bottom: 0.6rem;
}
.entering-culture .culture-msg {
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: center;
}
.entering-culture .culture-button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
}
.entering-culture .culture-button .sub {
  cursor: pointer;
  text-align: center;
  width: 2rem;
  border: 1px solid #999999;
  padding: 0.2rem 0.3rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #999999;
  opacity: 0.7;
  transition: all 0.35s;
}
.entering-culture .culture-button .sub:hover {
  color: #fff;
  border: 1px solid #e60012;
  background: #e60012;
  opacity: 1;
}
.entering-honor {
  background: url('../img/honor-bgc.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  /* height: 7.6rem; */
  padding: 0.8rem 1.6rem;
  display: none;
}
.entering-honor h4 {
  margin: 0;
  padding-bottom: 0.1rem;
}
.entering-honor .subline {
  font-size: 0.16rem;
  color: #999999;
  text-align: center;
}
.entering-honor .honor-swiper {
  margin-top: 1.2rem;
  /* height: 3.5rem; */
  padding-bottom: 5%;
  cursor: grab;
}
.entering-honor .honor-swiper .swiper-slide {
  user-select: none;
  max-height: 30vh;
  overflow: hidden;
  scrollbar-width: none;
  overflow-y: scroll;
}
.entering-honor .honor-swiper .swiper-slide .year {
  font-size: 0.22rem;
  color: #585858;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.entering-honor .honor-swiper .swiper-slide .info {
  font-size: 0.16rem;
  color: #848484;
  line-height: 2.1;
}
.entering-honor .honor-swiper .swiper-slide::-webkit-scrollbar {
  display: none;
}
.entering-honor .honor-swiper .swiper-pagination-progressbar {
  bottom: 0;
  height: 2px;
  background: #c4c4c4;
  opacity: 0.5;
  top: auto;
}
.entering-honor
  .honor-swiper
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #e60012;
}
.entering-brand {
  padding: 0 1.6rem;
  margin-bottom: 0.7rem;
}
.entering-brand .brand-box {
  padding-top: 1%;
  display: flex;
  position: relative;
  display: none;
}
.entering-brand .brand-box .brand-swiper {
  width: 92%;
  user-select: none;
}
.entering-brand .brand-box .brand-swiper .swiper-slide:first-child .img-box {
  height: 1.2rem;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  position: relative;
  gap: 20%;
}
.entering-brand .brand-box .brand-swiper .swiper-slide .img-box {
  height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20%;
}
.entering-brand
  .brand-box
  .brand-swiper
  .swiper-slide:first-child
  .img-box
  .brand-img {
  width: 33.333%;
  text-align: center;
}
.entering-brand .brand-box .brand-swiper .swiper-slide .img-box .mot {
  width: 50%;
}
.entering-brand .brand-box .brand-swiper .swiper-slide p {
  font-size: 0.22rem;
  color: #666666;
  text-align: center;
  margin-top: 0.9rem;
  opacity: 0;
  transition: opacity 1s;
}
.entering-brand .brand-box .brand-swiper .swiper-slide-active p {
  transition: opacity 1s;
  opacity: 1;
}
.entering-brand .brand-box .brand-button-prev {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  background: url('../img/arr.png') no-repeat;
  width: 0.12rem;
  height: 0.22rem;
  background-size: contain;
  cursor: pointer;
}
.entering-brand .brand-box .brand-button-prev:hover {
  background: url('../img/arr-a.png') no-repeat;
  transform: translateY(-30%) rotate(-180deg);
}
.entering-brand .brand-box .brand-button-next {
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-30%);
  background: url('../img/arr.png') no-repeat;
  background-size: contain;
  cursor: pointer;
  transform: rotate(180deg);
  width: 0.12rem;
  height: 0.22rem;
}
.entering-brand .brand-box .brand-button-next:hover {
  background: url('../img/arr-a.png') no-repeat;
  transform: rotate(0deg);
}
.join-box .secondaryColumnWhite {
  background: #fff;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.join-box .secondaryColumnWhite a {
  font-size: 0.22rem;
  display: block;
  padding: 0.4rem;
  color: #999999;
  height: 100%;
}
.join-box .secondaryColumnWhite a:hover {
  color: #fff;
  background: #e60012;
}
.join-box .secondaryColumnWhite .secondaryColumnWhite-active {
  color: #fff;
  background: #e60012;
}
.join-box .item {
  width: 100%;
  height: 100vh;
  position: relative;
}
.join-box .item p {
  height: 100%;
  width: 100%;
}
.join-box .item p img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.join-box .item .strategy-banner-text {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.join-box .item .strategy-banner-text .talent {
  font-weight: 400;
  font-size: 0.24rem;
  color: #ffffff;
}
.join-box .item .strategy-banner-text .complementary {
  margin-top: 0.1rem;
  font-weight: 400;
  font-size: 0.6rem;
  color: #ffffff;
}
.join-box .item .strategy-banner-text .subline {
  margin-top: 0.9rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #e4e4e4;
  line-height: 0.36rem;
}
.join-box .item:nth-child(even) .strategy-banner-text {
  right: 1.6rem;
  left: auto;
}
.join-box .recruit-box {
  width: 100%;
  position: relative;
}
.join-box .recruit-box .recruit-msg {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
.join-box .recruit-box .recruit-msg .join-xy {
  font-size: 0.48rem;
  color: #ffffff;
}
.join-box .recruit-box .recruit-msg .join-text {
  font-size: 0.16rem;
  color: #ffffff;
  margin-top: 0.1rem;
}
.join-box .SocialRecruitment {
  width: 100%;
  background-color: #f2f2f2;
  padding: 0.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.join-box .SocialRecruitment h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}
.join-box .SocialRecruitment .recruit-select-box {
  width: 60%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
}
.join-box .SocialRecruitment .recruit-select-box .recruit-select {
  appearance: none;
  width: 100%;
  padding: 16px 30px;
  background-color: #ffffff;
  border-radius: 25px;
  border: 1px solid #e6e8eb;
  font-size: 18px;
  color: #c1c1c1;
}
.join-box .SocialRecruitment .recruit-select-box .select-icon {
  position: absolute;
  right: 30px;
  transform: rotate(-90deg);
}
.join-box .SocialRecruitment .recruit-list {
  width: 100%;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
.join-box .SocialRecruitment .recruit-list a {
  display: block;
  padding: 0.25rem 0.2rem;
  background-color: #fff;
  transition: all 0.4s;
}
.join-box .SocialRecruitment .recruit-list a .recruit-name-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.join-box .SocialRecruitment .recruit-list a .recruit-name-box .recruit-name {
  font-size: 0.24rem;
  color: #333333;
}
.join-box .SocialRecruitment .recruit-list a .recruit-name-box .recruit-money {
  font-size: 0.24rem;
  color: #e60012;
}
.join-box .SocialRecruitment .recruit-list a .life {
  font-size: 0.18rem;
  color: #a5a5a5;
  margin: 0.2rem 0;
}
.join-box .SocialRecruitment .recruit-list a .welfare {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.join-box .SocialRecruitment .recruit-list a .welfare .welfare-item {
  padding: 0.08rem;
  background: #f2f2f2;
  font-size: 0.16rem;
  color: #999999;
}
.join-box .SocialRecruitment .recruit-list a .line {
  margin-top: 0.2rem;
  height: 1px;
  background: #d8dcdc;
  opacity: 0.3;
}
.join-box .SocialRecruitment .recruit-list a .user-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.2rem;
}
.join-box .SocialRecruitment .recruit-list a .user-box .user {
  display: flex;
  align-items: center;
}
.join-box .SocialRecruitment .recruit-list a .user-box .user img {
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #b3d2ff;
}
.join-box .SocialRecruitment .recruit-list a .user-box .user .phone-box {
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
}
.join-box .SocialRecruitment .recruit-list a .user-box .user .phone-box .title {
  font-size: 0.2rem;
  color: #6d6d6d;
}
.join-box .SocialRecruitment .recruit-list a .user-box .user .phone-box .phone {
  font-size: 0.16rem;
  color: #aaadad;
  margin-top: 0.05rem;
}
.join-box .SocialRecruitment .recruit-list a .user-box .date {
  font-size: 0.16rem;
  color: #aaadad;
}
.join-box .SocialRecruitment .recruit-list a:hover {
  border-radius: 0.1rem;
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.2);
}
.join-box .SocialRecruitment .innerPaging {
  margin-top: 0.8rem;
}
.contact-box {
  width: 100%;
}
.contact-box .contact {
  width: 100%;
  padding: 0 1.6rem;
}
.contact-box .contact .map-box {
  width: 100%;
  display: flex;
  /*height: 7.2rem;*/
}
.contact-box .contact .map-box .map {
  width: 60%;
}
.contact-box .contact .map-box .address-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
  overflow-y: scroll;
}
.contact-box .contact .map-box .address-info .address {
  cursor: pointer;
}
.contact-box .contact .map-box .address-info .address .address-tit {
  font-size: 0.2rem;
  color: #666666;
  background: rgba(241, 241, 241, 0.4);
  padding: 0.2rem 0.4rem;
}
.contact-box .contact .map-box .address-info .address .address-msg {
  display: none;
  padding: 0.5rem 0.4rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #818181;
  line-height: 0.44rem;
}
.contact-box .contact .map-box .address-info .addressActive .address-tit {
  background: #e60012;
  color: #fff;
}
.contact-box .contact .map-box .address-info::-webkit-scrollbar {
  display: none;
}
.contact-box .message {
  height: 7.6rem;
  background: url('../img/message.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0.9rem;
}
.contact-box .message h4 {
  font-weight: 400;
  font-size: 0.48rem;
  color: #333333;
  text-align: center;
  padding-top: 0.9rem;
}
.contact-box .message .message-box {
  width: 100%;
  padding: 0 3rem;
}
.contact-box .message .message-box .message-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.contact-box .message .message-box .message-top .one {
  display: flex;
  flex-direction: column;
}
.contact-box .message .message-box .message-top .one .name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-box .message .message-box .message-top .one .name .txt {
  display: flex;
  font-size: 0.16rem;
  color: #333333;
}
.contact-box .message .message-box .message-top .one .name .txt i {
  font-style: normal;
  color: #e41f2f;
}
.contact-box .message .message-box .message-top .one .name img {
  object-fit: contain;
}
.contact-box .message .message-box .message-top .one input {
  margin-top: 0.2rem;
  padding: 0.2rem 0.3rem;
  background: #fff;
  font-size: 14px;
  color: #757575;
  border: none;
  outline: none;
}
.contact-box .message .message-box .textarea {
  margin-top: 0.5rem;
  grid-template-columns: repeat(1, 1fr);
}
.contact-box .message .message-box .textarea textarea {
  margin-top: 0.2rem;
  width: 100%;
  height: 1.6rem;
  padding: 0.2rem 0.3rem;
  font-size: 14px;
  color: #757575;
  line-height: 0.24rem;
  resize: none;
  border: none;
}
.contact-box .message .sub {
  background: #e60012;
  font-size: 0.14rem;
  color: #ffffff;
  border: none;
  padding: 0.2rem 0.77rem;
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
}
.innerNews-box {
  width: 100%;
  background: #f5f6fa;
  padding-top: 1.6rem;
}
.innerNews-box .box-big {
  padding: 0 3.6rem;
}
.innerNews-box h4 {
  text-align: left;
}
.innerNews-box .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding-top: 0.9rem;
}
.innerNews-box .news-list a {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
}
.innerNews-box .news-list a .img-box {
  width: 100%;
  height: 3.3rem;
  overflow: hidden;
}
.innerNews-box .news-list a .img-box img {
  transition: all 0.5s ease-in-out;
}
.innerNews-box .news-list a .news-list-tit {
  font-size: 0.2rem;
  color: #333333;
  padding: 0 0.3rem;
  padding-top: 0.26rem;
}
.innerNews-box .news-list a .timer {
  margin-top: 0.2rem;
  font-size: 0.14rem;
  color: #999999;
  padding: 0 0.3rem;
  padding-bottom: 0.15rem;
}
.innerNews-box .news-list a:hover .img-box img {
  transform: scale(1.1);
}
.innerNews-box .news-publicwelfare-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  padding-top: 0.6rem;
}
.innerNews-box .news-publicwelfare-list a {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0.3rem;
  transition: all 0.35s;
}
.innerNews-box .news-publicwelfare-list a .welfareTime-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-right: 0.3rem;
}
.innerNews-box .news-publicwelfare-list a .welfareTime-box .day {
  font-size: 0.3rem;
  color: #999999;
}
.innerNews-box .news-publicwelfare-list a .welfareTime-box .yearMoth {
  display: block;
  font-size: 0.14rem;
  color: #999999;
}
.innerNews-box .news-publicwelfare-list a .welfareTime-box:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background: #e6e6e6;
}
.innerNews-box .news-publicwelfare-list a .welfare-info {
  padding-left: 0.3rem;
}
.innerNews-box .news-publicwelfare-list a .welfare-info .tit {
  font-size: 0.2rem;
  color: #333333;
}
.innerNews-box .news-publicwelfare-list a .welfare-info .subtit {
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #666666;
}
.innerNews-box .news-publicwelfare-list a:hover {
  background: #e60012;
}
.innerNews-box .news-publicwelfare-list a:hover .welfareTime-box .day,
.innerNews-box .news-publicwelfare-list a:hover .welfare-info .day,
.innerNews-box .news-publicwelfare-list a:hover .welfareTime-box .yearMoth,
.innerNews-box .news-publicwelfare-list a:hover .welfare-info .yearMoth,
.innerNews-box .news-publicwelfare-list a:hover .welfareTime-box .tit,
.innerNews-box .news-publicwelfare-list a:hover .welfare-info .tit,
.innerNews-box .news-publicwelfare-list a:hover .welfareTime-box .subtit,
.innerNews-box .news-publicwelfare-list a:hover .welfare-info .subtit {
  color: #fff;
}
.innerNews-box .innerPaging {
  padding: 0.75rem 0;
}
.innerNews-box .innerPaging a {
  background: #fff;
}
.innerNews-box .innerPaging a:hover {
  background: #e60012;
}
.innerNews-box .innerPaging .pagingNumActive {
  background: #e60012;
}
.innerNews-box .innerPaging .prev,
.innerNews-box .innerPaging .next {
  background: #fff;
  border: 1px solid #ddd;
  color: #aaaaaa;
}
.innerNews-box .innerPaging .prev:hover,
.innerNews-box .innerPaging .next:hover {
  color: #fff;
}
.publicwelfare {
  padding-top: 0.8rem;
}
.community {
  padding: 0;
  background-color: #fff;
}
.community h4 {
  margin: 0;
  padding: 0.9rem 0;
}
.community .community-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.6rem;
}
.community .community-box .community-ul {
  display: flex;
  scrollbar-width: none;
  align-items: center;
  gap: 0.8rem;
}
.community .community-box .community-ul li {
  position: relative;

  cursor: pointer;
  width: fit-content;
  padding-bottom: 0.2rem;
}
.community .community-box .community-ul li a {
  font-size: 0.22rem;
  color: #333;
}
.community .community-box .community-ul li:hover a {
  color: #e60012;
}
.community .community-box .community-ul .communityActive a {
  color: #e60012;
}
.community .community-box .community-ul .communityActive:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e60012;
}
.community .community-box .community-ul::-webkit-scrollbar {
  display: none;
}
.community .is-show-community-list {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0;
}
.community .is-show-community-list a {
  background: #f5f5f5;
}
.community .is-show-community-list a .img-box {
  height: 23vh;
}
.detail-box {
  width: 100%;
  padding: 1rem 3rem 0.7rem 3rem;
  display: flex;
}
.detail-box .detail-info {
  width: 79%;
  padding-right: 1rem;
}
.detail-box .detail-info .location {
  color: #bebebe;
}
.detail-box .detail-info .location a {
  font-size: 0.14rem;
  color: #bebebe;
}
.detail-box .detail-info .location a:hover {
  color: #e60012;
}
.detail-box .detail-info .detail-tit {
  font-size: 0.38rem;
  color: #333333;
  margin-top: 0.66rem;
}
.detail-box .detail-info .detail-time {
  font-size: 0.14rem;
  color: #a7a7a7;
  margin: 0.25rem 0;
}
.detail-box .detail-info .detail {
  border-top: 1px solid #d8d8d8;
  padding-top: 0.4rem;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.32rem;
}
.detail-box .detail-info .detail img {
  /* width: 100%; */
  margin: 0.2rem 0;
  height: auto;
  max-width: 100%;
}
.detail-box .detail-info .download {
  margin-top: 0.5rem;
}
.detail-box .detail-info .download .download-tit {
  font-size: 0.2rem;
  color: #333333;
  margin-bottom: 0.1rem;
}
.detail-box .detail-info .download a {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.36rem;
}
.detail-box .detail-info .download a .download-name {
  color: #007eff;
}
.detail-box .detail-info .detail-paging {
  width: 100%;
  display: flex;
  margin-top: 0.6rem;
  border-top: 1px solid #d8d8d8;
  column-gap: 0.74rem;
  justify-content: space-between;
}
.detail-box .detail-info .detail-paging .prve,
.detail-box .detail-info .detail-paging .next {
  display: flex;
  align-items: center;
  padding-top: 0.56rem;
  transition: all 0.3s;
  max-width: 50%;
  width: 50%;
}
.detail-box .detail-info .detail-paging .prve .black,
.detail-box .detail-info .detail-paging .next .black {
  padding-right: 0.1rem;
}
.detail-box .detail-info .detail-paging .prve .white,
.detail-box .detail-info .detail-paging .next .white {
  display: none;
  padding-right: 0.1rem;
}
.detail-box .detail-info .detail-paging .prve .prve-tit,
.detail-box .detail-info .detail-paging .next .prve-tit {
  font-size: 0.16rem;
  color: #666666;
  position: relative;
}
.detail-box .detail-info .detail-paging .prve:hover .white,
.detail-box .detail-info .detail-paging .next:hover .white {
  display: block;
  transform: rotate(0);
}
.detail-box .detail-info .detail-paging .prve:hover .black,
.detail-box .detail-info .detail-paging .next:hover .black {
  display: none;
}
.detail-box .detail-info .detail-paging .prve:hover .prve-tit,
.detail-box .detail-info .detail-paging .next:hover .prve-tit {
  color: #e60012;
}
.detail-box .detail-info .detail-paging .next {
  flex-direction: row-reverse;
}
.detail-box .detail-info .detail-paging .next .black {
  transform: rotate(180deg);
}
.detail-box .detail-info .detail-paging .next .prve-tit {
  padding-left: 0;
}
.detail-box .detail-info .detail-paging .next:hover .white {
  transform: rotate(180deg);
}
.detail-box .recommend-list {
  width: 21%;
  padding: 0.66rem 0 0 0;
}
.detail-box .recommend-list .recommend-tit {
  font-size: 0.28rem;
  color: #333333;
  margin-bottom: 0.3rem;
}
.detail-box .recommend-list a {
  display: block;
  margin-bottom: 0.4rem;
}
.detail-box .recommend-list a .hot-img {
  width: 100%;
  height: 19vh;
  min-width: 274px;
}
.detail-box .recommend-list a .hot-box {
  width: 100%;
  padding: 0.25rem 0.2rem 0 0.2rem;
}
.detail-box .more-announcements a .hot-box {
  padding: 0;
}
.detail-box .more-announcements a .hot-box .tit {
  transition: all 0.35s;
}
.detail-box .more-announcements a:hover .hot-box .tit {
  font-weight: 700;
  /* -webkit-line-clamp: 20; */
}
.detail-box .recommend-list a .hot-box .tit {
  font-size: 0.18rem;
  color: #333333;
}
.detail-box .recommend-list a .hot-box .time {
  margin-top: 0.2rem;
  font-size: 0.12rem;
  color: #9e9e9e;
}
.new-four {
  width: 100%;
  padding-top: 0.8rem;
}
.new-four .new-four-current-title-box {
  text-align: center;
  margin: 0.8rem 0;
}
.new-four .new-four-current-title-box .new-four-current-title {
  font-size: 0.48rem;
  color: #000000;
}
.new-four .new-four-current-title-box .new-four-current-secondary-title {
  font-size: 0.16rem;
  color: #999999;
  margin-top: 0.2rem;
}
.new-four .module .module-img-box {
  position: relative;
}
.new-four .module .module-img-box .module-box {
  position: absolute;
  width: 100%;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.new-four .module .module-img-box .module-box .title {
  font-size: 0.36rem;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.new-four .module .module-img-box .module-box .subline-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  column-gap: 0.4rem;
}
.new-four .module .module-img-box .module-box .subline-box li {
  width: fit-content;
  display: flex;
  align-items: center;
}
.new-four .module .module-img-box .module-box .subline-box li .t {
  font-size: 0.2rem;
  color: #ffffff;
  font-weight: bold;
  margin-right: 0.1rem;
}
.new-four .module .module-img-box .module-box .subline-box li .subline {
  font-size: 0.16rem;
  /* margin-top: 0.1rem; */
  color: #dfdfdf;
  line-height: 1;
}
.new-four .module .module-img-box .system-swiper .swiper-slide .introduce {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  transform: translateX(-50%);
  /*width: 100%;*/
  line-height: 2;
  display: flex;
  column-gap: 0.8rem;
}
.new-four .module .module-img-box .system-swiper .swiper-slide .introduce li {
  display: flex;
  /* flex-direction: column; */
  row-gap: 0.1rem;
  align-items: center;
  color: #ffffff;
}
.new-four .module .module-img-box .system-swiper .swiper-slide .introduce li b {
  font-size: 0.2rem;
  font-weight: 700;
  margin-right: 0.1rem;
  white-space: nowrap;
}
.new-four
  .module
  .module-img-box
  .system-swiper
  .swiper-slide
  .introduce
  li
  span {
  font-size: 0.16rem;
  white-space: nowrap;
}
.new-four .module .module-img-box .system-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.2rem;
  /* gap: 1.1rem; */
}
.new-four .module .module-img-box .system-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.new-four .module .module-img-box .system-box li {
  position: relative;
  padding: 0 0.8rem;
  cursor: pointer;
  font-size: 0.2rem;
  opacity: 0.8;
  color: #fbfdfe;
  height: 100%;
  line-height: 1.2rem;
  /* border-top: 1px solid rgba(255, 255, 255, 0.5); */
}
.new-four .module .module-img-box .system-box li:after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 0.28rem;
  top: 50%;
  transform: translateY(-50%);
  /* margin-top: 0.1rem; */
  background: rgba(255, 255, 255, 0.25);
}
.new-four .module .module-img-box .system-box li:last-child::after {
  width: 0;
}
.new-four .module .module-img-box .system-box li:hover {
  opacity: 1;
}
.new-four .module .module-img-box .system-box .system-active {
  position: relative;
  opacity: 1;
}
.new-four .module .module-img-box .system-box .system-active:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 1px;
  margin: 0;
  opacity: 1;
  transition: all 0.35s;
  background: #e60012;
}
.new-four .module .module-img-box .globalization-swiper {
  width: 100%;
  height: 6.6rem;
  padding: 0 1.6rem;
  padding-bottom: 0.9rem;
}
.new-four .module .module-img-box .globalization-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.new-four
  .module
  .module-img-box
  .globalization-swiper
  .swiper-slide
  .slide-text {
  position: absolute;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.2rem;
  color: #ffffff;
  z-index: 10;
}
.new-four .module .module-img-box .globalization-swiper .swiper-slide:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.new-four .module .module-img-box .globalization-swiper .swiper-slide img {
  transition: all 0.4s;
}
.new-four
  .module
  .module-img-box
  .globalization-swiper
  .swiper-slide:hover
  img {
  transform: scale(1.1);
}
.technology-title {
  font-weight: 400;
  font-size: 0.48rem;
  color: #333333;
  margin-top: 0.9rem;
  text-align: center;
}
.strength {
  padding: 0 1.6rem;
}
.strength .more {
  margin: 0 auto;
  margin-top: 0.5rem;
  display: block;
  width: 2rem;
  padding: 0.2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.14rem;
  color: #fff;
  opacity: 0.5;
  text-align: center;
}
.strength .more:hover {
  opacity: 1;
  color: #e60012;
  border-color: #e60012;
}
.strength .strength-list {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.strength .strength-list li {
  height: 5.6rem;
  background: #eaf2f7;
  box-shadow: 0 0 0.35rem 0 rgba(255, 255, 255, 0.2);
  border-radius: 0.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strength .strength-list li img {
  width: 0.84rem;
  height: 0.84rem;
  margin-top: 0.4rem;
}
.strength .strength-list li .t {
  font-size: 0.3rem;
  color: #333;
  margin-top: 0.25rem;
}
.strength .strength-list li .line {
  width: 30px;
  height: 3px;
  min-height: 3px;
  background: #333;
  margin-top: 0.3rem;
}
.strength .strength-list li .li-p {
  text-align: center;
  font-size: 0.2rem;
  color: #6c6d6f;
  line-height: 2;
  opacity: 0.9;
  max-height: fit-content;
  padding: 0 2px;
  overflow: hidden;
  scrollbar-width: none;
  overflow-y: scroll;
}
.strength .strength-list li .li-p::-webkit-scrollbar {
  display: none;
}
.strength .strength-list li .li-p .n {
  font-family: DIN;
  font-size: 0.62rem;
  color: #515252;
}
.strength .strength-list li .li-p b {
  color: #333;
}
.strength .strength-list li .odd {
  margin-top: 0.2rem;
}
.swiper-slide.inner-text {
  color: #fff;
  font-size: 0.2rem;
  color: #fbfdfe;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}
.swiper-slide.inner-text:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 0.28rem;
  background: rgba(255, 255, 255, 0.25);
}
.swiper-slide:last-child:after {
  display: none;
}
.swiper-slide.inner-text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e60012;
  width: 0%;
  transition: all 0.8s;
}
.swiper-slide.inner-text:hover {
  opacity: 1;
}

.swiper-slide.inner-text:hover:before {
  width: 100%;
}
.swiper-slide-thumb-active.inner-text {
  opacity: 1;
}

.swiper-slide-thumb-active.inner-text:before {
  width: 100%;
  opacity: 1;
}
.swiper-outer-box {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.2rem;
  width: 100%;
  z-index: 1;
  padding: 0 12%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.car-new-four {
  padding: 0;
  height: 10.8rem;
  margin-top: 0.7rem;
  position: relative;
}
.car-new-four .new-four-swiper-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.car-new-four .new-four-swiper-box .car-swiper02 {
  height: 100%;
}
.car-new-four .new-four-swiper-box .car-swiper01 {
  height: 100%;
  width: 100%;
}
.car-new-four .car-new-box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}
.car-new-four .car-new-box .technology-title {
  color: white;
}
.motorcycleRD-t {
  padding: 7vh 0;
  width: 100%;
  text-align: center;
}
.motorcycleRD-t .title {
  font-size: 0.48rem;
  color: #000;
  line-height: 1;
}
.motorcycleRD-t .sub-title {
  margin-top: 0.3rem;
  padding: 0 20px;
  font-size: 0.16rem;
  color: #999;
  line-height: 1;
}
.motorcycleRD {
  padding: 0;
  margin-bottom: 0.8rem;
}
.motorcycleRD .motorcycleRD-b {
  width: 100%;
}
.agricultural {
  width: 100%;
  height: 72vh;
  padding: 0 1.6rem;
}
.agricultural .agricultural-swiper {
  height: 100%;
}
.agricultural .agricultural-swiper .slide-text-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
  font-size: 0.2rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0.4rem;
}
.agricultural .agricultural-swiper .swiper-slide {
  overflow: hidden;
  cursor: pointer;
}
.agricultural .agricultural-swiper .swiper-slide img {
  transition: all 0.5s;
}
.agricultural .agricultural-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}
.vehicle {
  padding: 0;
}
.vehicle .vehicle-box {
  width: 100%;
  height: 8.7rem;
  position: relative;
}

.vehicle .vehicle-box .vehicle-swiper02,
.vehicle .vehicle-box .process-swiper02 {
  width: 100%;
  height: 100%;
}
.vehicle .vehicle-box .vehicle-swiper01,
.vehicle .vehicle-box .process-swiper01 {
  height: 100%;
  width: 100%;
}
.earth-box {
  margin-top: 0.9rem;
}
/* 新增  */
.entering-history-img-box h4 {
  margin: 0;
  padding: 0.9rem 0;
  margin-top: 0.9rem;
  background: #fcfcfc;
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .index-global-img img {
    scale: 0.8;
  }
  .swiper-outer-box {
    padding: 0 6%;
  }
  .school-box .school {
    padding: 1.2rem;
  }
  header .pc-menu {
    padding: 0 0.4rem;
  }
  .about-box {
    padding-top: 0.3rem;
  }
  .about-box .abSubTit {
    padding-top: 0.3rem;
  }
  .about-box .about-list {
    padding-top: 0.5rem;
    column-gap: 0.6rem;
  }
  .about-box .about-list li {
    height: 1.1rem;
  }
  .productSwiper .swiper-slide .product-txt {
    top: 0.5rem;
  }
  .productSwiper .swiper-slide .product-txt .productsubTit {
    margin-top: 0.3rem;
    width: 85%;
  }
  .innovate {
    padding: 1% 4%;
  }
  .innovate .innovate-bigbox .innovate-list {
    padding-top: 0.8rem;
  }
  .innovate .innovate-bigbox .innovate-list a .mask .tit,
  .innovate .innovate-bigbox .innovate-list a .mask .subTit {
    padding: 0.2rem;
  }
  .news {
    padding: 1% 4%;
  }
  .news .news-box .news-swiper-box {
    margin-top: 0.6rem;
  }
  .news .news-box .news-swiper-box .news-swiper .swiper-slide .news-subtit {
    margin-top: 0;
  }
  .news .news-box .news-li {
    padding-right: 0;
  }
  .news .news-box .information-swiper .news-swiper,
  .news .news-box .news-swiper-box .news-swiper {
    height: 50vh;
  }
  .news .news-box .information-swiper .news-swiper .swiper-slide,
  .news .news-box .news-swiper-box .news-swiper .swiper-slide {
    max-height: none;
    /* height: 100%; */
  }
  .news .news-box .information-swiper .news-swiper .swiper-slide .news-right {
    padding: 0;
  }

  .finance .finance-box .finance-box-b .lease-w-box {
    padding: 0 4%;
  }
  .footer {
    padding: 0.56rem 4% 0.25rem 4%;
  }
  h4 {
    margin: 0.5rem 0;
  }
  .secondaryColumn {
    padding: 0 0.8rem;
    column-gap: 0.4rem;
  }
  .contact-box .contact {
    padding: 0 0.8rem;
  }
  .contact-box .contact .map-box {
    height: 5rem;
  }
  .contact-box .message .message-box {
    padding: 0 0.8rem;
  }
  .contact-box .message h4 {
    padding: 0.5rem 0;
  }
  .innerNews-box .box-big,
  .innerNews-box .secondaryColumn {
    padding: 0 0.8rem;
  }
  .innerNews-box .news-list {
    gap: 50px;
  }
  .innerNews-box .news-list a .img-box {
    height: 4rem;
  }
  .innerNews-box .is-show-community-list a .img-box {
    height: 23vh;
    height: 250px;
  }
  .community h4 {
    padding: 0.5rem 0;
  }
  .community .community-box {
    padding: 0 0.8rem;
  }
  .community .community-box .community-ul {
    gap: 0.5rem;
  }
  .community .community-box .community-ul li {
    padding: 0.3rem;
  }
  .join-box .item .strategy-banner-text .subline {
    margin-top: 0.5rem;
  }
  .join-box .SocialRecruitment {
    padding: 0.5rem 0.8rem 0.6rem 0.8rem;
  }
  .join-box .SocialRecruitment h4 {
    margin: 0;
    margin-bottom: 0.3rem;
  }
  .detail-box {
    padding: 1rem 0.8rem 0.4rem 0.8rem;
  }
  .detail-box .detail-info .detail-tit {
    margin-top: 0.33rem;
  }
  .detail-box .detail-info .detail {
    padding-top: 0.3rem;
  }
  .detail-box .recommend-list {
    padding: 0.4rem 0 0 0;
  }
  .detail-box .recommend-list a .hot-img {
    height: auto;
  }
  .earth-box {
    margin: 0;
  }

  .SmartTravel .SmartTravel-list {
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 0.1rem;
    padding: 0.4rem 0.8rem 0.8rem 0.8rem;
  }
  .entering-about,
  #about_1 .r_center,
  .entering-brand,
  .group-shiyuan,
  .philosophy {
    padding: 0 0.8rem !important;
  }
  .group-shiyuan {
    padding-top: 1.8rem !important;
  }
  .group-beidou,
  .entering-honor,
  #strengthCenter {
    padding: 0.8rem;
  }
  .productText .productTextgrid {
    padding: 0 0.5rem;
  }
  .detail-box .detail-info {
    width: 65%;
    margin-right: 0.5rem;
  }
  .detail-box .recommend-list {
    width: 35%;
  }
  .SmartTravel .SmartTravel-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media screen and (max-width: 1200px) {
  .index-global-img img {
    width: 100%;
  }
  .productText {
    bottom: 60px;
  }
  .swiper-outer-box {
    padding: 0 3%;
    position: static;
  }
  .detail-box .detail-info .detail img {
    width: 100%;
  }
  .school-box {
    width: 100%;
  }
  .school-box .school {
    padding: 1.5rem 20px;
    width: 100%;
  }
  .school-box .school img {
    width: 100%;
    height: 100%;
  }
  h4 {
    font-size: 24px;
    margin: 30px 0;
  }
  .technology-title {
    font-size: 24px;
    margin-top: 30px;
  }
  .secondaryColumn {
    padding: 0 0.5rem;
  }
  .swiper-slide.inner-text {
    font-size: 14px;
    padding: 15px;
  }
  .innerNews-box .box-big {
    padding: 0 0.5rem;
  }
  .innerNews-box .news-list {
    gap: 0.3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-box {
    padding: 0.2rem 0.5rem 0.8rem 0.5rem;
  }
  .join-box .SocialRecruitment {
    padding: 0.5rem;
  }
  .contact-box .contact {
    padding: 0 20px;
  }
  .contact-box .contact .map-box {
    flex-direction: column;
    height: auto;
  }
  .contact-box .contact .map-box .map {
    height: 40vh;
    width: 100%;
  }
  .contact-box .contact .map-box .address-info {
    width: 100%;
  }
  .contact-box .contact h4 {
    margin: 0.5rem 0;
  }
  .contact-box .message .message-box {
    padding: 0 0.8rem;
  }
  .contact-box .message h4 {
    padding: 0.5rem 0;
    margin: 0;
  }
  .contact-box .message .sub {
    margin-top: 0.9rem;
  }
  .community h4 {
    padding: 0.5rem 0;
  }
  .community .community-box {
    padding: 0 0.8rem;
  }
  .community .community-box .community-ul li {
    padding: 10px;
  }
  .entering-about .entering-about-box {
    flex-direction: column;
  }
  .entering-about .entering-about-box .entering-about-msg {
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }
  .entering-about .entering-about-box .entering-about-img {
    width: 100%;
  }
  .entering-brand .brand-box .brand-swiper .swiper-slide .img-box {
    gap: 5% !important;
  }
  .entering-brand .brand-box .brand-swiper .swiper-slide .img-box img {
    object-fit: contain;
    zoom: 0.4;
  }
  .entering-brand .brand-box .brand-swiper .swiper-slide p {
    margin-top: 20px;
    font-size: 16px;
  }
  .entering-brand .brand-box .brand-swiper .swiper-slide-active .img-box:after,
  .entering-brand
    .brand-box
    .brand-swiper
    .swiper-slide-active
    .img-box:before {
    display: none;
  }
  .entering-brand .brand-box .brand-swiper .swiper-slide-active p {
    font-size: 16px;
    margin-top: 20px;
  }
  .entering-brand .brand-box .brand-button-prev,
  .entering-brand .brand-box .brand-button-next {
    display: none;
  }

  .entering-honor {
    padding: 20px;
  }
  .entering-honor .subline {
    font-size: 14px;
  }
  .entering-honor .honor-swiper {
    height: fit-content;
    padding-bottom: 30px;
  }
  .entering-honor .honor-swiper .swiper-slide .year {
    font-size: 18px;
  }
  .entering-honor .honor-swiper .swiper-slide .info {
    font-size: 14px;
  }
  .entering-MissionVision .entering-MissionVision-text-box h5 {
    font-size: 14px;
  }
  .entering-culture .culture-msg {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }
  .entering-culture .culture-button .sub {
    width: fit-content;
    font-size: 12px;
  }
  .entering-about,
  .entering-culture,
  .entering-brand,
  .group-shiyuan,
  .group-sing,
  .agricultural {
    padding: 0 20px;
  }
  .group-philosophy .philosophy {
    height: auto;
    padding: 0;
  }
  .pop-up .environment {
    padding: 20px;
  }
  .pop-up .environment .title {
    font-size: 18px;
  }
  .pop-up .environment .subline {
    font-size: 14px;
    max-height: 90%;
    overflow: hidden;
    overflow-y: scroll;
  }
  .group-beidou {
    padding: 0.8rem 20px;
  }
  .group-beidou .beidou-box {
    flex-direction: column;
  }
  .group-beidou .beidou-box img {
    transform: translateX(0) scale(0.75);
  }
  .group-beidou .beidou-box .right-box {
    padding-left: 0;
    transform: translateX(0);
  }
  .group-beidou .beidou-box .right-box .source .beidou-tit {
    font-size: 20px;
  }
  .group-beidou .beidou-box .right-box .source p {
    font-size: 14px;
    line-height: 1.5;
  }
  .group-shiyuan {
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
  }
  .group-shiyuan .shiyuan-box .subline {
    font-size: 16px;
  }
  .group-shiyuan .shiyuan-box .shiyuan-detail {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }
  .group-shiyuan .shiyuan-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .group-community .group-community-box .subline {
    width: calc(100% - 40px);
    line-height: 1.5;
    font-size: 14px;
    text-align: justify;
  }
  .group-community .group-community-box .more {
    width: fit-content;
    font-size: 12px;
    height: auto;
    line-height: 1;
    padding: 0.2rem 0.3rem;
  }
  .group-community .atlas {
    height: 5rem;
  }
  .group-philosophy .philosophy-box .swiper-slide .philosophy-msg {
    font-size: 16px;
  }
  .group-sing .sing-box {
    gap: 20px;
  }
  .group-sing .sing-box .lyric {
    font-size: 14px;
    line-height: 1.5;
    max-height: 40vh;
    max-height: none;
  }
  .group-sing .sing-box .lyric .words {
    font-size: 16px;
  }
  .strength {
    padding: 0;
  }
  .strength .strength-list {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .strength .strength-list li {
    height: 40vh;
    padding-bottom: 10px;
  }
  .strength .strength-list li img {
    width: 40px;
    height: 40px;
  }
  .strength .strength-list li .t {
    font-size: 18px;
  }
  .strength .strength-list li .line {
    width: 20px;
  }
  .strength .strength-list li .li-p {
    font-size: 16px;
    line-height: 1.5;
  }
  .strength .strength-list li .li-p .n {
    font-size: 30px;
  }
  .strength .more {
    width: fit-content;
    font-size: 12px;
    padding: 0.2rem 0.3rem;
  }
  .car-new-four {
    height: auto;
    background: #000;
  }
  .car-new-four .new-four-swiper-box .car-swiper01 {
    padding: 0 20px;
  }
  .motorcycleRD-t {
    padding: 30px 0;
  }
  .motorcycleRD {
    height: 100%;
  }
  .motorcycleRD .motorcycleRD-t .title {
    font-size: 24px;
  }
  .motorcycleRD .motorcycleRD-t .sub-title {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .motorcycleRD .motorcycleRD-b {
    height: 100%;
  }
  .agricultural {
    height: 100%;
    margin-bottom: 30px;
  }
  .agricultural .agricultural-swiper .slide-text-box {
    font-size: 16px;
  }
  .vehicle {
    padding: 0;
  }
  .vehicle .motorcycleRD-t .title {
    font-size: 24px;
  }
  .vehicle .motorcycleRD-t .sub-title {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .vehicle .vehicle-box {
    width: 100%;
    height: auto;
    position: relative;
    background: #000;
  }
  .vehicle .vehicle-box .vehicle-swiper02,
  .vehicle .vehicle-box .process-swiper02 {
    width: 100%;
    height: 100%;
  }
  .vehicle .vehicle-box .vehicle-swiper01,
  .vehicle .vehicle-box .process-swiper01 {
    width: 100%;
  }
  .new-four {
    padding-top: 90px;
  }
  .new-four .new-four-current-title-box {
    margin: 30px 0;
    width: 100%;
    padding: 0 20px;
  }
  .new-four .new-four-current-title-box .new-four-current-title {
    font-size: 24px;
  }
  .new-four .new-four-current-title-box .new-four-current-secondary-title {
    width: 100%;
    font-size: 14px;
  }
  .new-four .module .module-img-box .module-box {
    width: 100%;
    padding: 20px;
    position: static;
    background: #f5f5f5;
    transform: translateX(0);
  }
  .new-four .module .module-img-box .module-box .title {
    text-align: left;
    font-size: 22px;
    color: #333;
  }
  .new-four .module .module-img-box .module-box .subline-box {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .new-four .module .module-img-box .module-box .subline-box li .t {
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
  }
  .new-four .module .module-img-box .module-box .subline-box li .subline {
    font-size: 14px;
    color: #999;
    line-height: 1.4;
  }
  .new-four .module .module-img-box .system-swiper {
    background: #f5f5f5;
  }
  .new-four .module .module-img-box .system-box {
    position: static;
    background: #f5f5f5;
    transform: translateX(0);
  }
  .new-four .module .module-img-box .system-swiper .swiper-slide .introduce li {
    color: #333;
    flex-direction: column;
    align-items: start;
  }
  .new-four .module .module-img-box .system-swiper .swiper-slide .introduce {
    flex-direction: column;
    padding: 20px;
    row-gap: 10px;
    transform: translateX(0);
    position: static;
  }
  .new-four
    .module
    .module-img-box
    .system-swiper
    .swiper-slide
    .introduce
    li
    b {
    font-size: 16px;
    white-space: nowrap;
  }
  .new-four
    .module
    .module-img-box
    .system-swiper
    .swiper-slide
    .introduce
    li
    span {
    font-size: 14px;
    white-space: normal;
  }

  .new-four .module .module-img-box .system-box li {
    font-size: 14px;
    white-space: nowrap;
    color: #333;
  }
  .new-four .module .module-img-box .globalization-swiper {
    padding: 0 20px;
    padding-bottom: 30px;
  }
  .new-four
    .module
    .module-img-box
    .globalization-swiper
    .swiper-slide
    .slide-text {
    font-size: 16px;
  }
  .join-box .item {
    height: auto;
  }
  .join-box .item .strategy-banner-text {
    left: 20px;
  }
  .join-box .item:nth-child(even) .strategy-banner-text {
    right: 20px;
  }
}
@media screen and (min-width: 1081px) and (max-width: 1200px) {
  header .pc-menu .menu-list {
    column-gap: 0.3rem;
  }
  .innovate {
    padding: 1.3rem 0.8rem 1.1rem 0.8rem;
  }
  .news {
    padding: 1.3rem 0 0 0.8rem;
  }
  .news .news-box .news-li {
    padding-right: 0.8rem;
  }
  .news .news-box .news-swiper-box .news-swiper .swiper-slide {
    max-height: none;
  }
  .footer {
    padding: 0.56rem 0.8rem 0.25rem 0.8rem;
  }
  .footer .footer-menu-box .list-box {
    column-gap: 5vw;
  }
  .SmartTravel .SmartTravel-list {
    padding: 0.4rem 0.8rem 0.8rem 0.8rem;
  }
  .finance .finance-box .finance-box-b .lease-w-box {
    padding: 0 0.8rem;
  }
}
@media screen and (max-width: 1080px) {
  [wap='hide'] {
    display: none !important;
  }
  header .pc-menu {
    height: fit-content;
    padding: 5px 20px;
    z-index: 999;
  }
  header .pc-menu .logo img {
    width: 100%;
    height: 100%;
    scale: 0.8;
  }
  header .wap-menu .menu-box .warp {
    display: flex;
    position: relative;
  }
  header .wap-menu .menu-box .warp .warp-a {
    display: block;
  }
  header .wap-menu .menu-box .warp .warp-two-box {
    width: 50%;
    display: none;
    flex-direction: column;
    row-gap: 20px;
    position: absolute;
    left: 40%;
    top: 0;
    z-index: 10;
  }
  header .wap-menu .menu-box .warp .warp-two-box .warp-two-a {
    display: block;
    width: fit-content;
  }
  header .wap-menu .menu-box .warp:hover .warp-two-box {
    display: flex;
  }
  header .pc-menu .menu-list {
    display: none;
  }
  header .pc-menu .hamburger {
    display: block;
  }
  .mouse {
    display: none;
  }
  .indexTit {
    font-size: 24px;
  }
  .indexsubTit {
    font-size: 14px;
  }
  .indexSwiper .bannerSwiper .swiper-slide .banner-text {
    left: 20px;
    font-size: 26px;
    top: 30%;
  }
  .indexSwiper .bannerSwiper .swiper-slide-active .text-style span {
    animation: shadows 1.2s forwards;
    color: #ffffff;
  }
  @keyframes shadows {
    from {
      letter-spacing: -20px;
      filter: blur(10px);
    }
    to {
      letter-spacing: 0;
      filter: blur(0);
    }
  }
  .indexSwiper .bannerSwiper .swiper-pagination {
    left: 20px;
    bottom: 80px;
  }
  .indexSwiper .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
    margin-right: 12px;
  }
  .about-box {
    padding: 20px;
  }
  .about-box .about-list {
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 30px;
  }
  .about-box .about-list li {
    margin-bottom: 30px;
  }
  .about-box .about-list li .icon {
    width: 35px !important;
    height: 35px !important;
  }
  .productSwiper .swiper-slide .product-txt {
    top: 100px;
    padding: 0 20px;
    width: 100%;
  }
  .productSwiper .swiper-slide .product-txt .productTit {
    font-size: 24px;
  }
  .productSwiper .swiper-slide .product-txt .productsubTit {
    width: 100%;
  }
  /* .productText {
    bottom: 50px;
  } */
  .productText .productTextgrid {
    padding: 0;
    display: flex;
    overflow: hidden;
    scrollbar-width: none;
    overflow-x: scroll;
  }
  .productText .productTextgrid .product-msg {
    white-space: nowrap;
    font-size: 14px;
    width: 30%;
    min-width: 30%;
  }
  .productText .productTextgrid::-webkit-scrollbar {
    display: none;
  }
  .innovate {
    padding: 20px;
  }
  .innovate .innovate-bigbox .innovate-li {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .innovate .innovate-bigbox .innovate-li .innovate-box ul {
    margin-top: 10px;
  }
  .innovate .innovate-bigbox .innovate-li .innovate-box ul li {
    font-size: 16px;
  }
  .innovate .innovate-bigbox .innovate-list {
    padding-top: 20px;
    height: calc(100% - 100px);
  }
  .innovate .innovate-bigbox .innovate-list .innovate-list-one {
    grid-template-columns: auto;
    column-gap: 0;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 20px;
  }
  .innovate .innovate-bigbox .innovate-list .innovate-list-one a .mask .tit {
    padding: 2px;
    font-size: 14px;
  }
  .innovate .innovate-bigbox .innovate-list .innovate-list-one a .mask .subTit {
    padding: 10px;
    font-size: 14px;
  }
  .innovate .innovate-bigbox .innovate-list .car {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news {
    padding: 40px 20px;
  }
  .news .news-box .information-swiper .news-swiper {
    padding-left: 0;
  }
  .news .news-box .news-li {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding-right: 0;
  }
  .news .news-box .news-li .news-li-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .news .news-box .news-li .news-li-txt .indexsubTit {
    margin-top: 0;
    padding: 0;
  }
  .news .news-box .news-li .news-box-ul {
    margin-top: 20px;
  }
  .news .news-box .news-li .news-box-ul ul li {
    font-size: 16px;
  }
  .news .news-box .news-li .btn-animate svg {
    display: none;
  }
  .news .news-box .news-li .btn-animate:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #999;
  }
  .news .news-box .news-swiper-box {
    display: none;
  }
  .news .news-box .news-swiper-box .news-swiper .swiper-slide {
    max-height: none;
  }
  .news .news-box .news-swiper-box .news-swiper .swiper-slide .news-tit {
    font-size: 18px;
    height: 54px;
  }
  .news .news-box .news-swiper-box .news-swiper .swiper-slide .news-subtit {
    font-size: 14px;
  }
  .news .news-box .news-swiper-box .scroll-box .pageing {
    right: 20px;
  }
  .news .news-box .news-swiper-box .scroll-box .pageing .swiper-prev,
  .news .news-box .news-swiper-box .scroll-box .pageing .swiper-next {
    zoom: 0.8;
  }
  .news .news-box .information-swiper .news-swiper .swiper-slide {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    justify-content: start;
    padding: 0;
    margin-left: 0;
    height: 100%;
  }
  .news .news-box .news-swiper-box {
    margin-top: 0.3rem;
  }
  .news .news-box .information-swiper .news-swiper .swiper-slide .news-left {
    position: static;
    height: 200px;
    width: 100%;
  }
  .news .news-box .information-swiper .news-swiper .swiper-slide .news-right {
    width: 100%;
    padding: 20px 15px;
  }
  .news
    .news-box
    .information-swiper
    .news-swiper
    .swiper-slide
    .news-right
    .news-subtit {
    height: fit-content;
    margin: 20px 0;
  }
  .news .news-box .news-swiper-box .scroll-box {
    margin-top: 0.6rem;
  }
  .footer {
    padding: 20px;
  }
  .footer .footer-menu-box {
    flex-direction: column;
  }
  .footer .footer-menu-box .list-box {
    gap: 8%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .footer .footer-menu-box .list-box .list {
    width: fit-content;
    margin-bottom: 4%;
  }
  .footer .footer-menu-box .list-box .list .footer-two-menu .two-a {
    font-size: 14px;
  }
  .footer .footer-menu-box .list-box .list .firsta {
    font-size: 16px;
  }
  .footer .footer-menu-box .list-icon {
    column-gap: 20px;
  }
  .footer .footer-menu-box .list-icon li .wx {
    width: 45px;
    height: 45px;
  }
  .footer .footer-menu-box .list-icon li .code {
    width: 100px;
    height: 100px;
    bottom: 50px;
    top: auto;
  }
  .footer .index-footer {
    align-items: start;
  }
  .footer .copyright {
    font-size: 14px;
    flex-wrap: wrap;
  }
  .InnerPageTit {
    font-size: 28px;
  }
  .InnerPageSubTit {
    font-size: 16px;
  }
  .InnerPageBanner .banner-text h1 {
    font-size: 34px;
  }
  .InnerPageBanner .banner-text h6 {
    font-size: 20px;
    padding: 0 20px;
  }
  .InnerPageMotorcycle {
    height: 60vh;
  }
  .InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .playVideo,
  .InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .pausedVideo {
    width: 40px;
    height: 40px;
  }
  .InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .playVideo img,
  .InnerPageMotorcycle .Motorcycler-swiper .swiper-slide .pausedVideo img {
    height: 20px;
  }
  .InnerPageMotorcycle
    .Motorcycler-swiper
    .swiper-slide
    .inner-motorcycler-tit {
    font-size: 14px;
    width: 100%;
    padding: 0 10px;
  }
  .SmartTravel .SmartTravel-list {
    padding: 0.4rem 20px 0.8rem 20px;
    /* grid-template-columns: repeat(1, 1fr); */
    gap: 20px;
  }
  .SmartTravel .SmartTravel-list a {
    height: auto;
  }
  .SmartTravel .SmartTravel-list a .SmartTravel-tit {
    font-size: 18px;
  }
  .SmartTravel .SmartTravel-list a:hover .SmartTravel-tit {
    font-size: 18px;
    font-weight: 500;
  }
  .finance .finance-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
  }
  .finance .finance-box .finance-box-b {
    width: 100%;
    height: 400px;
  }
  .finance .finance-box .finance-box-b .finance-msg {
    padding: 0 20px 20px 20px;
  }
  .finance .finance-box .finance-box-b .lease-w-box {
    padding: 20px;
  }
  .finance .finance-box .finance-box-b .lease-w-box .finance-swiper,
  .finance .finance-box .finance-box-b .lease-w-box .lease-swiper,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper01,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 {
    height: 100%;
  }
  .finance .finance-box .finance-box-b .lease-w-box .finance-swiper .lease-box,
  .finance .finance-box .finance-box-b .lease-w-box .lease-swiper .lease-box,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper01 .lease-box,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 .lease-box {
    height: 100%;
    top: auto;
    bottom: 0;
    justify-content: flex-end;
  }
  .finance .finance-box .finance-box-b:last-child .lease-w-box {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .finance .finance-box .finance-box-b:last-child .lease-w-box .finance-swiper {
    left: 0;
  }
  .sport {
    height: 50vh;
  }
  .detail-box .recommend-list {
    display: none;
  }
  .detail-box .detail-info {
    width: 100%;
    padding: 0;
  }
  .detail-box .detail-info .detail-tit {
    margin-top: 0.9rem;
  }

  .InnerPageCar .innerPageCar-swiper,
  .InnerPageCar .Motorcycler-swiper,
  .InnerPageCar .agriculture-swiper {
    height: auto;
    background: #000;
  }
  .InnerPageCar .innerPageCar-swiper .swiper-slide img,
  .InnerPageCar .Motorcycler-swiper .swiper-slide img,
  .InnerPageCar .agriculture-swiper .swiper-slide img {
    transition: none;
    transform: scale(1);
  }
  .InnerPageCar .innerPageCar-swiper .inner-car-tit,
  .InnerPageCar .Motorcycler-swiper .inner-car-tit,
  .InnerPageCar .agriculture-swiper .inner-car-tit {
    position: static;
    transform: translate(0, 0);
    padding: 20px;
    transition: none;
    text-align: left;
  }
  .InnerPageCar .innerPageCar-swiper .car-ul,
  .InnerPageCar .Motorcycler-swiper .car-ul,
  .InnerPageCar .agriculture-swiper .car-ul {
    position: static;
    transform: translate(0, 0) !important;
  }
  .SmartTravel .SmartTravel-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  [pc='hide'] {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .index-global-img img {
    width: 100%;
  }
  /* [wap='hide'] {
    display: none !important;
  } */
  header .pc-menu {
    height: fit-content;
    padding: 5px 20px;
    z-index: 999;
  }
  header .pc-menu .logo img {
    zoom: 0.6;
  }
  .InnerPageBanner .banner-text h6 {
    font-size: 16px;
  }
  .about {
    background: url(../img/wap/wap-about.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .about-box {
    padding: 40px 20px;
  }
  .about-box .abTit {
    font-size: 24px;
  }
  .about-box .abSubTit {
    font-size: 14px;
    line-height: 22px;
  }
  .about-box .about-list {
    gap: 10px;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .about-box .about-list li {
    width: 31%;
    height: auto;
    margin-bottom: 30px;
  }
  .about-box .about-list li .icon {
    min-width: 35px !important;
    min-height: 35px !important;
  }
  .about-box .about-list li .num {
    margin: 10px 0;
  }
  .about-box .about-list li .num .num1 {
    font-size: 28px;
  }
  .about-box .about-list li .num .num2 {
    font-size: 16px;
  }
  .about-box .about-list li .about-txt {
    font-size: 14px;
    white-space: nowrap;
  }
  .about-box .about-list li:hover .num .num1 {
    font-size: 32px;
  }
  .innovate {
    padding: 40px 20px;
  }
  .productSwiper .swiper-slide .product-txt {
    top: 80px;
    width: 100%;
  }
  .productSwiper .swiper-slide .product-txt .productsubTit {
    width: 100%;
  }
  .news {
    padding: 40px 20px;
  }
  .news .news-box .information-swiper {
    height: 52vh;
  }
  .footer .footer-menu-box .list-box {
    gap: 0;
    justify-content: normal;
  }
  .footer .footer-menu-box .list-box .list {
    width: 33.33%;
    min-width: 33.33%;
  }
  .InnerPageCar .innerPageCar-swiper,
  .InnerPageCar .Motorcycler-swiper,
  .InnerPageCar .agriculture-swiper {
    height: auto;
    background: #000;
    transform: scale(1);
  }
  .InnerPageCar .innerPageCar-swiper .swiper-slide img,
  .InnerPageCar .Motorcycler-swiper .swiper-slide img,
  .InnerPageCar .agriculture-swiper .swiper-slide img {
    transform: scale(1, 1);
  }
  .InnerPageCar .innerPageCar-swiper .inner-car-tit,
  .InnerPageCar .Motorcycler-swiper .inner-car-tit,
  .InnerPageCar .agriculture-swiper .inner-car-tit {
    font-size: 16px;
    padding: 20px;
    bottom: 0;
    /* transform: translate(-50%, -50%); */
    left: 0;
    position: static;
    transform: translate(0, 0);
  }
  .InnerPageCar .innerPageCar-swiper .car-ul,
  .InnerPageCar .agriculture-swiper .car-ul {
    font-size: 18px;
    overflow: hidden;
    overflow-x: scroll;
    padding: 0 20px;
    scrollbar-width: none;
    width: 100%;
    left: 0;
    transform: translateX(0) !important;
    justify-content: flex-start;
    position: static;
  }
  .InnerPageCar .Motorcycler-swiper .car-ul {
    font-size: 18px;
    overflow: hidden;
    overflow-x: scroll;
    padding: 0 20px;
    scrollbar-width: none;
    width: 100%;
    left: 0;
    transform: translateX(0) !important;
    position: static;
    justify-content: center;
  }
  .InnerPageCar .innerPageCar-swiper .car-ul::-webkit-scrollbar,
  .InnerPageCar .Motorcycler-swiper .car-ul::-webkit-scrollbar,
  .InnerPageCar .agriculture-swiper .car-ul::-webkit-scrollbar {
    display: none;
  }
  .InnerPageCar .innerPageCar-swiper .car-ul .car-li,
  .InnerPageCar .Motorcycler-swiper .car-ul .car-li,
  .InnerPageCar .agriculture-swiper .car-ul .car-li {
    white-space: nowrap;
    min-width: auto;
  }
  .finance .finance-box .finance-box-b .lease-w-box {
    padding: 20px;
  }
  .finance .finance-box .finance-box-b .lease-w-box .finance-swiper,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper01,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper02,
  .finance .finance-box .finance-box-b .lease-w-box .lease-swiper {
    height: 100%;
  }
  .finance .finance-box .finance-box-b .lease-w-box .finance-swiper img,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper01 img,
  .finance .finance-box .finance-box-b .lease-w-box .sport-swiper02 img,
  .finance .finance-box .finance-box-b .lease-w-box .lease-swiper img {
    height: auto;
  }
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .finance-swiper
    .lease-box
    .lease-tit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .sport-swiper01
    .lease-box
    .lease-tit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .sport-swiper02
    .lease-box
    .lease-tit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .lease-swiper
    .lease-box
    .lease-tit {
    font-size: 20px;
  }
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .finance-swiper
    .lease-box
    .lease-subTit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .sport-swiper01
    .lease-box
    .lease-subTit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .sport-swiper02
    .lease-box
    .lease-subTit,
  .finance
    .finance-box
    .finance-box-b
    .lease-w-box
    .lease-swiper
    .lease-box
    .lease-subTit {
    font-size: 14px;
    line-height: 20px;
  }
  .finance .finance-box .finance-box-b:last-child .lease-w-box {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .finance .finance-box .finance-box-b:last-child .lease-w-box .finance-swiper {
    left: 0;
  }
  .InnerPageMotorcycle {
    height: 45vh;
  }
  .secondaryColumn {
    padding: 0 20px;
    overflow: hidden;
    scrollbar-width: none;
    overflow-x: scroll;
  }
  .secondaryColumn::-webkit-scrollbar {
    display: none;
  }
  .secondaryColumn a {
    font-size: 16px;
    white-space: nowrap;
  }
  .innerNews-box .secondaryColumn {
    padding: 20px;
    padding-bottom: 0;
  }
  .innerNews-box .box-big {
    padding: 0 20px;
  }
  .innerNews-box .news-list {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
  .innerNews-box .news-list a {
    margin-bottom: 20px;
  }
  .innerNews-box .news-list a .timer {
    font-size: 14px;
  }
  .innerNews-box .news-list a .news-list-tit {
    font-size: 18px;
    line-height: 26px;
  }
  .innerNews-box .news-list a .img-box {
    height: 5rem;
  }
  .innerNews-box .news-publicwelfare-list a .welfareTime-box .day {
    font-size: 24px;
  }
  .innerNews-box .news-publicwelfare-list a .welfareTime-box .yearMoth {
    font-size: 14px;
  }
  .innerNews-box .news-publicwelfare-list a .welfare-info .tit {
    font-size: 18px;
  }
  .innerNews-box .news-publicwelfare-list a .welfare-info .subtit {
    font-size: 14px;
  }
  .innerNews-box .innerPaging {
    gap: 10px;
  }
  .innerNews-box .innerPaging a {
    font-size: 14px;
  }
  .publicwelfare .secondaryColumn {
    padding: 0 20px;
  }
  .detail-box {
    padding: 30px 20px 0.8rem 20px;
  }

  .detail-box .detail-info .location {
    margin-top: 30px;
    font-size: 14px;
  }
  .detail-box .detail-info .location a {
    font-size: 12px;
  }
  .detail-box .detail-info .detail-tit {
    font-size: 24px;
    margin-top: 10px;
  }
  .detail-box .detail-info .detail-time {
    font-size: 14px;
  }
  .detail-box .detail-info .detail {
    font-size: 16px;
    line-height: 24px;
  }
  .detail-box .detail-info .download .download-tit {
    font-size: 18px;
  }
  .detail-box .detail-info .download a {
    font-size: 16px;
    line-height: 24px;
  }
  .detail-box .detail-info .detail-paging .next .prve-tit,
  .detail-box .detail-info .detail-paging .prve .prve-tit {
    font-size: 14px;
  }
  .join-box .secondaryColumnWhite {
    padding: 0 20px;
  }
  .join-box .secondaryColumnWhite a {
    font-size: 16px;
  }
  .join-box .SocialRecruitment {
    padding: 20px;
  }
  .join-box .SocialRecruitment .recruit-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .join-box .SocialRecruitment .recruit-select-box {
    width: 80%;
  }
  .join-box .SocialRecruitment .recruit-select-box .recruit-select {
    font-size: 12px;
  }
  .join-box .SocialRecruitment .recruit-select-box .select-icon {
    right: 10px;
    zoom: 0.8;
  }
  .join-box .SocialRecruitment .recruit-list a .recruit-name-box .recruit-money,
  .join-box .SocialRecruitment .recruit-list a .recruit-name-box .recruit-name {
    font-size: 16px;
  }
  .join-box .SocialRecruitment .recruit-list a .life {
    font-size: 14px;
  }
  .join-box .SocialRecruitment .recruit-list a .welfare .welfare-item {
    font-size: 12px;
  }
  .join-box .SocialRecruitment .recruit-list a .user-box .user img {
    width: 40px;
    height: 40px;
  }
  .join-box
    .SocialRecruitment
    .recruit-list
    a
    .user-box
    .user
    .phone-box
    .title {
    font-size: 16px;
  }
  .join-box
    .SocialRecruitment
    .recruit-list
    a
    .user-box
    .user
    .phone-box
    .phone {
    font-size: 14px;
  }
  .join-box .SocialRecruitment .recruit-list a .user-box .date {
    font-size: 14px;
  }
  .join-box .SocialRecruitment .innerPaging {
    gap: 10px;
  }
  .join-box .SocialRecruitment .innerPaging a {
    font-size: 14px;
  }
  .join-box .item .strategy-banner-text {
    left: 20px;
    right: 20px;
  }
  .join-box .item .strategy-banner-text .talent {
    font-size: 20px;
  }
  .join-box .item .strategy-banner-text .complementary {
    font-size: 30px;
  }
  .join-box .item .strategy-banner-text .subline {
    font-size: 16px;
    line-height: 24px;
  }
  .join-box .item .strategy-banner-text {
    left: 20px;
    right: 20px;
  }
  .join-box .item:nth-child(even) .strategy-banner-text {
    left: 20px;
    right: 20px;
  }
  .join-box .recruit-box .recruit-msg {
    left: 20px;
  }
  .join-box .recruit-box .recruit-msg .join-xy {
    font-size: 24px;
  }
  .join-box .recruit-box .recruit-msg .join-text {
    font-size: 12px;
  }
  .contact-box .contact {
    padding: 0 20px;
  }
  .contact-box .contact .map-box {
    height: auto;
    flex-direction: column;
  }
  .contact-box .contact .map-box .map {
    width: 100%;
    height: auto;
  }
  .contact-box .contact .map-box .address-info {
    width: 100%;
  }
  .contact-box .contact .map-box .address-info .address .address-tit {
    font-size: 16px;
  }
  .contact-box .contact .map-box .address-info .address .address-msg {
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-box .contact h4 {
    margin: 0.5rem 0;
  }
  .contact-box .message {
    height: auto;
  }
  .contact-box .message .message-box {
    padding: 0 0.8rem;
  }
  .contact-box .message .message-box .message-top {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact-box .message .message-box .message-top .one .name .txt {
    font-size: 14px;
  }
  .contact-box .message .message-box .message-top .one input {
    padding: 10px;
  }
  .contact-box .message .message-box .textarea textarea {
    height: 20vh;
    padding: 10px;
    line-height: 1.5;
  }
  .contact-box .message h4 {
    padding: 0.5rem 0;
    font-size: 24px;
    margin: 0;
  }
  .contact-box .message .sub {
    margin: 30px 0;
    font-size: 12px;
  }
  .community h4 {
    padding: 0.5rem 0;
  }
  .community .community-box {
    padding: 0 20px;
    flex-direction: column;
    overflow: hidden;
  }
  .community .community-box .community-ul {
    padding-bottom: 20px;
    width: 100%;
    overflow-x: scroll;
    gap: 10px;
  }
  .community .community-box .community-ul li a {
    padding: 10px;
    font-size: 16px;
    white-space: nowrap;
  }
  .car-new-four .new-four-swiper-box .swiper-outer-box {
    bottom: 0;
  }
  .vehicle .vehicle-box {
    position: relative;
  }
  .vehicle .vehicle-box .swiper-outer-box {
    bottom: 0;
  }
  .new-four .module .module-img-box .system-swiper .swiper-slide .introduce {
    width: 100%;
    position: static;
    transform: translateX(0);
    padding: 20px;
  }
  .new-four .module .module-img-box .system-swiper .swiper-slide .introduce li {
    align-items: start;
    flex-direction: column;
    color: #333;
  }
  .new-four
    .module
    .module-img-box
    .system-swiper
    .swiper-slide
    .introduce
    li
    span {
    white-space: normal;
  }
  .new-four .power .module-img-box {
    height: auto;
  }
  .new-four .module .module-img-box .module-box {
    position: static;
    padding: 20px;
    background: #f5f5f5;
    transform: translateX(0);
  }
  .new-four .module .module-img-box .system-box {
    position: static;
    transform: translateX(0);
    background: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .new-four .module .module-img-box .system-box::after {
    display: none;
  }
  .new-four .module .module-img-box .system-box li {
    color: #333;
  }
  .new-four .module .module-img-box .module-box .subline-box li {
    display: block;
  }
  .new-four .module .module-img-box .module-box .title {
    color: #333;
  }
  .new-four .module .module-img-box .module-box .subline-box li .t {
    margin-bottom: 5px;
    color: #000;
  }
  .new-four .module .module-img-box .module-box .subline-box li .subline {
    color: #999;
    line-height: 1.4;
  }
  .new-four .module .module-img-box .system-swiper {
    height: auto;
    background: #f5f5f5;
  }
  .new-four .module .module-img-box .globalization-swiper {
    height: 60vh;
  }
  .finance .finance-box .finance-box-b {
    height: 50vh;
  }
  .SmartTravel .SmartTravel-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .SmartTravel .SmartTravel-list a .SmartTravel-tit {
    font-size: 14px;
  }
  .agricultural {
    padding: 0;
  }
  .join-box .item {
    height: 100vh;
  }
  .news-big-box {
    margin: 50px 0;
  }
  .news .news-box .news-swiper-box .scroll-box {
    margin-top: 30px;
  }
  .news .news-box .news-li .news-box-ul {
    margin-top: 50px;
  }
  .group-beidou .beidou-box {
    margin-top: 0;
  }
  .new-four {
    padding-top: 60px;
  }
}
@media screen and (max-width: 640px) {
  .detail-box {
    padding-top: 60px;
  }
}
table {width:100% !important;}

.ztc-box{
  margin-top: 0.6rem;
}
.ztc-box .ztc{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
