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

@keyframes roteAnimate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lineAnimate {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

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

@keyframes scaleAnimate {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

body {
  background-color: #F7F7F9;
}

.home {
  position: relative;
  z-index: 1;
  background: #F7F7F9;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.index_banner {
  position: relative;
  height: 100vh;
}

.index_banner .swiper-pagination {
  position: absolute;
  left: 60px;
  bottom: 80px;
  width: fit-content;
}

.index_banner .swiper-pagination .swiper-pagination-bullet {
  width: 56px;
  height: 2px;
  margin: 0 10px;
  opacity: 1;
  transition: all 0.6s;
  position: relative;
}

.index_banner .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  width: 56px;
  height: 2px;
  background-color: #426D8A;
  display: block;
}

.index_banner .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 56px;
  height: 2px;
  background-color: #fff;
  display: block;
  transform-origin: left;
  clip-path: inset(0 100% 0 0);
  position: absolute;
  top: 0;
}

.index_banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  animation: line 5s ease alternate;
}

.index_banner .swiper-slide.swiper-slide-active .item .img img {
  transform: scale(1);
}

.index_banner .swiper {
  height: 100%;
}

.index_banner .item {
  position: relative;
  height: 100%;
}

.index_banner .item .img {
  height: 100%;
}

.index_banner .item .img img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: cubic-bezier(0.77, 0, 0.175, 1) transform 2s;
}

.index_banner .item .text {
  position: absolute;
  width: fit-content;
  z-index: 10;
  left: calc(50% - 780px);
  top: 50%;
  transform: translateY(-50%);
}

.index_banner .item .text .p1 {
  color: #0D4082;
  font-size: 62px;
  font-weight: 700;
}

.index_banner .item .text .p2 {
  font-size: 40px;
  color: #0D4082;
}

.index_banner .down {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.index_banner .down .bor {
  width: 22px;
  height: 34px;
  border-radius: 15px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  padding: 5px 0 0 0;
}

.index_banner .down .bor::after {
  content: "";
  width: 2px;
  height: 5px;
  background: #fff;
  animation: lineAnimate 1s ease infinite;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100vh;
}

.loading.on .position {
  opacity: 0;
}

.loading.on .img img:first-child {
  opacity: 0;
}

.loading.on .img img:not(:first-child) {
  opacity: 1;
}

.loading .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  z-index: 4;
  max-width: unset;
  max-height: unset;
}

.loading .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.6s ease;
  object-fit: cover;
}

.loading .img img:first-child {
  z-index: 5;
}

.loading .img img:nth-child(2) {
  z-index: 2;
}

.loading .position {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 9;
  width: 100%;
  transition: 1s;
}

.loading .position .count {
  font-weight: bold;
  font-size: 24px;
  color: #0D4082;
  margin: 0 0 5px;
  width: 100vw;
  transform: translateX(0%);
  position: relative;
  left: -80px;
}

