.section1 .wrap {
  padding-top: 200px;
}

.section1 .wrap .top {
  width: 1600px;
  margin: 0 auto;
}

.section1 .wrap .top .title {
  color: #000;
}

.section1 .wrap .top .title h3 {
  font-weight: 400;
  font-size: 40px;
}

.section1 .wrap .top .title h3 span {
  font-weight: 700;
}

.section1 .wrap .top .main {
  margin-top: 150px;
  margin-bottom: 160px;
  display: flex;
  justify-content: space-between;
}

.section1 .wrap .top .main .img {
  width: 278px;
}

.section1 .wrap .top .main .text {
  width: 900px;
  text-align: right;
}

.section1 .wrap .top .main .text h4 {
  font-size: 30px;
  color: #000;
  margin-bottom: 40px;
}

.section1 .wrap .top .main .text p {
  font-size: 18px;
  color: #444;
  line-height: 40px;
}

.section1 .wrap .bottom {
  position: relative;
}

.section1 .wrap .bottom .bg {
  width: 100%;
}

.section1 .wrap .bottom .bg img {
  width: 100%;
}

.section1 .wrap .bottom .text {
  position: absolute;
  left: calc(50vw - 800px);
  bottom: 100px;
  color: #fff;
  z-index: 1;
  font-size: 36px;
  line-height: 54px;
}

.section2 .wrap .box {
  height: 4000px;
}

.section2 .wrap .box .clip_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  height: 100vh;
  top: 0;
  overflow: hidden;
}

.section2 .wrap .box .clip_wrap .main {
  position: sticky;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.section2 .wrap .box .clip_wrap .main .list {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 330px;
  height: 447px;
  transform: translate(-50%, -50%);
}

.section2 .wrap .box .clip_wrap .main .list .item {
  width: 100%;
  position: absolute;
}

.section2 .wrap .box .clip_wrap .main .list .item.active .text {
  opacity: 1;
}

.section2 .wrap .box .clip_wrap .main .list .item .img {
  height: 400px;
  border-radius: 10px;
  background-color: #000;
  overflow: hidden;
}

.section2 .wrap .box .clip_wrap .main .list .item .img img {
  width: 100%;
}

.section2 .wrap .box .clip_wrap .main .list .item .text {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
  transition: all 1s;
}

.section2 .wrap .box .clip_wrap .main .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 160px;
  z-index: -1;
  color: #020D1B;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.section3 {
  background-color: #F5F5F5;
}

.section3 .wrap {
  padding-top: 80px;
  padding-bottom: 130px;
  width: 1600px;
  margin: 0 auto;
}

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

.section3 .wrap .main {
  margin-top: 40px;
}

.section3 .wrap .main.aos-animate {
  transition-delay: 0.3s;
}

.section3 .wrap .main .head {
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #EBECED;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section3 .wrap .main .head .key {
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  flex: 1;
}

.section3 .wrap .main .body .item {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #e6e6e6 solid;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.5s;
}

.section3 .wrap .main .body .item:hover {
  background-color: #2C6DB6;
}

.section3 .wrap .main .body .item:hover .value {
  color: #fff;
}

.section3 .wrap .main .body .item .value {
  flex: 1;
  color: #333;
  text-align: center;
  transition: all 0.5s;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 20;
  height: 100vh;
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}

.mask.active {
  opacity: 1;
  pointer-events: all;
}

.mask.active .box {
  transform: translate(-50%, -50%);
}

.mask .color {
  background-color: #121318;
  opacity: 0.2;
  position: absolute;
  width: 100%;
  height: 100%;
}

.mask .box {
  width: 1200px;
  /* height: 620px; */
  height: auto;
  box-shadow: 5px 9px 30px 0px rgba(13, 12, 12, 0.1);
  background-color: #FFFFFF;
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  padding: 60px 50px 80px;
  transition: all 0.5s;
}

.mask .box .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mask .box .top .title h3 {
  color: #2C6DB6;
  font-size: 26px;
  margin-bottom: 20px;
}

.mask .box .top .title p {
  color: #888;
  font-size: 12px;
}

