.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 7.8125vw 7.03125vw 7.8125vw;
  background: #fff;
  position: relative;
  z-index: 15;
}
.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: 22.8125vw;
  left: 15.625vw;
}
.home .section1 .content .position .point2 {
  bottom: 6.7708333333vw;
  left: 34.375vw;
}
.home .section1 .content .position .point3 {
  top: 16.3020833333vw;
  left: 41.6666666667vw;
}
.home .section1 .content .position .point4 {
  top: 16.0416666667vw;
  left: 43.75vw;
}
.home .section1 .content .position .point5 {
  bottom: 7.96875vw;
  right: 19.4791666667vw;
}
.home .section1 .content .position .point6 {
  bottom: 15.1041666667vw;
  right: 18.2291666667vw;
}
.home .section1 .content .position .point7 {
  bottom: 17.1875vw;
  right: 17.5vw;
}
.home .section1 .content .position .point8 {
  bottom: 16.9791666667vw;
  right: 16.9791666667vw;
}
.home .section1 .content .position .point9 {
  bottom: 20.5729166667vw;
  right: 17.96875vw;
}
.home .section1 .content .position .point10 {
  bottom: 19.6875vw;
  right: 20.6770833333vw;
}
.home .section1 .content .position .point11 {
  bottom: 17.34375vw;
  right: 17.96875vw;
}
.home .section1 .content .position .point12 {
  bottom: 16.6666666667vw;
  right: 17.3958333333vw;
}
.home .section1 .content .position .point13 {
  bottom: 18.75vw;
  right: 17.7083333333vw;
}
.home .section1 .content .position .point14 {
  bottom: 6.7708333333vw;
  left: 29.1666666667vw;
}
.home .section1 .content img {
  width: 100%;
}
.home .section2 {
  padding: 6.25vw 13.75vw 10.4166666667vw 10.4166666667vw;
  position: relative;
  z-index: 12;
  background: url(/images/ydbg.png) no-repeat;
  background-size: cover;
}
.home .section2 .common_title p {
  color: white;
}
.home .section2 .display {
  display: flex;
  justify-content: space-between;
  margin: 10.4166666667vw 6%;
  margin-bottom: 0;
  padding: 0 2.6041666667vw 0 0;
  flex-wrap: wrap;
}
.home .section2 .display .item {
  display: flex;
  align-items: center;
  width: 30%;
  margin-bottom: 7.8125vw;
}
.home .section2 .display .item .icon img {
  width: 1.6666666667vw;
  display: block;
}
.home .section2 .display .item .line {
  width: 0.1041666667vw;
  height: 5.5208333333vw;
  background: #D9D9D9;
  margin: 0 2.3958333333vw 0 2.9166666667vw;
}
.home .section2 .display .item .other .dis {
  display: flex;
  align-items: flex-end;
  margin: 0 0 1.25vw;
}
.home .section2 .display .item .other .dis span {
  color: #fff;
  text-align: center;
  font-size: 3.125vw;
  font-style: normal;
  font-weight: 400;
  line-height: 3.125vw;
  font-family: "Futura";
}
.home .section2 .display .item .other .dis .s1 {
  color: #fff;
  font-size: 1.6666666667vw;
  font-style: normal;
  font-weight: 400;
  position: relative;
}
.home .section2 .display .item .other .p1 {
  color: #fff;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
  font-family: "PingFang-Bold";
  margin: 0 0 0.8333333333vw;
}
.home .section2 .display .item .other .p2 {
  color: #fff;
  font-size: 0.8333333333vw;
  font-style: normal;
  font-weight: 300;
}
.home .section3 {
  padding: 6.25vw 0 0 0;
}
.home .section3 .common_title {
  margin: 0 0 0 10.4166666667vw;
}
.home .section3 .content {
  width: 100%;
  position: relative;
}
.home .section3 .content .alSwiper {
  width: 100%;
  padding: 5.2083333333vw 0;
}
.home .section3 .content .alSwiper .swiper-slide {
  left: 25vw;
}
.home .section3 .content .alSwiper .swiper-slide.swiper-slide-active .img {
  transform: scale(1.1);
  z-index: 2;
}
.home .section3 .content .alSwiper .swiper-slide.swiper-slide-active .img::after {
  opacity: 0;
}
.home .section3 .content .alSwiper .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}
.home .section3 .content .alSwiper .swiper-slide .img {
  width: 100%;
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  transition: 1s;
}
.home .section3 .content .alSwiper .swiper-slide .img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(6, 6, 6, 0.3);
  z-index: 2;
  transition: all 600ms;
}
.home .section3 .content .alSwiper .swiper-slide .img img {
  width: 100%;
  height: 26.0416666667vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section3 .content .alSwiper .swiper-slide .text {
  margin: 3.125vw 0 0 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: 1s;
}
.home .section3 .content .alSwiper .swiper-slide .text h1 {
  overflow: hidden;
  color: #000;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 1.25vw;
}
.home .section3 .content .alSwiper .swiper-slide .text p {
  color: #666;
  text-overflow: ellipsis;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
}
.home .section3 .content .button {
  position: absolute;
  right: 10.4166666667vw;
  bottom: 6.5104166667vw;
  z-index: 2;
  display: flex;
  width: 12.0833333333vw;
  justify-content: space-between;
}
.home .section3 .content .button .circle {
  height: 3.3333333333vw;
  width: 3.3333333333vw;
  border-radius: 50%;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .section3 .content .button .circle:first-child {
  transform: rotate(180deg);
}
.home .section3 .content .button .circle svg {
  width: 1.3020833333vw;
  height: 1.3020833333vw;
}
.home .section3 .content .button .circle svg path {
  fill: #003B83;
}
.home .section4 {
  position: relative;
  z-index: 1;
  padding: 3.125vw 0 3.125vw 9.2708333333vw;
  overflow: hidden;
}
.home .section4 .content {
  margin: 5.8333333333vw 0 0 0;
}
.home .section4 .content .rySwiper {
  width: 100vw;
  padding: 2.0833333333vw 0;
}
.home .section4 .content .rySwiper .swiper-slide {
  left: 20vw;
  transition: 0.5s ease;
}
.home .section4 .content .rySwiper .swiper-slide.swiper-slide-active .item {
  transform: scale(1);
  opacity: 1;
}
.home .section4 .content .rySwiper .swiper-slide .item {
  width: 100%;
  transform: scale(0.9);
  opacity: 0.4;
  transition: 1s;
}
.home .section4 .content .rySwiper .swiper-slide .item img {
  width: 100%;
  box-shadow: 0px 4.583px 22.917px 19px rgba(171, 171, 171, 0.21);
}
.home .section4 .content .other {
  margin: 3.6458333333vw 0 0 0;
  display: flex;
  align-items: center;
}
.home .section4 .content .other .button {
  display: flex;
  margin: 0 2.5vw 0 0;
}
.home .section4 .content .other .button .circle {
  width: 4.8958333333vw;
  height: 4.8958333333vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #747474;
  cursor: pointer;
}
.home .section4 .content .other .button .circle:last-child {
  transform: rotate(180deg);
}
.home .section4 .content .other .button .circle:not(:last-child) {
  margin: 0 1.875vw 0 0;
}
.home .section4 .content .other .button .circle svg {
  width: 1.25vw;
  height: 1.25vw;
}
.home .section4 .content .other .dis {
  display: flex;
  align-items: center;
}
.home .section4 .content .other .dis .line1 {
  width: 45.5729166667vw;
  height: 0.1041666667vw;
  background: #D9D9D9;
}
.home .section4 .content .other .dis .swiper-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  position: static;
  margin: 0 2.1875vw;
  color: #000;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
}
.home .section4 .content .other .dis .swiper-pagination .line {
  margin: 0 0.2604166667vw;
}
.home .section4 .content .other .dis .swiper-pagination span {
  color: #000;
  font-size: 1.0416666667vw;
  font-style: normal;
  font-weight: 400;
}
.home .section4 .content .other .dis .line2 {
  width: 23.1770833333vw;
  height: 0.1041666667vw;
  background: #D9D9D9;
}
.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: 6.25vw 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 4.1666666667vw 0;
  cursor: pointer;
}
.home .section6 .content .matter .list .item:nth-child(3n) {
  margin: 0 0 4.1666666667vw;
}
.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 {
  width: 100%;
  display: block;
  transition: 0.6s ease;
  transform: translateX(100%);
}
.home .section6 .content .matter .list .item .img {
  margin: 0 auto 1.8229166667vw;
  width: 19.0104166667vw;
  height: 13.5416666667vw;
  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: 3.125vw auto 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-x: 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: 45px 5%;
  }
  .home .section1 .title {
    font-size: 24px;
    margin: 0 0 30px;
  }
  .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: 45px 5%;
  }
  .home .section2 .content {
    top: unset;
    bottom: 0;
  }
  .home .section2 .display {
    margin: 25px 0 0 0;
    padding: 0;
  }
  .home .section2 .display .item {
    width: 48%;
    margin-bottom: 30px;
    padding-left: 0;
  }
  .home .section2 .display .item .icon img {
    width: 30px;
  }
  .home .section2 .display .item .line {
    margin: 0 20px;
    height: 100px;
  }
  .home .section2 .display .item .other {
    margin: 0 0 15px;
  }
  .home .section2 .display .item .other .dis {
    margin: 0 0 10px;
  }
  .home .section2 .display .item .other .dis span {
    font-size: 24px;
    line-height: unset;
  }
  .home .section2 .display .item .other .dis .s1 {
    font-size: 16px;
    top: -2px;
  }
  .home .section2 .display .item .other .p1 {
    font-size: 16px;
  }
  .home .section2 .display .item .other .p2 {
    font-size: 14px;
  }
  .home .section3 {
    padding: 45px 5%;
  }
  .home .section3 .common_title {
    margin: 0 0 25px 0;
  }
  .home .section3 .content .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: static;
    margin: 25px 0 0 0;
  }
  .home .section3 .content .button .circle {
    width: 45px;
    height: 45px;
    margin: 0 10px 0 0;
  }
  .home .section3 .content .button .circle svg {
    width: 18px;
    height: 18px;
  }
  .home .section3 .content .alSwiper {
    padding: 20px 0;
  }
  .home .section3 .content .alSwiper .swiper-slide {
    left: 0;
  }
  .home .section3 .content .alSwiper .swiper-slide .img {
    transform: scale(1) !important;
  }
  .home .section3 .content .alSwiper .swiper-slide .img img {
    height: 300px;
  }
  .home .section3 .content .alSwiper .swiper-slide .text {
    margin: 25px 0 0 0;
  }
  .home .section3 .content .alSwiper .swiper-slide .text h1 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .home .section3 .content .alSwiper .swiper-slide .text p {
    font-size: 14px;
    line-height: 1.6;
  }
  .home .section4 {
    padding: 45px 5%;
  }
  .home .section4 .content .other {
    margin: 25px 0 0 0;
  }
  .home .section4 .content .other .button .circle {
    width: 45px;
    height: 45px;
  }
  .home .section4 .content .other .button .circle svg {
    width: 16px;
    height: 16px;
  }
  .home .section4 .content .other .dis .swiper-pagination {
    margin: 0 15px;
    font-size: 14px;
  }
  .home .section4 .content .other .dis .swiper-pagination .swiper-pagination-current, .home .section4 .content .other .dis .swiper-pagination .swiper-pagination-total {
    font-size: 14px;
  }
  .home .section4 .content .other .dis .line1, .home .section4 .content .other .dis .line2 {
    width: 80px;
    height: 1px;
  }
  .home .section4 .content .rySwiper {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px 5%;
  }
  .home .section4 .content .rySwiper .swiper-slide {
    left: 0;
  }
  .home .section4 .content .rySwiper .swiper-slide .item {
    transform: scale(1) !important;
  }
  .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=electricity.css.map */