.home {
  position: relative;
  width: 100%;
  background: #FAFAFA;
}
.home .dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  display: none;
}
.home .dialog .content {
  width: 70.3125vw;
  height: 41.6666666667vw;
  background: #FFF;
  padding: 4.1666666667vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.home .dialog .content .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.home .dialog .content .bg img {
  width: 15.8854166667vw;
  display: block;
}
.home .dialog .content .close {
  position: absolute;
  right: 2.5vw;
  top: 2.5vw;
  cursor: pointer;
}
.home .dialog .content .close svg {
  width: 1.6666666667vw;
}
.home .dialog .content .l {
  width: 27.0833333333vw;
}
.home .dialog .content .l .sw1 {
  margin-bottom: 0.8333333333vw;
}
.home .dialog .content .l .sw1 .swiper-container {
  width: 100%;
  height: 27.0833333333vw;
}
.home .dialog .content .l .sw1 .swiper-container .pic {
  background: #F6F6F6;
  width: 100%;
  height: 27.0833333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .dialog .content .l .sw1 .swiper-container .pic img {
  max-width: 90%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .dialog .content .l .sw2 {
  position: relative;
}
.home .dialog .content .l .sw2 .prev {
  position: absolute;
  left: -2.6041666667vw;
  width: 2.1875vw;
  height: 2.1875vw;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 0.5208333333vw rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .dialog .content .l .sw2 .prev svg {
  width: 0.625vw;
  display: block;
}
.home .dialog .content .l .sw2 .next {
  position: absolute;
  right: -2.6041666667vw;
  width: 2.1875vw;
  height: 2.1875vw;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 0.5208333333vw rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .dialog .content .l .sw2 .next svg {
  width: 0.625vw;
  display: block;
}
.home .dialog .content .l .sw2 .swiper-container {
  width: 100%;
}
.home .dialog .content .l .sw2 .swiper-container .pic {
  background: #F6F6F6;
  width: 100%;
  height: 5.4166666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .dialog .content .l .sw2 .swiper-container .pic img {
  max-width: 90%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .dialog .content .r {
  width: 27.1875vw;
}
.home .dialog .content .r .p1 {
  color: #333;
  font-size: 1.6666666667vw;
  font-family: "PingFang-Bold";
}
.home .dialog .content .r .tags {
  margin: 2.5vw 0;
  display: flex;
}
.home .dialog .content .r .tags p {
  border-radius: 4.6875vw;
  border: 1px solid #C4C4C4;
  color: #666;
  font-size: 0.8333333333vw;
  padding: 0.5729166667vw 1.0416666667vw;
  margin-right: 0.4166666667vw;
}
.home .dialog .content .r .des {
  color: #666;
  font-size: 1.0416666667vw;
  line-height: 2;
  margin-bottom: 4.6875vw;
  height: 12.5vw;
  overflow: hidden;
  overflow-y: scroll;
}
.home .dialog .content .r .more {
  width: 7.7083333333vw;
  height: 2.1875vw;
  background: url(/images/icon_border.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: 100% 100%;
  transition: all 600ms;
  overflow: hidden;
  cursor: pointer;
}
.home .dialog .content .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;
  transition: all 600ms;
}
.home .dialog .content .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";
  transition: all 600ms;
  position: relative;
  z-index: 2;
}
.home .dialog .content .r .more svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  transform: translateX(100%);
  transition: all 600ms;
  z-index: 2;
}
.home .dialog .content .r .more:hover::before {
  opacity: 1;
}
.home .dialog .content .r .more:hover p {
  color: white;
  background: transparent;
  -webkit-text-fill-color: white;
}
.home .dialog .content .r .more:hover svg {
  transform: translateX(0);
}
.home .common_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.home .common_title {
  display: flex;
  align-items: center;
}
.home .common_title p {
  color: #003B83;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 400;
  font-family: "PingFang-Bold";
  margin: 0 0.4166666667vw 0 0;
}
.home .common_title img {
  width: 2.65625vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .banner {
  position: relative;
  height: calc(100vh + 600px);
}
.home .banner .fix {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.home .banner .bg {
  position: relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
}
.home .banner .bg .animate {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}
.home .banner .bg img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  position: absolute;
  right: 0;
}
.home .banner .text {
  position: absolute;
  left: 10.4166666667vw;
  top: 16.875vw;
  color: #fff;
}
.home .banner .text.on .p1 {
  color: #000;
}
.home .banner .text.on .p2 {
  color: #000;
}
.home .banner .text .p1 {
  font-size: 8.3333333333vw;
  line-height: 1;
  margin-bottom: 2.0833333333vw;
  transition: 0.3s ease;
}
.home .banner .text .p2 {
  font-size: 2.5vw;
  transition: 0.3s ease;
}
.home .banner .product-label {
  align-items: flex-end;
  background: linear-gradient(180deg, transparent, #000 95%);
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 12.5vw;
  height: 12.989vw;
  left: 0;
  letter-spacing: -0.5208vw;
  line-height: 0.68;
  mix-blend-mode: darken;
  padding-left: 10.4166666667vw;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.home .banner .product-label .en_num_light {
  font: inherit;
  margin: 0;
  font-family: "PINGFANGSC";
}
.home .section1 {
  padding: 3.125vw 15.78125vw 0 14.7395833333vw;
  position: relative;
  z-index: 2;
}
.home .section1 .title {
  color: #003B83;
  font-size: 2.5vw;
  font-style: normal;
  font-family: "PingFang-Bold";
  text-align: center;
  font-weight: 400;
  margin: 0 0 5.15625vw;
}
.home .section1 .content {
  width: 100%;
  position: relative;
}
.home .section1 .content .position {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .section1 .content .position .point {
  position: absolute;
  cursor: pointer;
}
.home .section1 .content .position .point .circle {
  width: 0.625vw;
  height: 0.625vw;
}
.home .section1 .content .position .point .circle svg {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.home .section1 .content .position .point .circle img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .section1 .content .position .point .hide1 {
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: 0.6s ease;
  z-index: 2;
}
.home .section1 .content .position .point .hide1 .jump {
  width: 12.5vw;
  background: rgba(247, 247, 247, 0.8);
  box-shadow: -2px 18px 23.5px 0px rgba(192, 192, 192, 0.25);
  padding: 0.5208333333vw;
  transform: translateX(0.8854166667vw);
}
.home .section1 .content .position .point .hide1 .jump .img {
  width: 100%;
  position: relative;
}
.home .section1 .content .position .point .hide1 .jump .img .button {
  width: 100%;
  display: none;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.home .section1 .content .position .point .hide1 .jump .img .button .click {
  cursor: pointer;
  pointer-events: auto;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.home .section1 .content .position .point .hide1 .jump .img .button .click:last-child {
  transform: rotate(180deg);
}
.home .section1 .content .position .point .hide1 .jump .img .button .click svg {
  width: 0.3125vw;
  height: 0.625vw;
}
.home .section1 .content .position .point .hide1 .jump .img .swiper-container {
  width: 100%;
}
.home .section1 .content .position .point .hide1 .jump .img .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
}
.home .section1 .content .position .point .hide1 .jump .text h1 {
  color: #000;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 500;
  margin: 1.25vw 0 0.8333333333vw 0;
  font-family: "PingFang-Bold";
  text-transform: uppercase;
}
.home .section1 .content .position .point .hide1 .jump .text p {
  color: #666;
  font-size: 0.7291666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4583333333vw; /* 200% */
}
.home .section1 .content .position .point.right .hide1 {
  position: absolute;
  right: 100%;
  left: unset;
  transform: translateX(-10px);
}
.home .section1 .content .position .point.right .hide1 .jump {
  transform: translateX(-0.8854166667vw);
}
.home .section1 .content .position .on .hide1 {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) !important;
}
.home .section1 .content .position .point1 {
  top: 20.1041666667vw;
  left: 12.2916666667vw;
}
.home .section1 .content .position .point2 {
  bottom: 9.0104166667vw;
  left: 22.1354166667vw;
}
.home .section1 .content .position .point3 {
  top: 15.0520833333vw;
  left: 34.375vw;
}
.home .section1 .content .position .point4 {
  top: 15.1041666667vw;
  left: 35.9375vw;
}
.home .section1 .content .position .point5 {
  bottom: 8.9583333333vw;
  right: 15.46875vw;
}
.home .section1 .content .position .point6 {
  bottom: 13.5416666667vw;
  right: 14.0625vw;
}
.home .section1 .content .position .point7 {
  bottom: 15vw;
  right: 13.5416666667vw;
}
.home .section1 .content .position .point8 {
  bottom: 15vw;
  right: 12.96875vw;
}
.home .section1 .content .position .point9 {
  bottom: 17.7083333333vw;
  right: 13.8020833333vw;
}
.home .section1 .content .position .point10 {
  bottom: 15.2604166667vw;
  right: 13.9583333333vw;
}
.home .section1 .content .position .point11 {
  bottom: 15.625vw;
  right: 14.5833333333vw;
  display: none;
}
.home .section1 .content .position .point12 {
  bottom: 14.5833333333vw;
  right: 13.28125vw;
}
.home .section1 .content .position .point13 {
  bottom: 15.7291666667vw;
  right: 13.125vw;
}
.home .section1 .content .position .point14 {
  bottom: 6.9791666667vw;
  left: 22.1354166667vw;
}
.home .section1 .content img {
  width: 100%;
}
.home .section2 {
  position: relative;
  z-index: 1;
  padding: 6.3020833333vw 10.4166666667vw 2.7083333333vw 10.4166666667vw;
}
.home .section2 .dbox2 {
  display: flex;
  justify-content: space-between;
  margin: 2.7083333333vw 0 8.0208333333vw 0;
  align-items: center;
}
.home .section2 .dbox2 .text {
  width: 32.8645833333vw;
  color: #2D2D2D;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875vw; /* 200% */
  text-transform: uppercase;
}
.home .section2 .dbox2 .rb {
  display: flex;
}
.home .section2 .dbox2 .rb .item {
  display: flex;
}
.home .section2 .dbox2 .rb .item:first-child {
  margin-right: 10.4166666667vw;
}
.home .section2 .dbox2 .rb .item .line {
  width: 0.1041666667vw;
  height: 5.5208333333vw;
  background: #D9D9D9;
  margin: 0.78125vw 2.3958333333vw 0 0;
}
.home .section2 .dbox2 .rb .item .other .dis {
  display: flex;
  align-items: flex-end;
  margin: 0 0 1.25vw;
}
.home .section2 .dbox2 .rb .item .other .dis span {
  color: #003B83;
  text-align: center;
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.125vw;
  font-family: "Futura", sans-serif;
  min-width: 6.9270833333vw;
}
.home .section2 .dbox2 .rb .item .other .dis .s1 {
  color: #003B83;
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 400;
  position: relative;
}
.home .section2 .dbox2 .rb .item .other .p1 {
  color: #181818;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  font-family: "PingFang-Bold";
  margin: 0 0 0.8333333333vw;
}
.home .section2 .dbox2 .rb .item .other .p2 {
  color: #000;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 300;
}
.home .section2 .flex {
  display: flex;
  justify-content: space-between;
}
.home .section2 .flex:not(:last-child) {
  margin: 0 0 6.25vw;
}
.home .section2 .flex .item {
  display: flex;
}
.home .section2 .flex .item .line {
  width: 0.1041666667vw;
  height: 5.5208333333vw;
  background: #D9D9D9;
  margin: 0.78125vw 2.3958333333vw 0 0;
}
.home .section2 .flex .item .other .dis {
  display: flex;
  align-items: flex-end;
  margin: 0 0 1.25vw;
}
.home .section2 .flex .item .other .dis span {
  color: #003B83;
  text-align: center;
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.125vw;
  font-family: "Futura", sans-serif;
}
.home .section2 .flex .item .other .dis .s1 {
  color: #003B83;
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 400;
  position: relative;
}
.home .section2 .flex .item .other .p1 {
  color: #181818;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  font-family: "PingFang-Bold";
  margin: 0 0 0.8333333333vw;
}
.home .section2 .flex .item .other .p2 {
  color: #000;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 300;
}
.home .section3 .common_title {
  margin: 5.8333333333vw 10.4166666667vw;
}
.home .section3 .box2 {
  position: relative;
  overflow: hidden;
}
.home .section3 .box2 .boxes .box {
  position: relative;
}
.home .section3 .box2 .boxes .box::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.home .section3 .box2 .boxes .box img {
  width: 100%;
  display: block;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section3 .box2 .boxes .box .text {
  position: absolute;
  left: 10.4166666667vw;
  top: 6.3020833333vw;
  color: white;
}
.home .section3 .box2 .boxes .box .text .p1 {
  font-size: 2.5vw;
  margin-bottom: 2.0833333333vw;
}
.home .section3 .box2 .boxes .box .text .des {
  font-size: 1.0416666667vw;
  font-family: "PINGFANGSC";
  width: 30.2083333333vw;
  line-height: 2;
}
.home .section3 .box2 .list {
  position: absolute;
  right: 0;
  top: 0;
  width: 31.25vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}
.home .section3 .box2 .list .item {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 33.4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.home .section3 .box2 .list .item .icon {
  margin-bottom: 1.25vw;
}
.home .section3 .box2 .list .item .icon img {
  width: 2.5vw;
  display: block;
}
.home .section3 .box2 .list .item p {
  color: #FFF;
  font-size: 1.25vw;
}
.home .section3 .box2 .list .item .shadw {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transform: translateX(100%);
  transition: all 600ms;
  pointer-events: none;
}
.home .section3 .box2 .list .item .shadw img {
  display: block;
  height: 100%;
}
.home .section3 .box2 .list .on .shadw {
  transform: translateX(0);
}
.home .section4 {
  padding: 6.25vw 0 6.25vw 0;
  position: relative;
  z-index: 5;
}
.home .section4 .common_title {
  margin: 0 0 5.15625vw 10.4166666667vw;
}
.home .section4 .content {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home .section4 .content .prev {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.home .section4 .content .prev svg {
  width: 4.0625vw;
  display: block;
}
.home .section4 .content .next {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.home .section4 .content .next svg {
  width: 4.0625vw;
  display: block;
}
.home .section4 .content .caseSwiper {
  width: 192.5vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.home .section4 .content .caseSwiper .swiper-slide {
  position: relative;
}
.home .section4 .content .caseSwiper .swiper-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: 0.6s ease;
}
.home .section4 .content .caseSwiper .swiper-slide.swiper-slide-active .text {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s ease;
  transition-delay: 0.2s;
}
.home .section4 .content .caseSwiper .swiper-slide .img {
  width: 100%;
  height: 36.4583333333vw;
}
.home .section4 .content .caseSwiper .swiper-slide .text {
  position: absolute;
  top: 4.1666666667vw;
  left: 4.1666666667vw;
  z-index: 5;
  transform: translateY(15px);
  opacity: 0;
}
.home .section4 .content .caseSwiper .swiper-slide .text h1 {
  color: #fff;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 0.7291666667vw;
  font-family: "PingFang-Bold";
}
.home .section4 .content .caseSwiper .swiper-slide .text p {
  color: #000;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5625vw; /* 150% */
}
.home .section4 .content .caseSwiper .swiper-slide .text a {
  width: 7.7083333333vw;
  height: 2.1875vw;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 600ms;
  margin-top: 2.2395833333vw;
  cursor: pointer;
}
.home .section4 .content .caseSwiper .swiper-slide .text a::before {
  background: url(/images/icon_btnbg2.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 600ms;
}
.home .section4 .content .caseSwiper .swiper-slide .text a p {
  font-size: 1.1458333333vw;
  color: #fff;
  font-family: "PINGFANGSC";
}
.home .section4 .content .caseSwiper .swiper-slide .text a svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  transition: all 600ms;
  transform: translateX(100%);
}
.home .section4 .content .caseSwiper .swiper-slide .text a:hover {
  border-color: transparent;
  color: white;
}
.home .section4 .content .caseSwiper .swiper-slide .text a:hover::before {
  opacity: 1;
}
.home .section4 .content .caseSwiper .swiper-slide .text a:hover svg {
  transform: translateX(0);
}
.home .section5 {
  position: relative;
  z-index: 41;
  padding: 6.25vw 10.4166666667vw 7.34375vw 10.4166666667vw;
}
.home .section5 .content {
  padding: 0 3.8020833333vw;
  margin: 5.8333333333vw 0 0 0;
}
.home .section5 .content .rySwiper .swiper-slide {
  position: relative;
  padding: 1.8229166667vw;
}
.home .section5 .content .rySwiper .swiper-slide::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 600ms;
}
.home .section5 .content .rySwiper .swiper-slide img {
  width: 100%;
  transition: all 600ms;
  box-shadow: 0px 4.583px 16.042px -3.437px rgba(0, 0, 0, 0.25);
}
.home .section5 .content .rySwiper .swiper-slide-active::before {
  opacity: 0;
}
.home .section5 .content .rySwiper .swiper-slide-active img {
  box-shadow: 0px 0.2386979167vw 1.19359375vw 1.25vw rgba(171, 171, 171, 0.21);
}
.home .section5 .display {
  display: flex;
  justify-content: center;
  margin: 5.9895833333vw 0 0 0;
}
.home .section5 .display .item {
  position: relative;
  width: 17.5520833333vw;
}
.home .section5 .display .item .hei {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  top: -0.625vw;
}
.home .section5 .display .item:not(:last-child) {
  margin: 0 2.9166666667vw 0 0;
}
.home .section5 .display .item .dis {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home .section5 .display .item .dis span {
  color: #BD9448;
  text-align: center;
  font-size: 1.875vw;
  font-style: normal;
  font-weight: 500;
  font-family: "PingFang-Bold";
}
.home .section5 .display .item .dis .p1 {
  color: #BD9448;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 500;
  position: relative;
  top: -0.46875vw;
}
.home .section5 .display .item .p2 {
  color: #BD9448;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}
.home .section6 {
  background: #F7F8F8;
  padding: 6.25vw 10.4166666667vw 4.0104166667vw 10.4166666667vw;
}
.home .section6 .cut {
  display: flex;
  justify-content: center;
}
.home .section6 .cut .item {
  text-align: center;
  cursor: pointer;
}
.home .section6 .cut .item:not(:last-child) {
  margin: 0 6.25vw 0 0;
}
.home .section6 .cut .item .icon {
  width: 6.25vw;
  height: 6.25vw;
  background: #FFF;
  -webkit-backdrop-filter: blur(0.5208333333vw);
          backdrop-filter: blur(0.5208333333vw);
  border-radius: 50%;
  position: relative;
}
.home .section6 .cut .item .icon svg {
  max-width: 50%;
  display: block;
  position: absolute;
  max-height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .section6 .cut .item .icon svg path,
.home .section6 .cut .item .icon svg rect,
.home .section6 .cut .item .icon svg circle {
  transition: all 600ms;
  stroke: #DFDFDF;
}
.home .section6 .cut .item .icon .border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 600ms;
}
.home .section6 .cut .item .icon .border img {
  width: 100%;
  display: block;
}
.home .section6 .cut .item p {
  color: #000;
  font-size: 1.25vw;
  margin-top: 1.25vw;
}
.home .section6 .cut .item.on .icon svg path,
.home .section6 .cut .item.on .icon svg rect,
.home .section6 .cut .item.on .icon svg circle {
  stroke: #0579FF;
}
.home .section6 .cut .item.on .icon .border {
  opacity: 1;
}
.home .section6 .content {
  margin: 8.3333333333vw 0 0 0;
}
.home .section6 .content .matter {
  display: none;
}
.home .section6 .content .matter .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.home .section6 .content .matter .list .item {
  width: 25.2604166667vw;
  height: 28.4895833333vw;
  position: relative;
  z-index: 1;
  margin: 0 1.5625vw 9.375vw 0;
  cursor: pointer;
}
.home .section6 .content .matter .list .item:nth-child(3n) {
  margin: 0 0 9.375vw;
}
.home .section6 .content .matter .list .item:hover:after {
  height: 100%;
}
.home .section6 .content .matter .list .item:hover .po1 img {
  transform: translateX(0);
}
.home .section6 .content .matter .list .item:hover .img img {
  transform: scale(1.05);
}
.home .section6 .content .matter .list .item:hover .position {
  background: transparent;
}
.home .section6 .content .matter .list .item:hover .position:after {
  opacity: 1;
}
.home .section6 .content .matter .list .item:hover .position svg path {
  stroke: #fff;
}
.home .section6 .content .matter .list .item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #FFF;
  box-shadow: -2px 18px 23.5px 0px rgba(192, 192, 192, 0.25);
  transition: 0.6s ease;
}
.home .section6 .content .matter .list .item .po1 {
  position: absolute;
  width: 13.59375vw;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.home .section6 .content .matter .list .item .po1 img {
  transition: 0.6s ease;
  width: 100%;
  display: block;
  transform: translateX(100%);
}
.home .section6 .content .matter .list .item .img {
  margin: 0 auto 1.8229166667vw;
  width: 19.0104166667vw;
  height: 14.4270833333vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home .section6 .content .matter .list .item .img img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: 0.6s ease;
}
.home .section6 .content .matter .list .item .text h1 {
  color: #333;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-family: "PingFang-Bold";
}
.home .section6 .content .matter .list .item .text .dis {
  margin: 2.5vw 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.4166666667vw;
}
.home .section6 .content .matter .list .item .text .dis div {
  width: 5.46875vw;
  height: 2.5520833333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4.6875vw;
  border: 1px solid #C4C4C4;
  color: #666;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 500;
}
.home .section6 .content .matter .list .item .position {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.0833333333vw;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.05);
  transition: 0.6s ease;
  z-index: 1;
}
.home .section6 .content .matter .list .item .position:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(144deg, #0073FF 10.17%, #4BC9FF 103.28%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.6s ease;
}
.home .section6 .content .matter .list .item .position svg {
  width: 1.25vw;
  height: 1.25vw;
}
.home .section6 .content .matter .list .item .position svg path {
  transition: 0.6s ease;
}
.home .section6 .content .matter.on {
  display: block;
  -webkit-animation: 0.6s yAnimate ease forwards;
          animation: 0.6s yAnimate ease forwards;
}
.home .section6 .content .matter .more {
  width: 7.7083333333vw;
  height: 2.1875vw;
  background: url(/images/icon_border.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: 100% 100%;
  transition: all 600ms;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.home .section6 .content .matter .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;
  transition: all 600ms;
}
.home .section6 .content .matter .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";
  transition: all 600ms;
  position: relative;
  z-index: 2;
}
.home .section6 .content .matter .more svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.7604166667vw;
  display: block;
  transform: translateX(100%);
  transition: all 600ms;
  z-index: 2;
}
.home .section6 .content .matter .more:hover::before {
  opacity: 1;
}
.home .section6 .content .matter .more:hover p {
  color: white;
  background: transparent;
  -webkit-text-fill-color: white;
}
.home .section6 .content .matter .more:hover svg {
  transform: translateX(0);
}
@-webkit-keyframes yAnimate {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes yAnimate {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes img_go {
  100% {
    transform: translateY(-50%);
  }
}
@keyframes img_go {
  100% {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .home {
    padding-top: 60px;
    overflow: hidden;
  }
  .home .common_title {
    margin: 0 0 7px 0;
  }
  .home .common_title p {
    font-size: 20px;
  }
  .home .common_title img {
    width: 20px;
    margin-left: 10px;
  }
  .home .section1 {
    padding: 35px 5%;
  }
  .home .section1 .title {
    font-size: 24px;
  }
  .home .section1 .content .position .point .circle {
    width: 8px;
    height: 8px;
  }
  .home .section1 .content .position .point .hide1 .jump {
    width: 120px;
  }
  .home .section1 .content .position .point .hide1 .jump .text h1 {
    font-size: 10px;
  }
  .home .section2 {
    padding: 25px 5%;
  }
  .home .section2 .dbox2 {
    flex-direction: column;
    align-items: unset;
  }
  .home .section2 .dbox2 .text {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }
  .home .section2 .dbox2 .rb {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
  }
  .home .section2 .dbox2 .rb .item:first-child {
    margin-right: 0;
  }
  .home .section2 .dbox2 .rb .item .line {
    display: none;
  }
  .home .section2 .dbox2 .rb .item .other .dis span {
    font-size: 36px;
    line-height: unset;
  }
  .home .section2 .dbox2 .rb .item .other .dis .s1 {
    font-size: 16px;
  }
  .home .section2 .dbox2 .rb .item .other .p1 {
    font-size: 16px;
    margin: 0 0 7px;
  }
  .home .section2 .dbox2 .rb .item .other .p2 {
    font-size: 14px;
  }
  .home .section2 .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 0;
  }
  .home .section2 .flex .item .line {
    display: none;
  }
  .home .section2 .flex .item .other .dis span {
    font-size: 36px;
    line-height: unset;
  }
  .home .section2 .flex .item .other .dis .s1 {
    font-size: 16px;
  }
  .home .section2 .flex .item .other .p1 {
    font-size: 16px;
    margin: 0 0 7px;
  }
  .home .section2 .flex .item .other .p2 {
    font-size: 14px;
  }
  .home .section3 .common_title {
    margin: 25px 5%;
  }
  .home .section3 .box2 .list {
    display: none;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper {
    flex-direction: column;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box {
    height: 300px;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box .text {
    top: 25px;
    left: 0;
    width: 100%;
    padding: 0 5%;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box .text .p1 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box .text .p1 svg {
    width: 30px;
    height: auto;
    position: relative;
    top: 2px;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box .text .des {
    font-size: 14px;
    margin-bottom: 15px;
    width: 100%;
  }
  .home .section3 .box2 .boxes .swiper-container .swiper-wrapper .swiper-slide .box img {
    height: 100%;
  }
  .home .section4 {
    padding: 35px 5%;
  }
  .home .section4 .common_title {
    margin: 0;
  }
  .home .section4 .content {
    margin: 25px 0 0 0;
  }
  .home .section4 .content .prev {
    left: 2%;
    display: none;
  }
  .home .section4 .content .prev svg {
    width: 30px;
    height: 30px;
  }
  .home .section4 .content .next {
    right: 2%;
    display: none;
  }
  .home .section4 .content .next svg {
    width: 30px;
    height: 30px;
  }
  .home .section4 .content .caseSwiper {
    width: 100%;
  }
  .home .section4 .content .caseSwiper .swiper-slide .img {
    height: 250px;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text {
    top: 25px;
    left: 0;
    width: 100%;
    padding: 0 5%;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text h1 {
    font-size: 16px;
    line-height: unset;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text p {
    font-size: 14px;
    margin: 0 0 25px;
    line-height: 1.7;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text .more {
    width: 120px;
    height: 35px;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text .more p {
    font-size: 16px;
    margin: 0;
  }
  .home .section4 .content .caseSwiper .swiper-slide .text .more svg {
    width: 55px;
  }
  .home .section5 {
    padding: 25px 5%;
  }
  .home .section5 .display {
    margin: 35px 0 0 0;
    flex-direction: column;
  }
  .home .section5 .display .item {
    width: 100%;
    margin: 0 0 50px !important;
  }
  .home .section5 .display .item .hei {
    top: -19px;
  }
  .home .section5 .display .item .dis span {
    font-size: 24px;
  }
  .home .section5 .display .item .dis .p1 {
    font-size: 23px;
  }
  .home .section5 .display .item .p2 {
    font-size: 14px;
  }
  .home .section6 {
    padding: 45px 5%;
  }
  .home .section6 .content {
    margin: 25px 0;
  }
  .home .section6 .content .matter {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 0;
  }
  .home .section6 .content .matter .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px 0;
  }
  .home .section6 .content .matter .list .item {
    padding: 30px 0 45px 0;
    width: 100%;
    margin: 0 !important;
    height: auto;
  }
  .home .section6 .content .matter .list .item .position {
    display: none;
  }
  .home .section6 .content .matter .list .item:after {
    height: 100%;
  }
  .home .section6 .content .matter .list .item .img {
    width: 80%;
    height: 200px;
    margin: 0 auto 0;
    align-items: center;
  }
  .home .section6 .content .matter .list .item .img img {
    max-height: 100%;
  }
  .home .section6 .content .matter .list .item .text {
    margin: 25px 0 30px 0;
  }
  .home .section6 .content .matter .list .item .text h1 {
    font-size: 18px;
  }
  .home .section6 .content .matter .list .item .text .dis div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 25px;
    padding: 0 15px;
    font-size: 12px;
  }
  .home .section6 .content .matter .list .item .text .dis div:not(:last-child) {
    margin: 0 15px 0 0;
  }
  .home .section6 .content .matter .more {
    width: 120px;
    height: 35px;
  }
  .home .section6 .content .matter .more svg {
    width: 55px;
  }
  .home .section6 .content .matter .more p {
    font-size: 16px;
  }
  .home .section6 .content .matter.on {
    display: grid;
  }
  .home .section6 .cut .item {
    margin: 0 40px 0 0 !important;
  }
  .home .section6 .cut .item:last-child {
    margin: 0 !important;
  }
  .home .section6 .cut .item .icon {
    width: 50px;
    height: 50px;
    margin: auto;
  }
  .home .section6 .cut .item .icon svg {
    width: 25px;
    height: 25px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .home .section6 .cut .item p {
    font-size: 14px;
    margin-top: 12px;
  }
  .home .dialog .content {
    width: 90%;
    height: auto;
    flex-direction: column;
    padding: 49px 5% 5% 5%;
  }
  .home .dialog .content .close {
    position: absolute;
    right: 5%;
    top: 10px;
    cursor: pointer;
  }
  .home .dialog .content .close svg {
    width: 20px;
  }
  .home .dialog .content .l {
    width: 100%;
  }
  .home .dialog .content .l .sw1 {
    margin: 0 0 15px;
  }
  .home .dialog .content .l .sw1 .swiper-container {
    height: auto;
  }
  .home .dialog .content .l .sw1 .swiper-container .pic {
    height: 120px;
  }
  .home .dialog .content .l .sw1 .swiper-container .pic img {
    height: 100%;
  }
  .home .dialog .content .l .sw2 .swiper-container .pic {
    height: 50px;
  }
  .home .dialog .content .l .sw2 .swiper-container .pic img {
    max-height: 90%;
    height: 90%;
  }
  .home .dialog .content .l .sw2 .prev, .home .dialog .content .l .sw2 .next {
    width: 33px;
    height: 33px;
  }
  .home .dialog .content .l .sw2 .prev svg, .home .dialog .content .l .sw2 .next svg {
    width: 16px;
  }
  .home .dialog .content .l .sw2 .prev {
    left: 0;
    top: 66px;
    transform: none;
  }
  .home .dialog .content .l .sw2 .next {
    left: 60px;
    right: unset;
    top: 66px;
    transform: none;
  }
  .home .dialog .content .r {
    width: 100%;
    margin: 70px 0 0 0;
  }
  .home .dialog .content .r .p1 {
    font-size: 20px;
  }
  .home .dialog .content .r .tags p {
    height: 25px;
    padding: 0 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
  }
  .home .dialog .content .r .des {
    font-size: 13px;
    line-height: 1.7;
    height: 91px;
  }
  .home .dialog .content .r .more {
    width: 120px;
    height: 35px;
  }
  .home .dialog .content .r .more svg {
    width: 55px;
  }
  .home .dialog .content .r .more p {
    font-size: 16px;
  }
}/*# sourceMappingURL=new_energy.css.map */