.mask .box .top .close {
  width: 43px;
  height: 43px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  cursor: pointer;
}

.mask .box .top .close:hover {
  background-color: #2C6DB6;
}

.mask .box .top .close:hover span {
  color: #fff;
}

.mask .box .top .close span {
  color: #2C6DB6;
  font-size: 20px;
  transition: all 0.5s;
}

.mask .box .bottom {
  padding-top: 40px;
  display: flex;
}

.mask .box .bottom .left {
  flex: 1;
}

.mask .box .bottom .left h4 {
  margin-bottom: 10px;
  color: #000;
  font-weight: 400;
  font-size: 16px;
}

.mask .box .bottom .left h4:not(:first-child) {
  margin-top: 30px;
}

.mask .box .bottom .left p {
  color: #444;
  font-size: 14px;
  line-height: 28px;
}

.mask .box .bottom .right {
  width: 326px;
  margin-left: 100px;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
}

.mask .box .bottom .right .item {
  margin-bottom: 30px;
}

.mask .box .bottom .right .item p {
  color: #444;
  font-size: 14px;
}

.mask .box .bottom .right .item p:first-child {
  margin-bottom: 5px;
}

.mask .box .bottom .right a {
  color: #fff;
  background-color: #2C6DB6;
  font-size: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 38px;
}

.section2 .wrap .box .clip_wrap .main .list.PE{
  display: none;
}
.section3 .wrap .main.PE{
  display: none;
}

