@keyframes goAnimate {
  100% {
    transform: translateX(-50%);
  }
}

@keyframes yAnimate {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.common_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.item_hover {
  overflow: hidden;
}

.item_hover:hover img {
  transform: scale(1.05);
}

.item_hover img {
  width: 100%;
  height: 100%;
  transition: .6s ease;
}

.home .banner img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100vh;
}

.home .banner .text {
  position: absolute;
  bottom: 18.3333333333vw;
  padding: 0 10.4166666667vw;
  left: 0;
  z-index: 4;
}

.home .banner .text p {
  color: #FFF;
  font-size: 3.75vw;
  font-weight: bold;
  letter-spacing: 3.6px;
  line-height: 3.75vw;
}

.home .banner .text p:not(:last-child) {
  margin: 0 0 2.0833333333vw;
}

.home .section1 {
  padding: 6.25vw 10.4166666667vw;
}

.home .section1 .p1 {
  width: 60vw;
  line-height: 3.0208333333vw;
  letter-spacing: 2.4px;
  font-weight: bold;
  margin: 0 0 2.34375vw;
}

.home .section1 .dis {
  display: flex;
  gap: 5.1041666667vw;
}

.home .section1 .dis p {
  color: #666;
}

.home .section2 {
  padding: 10.4166666667vw 10.4166666667vw 8.8541666667vw 10.4166666667vw;
  display: flex;
  justify-content: space-between;
}

.home .section2 .l {
  width: 32.7083333333vw;
}

.home .section2 .l .title {
  color: #FFF;
  font-weight: bold;
  margin: 0 0 2.0833333333vw;
}

.home .section2 .l .text {
  color: #fff;
  line-height: 1.40625vw;
  margin: 0 0 2.0833333333vw;
}

.home .section2 .l .more {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.home .section2 .l .more svg {
  width: 1.3541666667vw;
  height: fit-content;
  transition: all 600ms;
}

.home .section2 .l .more:hover svg {
  transform: translateX(10px);
}

.home .section2 .l .more p {
  color: #fff;
}

.home .section2 .l .fig {
  margin: 2.6041666667vw 0 0 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625vw 3.0208333333vw;
}

.home .section2 .l .fig .item .dis {
  display: flex;
  align-items: flex-end;
}

.home .section2 .l .fig .item .dis span {
  font-family: Montserrat;
  color: #fff;
  line-height: 3.4375vw;
}

.home .section2 .l .fig .item .dis .p1 {
  color: #fff;
  margin-left: 1.0416666667vw;
  white-space: nowrap;
}

.home .section2 .l .fig .item .p2 {
  margin: 0.9375vw 0 0 0;
  color: #fff;
  letter-spacing: 1.08px;
  white-space: nowrap;
  font-family: 'SourceHanSansSC-Light';
}

.home .section2 .img {
  width: 42.2916666667vw;
  height: 30.2083333333vw;
  position: relative;
}

.home .section3 {
  padding: 6.25vw 10.4166666667vw 7.65625vw 10.4166666667vw;
}

.home .section3 .title {
  color: #000;
  font-weight: bold;
  margin: 0 0 4.1666666667vw;
}

.home .section3 .content {
  display: flex;
  justify-content: space-between;
}

.home .section3 .content .item {
  width: 24.375vw;
  height: 29.375vw;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home .section3 .content .item::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 0.8) 100%);
  bottom: 0;
}

.home .section3 .content .item:hover .img:first-child {
  opacity: 0;
}

.home .section3 .content .item:hover .img:nth-child(2) {
  opacity: 1;
}

.home .section3 .content .item:hover .position .icon img:nth-child(1) {
  opacity: 0;
}

.home .section3 .content .item:hover .position .icon img:nth-child(2) {
  opacity: 1;
}

.home .section3 .content .item:hover .position .text {
  opacity: 0;
}

.home .section3 .content .item:hover .desc {
  opacity: 1;
}

.home .section3 .content .item .img {
  width: 100%;
  height: 100%;
  transition: .6s ease;
}

.home .section3 .content .item .img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.home .section3 .content .item .position {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  padding: 2.0833333333vw 0 2.1875vw 1.0416666667vw;
}

.home .section3 .content .item .position .icon {
  position: relative;
  width: fit-content;
}

.home .section3 .content .item .position .icon img {
  transition: all 600ms;
}

.home .section3 .content .item .position .icon img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.home .section3 .content .item .position .text {
  transition: all 600ms;
}

.home .section3 .content .item .position .text .p1 {
  color: #FFF;
  font-weight: bold;
  margin: 0 0 0.8333333333vw;
}

.home .section3 .content .item .position .text .p2 {
  color: #FFF;
  margin: 0 0 0.3125vw;
}

