.home {
  position: relative;
  width: 100%;
}
.home .loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  pointer-events: none;
}
.home .loading video {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .hideVideo {
  opacity: 0;
}
.home .cursor {
  width: 6.1979166667vw;
  height: 6.1979166667vw;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s, color 0.4s;
  transition: opacity 0.3s, color 0.4s;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
}
.home .cursor.on .scale {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.home .cursor .scale {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.home .cursor svg {
  width: 100%;
  height: auto;
  display: block;
}
.home .cursor .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 22;
  color: #FFF;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-family: "PINGFANGSC";
  font-weight: 300;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.home body:hover .cursor {
  opacity: 1;
}
.home .banner {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  opacity: 0;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .banner .swiper-container {
  width: 100%;
  overflow: hidden;
}
.home .banner .swiper-container .swiper-slide {
  overflow: hidden;
}
.home .banner .swiper-container .swiper-slide.swiper-slide-active .text {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .banner .swiper-container .swiper-slide .slide-inner {
  width: 100%;
  height: 100%;
}
.home .banner .swiper-container .item {
  position: relative;
}
.home .banner .swiper-container .item video,
.home .banner .swiper-container .item img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .banner .swiper-container .item .text {
  position: absolute;
  left: 0;
  bottom: 9.0625vw;
  width: 100%;
  text-align: center;
  color: white;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.home .banner .swiper-container .item .text .p1 {
  font-size: 2.5vw;
  font-family: "PingFang-Bold";
  line-height: 1;
}
.home .banner .swiper-container .item .text .p2 {
  margin: 1.6666666667vw 0 0 0;
  font-size: 1.25vw;
  font-family: "PINGFANGSC";
}
.home .banner .prev {
  position: absolute;
  left: 6.25vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.home .banner .prev svg {
  width: 3.5416666667vw;
  display: block;
}
.home .banner .next {
  position: absolute;
  right: 6.25vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.home .banner .next svg {
  width: 3.5416666667vw;
  display: block;
}
.home .banner .swiper-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 5.2083333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.home .banner .swiper-pagination .swiper-pagination-bullet {
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border: 1px solid white;
  border-radius: 50%;
  margin: 0 0.5208333333vw;
  opacity: 1;
  background-color: transparent;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  cursor: pointer;
}
.home .banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 1.1458333333vw;
  border-radius: 0.2604166667vw;
}
.home .banner .scroll {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2.5vw;
  height: 5.2083333333vw;
  width: 0.0520833333vw;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10;
  overflow: hidden;
}
.home .banner .scroll .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 2.0833333333vw;
  background-color: #fff;
  -webkit-animation: down-animate 2s linear infinite;
          animation: down-animate 2s linear infinite;
}
@-webkit-keyframes down-animate {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes down-animate {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.home .showBanner {
  opacity: 1;
}
.home .section_new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .section_new .lb {
  width: 25%;
}
.home .section_new .lb .box1 {
  width: 100%;
  height: 25vw;
  background: #003B83;
  position: relative;
}
.home .section_new .lb .box1 img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section_new .lb .box1 .text {
  position: absolute;
  left: 2.6041666667vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
}
.home .section_new .lb .box1 .text .p1 {
  font-size: 2.0833333333vw;
  line-height: 1;
}
.home .section_new .lb .box1 .text .p2 {
  font-size: 1.25vw;
  line-height: 1;
  margin-top: 1.25vw;
}
.home .section_new .lb .box2 {
  width: 100%;
}
.home .section_new .lb .box2 a {
  display: block;
  position: relative;
}
.home .section_new .lb .box2 a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(70%, rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 70%);
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section_new .lb .box2 a img {
  height: 50vw;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section_new .lb .box2 a .text {
  position: absolute;
  left: 2.6041666667vw;
  bottom: 4.6875vw;
  color: white;
}
.home .section_new .lb .box2 a .text .p1 {
  font-size: 1.4583333333vw;
  line-height: 1;
}
.home .section_new .lb .box2 a .text .p2 {
  font-size: 1.25vw;
  line-height: 1.78;
  margin-top: 1.25vw;
}
.home .section_new .lb .box2 a:hover::before {
  opacity: 0;
}
.home .section_new .rb {
  width: 75%;
}
.home .section_new .rb .box_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .section_new .rb .box_top .rb_left {
  width: 66.6666666667%;
}
.home .section_new .rb .box_top .rb_left a {
  display: block;
  position: relative;
}
.home .section_new .rb .box_top .rb_left a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/images/yy1.png) no-repeat;
  background-size: cover;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section_new .rb .box_top .rb_left a img {
  height: 25vw;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section_new .rb .box_top .rb_left a .text {
  position: absolute;
  left: 2.6041666667vw;
  bottom: 4.6875vw;
  color: white;
}
.home .section_new .rb .box_top .rb_left a .text .p1 {
  font-size: 1.4583333333vw;
  line-height: 1;
}
.home .section_new .rb .box_top .rb_left a .text .p2 {
  font-size: 1.25vw;
  line-height: 1.78;
  margin-top: 1.25vw;
}
.home .section_new .rb .box_top .rb_left a:hover::before {
  opacity: 0.2;
}
.home .section_new .rb .box_top .rb_right {
  width: 33.3333333333%;
}
.home .section_new .rb .box_top .rb_right a {
  display: block;
  position: relative;
}
.home .section_new .rb .box_top .rb_right a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/images/yy2.png) no-repeat;
  background-size: cover;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section_new .rb .box_top .rb_right a img {
  height: 50vw;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section_new .rb .box_top .rb_right a .text {
  position: absolute;
  left: 2.6041666667vw;
  bottom: 4.6875vw;
  color: white;
}
.home .section_new .rb .box_top .rb_right a .text .p1 {
  font-size: 1.4583333333vw;
  line-height: 1;
}
.home .section_new .rb .box_top .rb_right a .text .p2 {
  font-size: 1.25vw;
  line-height: 1.78;
  margin-top: 1.25vw;
}
.home .section_new .rb .box_top .rb_right a:hover::before {
  opacity: 0.2;
}
.home .section_new .rb .box_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .section_new .rb .box_bottom .rb_left {
  background: #2B598A;
  width: 33.3333333333%;
  height: 25vw;
  position: relative;
}
.home .section_new .rb .box_bottom .rb_left img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
}
.home .section_new .rb .box_bottom .rb_left .text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
}
.home .section_new .rb .box_bottom .rb_left .text .p1 {
  font-size: 1.4583333333vw;
}
.home .section_new .rb .box_bottom .rb_left .text .p1 span {
  font-size: 2.5vw;
  margin: 0 0.2083333333vw;
}
.home .section_new .rb .box_bottom .rb_left .text .des {
  margin-top: 1.25vw;
  font-size: 1.25vw;
  line-height: 1.78;
}
.home .section_new .rb .box_bottom .rb_right {
  width: 66.6666666667%;
  height: 25vw;
}
.home .section_new .rb .box_bottom .rb_right a {
  display: block;
  position: relative;
}
.home .section_new .rb .box_bottom .rb_right a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/images/yy1.png) no-repeat;
  background-size: cover;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section_new .rb .box_bottom .rb_right a img {
  height: 25vw;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section_new .rb .box_bottom .rb_right a .text {
  position: absolute;
  left: 2.6041666667vw;
  bottom: 4.6875vw;
  color: white;
}
.home .section_new .rb .box_bottom .rb_right a .text .p1 {
  font-size: 1.4583333333vw;
  line-height: 1;
}
.home .section_new .rb .box_bottom .rb_right a .text .p2 {
  font-size: 1.25vw;
  line-height: 1.78;
  margin-top: 1.25vw;
}
.home .section_new .rb .box_bottom .rb_right a:hover::before {
  opacity: 0.2;
}
.home .section1 {
  width: 100%;
  position: relative;
  height: calc(100vh + 5000px);
}
.home .section1 .fix {
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  overflow: hidden;
}
.home .section1 .bg {
  position: relative;
}
.home .section1 .bg.on:after {
  opacity: 1;
}
.home .section1 .bg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.home .section1 .bg img {
  width: 100%;
  height: 100vh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(0.62);
      -ms-transform: scale(0.62);
          transform: scale(0.62);
}
.home .section1 .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 6.0416666667vw;
  opacity: 0;
  pointer-events: none;
  z-index: 25;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.home .section1 .content.on {
  -webkit-transition: 2s;
  transition: 2s;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.home .section1 .content.hide {
  opacity: 0;
  pointer-events: none;
}
.home .section1 .content .t1 {
  text-transform: uppercase;
  text-align: center;
  opacity: 0.2;
  font-size: 3.5416666667vw;
  opacity: 0.2;
  background: -webkit-gradient(linear, left top, right top, from(#FFF), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 6.25vw;
}
.home .section1 .content .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section1 .content .t2 svg {
  width: 2.65625vw;
  display: block;
}
.home .section1 .content .t2 p {
  color: white;
  font-size: 2.5vw;
  font-weight: 600;
}
.home .section1 .content .pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 3.6458333333vw;
}
.home .section1 .content .pics a {
  display: block;
  width: 43%;
}
.home .section1 .content .pics a .pic {
  position: relative;
}
.home .section1 .content .pics a .pic img:not(.svg) {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 21.9270833333vw;
}
.home .section1 .content .pics a .pic .svg {
  position: absolute;
  width: 22.34375vw;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.home .section1 .content .pics a .pic:hover .svg {
  opacity: 1;
}
.home .section1 .content .pics a .text {
  color: #FFF;
  font-weight: 600;
}
.home .section1 .content .pics a .text .p1 {
  margin: 1.5625vw 0 1.0416666667vw 0;
  font-size: 1.6666666667vw;
}
.home .section1 .content .pics a .text .des {
  font-size: 0.8333333333vw;
  font-family: "PingFang-Light";
}
.home .section1 .content .pics a:nth-child(2n) {
  margin-top: 10.4166666667vw;
}
.home .section2 {
  background-position: top;
  background-size: cover;
  content-visibility: auto;
  height: 110.4167vw;
  opacity: 0.9;
  position: relative;
  width: 100vw;
  background-image: url(/images/bg2.jpg);
}
.home .section2 .bg-mask {
  background: #000;
  bottom: 0;
  left: 0;
  opacity: 0.15;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 1;
}
.home .section2 .bg-mask.on {
  opacity: 0.4;
}
.home .section2 .about-label {
  color: #fff;
  font-size: 6.25vw;
  left: 10.4166666667vw;
  position: absolute;
  text-align: left;
  top: 6.1458333333vw;
  line-height: 1;
  z-index: 2;
}
.home .section2 .about-label .jm-fade-show {
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.home .section2 .about-label .jm-fade-show .fix {
  position: sticky;
  position: -webkit-sticky;
  top: 6.1458333333vw;
}
.home .section2 .about-label .jm-fade-show.on {
  -webkit-transform: scale3d(0.9, 0.9, 0.9) !important;
          transform: scale3d(0.9, 0.9, 0.9) !important;
}
.home .section2 .about-label p {
  font-family: "PingFang-Light";
  font-weight: 200;
}
.home .section2 .about-label .p2 {
  margin-left: 10.9375vw;
}
.home .section2 .about-content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 5vw;
  top: 11.40625vw;
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  width: 31.5625vw;
  z-index: 2;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.home .section2 .about-content .fix {
  position: sticky;
  position: -webkit-sticky;
  top: 11.40625vw;
}
.home .section2 .about-content.on {
  -webkit-transform: scale3d(0.9, 0.9, 0.9) !important;
          transform: scale3d(0.9, 0.9, 0.9) !important;
}
.home .section2 .about-content .des {
  font-size: 1.1458333333vw;
  font-family: "PINGFANGSC";
  line-height: 1.8;
}
.home .section2 .about-content h3 {
  margin: 2.4479166667vw 0;
  font-size: 3.3333333333vw;
  letter-spacing: 0.09375vw;
  text-align: right;
  font-weight: normal;
}
.home .section2 .about-content a {
  width: 7.7083333333vw;
  height: 2.1875vw;
  border: 2px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  float: right;
  overflow: hidden;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  color: #fff;
}
.home .section2 .about-content a::before {
  background: url(/images/icon_btnbg.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section2 .about-content a p {
  font-size: 1.1458333333vw;
  font-family: "PINGFANGSC";
}
.home .section2 .about-content a svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.home .section2 .about-content a:hover {
  border-color: transparent;
  color: white;
}
.home .section2 .about-content a:hover::before {
  opacity: 1;
}
.home .section2 .about-content a:hover svg {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.home .section2 .nums {
  position: absolute;
  left: 5.2083333333vw;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20.8333333333vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}
.home .section2 .nums .item {
  width: 48%;
  color: white;
  margin-bottom: 4.1666666667vw;
}
.home .section2 .nums .item .p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section2 .nums .item .p1 .num {
  font-size: 2.5vw;
  font-weight: 600;
}
.home .section2 .nums .item .p1 span {
  font-size: 1.0416666667vw;
  margin-left: 0.625vw;
  margin-top: 0.7291666667vw;
}
.home .section2 .nums .item .tag {
  font-size: 1.0416666667vw;
  margin-top: 1.25vw;
}
.home .section2 .product-label {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(95%, #000));
  background: linear-gradient(180deg, transparent, #000 95%);
  bottom: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12.5vw;
  height: 12.989vw;
  left: 0;
  letter-spacing: -0.5208vw;
  line-height: 0.68;
  mix-blend-mode: soft-light;
  padding-left: 10.4166666667vw;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.home .section2 .product-label .en_num_light {
  font: inherit;
  margin: 0;
}
.home .section3 {
  width: 100%;
  height: calc(100vh + 1000px);
  position: relative;
}
.home .section3 .fix {
  width: 100%;
  height: 100vh;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.home .section3 .fix .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 5;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.home .section3 .fix .mask.on {
  opacity: 0;
  pointer-events: none;
}
.home .section3 .fix .mask img, .home .section3 .fix .mask video {
  width: 1200px;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .section3 .fix .mask img.on, .home .section3 .fix .mask video.on {
  opacity: 1;
}
.home .section3 .fix.on .lc1, .home .section3 .fix.on .lc2, .home .section3 .fix.on .box_right, .home .section3 .fix.on .box_left {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.home .section3 .tc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}
.home .section3 .tc img {
  vertical-align: middle;
  max-width: 100%;
}
.home .section3 .lc1 {
  position: absolute;
  left: 32%;
  top: 6.25vw;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.home .section3 .lc1 img {
  width: 16.3541666667vw;
  display: block;
}
.home .section3 .lc2 {
  position: absolute;
  right: 32%;
  bottom: 6.25vw;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.home .section3 .lc2 img {
  width: 16.3541666667vw;
  display: block;
}
.home .section3 .box {
  position: absolute;
}
.home .section3 .box .t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #003B83;
  font-size: 2.0833333333vw;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.5416666667vw;
}
.home .section3 .box .t svg {
  width: 2.65625vw;
  display: block;
  margin-left: 0.625vw;
}
.home .section3 .box .t2 {
  margin: 0 0 2.34375vw 0;
  color: #333;
  font-size: 1.6666666667vw;
}
.home .section3 .box_right {
  top: 6.25vw;
  right: 8.2291666667vw;
  width: 28.6458333333vw;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.home .section3 .box_right .nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .section3 .box_right .nums .item .p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section3 .box_right .nums .item .p1 .num {
  font-size: 2.0833333333vw;
  font-weight: 600;
}
.home .section3 .box_right .nums .item .p1 span {
  font-size: 1.25vw;
  margin: 0.3125vw 0 0 0.1041666667vw;
}
.home .section3 .box_right .nums .item .tag {
  color: #000;
  font-size: 0.9375vw;
  margin-top: 1.25vw;
}
.home .section3 .box_right .nums .item:not(:last-child) {
  margin-right: 5.2083333333vw;
}
.home .section3 .box_right .t2 {
  margin-bottom: 3.6458333333vw;
  font-size: 1.1458333333vw;
}
.home .section3 .box_left {
  bottom: 6.25vw;
  left: 10.4166666667vw;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.home .section3 .box_left .nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 35vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .section3 .box_left .nums .item {
  width: 30%;
  margin-bottom: 2.5vw;
}
.home .section3 .box_left .nums .item .p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section3 .box_left .nums .item .p1 .num {
  font-size: 2.0833333333vw;
  font-weight: 600;
}
.home .section3 .box_left .nums .item .p1 span {
  font-size: 1.25vw;
  margin: 0.3125vw 0 0 0.1041666667vw;
}
.home .section3 .box_left .nums .item .tag {
  color: #000;
  font-size: 0.9375vw;
  margin-top: 1.25vw;
}
.home .section4 {
  padding: 6.25vw 10.4166666667vw 0 10.4166666667vw;
  background: #F7F8F8;
}
.home .section4 .box {
  padding: 0 0 25vw;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #F7F8F8;
  position: relative;
}
.home .section4 .box .map {
  position: absolute;
  top: 9.7916666667vw;
  z-index: 5;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
}
.home .section4 .box .map .map_f {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 15.625vw;
}
.home .section4 .box .map .map_list {
  opacity: 0;
  pointer-events: none;
}
.home .section4 .box .map .map_list:not(:first-child) {
  position: absolute;
  right: 0;
  top: 0;
}
.home .section4 .box .map .map_list.on {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: yAnimate 0.6s ease forwards;
          animation: yAnimate 0.6s ease forwards;
}
.home .section4 .box .map img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .section4 .box.on {
  -webkit-transition: 3s;
  transition: 3s;
}
.home .section4 .sit {
  position: sticky;
  position: -webkit-sticky;
  top: 6.25vw;
  z-index: 12;
}
@-webkit-keyframes yAnimate {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes yAnimate {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.home .section4 .sit .sit_list {
  display: none;
  -webkit-animation: yAnimate 0.6s ease forwards;
          animation: yAnimate 0.6s ease forwards;
}
.home .section4 .sit .sit_list.on {
  display: block;
}
.home .section4 .title {
  margin-bottom: 4.0104166667vw;
  z-index: 9;
}
.home .section4 .title .t1 {
  font-size: 3.5416666667vw;
  font-family: "PINGFANGSC";
  opacity: 0.2;
  background: -webkit-gradient(linear, left top, right top, from(#003B83), to(#666));
  background: linear-gradient(90deg, #003B83 0%, #666 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.home .section4 .title .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section4 .title .t2 p {
  color: #003B83;
  font-size: 2.5vw;
  font-weight: 600;
  letter-spacing: 0.1041666667vw;
}
.home .section4 .title .t2 svg {
  width: 2.65625vw;
  display: block;
  margin-left: 0.4166666667vw;
}
.home .section4 .content {
  position: relative;
  z-index: 10;
}
.home .section4 .content .pic1 {
  position: relative;
  z-index: 10;
}
.home .section4 .content .pic1 img {
  width: 29.21875vw;
  height: 15.5208333333vw;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section4 .content .map {
  position: absolute;
  right: 18.6458333333vw;
  top: -4.7916666667vw;
  z-index: 5;
}
.home .section4 .content .map img {
  width: 41.9270833333vw;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .section4 .content .map2 {
  top: -2.96875vw;
  right: 6.3541666667vw;
  z-index: 5;
}
.home .section4 .content .map2 img {
  width: 64.4270833333vw;
}
.home .section4 .content .map3 {
  top: 0;
  right: 6.3541666667vw;
}
.home .section4 .content .map3 img {
  width: 64.4270833333vw;
}
.home .section4 .content .t1 {
  margin: 6.09375vw 0 1.25vw 0;
  color: #000;
  font-size: 1.875vw;
  font-weight: 600;
  position: relative;
  z-index: 5;
}
.home .section4 .content .t2 {
  color: #666;
  font-size: 1.25vw;
  margin-bottom: 2.34375vw;
  position: relative;
  z-index: 5;
}
.home .section4 .pics {
  position: relative;
  z-index: 10;
}
.home .section4 .pics .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 1s;
  transition: 1s;
}
.home .section4 .pics .flex.hide_ {
  opacity: 0;
}
.home .section4 .pics .flex:not(:last-child) {
  margin: 0 0 7.2916666667vw;
}
.home .section4 .pics .pic {
  opacity: 0.2;
  -webkit-transition: 1s;
  transition: 1s;
}
.home .section4 .pics .pic.on {
  opacity: 1;
}
.home .section4 .pics .pic img {
  width: 29.21875vw;
  height: 15.5208333333vw;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section4 .pics .pic:nth-child(2n-1) {
  margin-top: 8.3333333333vw;
}
.home .section5 {
  background: #fff;
  padding: 6.25vw 0;
  padding-bottom: 3.125vw;
}
.home .section5 .box {
  margin: 0 10.4166666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.home .section5 .box .title .t1 {
  font-size: 3.5416666667vw;
  font-family: "Montserrat-Regular.otf";
  opacity: 0.2;
  background: -webkit-gradient(linear, left top, right top, from(#003B83), to(#666));
  background: linear-gradient(90deg, #003B83 0%, #666 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.home .section5 .box .title .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section5 .box .title .t2 p {
  color: #003B83;
  font-size: 2.5vw;
  font-weight: 600;
  letter-spacing: 0.1041666667vw;
}
.home .section5 .box .title .t2 svg {
  width: 2.65625vw;
  display: block;
  margin-left: 0.4166666667vw;
}
.home .section5 .box .r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section5 .box .r .types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section5 .box .r .types .item {
  color: rgba(125, 125, 125, 0.8);
  font-size: 0.8333333333vw;
  cursor: pointer;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section5 .box .r .types .item:hover {
  color: #003B83;
  text-decoration: underline;
}
.home .section5 .box .r .types .on {
  color: #003B83;
  text-decoration: underline;
}
.home .section5 .box .r .types span {
  width: 1px;
  height: 0.8333333333vw;
  background: #D9D9D9;
  margin: 0 0.8333333333vw;
}
.home .section5 .box .r .more {
  width: 7.7083333333vw;
  height: 2.1875vw;
  background: url(/images/icon_border.png) no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: 100% 100%;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  margin-left: 5.6770833333vw;
  overflow: hidden;
}
.home .section5 .box .r .more::before {
  background: url(/images/icon_bg.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section5 .box .r .more p {
  background: linear-gradient(134deg, #0579FF -2.75%, #36DBFF 108.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.0416666667vw;
  font-family: "PINGFANGSC";
  -webkit-transition: all 600ms;
  transition: all 600ms;
  position: relative;
  z-index: 2;
}
.home .section5 .box .r .more svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 600ms;
  transition: all 600ms;
  z-index: 2;
}
.home .section5 .box .r .more:hover::before {
  opacity: 1;
}
.home .section5 .box .r .more:hover p {
  color: white;
  background: transparent;
  -webkit-text-fill-color: white;
}
.home .section5 .box .r .more:hover svg {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.home .section5 .allNews {
  width: 100%;
  margin-top: 3.125vw;
}
@-webkit-keyframes move {
  to {
    -webkit-transform: translatex(-300px);
            transform: translatex(-300px);
  }
}
@keyframes move {
  to {
    -webkit-transform: translatex(-300px);
            transform: translatex(-300px);
  }
}
.home .section5 .allNews .box1 {
  display: none;
}
.home .section5 .allNews .box1 .swiper-container {
  width: 100%;
}
.home .section5 .allNews .box1 .swiper-container .swiper-slide {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.home .section5 .allNews .box1 .swiper-container a {
  display: block;
  background: #FAFAFA;
  margin: 0 0 1.5625vw 1.0416666667vw;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section5 .allNews .box1 .swiper-container a .pic {
  position: relative;
  overflow: hidden;
}
.home .section5 .allNews .box1 .swiper-container a .pic img {
  width: 100%;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  height: 16.09375vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section5 .allNews .box1 .swiper-container a .pic .icon {
  position: absolute;
  right: 1.25vw;
  bottom: 1.25vw;
  opacity: 0;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  display: none;
}
.home .section5 .allNews .box1 .swiper-container a .pic .icon img {
  width: 2.0833333333vw;
  display: block;
  height: auto;
}
.home .section5 .allNews .box1 .swiper-container a .text {
  padding: 1.6666666667vw;
  position: relative;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  overflow: hidden;
}
.home .section5 .allNews .box1 .swiper-container a .text .shadow {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  pointer-events: none;
}
.home .section5 .allNews .box1 .swiper-container a .text .shadow img {
  width: 13.59375vw;
  display: block;
  max-height: 100%;
}
.home .section5 .allNews .box1 .swiper-container a .text .p1 {
  color: #333;
  font-size: 1.0416666667vw;
  font-family: "PingFang-Bold";
  -webkit-transition: all 600ms;
  transition: all 600ms;
  height: 2.96875vw;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .section5 .allNews .box1 .swiper-container a .text .des {
  margin: 1.1458333333vw 0 2.5vw 0;
  color: #999;
  font-size: 0.7291666667vw;
  line-height: 2;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .section5 .allNews .box1 .swiper-container a .text .time {
  color: #999;
  font-size: 0.7291666667vw;
}
.home .section5 .allNews .box1 .swiper-container a:hover {
  -webkit-box-shadow: -2px 0.9375vw 1.2239583333vw rgba(192, 192, 192, 0.25);
          box-shadow: -2px 0.9375vw 1.2239583333vw rgba(192, 192, 192, 0.25);
}
.home .section5 .allNews .box1 .swiper-container a:hover .pic img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .section5 .allNews .box1 .swiper-container a:hover .pic .icon {
  opacity: 1;
}
.home .section5 .allNews .box1 .swiper-container a:hover .text .shadow {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.home .section5 .allNews .box1 .swiper-container a:hover .text .p1 {
  color: #003B83;
}
.home .section5 .allNews .on {
  display: block;
}
.home .section6 {
  background: #F7F8F8;
  padding: 3.125vw 0;
}
.home .section6 .swiper_go {
  margin-top: 3.125vw;
}
.home .section6 .swiper_go .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.home .section6 .swiper_go .swiper-wrapper .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2.1875vw;
}
.home .section6 .swiper_go .swiper-wrapper .swiper-slide img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.4;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.home .section6 .swiper_go .swiper-wrapper .swiper-slide.swiper-slide-active img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}
.home .section6 .title {
  margin: 0 10.4166666667vw;
}
.home .section6 .title .t1 {
  font-size: 3.5416666667vw;
  font-family: "PINGFANGSC";
  opacity: 0.2;
  background: -webkit-gradient(linear, left top, right top, from(#003B83), to(#666));
  background: linear-gradient(90deg, #003B83 0%, #666 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.home .section6 .title .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .section6 .title .t2 p {
  color: #003B83;
  font-size: 2.5vw;
  font-weight: 600;
  letter-spacing: 0.1041666667vw;
}
.home .section6 .title .t2 svg {
  width: 2.65625vw;
  display: block;
  margin-left: 0.4166666667vw;
}
.home .section6 .scroll-container {
  width: 100%;
  overflow: hidden;
  margin-top: 5.2083333333vw;
}
.home .section6 .scroll-container .animate_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: ani-loop 20s linear infinite;
          animation: ani-loop 20s linear infinite;
  padding-bottom: 20px;
}
.home .section6 .scroll-container .animate_box:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.home .section6 .scroll-container .animate_box .flex-xb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .section6 .scroll-container .animate_box .flex-xb .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .section6 .scroll-container .animate_box .flex-xb .icon img {
  max-width: 60%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.4;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section6 .scroll-container .animate_box .flex-xb .icon:hover img {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@-webkit-keyframes ani-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes ani-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.home .section7 {
  position: relative;
}
.home .section7 .bgs {
  width: 100%;
}
.home .section7 .bgs .bg {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 1s;
  transition: 1s;
}
.home .section7 .bgs .bg:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.home .section7 .bgs .bg::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 59, 131, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 59, 131, 0) 100%);
}
.home .section7 .bgs .bg img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section7 .bgs .on {
  opacity: 1;
  pointer-events: auto;
}
.home .section7 .allItems {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
.home .section7 .allItems .item {
  width: 20%;
  border-right: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section7 .allItems .item .icon {
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section7 .allItems .item .icon svg {
  width: 2.5vw;
  display: block;
}
.home .section7 .allItems .item .t1 {
  color: #FFF;
  font-size: 1.875vw;
  font-family: "PINGFANGSC";
  margin-top: 0.9375vw;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section7 .allItems .item a {
  width: 7.7083333333vw;
  height: 2.1875vw;
  border: 2px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  float: right;
  overflow: hidden;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  color: #fff;
  margin-top: 4.1666666667vw;
}
.home .section7 .allItems .item a::before {
  background: url(/images/icon_btnbg.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}
.home .section7 .allItems .item a p {
  font-size: 1.1458333333vw;
  font-family: "PINGFANGSC";
}
.home .section7 .allItems .item a svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  -webkit-transition: all 600ms;
  transition: all 600ms;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
.home .section7 .allItems .item a:hover {
  border-color: transparent;
  color: white;
}
.home .section7 .allItems .item a:hover::before {
  opacity: 1;
}
.home .section7 .allItems .item a:hover svg {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.home .section7 .allItems .on {
  width: 42%;
}
.home .section7 .allItems .on .icon {
  opacity: 0;
  -webkit-transform: translateY(-2vw);
      -ms-transform: translateY(-2vw);
          transform: translateY(-2vw);
}
.home .section7 .allItems .on .t1 {
  -webkit-transform: scale(1.2) translateY(-2vw);
      -ms-transform: scale(1.2) translateY(-2vw);
          transform: scale(1.2) translateY(-2vw);
}
.home .section7 .allItems .on a {
  opacity: 1;
  -webkit-transform: translateY(-2vw);
      -ms-transform: translateY(-2vw);
          transform: translateY(-2vw);
}
.home .section7 .allItems .item:last-child {
  border-right: none;
}
@media screen and (max-width: 1024px) {
  .home {
    padding-top: 60px;
  }
  .home .loading {
    pointer-events: inherit;
    display: none;
  }
  .home .banner {
    opacity: 1;
  }
  .home .banner .prev svg, .home .banner .next svg {
    width: 20px;
    height: 20px;
  }
  .home .banner .swiper-pagination {
    bottom: 35px;
  }
  .home .banner .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 10px 0 0 !important;
  }
  .home .banner .swiper-pagination .swiper-pagination-bullet:last-child {
    margin: 0 !important;
  }
  .home .banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 17px;
    height: 6px;
    border-radius: 12px;
  }
  .home .banner .swiper-container .item video, .home .banner .swiper-container .item img {
    height: 50vh;
  }
  .home .banner .swiper-container .item .text {
    top: unset !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    bottom: 70px !important;
  }
  .home .banner .swiper-container .item .text .p1 {
    font-size: 30px !important;
    line-height: 1.5;
    margin-bottom: 15px !important;
  }
  .home .section_new {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section_new .lb {
    width: 100%;
  }
  .home .section_new .lb .box1 {
    height: 200px;
  }
  .home .section_new .lb .box1 .text {
    left: 5%;
  }
  .home .section_new .lb .box1 .text .p1 {
    font-size: 24px;
  }
  .home .section_new .lb .box1 .text .p2 {
    font-size: 18px;
    margin-top: 15px;
  }
  .home .section_new .lb .box2 a img {
    height: 200px;
  }
  .home .section_new .lb .box2 a .text {
    left: 5%;
    bottom: 15%;
  }
  .home .section_new .lb .box2 a .text .p1 {
    font-size: 18px;
  }
  .home .section_new .lb .box2 a .text .p2 {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .section_new .rb {
    width: 100%;
  }
  .home .section_new .rb .box_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section_new .rb .box_top .rb_left {
    width: 100%;
  }
  .home .section_new .rb .box_top .rb_left a img {
    height: 200px;
  }
  .home .section_new .rb .box_top .rb_left a .text {
    left: 5%;
    bottom: 15%;
  }
  .home .section_new .rb .box_top .rb_left a .text .p1 {
    font-size: 18px;
  }
  .home .section_new .rb .box_top .rb_left a .text .p2 {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .section_new .rb .box_top .rb_right {
    width: 100%;
  }
  .home .section_new .rb .box_top .rb_right a::before {
    background: url(/images/yy1.png) no-repeat;
    background-size: cover;
  }
  .home .section_new .rb .box_top .rb_right a img {
    height: 200px;
  }
  .home .section_new .rb .box_top .rb_right a .text {
    left: 5%;
    bottom: 15%;
  }
  .home .section_new .rb .box_top .rb_right a .text .p1 {
    font-size: 18px;
  }
  .home .section_new .rb .box_top .rb_right a .text .p2 {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .section_new .rb .box_bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section_new .rb .box_bottom .rb_left {
    width: 100%;
    height: 200px;
  }
  .home .section_new .rb .box_bottom .rb_left .text .p1 {
    font-size: 16px;
  }
  .home .section_new .rb .box_bottom .rb_left .text .p1 span {
    font-size: 32px;
  }
  .home .section_new .rb .box_bottom .rb_left .text .des {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .section_new .rb .box_bottom .rb_right {
    width: 100%;
    height: auto;
  }
  .home .section_new .rb .box_bottom .rb_right a img {
    height: 200px;
  }
  .home .section_new .rb .box_bottom .rb_right a .text {
    left: 5%;
    bottom: 15%;
  }
  .home .section_new .rb .box_bottom .rb_right a .text .p1 {
    font-size: 18px;
  }
  .home .section_new .rb .box_bottom .rb_right a .text .p2 {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .section1 {
    height: auto !important;
  }
  .home .section1 .fix {
    -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
            transform: scale(1) !important;
    height: auto;
    position: static;
  }
  .home .section1 .fix .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .home .section1 .fix .bg:after {
    opacity: 1 !important;
  }
  .home .section1 .fix .bg img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  .home .section1 .content {
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .home .section1 .content .y {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .home .section1 .content .t1 {
    font-size: 36px;
    padding-top: 25px;
  }
  .home .section1 .content .t2 svg {
    width: 20px;
  }
  .home .section1 .content .t2 p {
    font-size: 24px;
  }
  .home .section1 .content .pics {
    margin: 25px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section1 .content .pics a {
    width: 100%;
    margin: 0 0 45px !important;
  }
  .home .section1 .content .pics a .pic img:not(.svg) {
    height: 200px;
  }
  .home .section1 .content .pics a .text .p1 {
    margin: 15px 0 7px 0;
    font-size: 24px;
  }
  .home .section1 .content .pics a .text .des {
    font-size: 14px;
    line-height: 1.6;
  }
  .home .section2 {
    height: auto;
    z-index: 9;
  }
  .home .section2 * {
    -webkit-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  .home .section2 .bg-mask {
    opacity: 0.5;
  }
  .home .section2 .about-label {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    left: 0;
    top: 0;
    font-size: 36px;
    margin: 35px 0 0 0;
  }
  .home .section2 .about-label .jm-fade-show {
    height: auto !important;
  }
  .home .section2 .about-label .jm-fade-show .fix {
    position: static;
  }
  .home .section2 .about-content {
    height: auto !important;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5%;
    right: 0;
    top: 0;
    margin: 45px 0 0 0;
  }
  .home .section2 .about-content .fix {
    position: static;
    top: 0;
  }
  .home .section2 .about-content .fix .des p {
    font-size: 14px;
  }
  .home .section2 .about-content h3 {
    text-align: left;
    font-size: 24px;
  }
  .home .section2 .about-content .more {
    width: 117px;
    height: 33px;
    float: unset;
  }
  .home .section2 .about-content .more p {
    font-size: 12px;
  }
  .home .section2 .about-content .more svg {
    display: none;
  }
  .home .section2 .nums {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0 5%;
    margin: 40px 0;
  }
  .home .section2 .nums .item .p1 .num {
    font-size: 36px;
  }
  .home .section2 .nums .item .p1 span {
    font-size: 16px;
    margin-top: 13px;
  }
  .home .section2 .nums .item .tag {
    font-size: 14px;
  }
  .home .section3 {
    height: auto;
    padding: 0 0 30px;
  }
  .home .section3 .fix {
    height: auto;
    position: static;
  }
  .home .section3 .lc2, .home .section3 .lc1 {
    display: none;
  }
  .home .section3 .mask {
    display: none !important;
  }
  .home .section3 .box_right {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    position: static;
    width: 100%;
    padding: 0 5%;
  }
  .home .section3 .box_right .t {
    margin: 30px 0 7px 0;
  }
  .home .section3 .box_right .t p {
    font-size: 20px;
  }
  .home .section3 .box_right .t svg {
    width: 20px;
    margin-left: 10px;
  }
  .home .section3 .box_right .t2 {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .home .section3 .box_right .nums .item:not(:last-child) {
    margin: 0 30px 0 0;
  }
  .home .section3 .box_right .nums .item .p1 .num {
    font-size: 24px;
  }
  .home .section3 .box_right .nums .item .p1 span {
    font-size: 16px;
  }
  .home .section3 .box_right .nums .item .tag {
    margin-top: 7px;
    font-size: 14px;
  }
  .home .section3 .box_left {
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    position: static;
    width: 100%;
    padding: 0 5%;
  }
  .home .section3 .box_left .t {
    margin: 30px 0 7px 0;
  }
  .home .section3 .box_left .t p {
    font-size: 20px;
  }
  .home .section3 .box_left .t svg {
    width: 20px;
    margin-left: 10px;
  }
  .home .section3 .box_left .nums {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .home .section3 .box_left .nums .item {
    width: 100%;
  }
  .home .section3 .box_left .nums .item:not(:last-child) {
    margin: 0 30px 0 0;
  }
  .home .section3 .box_left .nums .item .p1 .num {
    font-size: 24px;
  }
  .home .section3 .box_left .nums .item .p1 span {
    font-size: 16px;
  }
  .home .section3 .box_left .nums .item .tag {
    margin-top: 7px;
    font-size: 14px;
  }
  .home .section4 {
    padding: 30px 5% 0 5%;
  }
  .home .section4 .pics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section4 .pics .pic {
    margin-top: 0 !important;
    opacity: 1;
  }
  .home .section4 .pics .pic:not(:last-child) {
    margin: 0 0 20px !important;
  }
  .home .section4 .pics .pic img {
    width: 100%;
    height: auto;
  }
  .home .section4 .box {
    margin-top: 0 !important;
    padding: 0 0 50px !important;
    opacity: 1;
    pointer-events: auto;
  }
  .home .section4 .box .sit .title {
    position: static;
  }
  .home .section4 .box .sit .title .t1 {
    font-size: 22px;
  }
  .home .section4 .box .sit .title .t2 p {
    font-size: 20px;
  }
  .home .section4 .box .sit .title .t2 svg {
    width: 20px;
    margin-left: 10px;
  }
  .home .section4 .box .sit .content .map {
    display: none;
  }
  .home .section4 .box .sit .content .pic1 img {
    width: 100%;
    height: auto;
  }
  .home .section4 .box .sit .content .t1 {
    font-size: 16px;
    margin: 25px 0 10px 0;
  }
  .home .section4 .box .sit .content .t2 {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .home .section5 {
    padding: 40px 5%;
  }
  .home .section5 .box {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
  .home .section5 .box .title {
    position: static;
    margin: 0 0 20px;
  }
  .home .section5 .box .title .t1 {
    font-size: 22px;
  }
  .home .section5 .box .title .t2 p {
    font-size: 20px;
  }
  .home .section5 .box .title .t2 svg {
    width: 20px;
    margin-left: 10px;
  }
  .home .section5 .box .r .more {
    width: 120px;
    height: 35px;
    margin: 0;
  }
  .home .section5 .box .r .more svg {
    width: 55px;
  }
  .home .section5 .box .r .more p {
    font-size: 16px;
  }
  .home .section5 .allNews {
    margin-top: 30px;
  }
  .home .section5 .allNews .box1 .swiper-container a .pic img {
    height: 180px;
  }
  .home .section5 .allNews .box1 .swiper-container a .text {
    padding: 25px 5%;
  }
  .home .section5 .allNews .box1 .swiper-container a .text .p1 {
    font-size: 16px;
    height: auto;
  }
  .home .section5 .allNews .box1 .swiper-container a .text .des {
    margin: 25px 0 30px 0;
    font-size: 14px;
    line-height: 1.7;
  }
  .home .section5 .allNews .box1 .swiper-container a .text .time {
    font-size: 14px;
    line-height: 1.7;
  }
  .home .section6 {
    padding: 35px 0 0 0;
  }
  .home .section6 .title {
    position: static;
    margin: 0 0 20px;
    padding: 0 5%;
  }
  .home .section6 .title .t1 {
    font-size: 22px;
  }
  .home .section6 .title .t2 p {
    font-size: 20px;
  }
  .home .section6 .title .t2 svg {
    width: 20px;
    margin-left: 10px;
  }
  .home .section6 .swiper_go {
    margin-top: 20px;
  }
  .home .section7 .allItems {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .section7 .allItems .item {
    width: 100%;
    height: 20%;
    border-bottom: 1px solid white;
  }
  .home .section7 .allItems .item .icon {
    opacity: 1 !important;
  }
  .home .section7 .allItems .item .icon svg {
    width: 30px;
  }
  .home .section7 .allItems .item .t1 {
    font-size: 24px;
    margin: 20px 0;
  }
  .home .section7 .allItems .item a {
    width: 120px;
    height: 35px;
  }
  .home .section7 .allItems .item a p {
    font-size: 16px;
  }
  .home .section7 .bgs .bg img {
    height: 1200px;
  }
}