@media screen and (max-width: 1919px) {
  .section1 .wrap {
    padding-top: 5.2083333333vw;
  }

  .section1 .wrap .top {
    width: 83.3333333333vw;
  }

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

  .section1 .wrap .top .main {
    margin-top: 7.8125vw;
    margin-bottom: 8.3333333333vw;
  }

  .section1 .wrap .top .main .img {
    width: 14.4791666667vw;
  }

  .section1 .wrap .top .main .text {
    width: 46.875vw;
  }

  .section1 .wrap .top .main .text h4 {
    font-size: 1.5625vw;
    margin-bottom: 2.0833333333vw;
  }

  .section1 .wrap .top .main .text p {
    font-size: 0.9375vw;
    line-height: 2.0833333333vw;
  }

  .section1 .wrap .bottom .text {
    left: calc(-41.6666666667vw + 50vw);
    bottom: 5.2083333333vw;
    font-size: 1.875vw;
    line-height: 2.8125vw;
  }

  .section2 .wrap .box {
    height: 208.3333333333vw;
  }

  .section2 .wrap .box .clip_wrap .main .list {
    width: 17.1875vw;
    height: 23.28125vw;
  }

  .section2 .wrap .box .clip_wrap .main .list .item .img {
    height: 20.8333333333vw;
    border-radius: 0.5208333333vw;
  }

  .section2 .wrap .box .clip_wrap .main .list .item .text {
    margin-top: 1.0416666667vw;
    font-size: 0.8333333vw;
  }

  .section2 .wrap .box .clip_wrap .main .bg {
    font-size: 8.3333333333vw;
  }

  .section3 .wrap {
    padding-top: 4.1666666667vw;
    padding-bottom: 6.7708333333vw;
    width: 83.3333333333vw;
  }

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

  .section3 .wrap .main {
    margin-top: 2.0833333333vw;
  }

  .section3 .wrap .main .head {
    height: 3.6458333333vw;
    padding: 0px 1.0416666667vw;
  }

  .section3 .wrap .main .head .key {
    font-size: 0.8333333333vw;
  }

  .section3 .wrap .main .body .item {
    height: 3.6458333333vw;
    padding: 0px 1.0416666667vw;
  }

  .mask .box {
    width: 62.5vw;
    /* height: 32.2916666667vw; */
    height: auto;
    box-shadow: rgba(13, 12, 12, 0.1) 0.2604166667vw 0.46875vw 1.5625vw 0px;
    padding: 3.125vw 2.6041666667vw 4.1666666667vw;
  }

  .mask .box .top {
    padding-bottom: 1.0416666667vw;
  }

  .mask .box .top .title h3 {
    font-size: 1.3541666667vw;
    margin-bottom: 1.0416666667vw;
  }

  .mask .box .top .title p {
    font-size: 0.625vw;
  }

  .mask .box .top .close {
    width: 2.2395833333vw;
    height: 2.2395833333vw;
  }

  .mask .box .top .close span {
    font-size: 1.0416666667vw;
  }

  .mask .box .bottom {
    padding-top: 2.0833333333vw;
  }

  .mask .box .bottom .left h4 {
    margin-bottom: 0.5208333333vw;
    font-size: 0.8333333333vw;
  }

  .mask .box .bottom .left h4:not(:first-child) {
    margin-top: 1.5625vw;
  }

  .mask .box .bottom .left p {
    font-size: 0.7291666667vw;
    line-height: 1.4583333333vw;
  }

  .mask .box .bottom .right {
    width: 16.9791666667vw;
    margin-left: 5.2083333333vw;
    padding: 2.0833333333vw 1.5625vw;
  }

  .mask .box .bottom .right .item {
    margin-bottom: 1.5625vw;
  }

  .mask .box .bottom .right .item p {
    font-size: 0.7291666667vw;
  }

  .mask .box .bottom .right .item p:first-child {
    margin-bottom: 0.2604166667vw;
  }

  .mask .box .bottom .right a {
    font-size: 0.625vw;
    border-radius: 0.2604166667vw;
    height: 1.9791666667vw;
  }

  .section3 .wrap .main .body .item .value{
    font-size: 0.833333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .section1 .wrap{
    padding-top: 60px;
  }
  .section1 .wrap .top{
    width: 90%;
  }
  .section1 .wrap .top .title h3{
    font-size: 28px;
  }
  .section1 .wrap .top .main{
    flex-direction: column-reverse;
  }
  .section1 .wrap .top .main .text{
    width: 100%;
    text-align: left;
  }
  .section1 .wrap .top .main{
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .section1 .wrap .top .main .img{
    width: 100px;
  }
  .section1 .wrap .top .main .text h4{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section1 .wrap .top .main .text p{
    font-size: 14px;
    line-height: 2;
  }
  .section1 .wrap .top .main .text{
    margin-bottom: 20px;
  }
  .section1 .wrap .bottom .text{
    font-size: 20px;
    line-height: 1.6;
    bottom: 30px;
    left: 5vw;
  }
  .section1 .wrap .bottom .text{
    width: 90%;
  }
  .section3 .wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section3 .wrap{
    width: 90%;
  }
  .section3 .wrap .title h3{
    font-size: 28px;
  }
  .section3 .wrap .main{
    margin-top: 20px;
  }
  .section3 .wrap .main .head .key,
  .section3 .wrap .main .body .item .value{
    font-size: 14px;
  }
  .section3 .wrap .main .body .item,
  .section3 .wrap .main .head{
    height: 50px;
  }
  .section3 .wrap .main .head{
    padding: 0 20px;
  }
  .section2 .wrap .box{
    height: auto;
  }
  .section2 .wrap .box .clip_wrap .main,
  .section2 .wrap .box .clip_wrap{
    height: auto;
  }
  .section2 .wrap .box .clip_wrap .main .bg,
  .section2 .wrap .box .clip_wrap .main .list{
    position: static;
  }
  .section2 .wrap .box .clip_wrap .main .list{
    transform: none;
    width: auto;
    height: auto;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .section2 .wrap .box .clip_wrap .main .list .item {
    position: static;
    width: 100%;
  }
  .section2 .wrap .box .clip_wrap .main .bg{
    transform: none;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .section2 .wrap{
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
  }
  .section2 .wrap .box .clip_wrap .main{
    display: flex;
    flex-direction: column-reverse;
  }
  .section2 .wrap .box .clip_wrap .main .list .item .text{
    margin-top: 10px;
    font-size: 14px;
    opacity: 1;
  }

  .section2 .wrap .box .clip_wrap .main .list .item .img{
    height: auto;
  }
  .section3 .wrap .main .body .item{
    padding: 0 20px;
  }
  .section3 .wrap .main .head .key, .section3 .wrap .main .body .item .value {
    font-size: 12px;
  }
  .mask .box{
    width: 90%;
  }
  .mask .box .top .title h3{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .mask .box .top .title p{
    font-size: 14px;
  }
  .mask .box .top{
    padding-bottom: 20px;
  }
  .mask .box .top .close{
    width: 30px;
    height: 30px;
  }
  .mask .box .top .close span{
    font-size: 16px;
  }
  .mask .box .bottom .left h4{
    margin-bottom: 10px;
    font-size: 16px;
  }
  .mask .box .bottom .left p{
    font-size: 14px;
    line-height: 2;
  }
  .mask .box .bottom{
    flex-direction: column;
    overflow: auto;
    max-height: 60vh;
    padding-top: 20px;
  }
  .mask .box .bottom .right{
    margin-left: 0;
    margin-top: 20px;
    width: 300px;
    padding: 20px;
  }
  .mask .box .bottom .right .item p{
    font-size: 14px;
  }
  .mask .box .bottom .right .item p:first-child{
    margin-bottom: 5px;
  }
  .mask .box .bottom .right .item{
    margin-bottom: 10px;
  }
  .mask .box .bottom .right a{
    font-size: 14px;
    border-radius: 5px;
    height: 40px;
  }
  .mask .box{
    border-radius: 10px;
    padding: 30px;

  }
}

@media screen and (max-width:767px) {
  .section1 .wrap .top .title h3 {
    font-size: 24px;
  }
  .section1 .wrap .top .main .text h4{
    font-size: 20px;
  }
  .section1 .wrap {
    padding-top: 50px;
  }
  .section1 .wrap .top .main{
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .section1 .wrap .bottom .text {
    font-size: 18px;
  }
  .section1 .wrap .bottom{
    height: 300px;
  }
  .section1 .wrap .bottom .bg,
  .section1 .wrap .bottom .bg img{
    height: 100%;
  }
  .section2 .wrap{
    padding: 50px 0;
  }
  .section2 .wrap .box .clip_wrap .main .list{
    grid-template-columns: repeat(2, 1fr);
  }
  .section3 .wrap{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section3 .wrap .main .head .key:nth-child(1), .section3 .wrap .main .body .item .value:nth-child(1){
    width: 120px;
    flex: none;
    padding: 0 5px;
  }
  .section3 .wrap .main .body .item,
  .section3 .wrap .main .head {
    padding: 0 10px;
  }
  .section3 .wrap .main.PC{
    display: none;
  }
  .section3 .wrap .main.PE{
    display: block;
  }
  .section3 .wrap .title h3 {
    font-size: 24px;
  }
  .section3 .wrap .main.PE{
    border-top: 1px solid #ccc;
  }
  .section3 .wrap .main.PE .item{
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  .section3 .wrap .main.PE .item .top{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .section3 .wrap .main.PE .item .bottom{
    font-size: 12px;
    line-height: 2;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap:0 20px;
    width: 80%;
  }
  .section3 .wrap .main.PE .item .bottom p{
    white-space: nowrap;
  }
  .mask .box .bottom {
    overflow: auto;
    max-height: 50vh;
  }
  .mask .box .bottom .right{
    width: 100%;
  }
  .mask .box .top .title h3 {
    font-size: 18px;
  }
  .mask .box .top {
    padding-bottom: 10px;
  }
  .mask .box .bottom{
    padding-top: 10px;
  }
  .mask .box{
    padding: 20px;
  }
  .mask .box .bottom .right{
    padding: 10px;
  }
  .mask .box .bottom .right a {
    font-size: 12px;
  }
}

@media screen and (max-width:540px) {
  .section2 .wrap .box .clip_wrap .main .list.PC{
    display: none;
  }
  .section2 .wrap .box .clip_wrap .main .list.PE{
    display: block;
  }
  .section2 .wrap{
    width: 100%;
  }
  .section2 .wrap .box .clip_wrap .main .bg{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .section2 .wrap .box .clip_wrap .main .list .swiper{
    width: calc(270vw + 20px);
    margin-left: 50vw;
    transform: translateX(-50%);
  }
}