.home .section3 .content .item .position .text .p3 {
  line-height: 1.40625vw;
  color: #fff;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home .section3 .content .item .desc {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 1.0416666667vw;
  bottom: 2.0833333333vw;
  color: white;
  opacity: 0;
  transition: all 600ms;
  z-index: 5;
}

.home .section4 {
  padding: 6.7708333333vw 13.6979166667vw 5.2083333333vw 10.8333333333vw;
}

.home .section4 .content {
  width: 100%;
  position: relative;
}

.home .section4 .content .map {
  width: 100%;
}

.home .section4 .content .position {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .section4 .content .position .circle {
  position: absolute;
  cursor: pointer;
}

.home .section4 .content .position .circle.on:after {
  transform: translate(-50%, -50%) scale(1);
}

.home .section4 .content .position .circle.on .text {
  opacity: 1;
  pointer-events: auto;
}

.home .section4 .content .position .circle:after {
  content: '';
  position: absolute;
  width: 5.5208333333vw;
  height: 5.5208333333vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.17924);
  background: #1C4238;
  border-radius: 50%;
  transition: .6s ease;
}

.home .section4 .content .position .circle .text {
  position: absolute;
  width: 5.5208333333vw;
  height: 5.5208333333vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
  z-index: 5;
  color: #fff;
  text-align: center;
}

.home .section4 .content .position .circle1 {
  top: 9.6354166667vw;
  left: 14.4270833333vw;
}

.home .section4 .content .position .circle2 {
  top: 13.59375vw;
  left: 60.5729166667vw;
}

.home .section4 .content .position .circle3 {
  top: 12.7604166667vw;
  left: 62.2916666667vw;
}

.home .section4 .content .position .circle4 {
  top: 21.71875vw;
  left: 62.2916666667vw;
}

.home .section4 .content .position .circle5 {
  top: 7.96875vw;
  left: 54.6875vw;
}

.home .section5 {
  overflow: hidden;
  padding: 6.40625vw 10.4166666667vw 9.375vw 10.4166666667vw;
  display: flex;
  justify-content: space-between;
}

.home .section5 .l {
  width: 26.40625vw;
  margin: 8.0208333333vw 0 0 0;
}

.home .section5 .l .title {
  color: #000;
  margin: 0 0 1.40625vw;
}

.home .section5 .l .text {
  color: #000;
  line-height: 1.40625vw;
  margin: 0 0 2.7604166667vw;
}

