@keyframes showA {
  100% {
    opacity: 1;
  }
}
@keyframes hideA {
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #2B2B2B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading.end .joke {
  animation: hideA .6s ease forwards;
}
.loading.start .wrap {
  animation: showA .6s ease forwards;
}
.loading .maskImg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%), linear-gradient(to bottom, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-composite: source-in;
}
.loading .maskImg img {
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  max-width: unset;
  max-height: unset;
}
.loading .wrap {
  opacity: 0;
}
.loading .wrap .logo_img {
  width: 204px;
  margin: auto;
  display: block;
  opacity: 0;
}
.loading .wrap .logo_img img {
  width: 100%;
}
.loading .wrap .line {
  width: 305px;
  height: 4px;
  border-radius: 82px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 52px auto;
}
.loading .wrap .line div {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #FFF;
  box-shadow: 0 0 92.325px 0 #FFF, 0 0 52.757px 0 #FFF, 0 0 30.775px 0 #FFF, 0 0 15.388px 0 #FFF, 0 0 4.396px 0 #FFF, 0 0 2.198px 0 #FFF;
  transform: scaleX(0);
}
.loading .wrap .load_num {
  color: #FDD000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}

@keyframes pagingA {
  100% {
    width: 100%;
  }
}
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.banner .button {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 40px;
}
.banner .button .circle {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}
.banner .button .circle:first-child {
  transform: rotateY(180deg);
}
.banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner .swiper .swiper-slide.swiper-slide-active .text {
  display: block;
}
.banner .swiper .swiper-slide.swiper-slide-active .common_bg {
  transform: scale(1);
}
.banner .swiper .swiper-slide .common_bg {
  object-fit: cover;
}
.banner .swiper .swiper-slide .text {
  display: none;
  text-align: center;
  position: relative;
  z-index: 1;
  top: 100px;
}
.banner .swiper .swiper-slide .text .p1 {
  color: #FFF;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 103.704%;
}
@keyframes roteA {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.banner .swiper-pagination {
  bottom: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .swiper-pagination span {
  width: 14px;
  height: 4px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1 !important;
  margin: 0 7px 0 0 !important;
  position: relative;
  z-index: 1;
  transition: .6s ease;
}
.banner .swiper-pagination span:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  top: 0;
  left: 0;
  background: var(--color);
}
.banner .swiper-pagination span.swiper-pagination-bullet-active {
  width: 33px;
  background: #fff;
}
.banner .swiper-pagination span.swiper-pagination-bullet-active:after {
  animation: pagingA 5s linear forwards;
}
.banner .swiper-pagination span:last-child {
  margin: 0 !important;
}

.index1 {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: #F9F9F9;
}
.index1 .bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  max-height: unset;
  z-index: -1;
}
.index1 .wrap {
  width: 1800px;
  margin: auto;
}
.index1 .wrap .title {
  width: 907px;
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 66px;
  text-transform: capitalize;
}
.index1 .wrap .title span {
  color: var(--color);
}
.index1 .wrap .center {
  width: 100vw;
  margin: 60px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.index1 .wrap .center img {
  width: 100%;
}
.index1 .wrap .center img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.index1 .wrap .center .img1 {
  opacity: 0;
}
body.dark .index1 .wrap .center .img1{
  display: none;
}
body.dark .index1 .wrap .center .img1.img1_dark{
  display: block!important;
  position: relative;
}
.index1 .wrap .center .img2 {
  width: 100%;
  transform: scale(0.5);
  transform-origin: top;
}
.index1 .wrap .center .img3 {
  opacity: 0;
}
.index1 .wrap .center .img4 {
  opacity: 0;
}
.index1 .wrap .message {
  display: flex;
  justify-content: flex-end;
}
.index1 .wrap .message .text {
  width: 695px;
}
.index1 .wrap .message .text .p1 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 64px;
}
.index1 .wrap .content {
  display: flex;
  justify-content: space-between;
  margin: 85px 0 0 0;
}
.index1 .wrap .content .item {
  width: 580px;
  height: 340px;
  border-radius: 10px;
  background: #FFF;
  padding: 50px 70px 60px 80px;
}
.index1 .wrap .content .item:hover .end .icon {
  transform: rotateY(180deg);
}
.index1 .wrap .content .item .end {
  display: flex;
  justify-content: flex-end;
}
.index1 .wrap .content .item .end .icon {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s;
}
.index1 .wrap .content .item .end .icon img {
  object-fit: contain;
}
.index1 .wrap .content .item .text span {
  color: #000;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 100%;
}
.index1 .wrap .content .item .text p {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
  margin: 7px 0 0 0;
}

@media screen and (max-width: 1920px) {
  .index1 .wrap .message {
    /*margin: 524px 0 0;*/
  }
}
.index2 {
  padding: 86px 0;
}
.index2 .wrap {
  width: 1800px;
  margin: auto;
}
.index2 .wrap .title {
  text-align: center;
  color: #1A1A1A;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 121.429%;
  text-transform: uppercase;
  position: sticky;
  top: 130px;
}
.index2 .wrap .content {
  margin: 60px 0 0 0;
}
.index2 .wrap .content .item {
  display: flex;
  justify-content: space-between;
  padding: 60px 0;
  border-top: 1px solid #DDD;
  background: #fff;
  position: sticky;
  top: 325px;
}
.index2 .wrap .content .item .l {
  width: 750px;
}
.index2 .wrap .content .item .l .p1 {
  color: #1A1A1A;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 155.556%;
  /* 155.556% */
  text-transform: capitalize;
}
.index2 .wrap .content .item .l .p2 {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144.444%;
  /* 144.444% */
  text-transform: capitalize;
  margin: 85px 0 70px 0;
}
.index2 .wrap .content .item .images {
  width: 896px;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.index2 .wrap .content .item .images img {
  width: 100%;
  height: 100%;
}

.index3 {
  border-radius: 20px;
  background: #000;
  padding: 95px 0 260px;
  position: relative;
  z-index: 1;
}
.index3 .wrap {
  width: 1880px;
  margin: auto;
}
.index3 .wrap .title {
  color: #FFF;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
.index3 .wrap .position {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: 5s;
}
.index3 .wrap .content {
  margin: 470px 0 0 0;
}
.index3 .wrap .content .proSwiper {
  width: 100%;
}
.index3 .wrap .content .proSwiper .swiper-slide .item {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 45px 40px 30px 40px;
  display: block;
  transition: .6s ease;
}
.index3 .wrap .content .proSwiper .swiper-slide .item:hover {
  background: white;
}
.index3 .wrap .content .proSwiper .swiper-slide .item:hover .img img {
  transform: scale(1.05);
}
.index3 .wrap .content .proSwiper .swiper-slide .item .p1 {
  color: #1A1A1A;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.index3 .wrap .content .proSwiper .swiper-slide .item .img {
  margin: 90px 0 0 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index3 .wrap .content .proSwiper .swiper-slide .item .img img {
  object-fit: contain;
  transition: 1s;
}
.index3 .wrap .content .proSwiper .swiper-slide .item .more {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 120px 0 0 0;
}
.index3 .wrap .content .proSwiper .swiper-slide .item .more p {
  color: #1A1A1A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.index3 .wrap .content .proSwiper .swiper-slide .item .more .iconfont {
  color: #1A1A1A;
  font-size: 14px;
}

.index4 {
  padding: 90px 0 145px;
}
.index4 .wrap {
  width: 1800px;
  margin: auto;
}
.index4 .wrap .title {
  text-align: center;
  color: #1A1A1A;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.index4 .wrap .up {
  margin: 54px 0 0 0;
  display: flex;
  justify-content: space-between;
}
.index4 .wrap .up .item {
  width: 880px;
}
.index4 .wrap .up .item:hover .img img {
  transform: scale(1.05);
}
.index4 .wrap .up .item:hover .text .p2 {
  color: var(--color);
}
.index4 .wrap .up .item .img {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.index4 .wrap .up .item .img .label {
  position: absolute;
  top: 13px;
  left: 20px;
  z-index: 1;
  height: 40px;
  width: fit-content;
  border-radius: 10px;
  background: #FDD000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.index4 .wrap .up .item .img img {
  width: 100%;
  height: 100%;
}
.index4 .wrap .up .item .text {
  margin: 40px 0 0 0;
}
.index4 .wrap .up .item .text .p1 {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 0 0 10px;
}
.index4 .wrap .up .item .text .p2 {
  color: #1A1A1A;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 15px;
  transition: .6s ease;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index4 .wrap .up .item .text .p3 {
  color: #AEAEAE;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  /* 133.333% */
  text-transform: capitalize;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index4 .wrap .content {
  margin: 90px 0 55px 0;
}
.index4 .wrap .content .item {
  position: relative;
  z-index: 1;
  padding: 53px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index4 .wrap .content .item:first-child:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background: #DDD;
  top: 0;
  left: 0;
}
.index4 .wrap .content .item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background: #DDD;
  bottom: 0;
  left: 0;
  transition: .6s ease;
}
.index4 .wrap .content .item:hover:after {
  background: var(--color);
}
.index4 .wrap .content .item:hover .l .p1 {
  color: var(--color);
}
.index4 .wrap .content .item:hover .l .time {
  color: var(--color);
}
.index4 .wrap .content .item:hover .more {
  background: var(--color);
}
.index4 .wrap .content .item .l {
  display: flex;
  align-items: center;
  gap: 120px;
}
.index4 .wrap .content .item .l .p1 {
  width: 800px;
  color: #1A1A1A;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: .6s ease;
}
.index4 .wrap .content .item .l .time {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  transition: .6s ease;
}
.index4 .wrap .content .item .more {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .6s ease;
}
.index4 .wrap .content .item .more img {
  width: 19px;
}


@media screen and (max-width: 1919px) {
  /*.loading .maskImg{*/
  /*  border-radius: 2.0833333333vw;*/
  /*  mask-image: linear-gradient(to right, transparent 0px, rgb(0, 0, 0) 4.1666666667vw, rgb(0, 0, 0) calc(100% - 4.1666666667vw), transparent 100%), linear-gradient(transparent 0px, rgb(0, 0, 0) 4.1666666667vw, rgb(0, 0, 0) calc(100% - 4.1666666667vw), transparent 100%);*/
  /*}*/
  /*.loading .wrap .logo_img{*/
  /*  width: 10.625vw;*/
  /*}*/
  /*.loading .wrap .line{*/
  /*  width: 15.8854166667vw;*/
  /*  height: 0.2083333333vw;*/
  /*  border-radius: 4.2708333333vw;*/
  /*  margin: 2.7083333333vw auto;*/
  /*}*/
  /*.loading .wrap .line div{*/
  /*  box-shadow: rgb(255, 255, 255) 0px 0px 4.80859375vw 0px, rgb(255, 255, 255) 0px 0px 2.7477604167vw 0px, rgb(255, 255, 255) 0px 0px 1.6028645833vw 0px, rgb(255, 255, 255) 0px 0px 0.8014583333vw 0px, rgb(255, 255, 255) 0px 0px 0.2289583333vw 0px, rgb(255, 255, 255) 0px 0px 0.1144791667vw 0px;*/
  /*}*/
  /*.loading .wrap .load_num{*/
  /*  font-size: 1.25vw;*/
  /*}*/
  .banner .button{
    padding: 0px 2.0833333333vw;
  }
  .banner .button .circle{
    font-size: 1.1458333333vw;
  }
  .banner .swiper .swiper-slide .text{
    top: 5.2083333333vw;
  }
  .banner .swiper .swiper-slide .text .p1{
    font-size: 2.8125vw;
  }
  .banner .swiper-pagination{
    bottom: 2.3958333333vw;
  }
  .banner .swiper-pagination span{
    width: 0.7291666667vw;
    height: 0.2083333333vw;
    border-radius: 0.2604166667vw;
    margin: 0px 0.3645833333vw 0px 0px !important;
  }
  .banner .swiper-pagination span.swiper-pagination-bullet-active{
    width: 1.71875vw;
  }
  .index1{
    padding: 5.2083333333vw 0px;
  }
  .index1 .wrap{
    width: 93.75vw;
  }
  .index1 .wrap .title{
    width: 47.2395833333vw;
    font-size: 2.6041666667vw;
    line-height: 3.4375vw;
  }
  .index1 .wrap .center{
    margin: 3.125vw auto;
  }
  .index1 .wrap .message .text{
    width: 36.1979166667vw;
  }
  .index1 .wrap .message .text .p1{
    font-size: 0.9375vw;
    margin: 0px 0px 3.3333333333vw;
  }
  .index1 .wrap .content{
    margin: 4.4270833333vw 0px 0px;
  }
  .index1 .wrap .content .item{
    width: 30.2083333333vw;
    height: 17.7083333333vw;
    border-radius: 0.5208333333vw;
    padding: 2.6041666667vw 3.6458333333vw 3.125vw 4.1666666667vw;
  }
  .index1 .wrap .content .item .end .icon{
    width: 3.8020833333vw;
    height: 3.8020833333vw;
  }
  .index1 .wrap .content .item .text span{
    font-size: 4.1666666667vw;
  }
  .index1 .wrap .content .item .text p{
    font-size: 0.9375vw;
    margin: 0.3645833333vw 0px 0px;
  }
  .index2{
    padding: 4.4791666667vw 0px;
  }
  .index2 .wrap{
    width: 93.75vw;
  }
  .index2 .wrap .title{
    font-size: 2.9166666667vw;
    top: 6.7708333333vw;
  }
  .index2 .wrap .content{
    margin: 3.125vw 0px 0px;
  }
  .index2 .wrap .content .item{
    padding: 3.125vw 0px;
    top: 16.9270833333vw;
  }
  .index2 .wrap .content .item .l{
    width: 39.0625vw;
  }
  .index2 .wrap .content .item .l .p1{
    font-size: 1.875vw;
  }
  .index2 .wrap .content .item .l .p2{
    font-size: 0.9375vw;
    margin: 4.4270833333vw 0px 3.6458333333vw;
  }
  .index2 .wrap .content .item .images{
    width: 46.6666666667vw;
    height: 27.0833333333vw;
    border-radius: 0.5208333333vw;
  }
  .index3{
    border-radius: 1.0416666667vw;
    padding: 4.9479166667vw 0px 13.5416666667vw;
  }
  .index3 .wrap{
    width: 97.9166666667vw;
  }
  .index3 .wrap .title{
    font-size: 3.3333333333vw;
  }
  .index3 .wrap .position{
    top: 7.8125vw;
  }
  .index3 .wrap .content{
    margin: 24.4791666667vw 0px 0px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item{
    height: 20.8333333333vw;
    border-radius: 0.5208333333vw;
    backdrop-filter: blur(0.8333333333vw);
    padding: 2.34375vw 2.0833333333vw 1.5625vw;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .p1{
    font-size: 1.3541666667vw;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .img{
    margin: 4.6875vw 0px 0px;
    height: 2.6041666667vw;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more{
    gap: 0.3645833333vw;
    margin: 6.25vw 0px 0px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more p{
    font-size: 0.7291666667vw;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more .iconfont{
    font-size: 0.7291666667vw;
  }
  .index4{
    padding: 4.6875vw 0px 7.5520833333vw;
  }
  .index4 .wrap{
    width: 93.75vw;
  }
  .index4 .wrap .title{
    font-size: 3.3333333333vw;
  }
  .index4 .wrap .up{
    margin: 2.8125vw 0px 0px;
  }
  .index4 .wrap .up .item{
    width: 45.8333333333vw;
  }
  .index4 .wrap .up .item .img{
    height: 25vw;
    border-radius: 0.5208333333vw;
  }
  .index4 .wrap .up .item .img .label{
    top: 0.6770833333vw;
    left: 1.0416666667vw;
    height: 2.0833333333vw;
    border-radius: 0.5208333333vw;
    padding: 0px 0.7291666667vw;
    font-size: 0.7291666667vw;
  }
  .index4 .wrap .up .item .text{
    margin: 2.0833333333vw 0px 0px;
  }
  .index4 .wrap .up .item .text .p1{
    font-size: 0.8333333333vw;
    margin: 0px 0px 0.5208333333vw;
  }
  .index4 .wrap .up .item .text .p2{
    font-size: 1.0416666667vw;
    margin: 0px 0px 0.78125vw;
  }
  .index4 .wrap .up .item .text .p3{
    font-size: 0.9375vw;
  }
  .index4 .wrap .content{
    margin: 4.6875vw 0px 2.8645833333vw;
  }
  .index4 .wrap .content .item{
    padding: 2.7604166667vw 0px;
  }
  .index4 .wrap .content .item:first-child::before{
    border-radius: 0.5208333333vw;
  }
  .index4 .wrap .content .item::after{
    border-radius: 0.5208333333vw;
  }
  .index4 .wrap .content .item .l{
    gap: 6.25vw;
  }
  .index4 .wrap .content .item .l .p1{
    width: 41.6666666667vw;
    font-size: 1.0416666667vw;
  }
  .index4 .wrap .content .item .l .time{
    font-size: 0.8333333333vw;
  }
  .index4 .wrap .content .item .more{
    width: 2.1875vw;
    height: 2.1875vw;
    border-radius: 0.5208333333vw;
  }
  .index4 .wrap .content .item .more img{
    width: 0.9895833333vw;
  }
}

@media screen and (max-width: 1024px) {
  /* ===== loading ===== */
  /*.loading .wrap .logo_img{*/
  /*  width: 140px;*/
  /*}*/
  /*.loading .wrap .line{*/
  /*  width: 80%;*/
  /*  max-width: 200px;*/
  /*  height: 3px;*/
  /*  margin: 30px auto;*/
  /*}*/
  /*.loading .wrap .load_num{*/
  /*  font-size: 18px;*/
  /*}*/

  .loading .wrap .line{
    width: 90%;
    height: 3px;
    margin: 35px auto;
  }
  .loading .wrap .load_num{
    font-size: 18px;
  }
  .loading .wrap{
    width: 90%;
    margin: auto;
  }
  .loading .joke{
    width: 100%;
  }

  /* ===== banner ===== */
  .banner{
    height: 100vh;
  }
  .banner .button{
    display: none;
  }
  .banner .swiper .swiper-slide .text{
    top: 40px;
  }
  .banner .swiper .swiper-slide .text .p1{
    font-size: 24px;
    line-height: 1.3;
  }
  .banner .swiper-pagination{
    bottom: 20px;
  }

  /* ===== index1 ===== */
  .index1{
    padding: 50px 0;
  }
  .index1 .wrap{
    width: 90%;
  }
  .index1 .wrap .title{
    width: 100%;
    font-size: 18px;
    line-height: 27px;
  }
  .index1 .wrap .center{
    width: 100%;
    margin: 30px auto;
    position: relative;
    left: 0;
    transform: none;
  }
  .index1 .wrap .message .text{
    width: 100%;
  }
  .index1 .wrap .message .text .p1{
    font-size: 13px;
    margin: 0 0 24px;
  }
  .index1 .wrap .content{
    flex-direction: column;
    gap: 15px;
    margin: 40px 0 0 0;
  }
  .index1 .wrap .content .item{
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 15px;
  }
  .index1 .wrap .content .item .end .icon{
    width: 40px;
    height: 40px;
  }
  .index1 .wrap .content .item .text span{
    font-size: 36px;
  }
  .index1 .wrap .content .item .text p{
    font-size: 13px;
    margin: 4px 0 0 0;
  }

  /* ===== index2 ===== */
  .index2{
    padding: 50px 0;
  }
  .index2 .wrap{
    width: 90%;
  }
  .index2 .wrap .title{
    font-size: 24px;
    position: relative;
    top: 0;
  }
  .index2 .wrap .content{
    margin: 30px 0 0 0;
  }
  .index2 .wrap .content .item{
    flex-direction: column-reverse;
    position: relative;
    top: 0;
    padding: 30px 0;
    gap: 20px;
  }
  .index2 .wrap .content .item .l{
    width: 100%;
  }
  .index2 .wrap .content .item .l .p1{
    font-size: 20px;
  }
  .index2 .wrap .content .item .l .p2{
    font-size: 13px;
    margin: 16px 0;
  }
  .index2 .wrap .content .item .images{
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* ===== index3 ===== */
  .index3{
    border-radius: 16px;
    padding: 50px 0 80px;
  }
  .index3 .wrap{
    width: 90%;
  }
  .index3 .wrap .title{
    font-size: 24px;
  }
  .index3 .wrap .position{
    position: relative;
    top: 30px;
    left: 0;
    transform: none;
  }
  .index3 .wrap .content{
    margin: 30px 0 0 0;
  }
  .index3 .wrap .content .proSwiper{
    width: 95vw;
    padding: 0 40px 0 0;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item{
    height: auto;
    border-radius: 10px;
    padding: 24px 20px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .p1{
    font-size: 18px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .img{
    margin: 30px 0 0 0;
    height: 50px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more{
    margin: 24px 0 0 0;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more p{
    font-size: 13px;
  }
  .index3 .wrap .content .proSwiper .swiper-slide .item .more .iconfont{
    font-size: 13px;
  }

  /* ===== index4 ===== */
  .index4{
    padding: 50px 0 60px;
  }
  .index4 .wrap{
    width: 90%;
  }
  .index4 .wrap .title{
    font-size: 24px;
  }
  .index4 .wrap .up{
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 0 0;
  }
  .index4 .wrap .up .item{
    width: 100%;
  }
  .index4 .wrap .up .item .img{
    height: auto;
    border-radius: 10px;
  }
  .index4 .wrap .up .item .text{
    margin: 20px 0 0 0;
  }
  .index4 .wrap .up .item .text .p1{
    font-size: 13px;
    margin: 0 0 6px;
  }
  .index4 .wrap .up .item .text .p2{
    font-size: 16px;
    margin: 0 0 10px;
  }
  .index4 .wrap .up .item .text .p3{
    font-size: 13px;
  }
  .index4 .wrap .content{
    margin: 40px 0 30px;
  }
  .index4 .wrap .content .item{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }
  .index4 .wrap .content .item .l{
    flex-direction: column;
    gap: 8px;
    align-items: unset;
  }
  .index4 .wrap .content .item .l .p1{
    width: 90vw;
    font-size: 16px;
  }
  .index4 .wrap .content .item .l .time{
    font-size: 13px;
  }
  .index4 .wrap .content .item .more{
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .index4 .wrap .content .item .more img{
    width: 16px;
  }
  .index1 .wrap .center img{
    opacity: 1!important;
  }
  .index1 .wrap .center .img2{
    transform: none!important;
  }
  .index4 .wrap .up .item .img .label{
    top: 10px;
    left: 10px;
    height: 32px;
    border-radius: 7px;
    padding: 0 15px;
    font-size: 12px;
  }
  .banner .swiper .swiper-slide .common_bg{
    display: none;
  }
  .banner .swiper .swiper-slide .common_bg.sj_common_bg{
    display: block!important;
  }
}