.loading .position .line {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.loading .position .line div {
  width: 100%;
  height: 100%;
  background: #0D4082;
  transform: scaleX(0);
  transform-origin: left;
}

.section2 {
  overflow: unset;
}

.section2 .wrap .box {
  position: sticky;
  height: 100vh;
  top: 0;
}

.section2 .wrap .box .swiper {
  height: 100%;
}

.section2 .wrap .box .swiper .item {
  height: 100%;
}

.section2 .wrap .box .swiper .item .bg {
  height: 100%;
  width: 100%;
}

.section2 .wrap .box .swiper .item .bg img {
  width: 100%;
  height: 100%;
}

.section2 .wrap .box .swiper .item .content {
  height: 100%;
  z-index: 2;
  position: absolute;
  left: calc(50vw - 780px);
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section2 .wrap .box .swiper .item .content .top {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
  margin-top: 100px;
}

.section2 .wrap .box .swiper .item .content .top h3 {
  color: #fff;
  font-size: 40px;
}

.section2 .wrap .box .swiper .item .content .top h3 span {
  font-weight: 200;
}

.section2 .wrap .box .swiper .item .content .bottom {
  /* margin-top: 300px; */
  margin-top: 200px;
}

.section2 .wrap .box .swiper .item .content .bottom .img {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.section2 .wrap .box .swiper .item .content .bottom .img .icon {
  position: absolute;
  left: 18px;
  width: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.section2 .wrap .box .swiper .item .content .bottom .text {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.section2 .wrap .box .swiper .item .content .bottom .text h4 {
  color: #fff;
  font-size: 52px;
}

.section2 .wrap .box .swiper .item .content .bottom .text p {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  width: 380px;
  margin-top: 10px;
}

.section2 .wrap .box .swiper .item .content .bottom .commonButton {
  margin-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.section2 .wrap .box .swiper .item .content .bottom .commonButton::before {
  border: none;
  background-color: #fff;
}
.section2 .wrap .box .swiper .swiper-slide-active .item .content .top {
  opacity: 1;
  transform: translateY(0);
}

.section2 .wrap .box .swiper .swiper-slide-active .item .content .bottom .img,
.section2 .wrap .box .swiper .swiper-slide-active .item .content .bottom .text,
.section2 .wrap .box .swiper .swiper-slide-active .item .content .bottom .commonButton {
  opacity: 1;
  transform: translateY(0);
}

.section2 .wrap .box .swiper-slide-active .item .content .bottom .img {
  transition-delay: 0.2s;
}

.section2 .wrap .box .swiper-slide-active .item .content .bottom .text {
  transition-delay: 0.4s;
}

.section2 .wrap .box .swiper-slide-active .item .content .bottom .commonButton {
  transition-delay: 0.6s;
}

.section2 .wrap .box .page {
  position: absolute;
  left: calc(50vw + 500px);
  /* width: 200px; */
  width: calc(50vw - 500px);
  top: 0;
  z-index: 2;
  height: 100%;
  /* border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2); */
  /* padding: 120px 0 60px; */
  /* padding: 120px 0 0; */
  padding: 87px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.section2 .wrap .box .page::before {
  width: 83vh;
  height: 83vh;
  content: "";
  display: block;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  border-radius: 50%;
  left: 18.5vh;
}

.section2 .wrap .box .page::after {
  width: 120vh;
  height: 120vh;
  content: "";
  display: block;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  left: 0;
}

.section2 .wrap .box .page .item {
  flex: 1;
  /* width: 200px; */
  width: 18vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.section2 .wrap .box .page .circle {
  position: absolute;
  width: 120vh;
  height: 120vh;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  border-radius: 50%;
  /* transition: all .6s; */
}

.section2 .wrap .box .page .circle .clip {
  width: 120vh;
  height: 120vh;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.section2 .wrap .box .page .circle .clip .after {
  width: 22.425vh;
  height: 40.1041666vh;
  mask-image: url(/static/images/jc.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(/static/images/jc.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -moz-mask-image: url(/static/images/jc.svg);
  -moz-mask-size: 100%;
  -moz-mask-repeat: no-repeat;
  -moz-mask-position: center;

  background: rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(40px); */

  position: absolute;
  left: 10.708333vh;
  top: 8.02083333vh;
  transform: rotate(29deg) scale(1);
}

/* .section2 .wrap .box .page .circle .clip .after::after{
  content: "";
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  display: block;
  width: 100%;
  height: 100%;
} */

.section2 .wrap .box .page .circle svg {
  width: 124.5vh;
  height: 124.5vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(294deg);
  transition: all .6s;
}

.section2 .wrap .box .page .circle .path-loop-bg {
  fill: none;
  stroke: transparent;
  stroke-miterlimit: 10;
  stroke-width: 1px;
}

.section2 .wrap .box .page .circle .path-loop {
  stroke-dashoffset: 145px;
  fill: none;
  stroke: rgba(255, 255, 255, .3);
  stroke-miterlimit: 10;
  stroke-width: 8.1px;
  /* stroke-width: 0.44vw; */
  transition: 0.6s;
}

.section2 .wrap .box .page .item:nth-child(1) {
  /* transform: translateX(105px); */
  transform: translateX(10.9375vh);
}

.section2 .wrap .box .page .item:nth-child(2) {
  /* transform: translateX(12px); */
  transform: translateX(1.25vh);
}

.section2 .wrap .box .page .item:nth-child(3) {
  /* transform: translate(44px, 29px); */
  transform: translate(4.58333333vh, 3.0208333vh);
}

.section2 .wrap .box .page .item:nth-child(4) {
  /* transform: translateX(187px); */
  transform: translateX(19.47916666vh);
}

/* .section2 .wrap .box .page .item.active::after {
  opacity: 1;
} */
.section2 .wrap .box .page .item.active .icon {
  opacity: 1;
}

.section2 .wrap .box .page .item.active .line {
  opacity: 1;
  transform: translateY(0);
}

/* .section2 .wrap .box .page .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: all 0.6s;
} */
.section2 .wrap .box .page .item .icon {
  margin-bottom: 10px;
  opacity: 0.7;
  transition: all .6s;
}

.section2 .wrap .box .page .item .text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.section2 .wrap .box .page .item .line {
  width: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s;
  margin-top: 5px;
}

.section3 .wrap {
  padding-top: 70px;
  position: relative;
  padding-bottom: 80px;
}

.section3 .wrap .bg {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1300px;
  position: absolute;
  opacity: 0;
}

.section3 .wrap .bg.aos-animate {
  opacity: 1;
}

.section3 .wrap .title {
  text-align: center;
  margin-bottom: 10px;
}

.section3 .wrap .title h3 {
  color: #111;
  font-size: 40px;
}

.section3 .wrap .text {
  width: 1000px;
  text-align: center;
  margin: 0 auto;
  color: #111;
  font-size: 19px;
  line-height: 2;
}

.section3 .wrap .map {
  width: 680px;
  height: 680px;
  margin: 0 auto;
  position: relative;
  transform: scale(0);
  transition: all 2s;
}

.section3 .wrap .map.aos-animate {
  transform: scale(1);
}

.section3 .wrap .map .quan {
  width: 640px;
  height: 640px;
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  z-index: 8;
  transform: translate(-50%, -50%);
}

.section3 .wrap .map .position {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  left: 0;
  /* cursor: pointer; */
  z-index: 9;
}

.section3 .wrap .map .position .point {
  width: 12px;
  height: 12px;
  pointer-events: all;
}

.section3 .wrap .map .position .point:hover {
  z-index: 10;
}

.section3 .wrap .map .position .point:hover .joke .content {
  transform: translateY(0);
  opacity: 1;
}

.section3 .wrap .map .position .point .joke .pi .bai {
  width: 12px;
  height: 12px;
  background-color: #0D4082;
  border-radius: 50%;
  position: relative;
}

.section3 .wrap .map .position .point .joke .pi .bai::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  background-image: radial-gradient(rgba(13, 64, 130, 0) 0%, #0D4082 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: amplify 2s linear infinite;
}

.section3 .wrap .map .position .point .joke .content {
  width: 240px;
  height: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  position: absolute;
  left: 40px;
  top: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s;
  pointer-events: none;
}

.section3 .wrap .map .position .point .joke .content .logo {
  width: 106px;
}

.section3 .wrap .map .position .point .joke .content .t {
  padding-top: 10px;
  margin-top: 14px;
  border-top: 1px solid #E8E8E8;
}

.section3 .wrap .map .position .point .joke .content .t p {
  color: #666;
  font-size: 14px;
}

.section3 .wrap .map .canvas {
  border-radius: 50%;
}

.section3 .wrap .merry {
  position: absolute;
  bottom: 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 100%;
  z-index: 9;
}

.section3 .wrap .merry .row {
  height: 200px;
  display: flex;
}

.section3 .wrap .merry .row.active {
  animation: walking 0s linear infinite;
}

.section3 .wrap .merry .row .trem {
  display: flex;
  height: 100%;
}

.section3 .wrap .merry .row .trem .item {
  height: 100%;
  width: 287px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #fff;
}

.section4 .wrap {
  width: 1560px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 130px;
}

.section4 .wrap .title {
  text-align: center;
  margin-bottom: 80px;
}

.section4 .wrap .title h3 {
  font-size: 36px;
  color: #111;
}

.section4 .wrap .title h3 span {
  font-weight: 200;
}

.section4 .wrap .main {
  display: flex;
  gap: 40px;
}

.section4 .wrap .main .item {
  width: 360px;
  padding-bottom: 50px;
  border-bottom: 1px solid #CFD6E1;
  position: relative;
  transition: all 0.6s;
}

.section4 .wrap .main .item:hover {
  border-bottom-color: transparent;
}

.section4 .wrap .main .item:hover .fire {
  opacity: 1;
}

.section4 .wrap .main .item .fire {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s;
}

.section4 .wrap .main .item .fire .box {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 100%;
}

.section4 .wrap .main .item .fire .box .f_text {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.section4 .wrap .main .item .fire .box .f_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section4 .wrap .main .item .fire .box .f_bottom .f_time {
  color: #fff;
  font-size: 14px;
}

.section4 .wrap .main .item .fire .box .f_bottom .go {
  color: #fff;
  transform: rotate(-45deg);
}

.section4 .wrap .main .item .fire .box .f_bottom .go span {
  font-size: 40px;
}

.section4 .wrap .main .item .fire img {
  width: 100%;
}

.section4 .wrap .main .item .img {
  border-radius: 10px;
  overflow: hidden;
}

.section4 .wrap .main .item .text {
  color: #333;
  font-size: 22px;
  font-weight: 700;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 62px;
}

.section4 .wrap .main .item .time {
  color: #909090;
  font-size: 15px;
  margin-top: 30px;
}

.section4 .wrap .commonButton {
  margin: 70px auto 0;
}

.index1 {
  height: 250vh;
  position: relative;
}

.index1 .fix {
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
}

.index1 .fix .top {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 0 0 0);
  position: relative;
  z-index: 6;
}

.index1 .fix .common_bg {
  object-fit: cover;
}

.index1 .fix .center {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  --g: -50%;
}

.index1 .fix .center .wrap {
  position: relative;
  height: 100vh;
  width: 100%;
}

.index1 .fix .center .wrap .bg {
  position: absolute;
}

.index1 .fix .center .wrap .bg.bg1 {
  width: fit-content;
  height: 100%;
  right: 0;
}


.index1 .fix .center .wrap .bg.bg1 .line {
  width: 68.75vw;
  height: 54.1666666vw;
  mask-image: url(/static/images/index_line.png);
  mask-size: 150%;
  mask-repeat: no-repeat;
  mask-position: 99% 0%;
  -webkit-mask-image: url(/static/images/index_line.png);
  -webkit-mask-size: 150%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 99% 0%;
  position: absolute;
  top: 0;
  right: 0;
}

.index1 .fix .center .wrap .bg.bg1 .line img {
  width: 100%;
  transform: translate(100px, -100px) scale(1.1);
  transition: cubic-bezier(.77, 0, .175, 1) transform 7s, opacity ease 1s;
  ;
  opacity: 0;
}

.index1 .fix .center .wrap .bg.bg1.on .line img {
  opacity: 1;
  transform: translate(100px, -100px) scale(1);
}

.index1 .fix .center .wrap .bg.bg1>img {
  height: 100%;
}

.index1 .fix .center .wrap .bg.bg2 {
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
  transition: all 3s;
}

.index1 .fix .center .wrap .bg.bg2.on {
  transform: translate(0, 0);
}

.index1 .fix .center .wrap .content {
  width: 560px;
  position: absolute;
  left: calc(50vw - 780px);
  top: 50%;
  transform: translateY(-50%);
}

.index1 .fix .center .wrap .content .title {
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s;
}

.index1 .fix .center .wrap .content .title h3 {
  color: #000;
  font-size: 42px;
  color: #0D4082;
}

.index1 .fix .center .wrap .content .title h3 span {
  font-weight: 200;
  font-size: 40px;
  color: #000;
}

.index1 .fix .center .wrap .content .text {
  color: #444;
  /* font-size: 16px; */
  font-size: 20px;
  line-height: 2;
  margin-top: 40px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s;
}

.index1 .fix .center .wrap .content .commonButton {
  margin-top: 50px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s;
}

.index1 .fix .center .wrap .content.on .title,
.index1 .fix .center .wrap .content.on .text,
.index1 .fix .center .wrap .content.on .commonButton {
  transform: translateY(0);
  opacity: 1;
}

.index1 .fix .center .wrap .content.on .text {
  transition-delay: 0.3s;
}

.index1 .fix .center .wrap .content.on .commonButton {
  transition-delay: 0.6s;
}
.section2 .wrap .box .page .item.PE{
  display: none;
}
@media screen and (max-width: 1920px) {
  .index1 .fix .center .position_l {
    top: 21.35416vh;
  }
}

@keyframes Tmouse {
  0% {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, 12px);
    -moz-transform: translate(-50%, 12px);
    -ms-transform: translate(-50%, 12px);
    -o-transform: translate(-50%, 12px);
    transform: translate(-50%, 12px);
  }
}

@keyframes amplify {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}

@keyframes walking {
  0% {
    transform: translateX(0);
  }

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

@keyframes line {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  90% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}

.section2 .wrap .box .page .thumbs_swiper.PE{
  display: none;
}
.section4 .wrap .main.PE{
  display: none;
}



.index_banner .swiper-slide[data-swiper-slide-index="0"] .text .p2,
.index_banner .swiper-slide[data-swiper-slide-index="0"] .text .p1{
  color: #fff;
}

@media screen and (max-width: 1919px) {
  .section2 .wrap .box .page .item .icon{
    height: 4.16666666vh;
  }
  .index1 .fix .center .wrap .bg.bg2{
    width: 15.05208333vw;
  }
  .index_banner .swiper-pagination {
    left: 3.125vw;
    bottom: 4.1666666667vw;
  }

  .index_banner .swiper-pagination .swiper-pagination-bullet {
    width: 2.9166666667vw;
    /* height: 0.1041666667vw; */
    margin: 0px 0.5208333333vw;
  }

  .index_banner .swiper-pagination .swiper-pagination-bullet::before {
    width: 2.9166666667vw;
    /* height: 0.1041666667vw; */
  }

  .index_banner .swiper-pagination .swiper-pagination-bullet::after {
    width: 2.9166666667vw;
    /* height: 0.1041666667vw; */
  }

  .index_banner .item .text {
    left: calc(50% - 40.625vw);
  }

  .index_banner .item .text .p1 {
    font-size:3.2291666vw;
  }

  .index_banner .item .text .p2 {
    font-size: 2.08333333vw;
  }

  .index_banner .down {
    bottom: 3.125vw;
  }

  .index_banner .down .bor {
    width: 1.1458333333vw;
    height: 1.7708333333vw;
    border-radius: 0.78125vw;
    padding: 0.2604166667vw 0px 0px;
  }

  .index_banner .down .bor::after {
    width: 0.1041666667vw;
    height: 0.2604166667vw;
  }

  .loading .position {
    bottom: 3.125vw;
  }

  .loading .position .count {
    font-size: 1.25vw;
    margin: 0px 0px 0.2604166667vw;
    left: -4.1666666667vw;
  }

  .loading .position .line {
    height: 0.1041666667vw;
  }

  .section2 .wrap .box .swiper .item .content {
    left: calc(50vw - 40.625vw);
  }

  .section2 .wrap .box .swiper .item .content .top {
    transform: translateY(1.5625vw);
    margin-top: 5.2083333vw;
  }

  .section2 .wrap .box .swiper .item .content .top h3 {
    font-size: 2.083333333vw;
  }

  .section2 .wrap .box .swiper .item .content .bottom {
    /* margin-top: 15.625vw; */
    margin-top: 10.41666666vw;
  }

  .section2 .wrap .box .swiper .item .content .bottom .img {
    transform: translateY(1.5625vw);
  }

  .section2 .wrap .box .swiper .item .content .bottom .img .icon {
    left: 0.9375vw;
    width: 1.5625vw;
  }

  .section2 .wrap .box .swiper .item .content .bottom .text {
    margin-top: 0.5208333333vw;
    transform: translateY(1.5625vw);
  }

  .section2 .wrap .box .swiper .item .content .bottom .text h4 {
    font-size: 2.70833333vw;
  }

  .section2 .wrap .box .swiper .item .content .bottom .text p {
    font-size: 1.1458333333vw;
    line-height: 1.5625vw;
    width: 19.791666666;
    margin-top: 0.5208333333vw;
  }

  .section2 .wrap .box .swiper .item .content .bottom .commonButton {
    margin-top: 2.6041666667vw;
    transform: translateY(1.5625vw);
  }

  .section2 .wrap .box .page {
    left: calc(50vw + 26.0416666667vw);
    width: calc(50vw - 26.0416666667vw);
    padding: 4.53125vw 0px 0px;
  }

  /* .section2 .wrap .box .page .circle .clip .after {
    backdrop-filter: blur(2.0833333333vw);
  } */
  .section2 .wrap .box .swiper .item .content .bottom .img{
    width: 3.90625vw;
  }
  .section2 .wrap .box .page .circle .path-loop {
    stroke-dashoffset: 7.5520833333vw;
    stroke-width: 0.421875vw;
  }

  .section2 .wrap .box .page .item .icon {
    margin-bottom: 0.5208333333vw;
  }

  .section2 .wrap .box .page .item .text {
    /* font-size: 0.9375vw; */
    font-size: 2.03703703vh;
  }

  .section2 .wrap .box .page .item .line {
    width: 1.3020833333vw;
    transform: translateY(1.0416666667vw);
    margin-top: 0.2604166667vw;
  }

  .section3 .wrap {
    padding-top: 3.6458333333vw;
    padding-bottom: 4.1666666667vw;
  }

  .section3 .wrap .bg {
    width: 67.7083333333vw;
  }

  .section3 .wrap .title {
    margin-bottom: 0.5208333333vw;
  }

  .section3 .wrap .title h3 {
    font-size: 2.0833333333vw;
  }

  .section3 .wrap .text {
    width:52.0833333vw;
    font-size: 0.9895833333vw;
    /* line-height: 1.5625vw; */
  }

  .section3 .wrap .map {
    width: 35.4166666667vw;
    height: 35.4166666667vw;
  }

  .section3 .wrap .map .quan {
    width: 33.3333333333vw;
    height: 33.3333333333vw;
  }

  .section3 .wrap .map .position .point {
    width: 0.625vw;
    height: 0.625vw;
  }

  .section3 .wrap .map .position .point .joke .pi .bai {
    width: 0.625vw;
    height: 0.625vw;
  }

  .section3 .wrap .map .position .point .joke .content {
    width: 12.5vw;
    padding: 1.0416666667vw;
    border-radius: 0.3125vw;
    left: 2.0833333333vw;
    transform: translateY(1.0416666667vw);
  }

  .section3 .wrap .map .position .point .joke .content .logo {
    width: 5.5208333333vw;
  }

  .section3 .wrap .map .position .point .joke .content .t {
    padding-top: 0.5208333333vw;
    margin-top: 0.7291666667vw;
  }

  .section3 .wrap .map .position .point .joke .content .t p {
    font-size: 0.7291666667vw;
  }

  .section3 .wrap .merry {
    bottom: 0.5208333333vw;
  }

  .section3 .wrap .merry .row {
    height: 10.4166666667vw;
  }

  .section3 .wrap .merry .row .trem .item {
    width: 14.9479166667vw;
  }

  .section4 .wrap {
    width: 81.25vw;
    padding-top: 5.2083333333vw;
    padding-bottom: 6.7708333333vw;
  }

  .section4 .wrap .title {
    margin-bottom: 4.1666666667vw;
  }

  .section4 .wrap .title h3 {
    font-size: 1.875vw;
  }

  .section4 .wrap .main {
    gap: 2.0833333333vw;
  }

  .section4 .wrap .main .item {
    width: 18.75vw;
    padding-bottom: 2.6041666667vw;
  }

  .section4 .wrap .main .item .fire {
    border-radius: 0.5208333333vw;
  }

  .section4 .wrap .main .item .fire .box {
    padding: 1.5625vw;
  }

  .section4 .wrap .main .item .fire .box .f_text {
    font-size: 1.1458333333vw;
  }

  .section4 .wrap .main .item .fire .box .f_bottom .f_time {
    font-size: 0.7291666667vw;
  }

  .section4 .wrap .main .item .fire .box .f_bottom .go span {
    font-size: 2.0833333333vw;
  }

  .section4 .wrap .main .item .img {
    border-radius: 0.5208333333vw;
  }

  .section4 .wrap .main .item .text {
    font-size: 1.1458333333vw;
    margin-top: 1.0416666667vw;
    height: 3.2291666667vw;
  }

  .section4 .wrap .main .item .time {
    font-size: 0.78125vw;
    margin-top: 1.5625vw;
  }

  .section4 .wrap .commonButton {
    margin: 3.6458333333vw auto 0px;
  }

  .index1 .fix .center .wrap .bg.bg1 .line img {
    transform: translate(5.2083333333vw, -5.2083333333vw) scale(1.1);
  }

  .index1 .fix .center .wrap .bg.bg1.on .line img {
    transform: translate(5.2083333333vw, -5.2083333333vw) scale(1);
  }

  .index1 .fix .center .wrap .content {
    width: 31.1666666667vw;
    left: calc(50vw - 40.625vw);
  }

  .index1 .fix .center .wrap .content .title {
    transform: translateY(1.5625vw);
  }

  .index1 .fix .center .wrap .content .title h3 {
    font-size: 2.0833333333vw;
  }
  .index1 .fix .center .wrap .content .title h3 span{
    font-size: 2.1875vw;
  }

  .index1 .fix .center .wrap .content .text {
    /* font-size: 0.8333333333vw; */
    font-size: 1.041666666vw;
    margin-top: 2.0833333333vw;
    transform: translateY(1.5625vw);
  }

  .index1 .fix .center .wrap .content .commonButton {
    margin-top: 2.6041666667vw;
    transform: translateY(1.5625vw);
  }

  .section3 .wrap .merry .row .trem .item img{
    max-height: 3.125vw;
  }
}
@media screen and (max-width: 1024px) {
  .index_banner .down{
    display: none;
  }
  .index_banner .item .text{
    left: 5vw;
  }
  .index_banner .item .text .p1{
    font-size: 32px;
  }
  .index_banner .item .text .p2{
    font-size: 14px;
    margin-top: 10px;
  }
  .index1 .fix .center{
    position: static;
  }
  .index1 .fix .top{
    clip-path: inset(0% 0px 0% 0%) !important;
  }
  .index1 .fix .center,
  .index1 .fix .center .wrap,
  .index1 .fix{
    height: auto;
  }
  .index_banner .swiper-pagination .swiper-pagination-bullet::after,
  .index_banner .swiper-pagination .swiper-pagination-bullet::before,
  .index_banner .swiper-pagination .swiper-pagination-bullet{
    width: 30px;
  }
  .index_banner .swiper-pagination .swiper-pagination-bullet{
    margin: 0 5px;
  }
  .index1 .fix .center .wrap .content{
    position: static;
    transform: none;
  }
  .index_banner .swiper-pagination{
    left: 5vw;
    bottom: 30px;
  }
  .index1{
    height: auto;
  }
  .index1 .fix .center{
    /* height: 400px; */
  }
  .index1 .fix .center .wrap{
    padding: 60px 5vw;
    width: 100%;
    margin: 0 auto;
  }
  .index1 .fix .center .wrap .content .text{
    font-size: 14px;
    margin-top: 40px;
  }
  .index1 .fix .center .wrap .content {
    width: 100%;
  }
  .index1 .fix .center .wrap .bg.bg1{
    top: 0;
  }
  .index1 .fix .center .wrap{
    height: 100%;
  }
  .index1 .fix .center .wrap .bg.bg1 .line {
    width: 52.75vw;
    height: auto;
  }
  .index1 .fix .center .wrap .bg.bg1.on .line img {
    transform: translate(2.208333vw, -5.208333vw) scale(1);
  }
  .index1 .fix .center .wrap .bg{
    display: none;
  }
  .index1 .fix .center .wrap .content .title h3 span,
  .index1 .fix .center .wrap .content .title h3{
    font-size: 28px;
  }
  .index1 .fix .center .wrap .content .title,
  .index1 .fix .center .wrap .content .text,
  .index1 .fix .center .wrap .content .button{
    opacity: 1;
    transform: none;
  }
  .section2 .wrap .box{
    height: auto;
  }
  .section2 .wrap .box .page::before,
  .section2 .wrap .box .page::after{
    display: none;
  }
  .section2 .wrap .box .swiper .item .content .bottom{
    margin-top: 180px;
  }
  .section2 .wrap .box .swiper .item .content{
    height: auto;
    position: static;
    margin-top: 60px;
    margin-left: 5vw;
    margin-bottom:180px;
  }
  .section2 .wrap .box .page{
    left: 0;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    padding-top: 0;
  }
  .section2 .wrap .box .page .item:nth-child(1),
  .section2 .wrap .box .page .item:nth-child(2),
  .section2 .wrap .box .page .item:nth-child(3),
  .section2 .wrap .box .page .item:nth-child(4){
    transform: none;
  }
  .section2 .wrap .box .swiper .item .content .top h3{
    font-size: 20px;
  }
  .section2 .wrap .box .page .item.PC{
    display: none;
  }
  .section2 .wrap .box .page .thumbs_swiper.PE{
    display: block;
  }

  .section2 .wrap .box .page .item .text{
    font-size: 14px;
  }
  .section2 .wrap .box .page .item{
    padding: 20px 0;
  }
  .section2 .wrap .box .swiper .item .content .bottom .img{
    width: 40px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .img .icon{
    left: 10px;
    width: 16px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .text{
    margin-top: 20px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .text p{
    font-size: 14px;
    line-height: 2;
    width: 90vw;
    margin-top: 10px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .commonButton{
    margin-top: 20px;
  }
  .section2 .wrap .box .page{
    border-top:1px solid rgba(255, 255, 255, 0.2);
  }
  .section2 .wrap .box .page .thumbs_swiper{
    width: 100%;
  }

  .section2 .wrap .box .swiper .item .bg{
    position: absolute;
    top: 0;
  }
  .section2 .wrap .box .page .swiper-slide-thumb-active .item .line{
    opacity: 1;
    transform: none;
  }
  .section2 .wrap .box .page .swiper-slide-thumb-active .item .icon{
    opacity: 1;
  }
  .section2 .wrap .box .page .swiper-slide-thumb-active .item::after{
    opacity: 1;
  }
  .section2 .wrap .box .page .item{
    position: relative;
    width: 100%;
  }
  .section2 .wrap .box .page .item::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    z-index: -1;
    opacity: 0;
    transition: all .6s;
  }
  .section2 .wrap .box .page .item .icon{
    margin-bottom: 10px;
  }
  .section2 .wrap .box .page .item .line{
    width: 16px;
    margin-top:0;
  }
  .section2 .wrap .box .page .circle{
    display: none;
  }
  .section2 .wrap .box .page .item .icon{
    height: 30px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .text h4{
    font-size: 28px;
  }
  .section3 .wrap{
    padding: 60px 0 30px;
  }
  .section3 .wrap .title h3{
    font-size: 24px;
  }
  .section3 .wrap .title p{
    font-size: 14px;
  }
  .section3 .wrap .title{
    margin-bottom: 20px;
  }
  .section3 .wrap .text{
    width: 90%;
    font-size: 14px;
    line-height: 2;
  }
  .section3 .wrap .map{
    transform: scale(1);
    width: 400px;
    height: 400px;
  }
  .section3 .wrap .map .position .point .joke .pi .bai{
    width: 10px;
    height: 10px;
  }
  .section3 .wrap .map .position .point .joke .content{
    display: none;
  }
  .section3 .wrap .merry .row .trem .item img{
    max-height: 40px;
  }
  .section3 .wrap .merry .row .trem .item{
    width:150px;
  }
  .section3 .wrap .merry .row{
    height: 80px;
  }
  .section3 .wrap .merry{
    bottom: 0;
  }
  .section3 .wrap .bg{
    opacity: 1;
    width: 90vw;
  }
  .section3 .wrap .map .quan{
    width: 95%;
    height: 95%;
  }
  .section4 .wrap{
    width: 90%;
    padding: 60px 0;
  }
  .section4 .wrap .title h3{
    font-size: 24px;
  }
  .section4 .wrap .title{
    margin-bottom: 30px;
  }
  .section4 .wrap .main{
    flex-wrap: wrap;
    gap: 20px 0;
    justify-content: space-between;
  }
  .section4 .wrap .main .item{
    width: calc(50% - 10px);
  }
  .section4 .wrap .main .item .text{
    font-size: 18px;
    margin-top: 20px;
    height: 50px;
  }
  .section4 .wrap .main .item .fire .box .f_bottom .f_time{
    font-size: 14px;
  }
  .section4 .wrap .main .item .fire .box{
    width: 100%;
    padding: 20px;
  }
  .section4 .wrap .main .item .fire .box .f_text{
    font-size: 18px;
  }
  .section4 .wrap .main .item .fire .box .f_bottom .go span{
    font-size: 20px;
  }
  .section4 .wrap .main .item .time{
    font-size: 14px;
    margin-top: 20px;
  }
  .section4 .wrap .main .item .img,
  .section4 .wrap .main .item .fire{
    border-radius: 10px;
  }
  .section4 .wrap .commonButton{
    margin-top: 20px;
  }
  .loading .position .count{
    font-size: 18px;
  }
  .loading .position .line{
    height: 2px;
  }
  .section2 .wrap .box .page .item .icon{
    display: none;
  }
  /* .section3 .wrap .merry .row{
    animation-duration:22s !important;
  } */
  .loading .position{
    bottom: 100px;
  }
  .section3 .wrap .merry{
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .section3 .wrap .merry .row .trem .item{
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .section4 .wrap .main.PC{
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .index1 .fix .center .wrap .content .title h3 span,
  .index1 .fix .center .wrap .content .title h3 {
    font-size: 22px;
  }
  .index1 .fix .center .wrap{
    padding: 50px 5vw;
  }
  .index1 .fix .center .wrap .content .commonButton{
    margin-top: 40px;
  }
  .section2 .wrap .box .swiper .item .content .bottom .text h4{
    font-size: 24px;
  }
  .section2 .wrap .box .swiper .item .content{
    margin-top: 60px;
    margin-bottom: 110px;
  }
  .section3 .wrap .map{
    width: 300px;
    height: 300px;
  }
  .section3 .wrap .map .position .point .joke .pi .bai {
    width: 8px;
    height: 8px;
  }
  .section3 .wrap{
    padding: 50px 0 30px;
  }

  .section3 .wrap .merry .row .trem .item img {
    max-height: 34px;
  }
  .section4 .wrap .main .item{
    width: 100%;
  }
  .section4 .wrap .main .item .text{
    height: auto;
  }
  .section4 .wrap .title h3 {
    font-size: 20px;
  }
  .section4 .wrap{
    padding: 50px 0;
  }
  .section3 .wrap .merry .row{
    animation-duration: 6s !important;
  }
  .section4 .wrap{
    width: 100%;
  }
  
  .section4 .wrap .PE_swiper{
    width: 270vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .section4 .wrap .main.PE{
    display: block;
  }
}