.home .section5 .l .more {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.home .section5 .l .more:hover svg {
  transform: translateX(10px);
}

.home .section5 .l .more svg {
  width: 1.3541666667vw;
  height: fit-content;
  transition: 600ms;
}

.home .section5 .l .more svg path {
  stroke: #000;
}

.home .section5 .l .more p {
  color: #000;
}

.home .section5 .l .fig {
  margin: 2.6041666667vw 0 0 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home .section5 .l .fig .item .dis {
  display: flex;
  align-items: flex-end;
}

.home .section5 .l .fig .item .dis span {
  font-family: Montserrat;
  color: #000;
  line-height: 3.4375vw;
}

.home .section5 .l .fig .item .dis .p1 {
  color: #000;
  margin-left: 1.0416666667vw;
}

.home .section5 .l .fig .item .p2 {
  margin: 0.9375vw 0 0 0;
  color: #000;
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-family: 'SourceHanSansSC-Light';
}

.home .section5 .r {
  width: 47.34375vw;
}

.home .section5 .r .end {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 2.6041666667vw;
}

.home .section5 .r .end .button {
  width: 5.8854166667vw;
  display: flex;
  justify-content: space-between;
}

.home .section5 .r .end .button svg {
  cursor: pointer;
  width: 1.5104166667vw;
}

.home .section5 .r .end .button svg:first-child {
  transform: rotateY(180deg);
}

.home .section5 .r .swiper1 {
  width: 96.7708333333vw;
}

.home .section5 .r .swiper1 .swiper-slide img {
  width: 100%;
  height: 30.8854166667vw;
}

.home .section6 {
  overflow: hidden;
  padding: 6.25vw 10.4166666667vw 8.8541666667vw 10.4166666667vw;
  display: flex;
  justify-content: space-between;
}

.home .section6 .l {
  width: 26.71875vw;
}

.home .section6 .l .title {
  color: #fff;
  font-weight: bold;
  margin: 0 0 2.0833333333vw;
}

.home .section6 .l .text {
  color: #FFF;
  line-height: 1.40625vw;
  margin: 0 0 2.0833333333vw;
}

.home .section6 .l .more {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.home .section6 .l .more:hover svg {
  transform: translateX(10px);
}

.home .section6 .l .more svg {
  width: 1.3541666667vw;
  height: fit-content;
  transition: 600ms;
}

.home .section6 .l .more p {
  color: #fff;
}

.home .section6 .r {
  width: 49.6354166667vw;
  position: relative;
  left: 3.125vw;
  margin: 3.4375vw 0 0 0;
}

.home .section6 .r .jump {
  width: 60.0520833333vw;
  overflow: hidden;
  position: relative;
}

.home .section6 .r .jump svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 54;
  width: 10.9895833333vw;
  height: 11.1979166667vw;
}

.home .section6 .r .go {
  display: flex;
  width: max-content;
  animation: goAnimate 40s linear infinite;
}

.home .section6 .r .go:nth-child(2) {
  animation-direction: reverse;
  margin: 3.125vw 0 0 0;
}

.home .section6 .r .go .flex {
  display: flex;
  align-items: center;
}

.home .section6 .r .go .flex .img {
  margin: 0 4.6875vw 0 0;
  height: 2.1354166667vw;
}

.home .section7 {
  padding: 6.25vw 10.4166666667vw 7.2916666667vw 10.4166666667vw;
}

.home .section7 .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 3.3854166667vw;
}

.home .section7 .top .title {
  color: #000;
  font-weight: bold;
}

.home .section7 .top .more {
  display: flex;
  align-items: center;
  gap: 1.25vw;
}

.home .section7 .top .more:hover svg {
  transform: translateX(10px);
}

.home .section7 .top .more svg {
  width: 1.3541666667vw;
  transition: 600ms;
}

.home .section7 .top .more p {
  color: #090909;
}

.home .section7 .content .swiper2 {
  width: 100%;
}

.home .section7 .content .swiper2 .swiper-slide .item {
  width: 100%;
  height: 24.5833333333vw;
  display: block;
  border: 1px solid #CCC;
}

.home .section7 .content .swiper2 .swiper-slide .item:hover .img img {
  transform: scale(1.05);
}

.home .section7 .content .swiper2 .swiper-slide .item:hover .text .p1 {
  color: #096F4E;
}

.home .section7 .content .swiper2 .swiper-slide .item .img {
  width: 100%;
  height: 16.1458333333vw;
  overflow: hidden;
}

.home .section7 .content .swiper2 .swiper-slide .item .img img {
  width: 100%;
  height: 100%;
  transition: .6s ease;
}

.home .section7 .content .swiper2 .swiper-slide .item .text {
  padding: 1.25vw 1.3541666667vw;
}

.home .section7 .content .swiper2 .swiper-slide .item .text .time {
  color: #000;
  margin: 0 0 1.0416666667vw;
}

.home .section7 .content .swiper2 .swiper-slide .item .text .p1 {
  color: #000;
  line-height: 1.40625vw;
  /* 150% */
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 600ms;
}

.home .section7 .content .swiper-pagination {
  position: static;
  margin: 5.2083333333vw auto 0;
  width: 29.375vw;
  height: 0.3125vw;
  border-radius: 0.3645833333vw;
  background: rgba(230, 230, 230, 0.4);
  overflow: hidden;
}

.home .section7 .content .swiper-pagination .swiper-pagination-progressbar-fill {
  border-radius: 0.3645833333vw;
  background: #E7E7E7;
}

@media screen and (max-width: 768px) {
  .home {
    padding-top: 60px;
  }

  .home .banner .text {
    top: 45%;
    left: 5%;
    bottom: unset;
    padding: 0;
  }

  .home .banner .text p {
    font-size: 24px;
    line-height: 40px;
    margin: 0 !important;
  }

  .home .section1 {
    padding: 50px 5%;
  }

  .home .section1 .p1 {
    line-height: 1.5;
    width: 100%;
    margin: 0 0 20px;
  }

  .home .section1 .dis {
    gap: 10px;
  }

  .home .section2 {
    padding: 50px 5%;
    flex-direction: column;
  }

  .home .section2 .l {
    width: 100%;
  }

  .home .section2 .l .title {
    margin: 0 0 20px;
  }

  .home .section2 .l .text {
    width: 100%;
    line-height: 1.8;
    margin: 0 0 30px;
  }

  .home .section2 .l .more {
    gap: 10px;
  }

  .home .section2 .l .more svg {
    width: 20px;
    height: fit-content;
  }

  .home .section2 .l .fig {
    margin: 40px 0 0 0;
    gap: 30px 0;
  }

  .home .section2 .l .fig .item .dis span {
    line-height: 24px;
  }

  .home .section2 .l .fig .item .dis .p1 {
    margin-left: 10px;
  }

  .home .section2 .l .fig .item .p2 {
    margin: 10px 0 0 0;
    white-space: wrap;
  }

  .home .section2 .img {
    width: 100%;
    height: auto;
    margin: 30px 0 0 0;
  }

  .home .section3 {
    padding: 50px 5%;
  }

  .home .section3 .title {
    margin: 0 0 30px;
  }

  .home .section3 .content {
    gap: 20px;
    flex-direction: column;
  }

  .home .section3 .content .item {
    width: 100%;
    height: auto;
  }

  .home .section3 .content .item .position {
    padding: 30px 5%;
  }

  .home .section3 .content .item .position .icon {
    width: 100px;
  }

  .home .section3 .content .item .position .text .p1 {
    margin: 0 0 10px;
  }

  .home .section3 .content .item .position .text .p2 {
    margin: 0 0 10px;
  }

  .home .section3 .content .item .position .text .p3 {
    line-height: 1.7;
  }

  .home .section3 .content .item .desc {
    padding: 0 5%;
    bottom: 30px;
  }

  .home .section4 {
    padding: 50px 5%;
  }

  .home .section4 .content .position .circle:after {
    width: 50px;
    height: 50px;
  }

  .home .section4 .content .position .text .p1 {
    font-size: 12px;
  }

  .home .section5 {
    padding: 50px 5%;
    flex-direction: column;
  }

  .home .section5 .l {
    width: 100%;
  }

  .home .section5 .l .title {
    margin: 0 0 20px;
  }

  .home .section5 .l .text {
    width: 100%;
    line-height: 1.8;
    margin: 0 0 30px;
  }

  .home .section5 .l .more {
    gap: 10px;
  }

  .home .section5 .l .more svg {
    width: 20px;
    height: fit-content;
  }

  .home .section5 .l .fig {
    margin: 40px 0 0 0;
    gap: 30px 0;
  }

  .home .section5 .l .fig .item .dis span {
    line-height: 24px;
  }

  .home .section5 .l .fig .item .dis .p1 {
    margin-left: 10px;
  }

  .home .section5 .l .fig .item .p2 {
    margin: 10px 0 0 0;
  }

  .home .section5 .r {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin: 25px 0 0 0;
  }

  .home .section5 .r .swiper1 {
    width: 100%;
  }

  .home .section5 .r .swiper1 .swiper-slide img {
    height: auto;
  }

  .home .section5 .r .end {
    justify-content: center;
    margin: 25px 0 0 0;
  }

  .home .section5 .r .end .button {
    gap: 20px;
    width: fit-content;
    margin: auto;
  }

  .home .section5 .r .end .button svg {
    width: 20px;
  }

  .home .section6 {
    padding: 50px 5%;
    flex-direction: column;
  }

  .home .section6 .l {
    width: 100%;
  }

  .home .section6 .l .title {
    margin: 0 0 20px;
  }

  .home .section6 .l .text {
    width: 100%;
    line-height: 1.8;
    margin: 0 0 30px;
  }

  .home .section6 .l .more {
    gap: 10px;
  }

  .home .section6 .l .more svg {
    width: 20px;
    height: fit-content;
  }

  .home .section6 .l .fig {
    margin: 40px 0 0 0;
    gap: 30px 0;
  }

  .home .section6 .l .fig .item .dis span {
    line-height: 24px;
  }

  .home .section6 .l .fig .item .p2 {
    margin: 10px 0 0 0;
  }

  .home .section6 .r {
    width: 100%;
    margin: 45px 0 0 0;
  }

  .home .section6 .r .jump {
    width: 100%;
  }

  .home .section6 .r .jump .go .flex .img {
    width: 110px;
    height: fit-content;
    margin: 0 70px 0 0;
  }

  .home .section6 .r .jump .go:nth-child(2) {
    margin: 20px 0 0 0;
  }

  .home .section7 {
    padding: 50px 5%;
  }

  .home .section7 .top {
    gap: 20px;
    margin: 0 0 30px;
  }

  .home .section7 .top .more {
    gap: 20px;
  }

  .home .section7 .top .more svg {
    width: 20px;
    height: fit-content;
  }

  .home .section7 .content .swiper2 .swiper-slide .item {
    height: auto;
  }

  .home .section7 .content .swiper2 .swiper-slide .item .img {
    height: 230px;
  }

  .home .section7 .content .swiper2 .swiper-slide .item .text {
    padding: 20px 5%;
  }

  .home .section7 .content .swiper2 .swiper-slide .item .text .p1 {
    margin: 0 0 10px;
  }

  .home .section7 .content .swiper-pagination {
    width: 50%;
    margin: 50px auto 0;
    border-radius: 7px;
    height: 5px;
  }
}

/*# sourceMappingURL=index.css.map */