.index_banner {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.index_banner .swiper {
    width: 100%;
    height: 100%;
}

.index_banner .swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.index_banner .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 2s;
    transform: scale(1.1);
}

.index_banner .swiper .swiper-slide .slide_text {
    position: absolute;
    top: 240px;
    text-align: center;
    width: 100%;
    left: 0;
    opacity: 0;
}

.index_banner .swiper .swiper-slide .slide_text .title {
    overflow: hidden;
}

.index_banner .swiper .swiper-slide .slide_text .title p {
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 72px;
    color: #FFFFFF;
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(100%);
}

.index_banner .swiper .swiper-slide .slide_text .text {
    overflow: hidden;
    margin: 31px 0 26px;
}

.index_banner .swiper .swiper-slide .slide_text .text p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1;
    transform: translateY(100%);
}

.index_banner .swiper .swiper-slide .slide_text .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 4px;
    padding: 0 24px;
    width: fit-content;
    height: 46px;
    background: #7F1085;
    border-radius: 23px;
    border: 1px solid #7F1085;
    margin: 0 auto;
}

.index_banner .swiper .swiper-slide .slide_text .more a p {
    font-family: 'Poppins-SemiBold';
    font-weight: 600;
    font-size: 14px;
    color: #FFFFFF;
}

.index_banner .swiper .swiper-slide .slide_text .more a .iconfont {
    transform: rotate(180deg);
    font-size: 10px;
    color: #FFFFFF;
}

.index_banner .swiper .swiper-slide.swiper-slide-active img {
    transform: scale(1);
}

.index_banner .swiper .swiper-slide.swiper-slide-active .slide_text {
    opacity: 1;
}

.index_banner .swiper .swiper-slide.swiper-slide-active .slide_text .title p {
    transform: translateY(0);
    transition: 0.6s;
}

.index_banner .swiper .swiper-slide.swiper-slide-active .slide_text .text p {
    transform: translateY(0);
    transition: 0.6s;
    transition-delay: 0.2s;
}

.index_banner .swiper .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    gap: 0 9px;
    margin: 53px 0 0;
    bottom: 54px;
}

.index_banner .swiper .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0;
    width: 20px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    opacity: 1;
}

.index_banner .swiper .swiper-pagination .swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background: #7F1085;
    top: 0;
    left: 0;
    border-radius: 2px;
}

.index_banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
}

.index_banner .swiper .swiper-pagination .swiper-pagination-bullet.on:after {
    animation: afterAnimate 5s linear forwards;
}

@keyframes afterAnimate {
    100% {
        width: 100%;
    }
}

.sec1 {
    padding: 130px 0 0;
    position: relative;
    z-index: 3;
}

.sec1 .wrap .control {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #E6E6E6;
    gap: 115px;
    margin-bottom: 55px;
}

.sec1 .wrap .control .item {
    cursor: pointer;
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 24px;
    color: #1A1A1A;
    line-height: 58px;
    text-transform: capitalize;
    transition: 0.6s;
    position: relative;
}

.sec1 .wrap .control .item:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #7F1085;
    border-radius: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transition: 1s;
}

.sec1 .wrap .control .item:hover, .sec1 .wrap .control .item.on {
    color: #7F1085;
}

.sec1 .wrap .control .item:hover:after, .sec1 .wrap .control .item.on:after {
    transform: scaleX(1);
}

.sec1 .wrap .box .item {
    display: none;
    justify-content: space-between;
}

.sec1 .wrap .box .item .l {
    width: 430px;
    height: 683px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 75px 68px 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec1 .wrap .box .item .l img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 3s;
}

.sec1 .wrap .box .item .l .l_top {
    position: relative;
    z-index: 3;
}

.sec1 .wrap .box .item .l .l_top .name {
    font-family: 'Poppins-SemiBold';
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.sec1 .wrap .box .item .l .l_top .text {
    font-family: 'Poppins-Light';
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
}

.sec1 .wrap .box .item .l .more {
    display: flex;
    align-items: center;
    gap: 0 7px;
    width: fit-content;
    position: relative;
    z-index: 3;
}

.sec1 .wrap .box .item .l .more:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0px;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: left;
    transition: 1s;
}

.sec1 .wrap .box .item .l .more p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.sec1 .wrap .box .item .l .more .iconfont {
    font-size: 8px;
    color: #FFFFFF;
    transform: rotate(180deg);
}

.sec1 .wrap .box .item .l .more:hover:after {
    transform: scaleX(1);
}

.sec1 .wrap .box .item .l:hover img {
    transform: scale(1.1);
}

.sec1 .wrap .box .item .r_list {
    display: flex;
    flex-wrap: wrap;
    width: 935px;
    gap: 15px;
}

.sec1 .wrap .box .item .r_list .pro_item {
    display: block;
    width: 460px;
    height: 335px;
    background: #F7F8FC;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.sec1 .wrap .box .item .r_list .pro_item .pro_item_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    transition: opacity 0.6s;
}

.sec1 .wrap .box .item .r_list .pro_item p {
    width: 100%;
    padding: 0 44px;
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 16px;
    color: #1A1A1A;
    position: absolute;
    left: 0;
    line-height: 1;
    bottom: 30px;
    z-index: 3;
}

.sec1 .wrap .box .item .r_list .pro_item .img {
    width: 300px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
}

.sec1 .wrap .box .item .r_list .pro_item:hover .pro_item_bg {
    opacity: 1;
}

.sec1 .wrap .box .item.on {
    display: flex;
}

.sec2 {
    padding: 310px 0 146px;
}

.sec2 .wrap .text_box {
    width: 690px;
    margin: 0 auto 240px;
    position: relative;
}

.sec2 .wrap .text_box .sq {
    width: 1235px;
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
}

.sec2 .wrap .text_box .sq img {
    display: block;
    width: 100%;
}

.sec2 .wrap .text_box .sq .sq_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, #fff 100%, rgba(255, 255, 255, 0) 100%);
}

.sec2 .wrap .text_box .title {
    margin: 0 auto 50px;
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 64px;
    color: #1A1A1A;
    line-height: 80px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.sec2 .wrap .text_box .text {
    font-family: 'Poppins-Light';
    font-weight: 300;
    font-size: 18px;
    color: #888888;
    line-height: 30px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.sec2 .wrap .text_box .more {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.sec2 .wrap .text_box .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 7px;
    height: 46px;
    border-radius: 6px;
    border: 1px solid #7F1085;
    padding: 0 22px;
    transition: 0.6s;
}

.sec2 .wrap .text_box .more a p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #7F1085;
    text-transform: uppercase;
    transition: 0.6s;
}

.sec2 .wrap .text_box .more a .iconfont {
    font-size: 8px;
    color: #7F1085;
    transform: rotate(180deg);
    transition: 0.6s;
}

.sec2 .wrap .text_box .more a:hover {
    background: #7F1085;
}

.sec2 .wrap .text_box .more a:hover p, .sec2 .wrap .text_box .more a:hover .iconfont {
    color: #FFFFFF;
}

.sec2 .wrap .numList {
    display: flex;
    justify-content: space-between;
}

.sec2 .wrap .numList .num_item .num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
}

.sec2 .wrap .numList .num_item .num p {
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 72px;
    color: #333333;
    line-height: 1;
}

.sec2 .wrap .numList .num_item .num span {
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 32px;
    color: #333333;
}

.sec2 .wrap .numList .num_item .des {
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    text-align: center;
}

.sec2 .wrap .numList .num_item:nth-child(2) {
    margin-left: 120px;
}

.sec2 .wrap .video_box {
    margin: 126px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sec2 .wrap .video_box > img {
    display: block;
    width: 100%;
}

.sec2 .wrap .video_box .play {
    width: 136px;
    height: 136px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    cursor: pointer;
}

.sec2 .wrap .video_box .play img {
    display: block;
    width: 116px;
}

.sec2 .wrap .video_box .play .iconfont {
    position: absolute;
    font-size: 18px;
    color: #7F1085;
}

.sec3 {
    background: #F8F9FB;
    padding: 99px 0 0;
}

.sec3 .wrap .sec3_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 75px;
}

.sec3 .wrap .sec3_top .title {
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 50px;
    color: #1A1A1A;
    text-transform: uppercase;
}

.sec3 .wrap .sec3_top .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 7px;
    height: 46px;
    border-radius: 6px;
    padding: 0 22px;
    transition: 0.6s;
    background: #7F1085;
}

.sec3 .wrap .sec3_top .more a p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    transition: 0.6s;
}

.sec3 .wrap .sec3_top .more a .iconfont {
    font-size: 8px;
    color: #FFFFFF;
    transform: rotate(180deg);
    transition: 0.6s;
}

.sec3 .wrap .box {
    padding: 72px 62px 67px;
    background: #FFFFFF;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
}

.sec3 .wrap .box .l {
    display: flex;
    gap: 0 34px;
}

.sec3 .wrap .box .l .item {
    width: 450px;
}

.sec3 .wrap .box .l .item .item_box {
    width: 100%;
    height: 501px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    overflow: hidden;
    position: relative;
    transition: 0.6s;
}

.sec3 .wrap .box .l .item .item_box .img {
    width: 100%;
    height: 265px;
    overflow: hidden;
    border-radius: 10px;
}

.sec3 .wrap .box .l .item .item_box .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec3 .wrap .box .l .item .item_box .item_bottom {
    position: absolute;
    top: 265px;
    height: 100%;
    background: #FFFFFF;
    z-index: 2;
    padding: 53px 52px 0;
    transition: 0.8s;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_bottom_bg {
    position: absolute;
    width: 274px;
    right: 0;
    bottom: -5px;
    opacity: 0;
    transition: 0.6s;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_bottom_bg img {
    display: block;
    width: 100%;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .top_date {
    position: absolute;
    opacity: 0;
    z-index: 3;
    top: 94px;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .label {
    font-weight: 400;
    font-size: 16px;
    color: #7F1085;
    line-height: 1;
    margin-bottom: 15px;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_title {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
    height: 56px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 40px;
    transition: 0.6s;
    position: relative;
    z-index: 3;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_text {
    font-weight: 400;
    font-size: 15px;
    color: #888888;
    line-height: 26px;
    opacity: 0;
    transition: 0.6s;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .date {
    display: flex;
    align-items: center;
    gap: 0 10px;
    transition: 0.4s;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .date p {
    font-weight: 400;
    font-size: 15px;
    color: #888888;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_more {
    width: fit-content;
    height: 45px;
    background: #7F1085;
    border-radius: 6px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 53px;
    z-index: 3;
}

.sec3 .wrap .box .l .item .item_box .item_bottom .item_more p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.sec3 .wrap .box .l .item .item_box:hover {
    border: 1px solid #7F1085;
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom {
    transform: translateY(-265px);
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom .item_bottom_bg {
    opacity: 1;
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom .top_date {
    opacity: 1;
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom .item_title {
    transform: translateY(39px);
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom .bottom_date {
    opacity: 0;
}

.sec3 .wrap .box .l .item .item_box:hover .item_bottom .item_text {
    opacity: 1;
    transform: translateY(20px);
}

.sec3 .wrap .box .r {
    width: 485px;
}

.sec3 .wrap .box .r .item {
    display: block;
    position: relative;
}

.sec3 .wrap .box .r .item .item_box {
    height: 165px;
    padding: 45px 0 0;
}

.sec3 .wrap .box .r .item .item_box .label {
    font-weight: 400;
    font-size: 16px;
    color: #7F1085;
    line-height: 1;
    margin-bottom: 15px;
}

.sec3 .wrap .box .r .item .item_box .item_title {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 32px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.6s;
}

.sec3 .wrap .box .r .item:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.sec3 .wrap .box .r .item:not(:last-child):after {
    content: "";
    width: 100%;
    height: 1px;
    background: #7F1085;
    position: absolute;
    left: 0;
    bottom: -1px;
    transform: scaleX(0);
    transform-origin: left;
    transition: 1s;
}

.sec3 .wrap .box .r .item:hover .item_box .item_title {
    color: #7F1085;
}

.sec3 .wrap .box .r .item:hover:after {
    transform: scaleX(1);
}

.sec4 {
    background: #F8F9FB;
    padding: 360px 0 100px;
}

.sec4 .box {
    width: 560px;
    text-align: center;
    margin: 0 auto 225px;
    position: relative;
}

.sec4 .box .sq {
    width: 100%;
    position: absolute;
    top: -100px;
}

.sec4 .box .sq img {
    display: block;
    width: 100%;
    filter: brightness(0) invert(1);
}

.sec4 .box .title {
    font-family: 'Neue Kaine';
    font-weight: bold;
    font-size: 50px;
    color: #1A1A1A;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.sec4 .box .text {
    font-weight: 400;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 24px;
    margin: 30px 0 81px;
    position: relative;
    z-index: 3;
}

.sec4 .box .more {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.sec4 .box .more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0 17px;
    width: fit-content;
    height: 45px;
    background: #7F1085;
    border-radius: 6px;
}

.sec4 .box .more a p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.sec4 .paos {
    width: fit-content;
    position: relative;
    margin: 0 auto;
}

.sec4 .paos .photo {
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: 1s;
    transition-delay: 0.1s;
}

.sec4 .paos .photo .hover_button {
    width: 100%;
    height: 100%;
}

.sec4 .paos .photo .hover_button .scale {
    width: 100%;
    height: 100%;
    animation: scale_ 5s infinite linear;
}

.sec4 .paos .photo .hover_button .scale img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.sec4 .paos .photo {
    width: 135px;
    height: 135px;
}

.sec4 .paos .pao {
    position: absolute;
    width: 64px;
    height: 64px;
    opacity: 0;
    transform: scale(0);
    transition: 1s;
}

.sec4 .paos .pao .hover_button {
    width: 100%;
    height: 100%;
}

.sec4 .paos .pao .hover_button .scale {
    width: 100%;
    height: 100%;
    animation: scale_ 5s infinite linear;
    background: #7F1085;
    border-radius: 50%;
}

.sec4 .paos .r .photo {
    position: absolute;
}

.sec4 .paos .r .photo2 {
    width: 149px;
    height: 149px;
    top: -230px;
    right: -490px;
    transition-delay: 0.6s;
}

.sec4 .paos .r .photo2 .scale {
    animation-delay: 0.5s;
}

.sec4 .paos .r .photo3 {
    width: 148px;
    height: 148px;
    top: -603px;
    right: -525px;
    transition-delay: 1.1s;
}

.sec4 .paos .r .photo3 .scale {
    animation-delay: 0.9s;
}

.sec4 .paos .r .pao1 {
    top: 17px;
    right: -119px;
    transition-delay: 0.2s;
}

.sec4 .paos .r .pao1 .scale {
    animation-delay: 0.1s;
}

.sec4 .paos .r .pao2 {
    width: 37px;
    height: 37px;
    top: 9px;
    right: -223px;
    transition-delay: 0.3s;
}

.sec4 .paos .r .pao2 .scale {
    animation-delay: 0.2s;
}

.sec4 .paos .r .pao3 {
    width: 37px;
    height: 37px;
    top: -12px;
    right: -318px;
    transition-delay: 0.4s;
}

.sec4 .paos .r .pao3 .scale {
    opacity: 0.3;
    animation-delay: 0.3s;
}

.sec4 .paos .r .pao4 {
    width: 64px;
    height: 64px;
    top: -90px;
    right: -328px;
    transition-delay: 0.5s;
}

.sec4 .paos .r .pao4 .scale {
    animation-delay: 0.4s;
}

.sec4 .paos .r .pao5 {
    width: 68px;
    height: 68px;
    top: -315px;
    right: -399px;
    transition-delay: 0.6s;
}

.sec4 .paos .r .pao5 .scale {
    animation-delay: 0.6s;
}

.sec4 .paos .r .pao6 {
    width: 89px;
    height: 89px;
    top: -355px;
    right: -521px;
    transition-delay: 0.7s;
}

.sec4 .paos .r .pao6 .scale {
    opacity: 0.4;
    animation-delay: 0.7s;
}

.sec4 .paos .r .pao7 {
    width: 34px;
    height: 34px;
    top: -397px;
    right: -425px;
    transition-delay: 0.8s;
}

.sec4 .paos .r .pao7 .scale {
    animation-delay: 0.8s;
}

.sec4 .paos .r .pao8 {
    width: 34px;
    height: 34px;
    top: -413px;
    right: -529px;
    transition-delay: 0.9s;
}

.sec4 .paos .r .pao8 .scale {
    animation-delay: 0.9s;
}

.sec4 .paos .r .pao9 {
    width: 34px;
    height: 34px;
    top: -439px;
    right: -345px;
    transition-delay: 1s;
}

.sec4 .paos .r .pao9 .scale {
    opacity: 0.2;
    animation-delay: 1s;
}

.sec4 .paos .r .pao10 {
    width: 34px;
    height: 34px;
    top: -554px;
    right: -325px;
    transition-delay: 1.2s;
}

.sec4 .paos .r .pao10 .scale {
    opacity: 0.2;
    animation-delay: 1.1s;
}

.sec4 .paos .r .pao11 {
    width: 34px;
    height: 34px;
    top: -628px;
    right: -412px;
    transition-delay: 1.3s;
}

.sec4 .paos .r .pao11 .scale {
    opacity: 0.2;
    animation-delay: 1.2s;
}

.sec4 .paos .l .photo {
    position: absolute;
}

.sec4 .paos .l .photo2 {
    width: 149px;
    height: 149px;
    top: -242px;
    left: -430px;
    transition-delay: 0.6s;
}

.sec4 .paos .l .photo2 .scale {
    animation-delay: 0.5s;
}

.sec4 .paos .l .photo3 {
    width: 148px;
    height: 148px;
    top: -591px;
    left: -545px;
    transition-delay: 1.1s;
}

.sec4 .paos .l .photo3 .scale {
    animation-delay: 0.9s;
}

.sec4 .paos .l .pao1 {
    top: 17px;
    left: -156px;
    transition-delay: 0.2s;
}

.sec4 .paos .l .pao1 .scale {
    animation-delay: 0.1s;
}

.sec4 .paos .l .pao2 {
    width: 37px;
    height: 37px;
    top: -18px;
    left: -246px;
    transition-delay: 0.3s;
}

.sec4 .paos .l .pao2 .scale {
    opacity: 0.4;
    animation-delay: 0.2s;
}

.sec4 .paos .l .pao3 {
    top: -76px;
    left: -372px;
    transition-delay: 0.4s;
}

.sec4 .paos .l .pao3 .scale {
    animation-delay: 0.3s;
}

.sec4 .paos .l .pao4 {
    width: 37px;
    height: 37px;
    top: -80px;
    left: -256px;
    transition-delay: 0.5s;
}

.sec4 .paos .l .pao4 .scale {
    opacity: 0.4;
    animation-delay: 0.4s;
}

.sec4 .paos .l .pao5 {
    width: 84px;
    height: 84px;
    top: -326px;
    left: -486px;
    transition-delay: 0.7s;
}

.sec4 .paos .l .pao5 .scale {
    animation-delay: 0.6s;
}

.sec4 .paos .l .pao6 {
    width: 65px;
    height: 65px;
    top: -334px;
    left: -344px;
    transition-delay: 0.8s;
}

.sec4 .paos .l .pao6 .scale {
    animation-delay: 0.7s;
}

.sec4 .paos .l .pao7 {
    width: 37px;
    height: 37px;
    top: -427px;
    left: -471px;
    transition-delay: 0.9s;
}

.sec4 .paos .l .pao7 .scale {
    opacity: 0.2;
    animation-delay: 0.8s;
}

.sec4 .paos .l .pao8 {
    width: 37px;
    height: 37px;
    top: -460px;
    left: -420px;
    transition-delay: 1s;
}

.sec4 .paos .l .pao8 .scale {
    opacity: 0.4;
    animation-delay: 0.9s;
}

.sec4 .paos .l .pao9 {
    width: 37px;
    height: 37px;
    top: -464px;
    left: -560px;
    transition-delay: 1.1s;
}

.sec4 .paos .l .pao9 .scale {
    animation-delay: 1s;
}

.sec4 .paos .l .pao10 {
    width: 37px;
    height: 37px;
    top: -576px;
    left: -374px;
    transition-delay: 1.2s;
}

.sec4 .paos .l .pao10 .scale {
    opacity: 0.2;
    animation-delay: 1.2s;
}

.sec4 .paos .l .pao11 {
    width: 37px;
    height: 37px;
    top: -639px;
    left: -407px;
    transition-delay: 1.3s;
}

.sec4 .paos .l .pao11 .scale {
    animation-delay: 1.3s;
}

.sec4 .paos.active .photo {
    opacity: 1;
    transform: scale(1);
}

.sec4 .paos.active .pao {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.footer {
    margin: 0;
}

@keyframes scale_ {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.82);
    }
    100% {
        transform: scale(1);
    }
}

.header {
    transform: translateY(-100%);
}

.header.show {
    transform: translateY(0%);
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999999;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.8s ease-in;
}

.loading .loading_after {
    --scaleY: 0;
    width: 100%;
    height: 9.375vw;
    background: url(../images/sq.svg) bottom/auto 9.375vw no-repeat;
    transform: scaleY(0);
    transform-origin: top;
    position: absolute;
    bottom: -9.375vw;
    transition: 1.2s;
}

.loading .loading_logo {
    width: 400px;
}

.loading .loading_logo svg {
    width: 100%;
    transition: 0.6s;
}

.loading .loading_logo svg g {
    transform-origin: center;
    transform: scale(0.95);
}

.loading .loading_logo img {
    width: 87px;
    display: block;
    margin: 10px auto 0;
    transition: 0.6s;
    opacity: 0;
    transform: translateY(-120px);
    transition-delay: 0.2s;
}

.loading .loading_logo.on svg {
    transform: scale(0.15);
}

.loading .loading_logo.on img {
    opacity: 1;
    transform: translateY(-140px);
}

.loading .logo_box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
}

.loading .logo_box .sq {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
}

.loading .logo_box .sq .sq1 {
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, #703CAF, rgba(106, 49, 175, 0));
}

.loading .logo_box .logo_box1 {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mix-blend-mode: screen;
}

.loading .logo_box .logo_box1 .logo_line {
    width: 400px;
    z-index: 1;
    mix-blend-mode: difference;
}

.loading .logo_box .logo_box1 .logo_line img {
    width: 100%;
    display: block;
}

.loading .logo_quan {
    width: 400px;
    position: absolute;
    z-index: 3;
}

.loading .logo_box_ {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background: #FFFFFF;
}

.loading .logo_box_ .sq {
    width: 100%;
    height: calc(100vh + 350px);
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(calc(100vh + 350px));
}

.loading .logo_box_ .sq .sq1 {
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, #703CAF, rgba(106, 49, 175, 0));
}

.loading .logo_box_ .sq .sq2 {
    width: 100%;
    height: 350px;
    background: #703CAF;
}

.loading .logo_box_ .logo_box1 {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mix-blend-mode: screen;
}

.loading .logo_box_ .logo_box1 .logo_line {
    width: 400px;
    z-index: 1;
    mix-blend-mode: difference;
}

.loading .logo_box_ .logo_box1 .logo_line img {
    width: 100%;
    display: block;
}

.loading.hide {
    transform: translateY(calc(-100vh - 9.375vw));
}

.loading.hide .loading_after {
    transform: scaleY(1);
}


@media screen and (max-width: 1919px) {
    .index_banner .swiper .swiper-slide .slide_text {
        top: 12.5vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .title p {
        font-size: 3.75vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .text {
        margin: 1.6145833333vw 0px 1.3541666667vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .text p {
        font-size: 1.0416666667vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a {
        gap: 0px 0.2083333333vw;
        padding: 0px 1.25vw;
        height: 2.3958333333vw;
        border-radius: 1.1979166667vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a p {
        font-size: 0.7291666667vw;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a .iconfont {
        font-size: 0.5208333333vw;
    }

    .index_banner .swiper .swiper-pagination {
        gap: 0px 0.46875vw;
        margin: 2.7604166667vw 0px 0px;
        bottom: 2.8125vw;
    }

    .index_banner .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 1.0416666667vw;
        height: 0.15625vw;
        border-radius: 0.1041666667vw;
    }

    .index_banner .swiper .swiper-pagination .swiper-pagination-bullet::after {
        border-radius: 0.1041666667vw;
    }

    .index_banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 3.125vw;
    }

    .sec1 {
        padding: 6.7708333333vw 0px 0px;
    }

    .sec1 .wrap .control {
        gap: 5.9895833333vw;
        margin-bottom: 2.8645833333vw;
    }

    .sec1 .wrap .control .item {
        font-size: 1.25vw;
        line-height: 3.0208333333vw;
    }

    .sec1 .wrap .control .item::after {
        height: 0.1041666667vw;
    }

    .sec1 .wrap .box .item .l {
        width: 22.3958333333vw;
        height: 35.5729166667vw;
        border-radius: 0.625vw;
        padding: 3.90625vw 3.5416666667vw 4.6875vw;
    }

    .sec1 .wrap .box .item .l .l_top .name {
        font-size: 1.6666666667vw;
        line-height: 1.875vw;
        margin-bottom: 2.0833333333vw;
    }

    .sec1 .wrap .box .item .l .l_top .text {
        font-size: 0.8333333333vw;
        line-height: 1.4583333333vw;
    }

    .sec1 .wrap .box .item .l .more {
        gap: 0px 0.3645833333vw;
    }

    .sec1 .wrap .box .item .l .more p {
        font-size: 0.7291666667vw;
    }

    .sec1 .wrap .box .item .l .more .iconfont {
        font-size: 0.4166666667vw;
    }

    .sec1 .wrap .box .item .r_list {
        width: 48.6979166667vw;
        gap: 0.78125vw;
    }

    .sec1 .wrap .box .item .r_list .pro_item {
        width: 23.9583333333vw;
        height: 17.4479166667vw;
        border-radius: 0.625vw;
    }

    .sec1 .wrap .box .item .r_list .pro_item p {
        padding: 0px 2.2916666667vw;
        font-size: 0.8333333333vw;
        bottom: 1.5625vw;
    }

    .sec1 .wrap .box .item .r_list .pro_item .img {
        width: 15.625vw;
        height: 11.4583333333vw;
        margin: 2.0833333333vw auto 0px;
    }

    .sec2 {
        padding: 16.1458333333vw 0px 7.6041666667vw;
    }

    .sec2 .wrap .text_box {
        width: 35.9375vw;
        margin: 0px auto 12.5vw;
    }

    .sec2 .wrap .text_box .sq {
        width: 64.3229166667vw;
        top: -20.8333333333vw;
    }

    .sec2 .wrap .text_box .title {
        margin: 0px auto 2.6041666667vw;
        font-size: 3.3333333333vw;
        line-height: 4.1666666667vw;
    }

    .sec2 .wrap .text_box .text {
        font-size: 0.9375vw;
        line-height: 1.5625vw;
        margin: 0px auto 3.125vw;
    }

    .sec2 .wrap .text_box .more a {
        gap: 0px 0.3645833333vw;
        height: 2.3958333333vw;
        border-radius: 0.3125vw;
        padding: 0px 1.1458333333vw;
    }

    .sec2 .wrap .text_box .more a p {
        font-size: 0.7291666667vw;
    }

    .sec2 .wrap .text_box .more a .iconfont {
        font-size: 0.4166666667vw;
    }

    .sec2 .wrap .numList .num_item .num {
        margin-bottom: 0.4166666667vw;
    }

    .sec2 .wrap .numList .num_item .num p {
        font-size: 3.75vw;
    }

    .sec2 .wrap .numList .num_item .num span {
        font-size: 1.6666666667vw;
    }

    .sec2 .wrap .numList .num_item .des {
        font-size: 0.8333333333vw;
    }

    .sec2 .wrap .numList .num_item:nth-child(2) {
        margin-left: 6.25vw;
    }

    .sec2 .wrap .video_box {
        margin: 6.5625vw 0px 0px;
    }

    .sec2 .wrap .video_box .play {
        width: 7.0833333333vw;
        height: 7.0833333333vw;
        backdrop-filter: blur(1.0416666667vw);
    }

    .sec2 .wrap .video_box .play img {
        width: 6.0416666667vw;
    }

    .sec2 .wrap .video_box .play .iconfont {
        font-size: 0.9375vw;
    }

    .sec3 {
        padding: 5.15625vw 0px 0px;
    }

    .sec3 .wrap .sec3_top {
        margin-bottom: 3.90625vw;
    }

    .sec3 .wrap .sec3_top .title {
        font-size: 2.6041666667vw;
    }

    .sec3 .wrap .sec3_top .more a {
        gap: 0px 0.3645833333vw;
        height: 2.3958333333vw;
        border-radius: 0.3125vw;
        padding: 0px 1.1458333333vw;
    }

    .sec3 .wrap .sec3_top .more a p {
        font-size: 0.7291666667vw;
    }

    .sec3 .wrap .sec3_top .more a .iconfont {
        font-size: 0.4166666667vw;
    }

    .sec3 .wrap .box {
        padding: 3.75vw 3.2291666667vw 3.4895833333vw;
        border-radius: 1.25vw;
    }

    .sec3 .wrap .box .l {
        gap: 0px 1.7708333333vw;
    }

    .sec3 .wrap .box .l .item {
        width: 23.4375vw;
    }

    .sec3 .wrap .box .l .item .item_box {
        height: 26.09375vw;
        border-radius: 0.5208333333vw;
    }

    .sec3 .wrap .box .l .item .item_box .img {
        height: 13.8020833333vw;
        border-radius: 0.5208333333vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom {
        top: 13.8020833333vw;
        padding: 2.7604166667vw 2.7083333333vw 0px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_bottom_bg {
        width: 14.2708333333vw;
        bottom: -0.2604166667vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .top_date {
        top: 4.8958333333vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .label {
        font-size: 0.8333333333vw;
        margin-bottom: 0.78125vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_title {
        font-size: 0.9375vw;
        line-height: 1.4583333333vw;
        height: 2.9166666667vw;
        margin-bottom: 2.0833333333vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_text {
        font-size: 0.78125vw;
        line-height: 1.3541666667vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date {
        gap: 0px 0.5208333333vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date p {
        font-size: 0.78125vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_more {
        height: 2.34375vw;
        border-radius: 0.3125vw;
        padding: 0px 0.8333333333vw;
        bottom: 2.7604166667vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_more p {
        font-size: 0.7291666667vw;
    }

    .sec3 .wrap .box .l .item .item_box:hover .item_bottom {
        transform: translateY(-13.8020833333vw);
    }

    .sec3 .wrap .box .l .item .item_box:hover .item_bottom .item_title {
        transform: translateY(2.03125vw);
    }

    .sec3 .wrap .box .l .item .item_box:hover .item_bottom .item_text {
        transform: translateY(1.0416666667vw);
    }

    .sec3 .wrap .box .r {
        width: 25.2604166667vw;
    }

    .sec3 .wrap .box .r .item .item_box {
        height: 8.59375vw;
        padding: 2.34375vw 0px 0px;
    }

    .sec3 .wrap .box .r .item .item_box .label {
        font-size: 0.8333333333vw;
        margin-bottom: 0.78125vw;
    }

    .sec3 .wrap .box .r .item .item_box .item_title {
        font-size: 0.9375vw;
        line-height: 1.6666666667vw;
    }

    .sec4 {
        padding: 18.75vw 0px 5.2083333333vw;
    }

    .sec4 .box {
        width: 29.1666666667vw;
        margin: 0px auto 11.71875vw;
    }

    .sec4 .box .sq {
        top: -5.2083333333vw;
    }

    .sec4 .box .title {
        font-size: 2.6041666667vw;
    }

    .sec4 .box .text {
        font-size: 0.9375vw;
        line-height: 1.25vw;
        margin: 1.5625vw 0px 4.21875vw;
    }

    .sec4 .box .more a {
        padding: 0px 0.8854166667vw;
        height: 2.34375vw;
        border-radius: 0.3125vw;
    }

    .sec4 .box .more a p {
        font-size: 0.7291666667vw;
    }

    .sec4 .paos .photo {
        width: 7.03125vw;
        height: 7.03125vw;
    }

    .sec4 .paos .pao {
        width: 3.3333333333vw;
        height: 3.3333333333vw;
    }

    .sec4 .paos .r .photo2 {
        width: 7.7604166667vw;
        height: 7.7604166667vw;
        top: -11.9791666667vw;
        right: -25.5208333333vw;
    }

    .sec4 .paos .r .photo3 {
        width: 7.7083333333vw;
        height: 7.7083333333vw;
        top: -31.40625vw;
        right: -27.34375vw;
    }

    .sec4 .paos .r .pao1 {
        top: 0.8854166667vw;
        right: -6.1979166667vw;
    }

    .sec4 .paos .r .pao2 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: 0.46875vw;
        right: -11.6145833333vw;
    }

    .sec4 .paos .r .pao3 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -0.625vw;
        right: -16.5625vw;
    }

    .sec4 .paos .r .pao4 {
        width: 3.3333333333vw;
        height: 3.3333333333vw;
        top: -4.6875vw;
        right: -17.0833333333vw;
    }

    .sec4 .paos .r .pao5 {
        width: 3.5416666667vw;
        height: 3.5416666667vw;
        top: -16.40625vw;
        right: -20.78125vw;
    }

    .sec4 .paos .r .pao6 {
        width: 4.6354166667vw;
        height: 4.6354166667vw;
        top: -18.4895833333vw;
        right: -27.1354166667vw;
    }

    .sec4 .paos .r .pao7 {
        width: 1.7708333333vw;
        height: 1.7708333333vw;
        top: -20.6770833333vw;
        right: -22.1354166667vw;
    }

    .sec4 .paos .r .pao8 {
        width: 1.7708333333vw;
        height: 1.7708333333vw;
        top: -21.5104166667vw;
        right: -27.5520833333vw;
    }

    .sec4 .paos .r .pao9 {
        width: 1.7708333333vw;
        height: 1.7708333333vw;
        top: -22.8645833333vw;
        right: -17.96875vw;
    }

    .sec4 .paos .r .pao10 {
        width: 1.7708333333vw;
        height: 1.7708333333vw;
        top: -28.8541666667vw;
        right: -16.9270833333vw;
    }

    .sec4 .paos .r .pao11 {
        width: 1.7708333333vw;
        height: 1.7708333333vw;
        top: -32.7083333333vw;
        right: -21.4583333333vw;
    }

    .sec4 .paos .l .photo2 {
        width: 7.7604166667vw;
        height: 7.7604166667vw;
        top: -12.6041666667vw;
        left: -22.3958333333vw;
    }

    .sec4 .paos .l .photo3 {
        width: 7.7083333333vw;
        height: 7.7083333333vw;
        top: -30.78125vw;
        left: -28.3854166667vw;
    }

    .sec4 .paos .l .pao1 {
        top: 0.8854166667vw;
        left: -8.125vw;
    }

    .sec4 .paos .l .pao2 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -0.9375vw;
        left: -12.8125vw;
    }

    .sec4 .paos .l .pao3 {
        top: -3.9583333333vw;
        left: -19.375vw;
    }

    .sec4 .paos .l .pao4 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -4.1666666667vw;
        left: -13.3333333333vw;
    }

    .sec4 .paos .l .pao5 {
        width: 4.375vw;
        height: 4.375vw;
        top: -16.9791666667vw;
        left: -25.3125vw;
    }

    .sec4 .paos .l .pao6 {
        width: 3.3854166667vw;
        height: 3.3854166667vw;
        top: -17.3958333333vw;
        left: -17.9166666667vw;
    }

    .sec4 .paos .l .pao7 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -22.2395833333vw;
        left: -24.53125vw;
    }

    .sec4 .paos .l .pao8 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -23.9583333333vw;
        left: -21.875vw;
    }

    .sec4 .paos .l .pao9 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -24.1666666667vw;
        left: -29.1666666667vw;
    }

    .sec4 .paos .l .pao10 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -30vw;
        left: -19.4791666667vw;
    }

    .sec4 .paos .l .pao11 {
        width: 1.9270833333vw;
        height: 1.9270833333vw;
        top: -33.28125vw;
        left: -21.1979166667vw;
    }

    .loading .loading_logo {
        width: 20.8333333333vw;
    }

    .loading .loading_logo img {
        width: 4.53125vw;
        margin: 0.5208333333vw auto 0px;
        transform: translateY(-6.25vw);
    }

    .loading .loading_logo.on img {
        transform: translateY(-7.2916666667vw);
    }

    .loading .logo_box .logo_box1 .logo_line {
        width: 20.8333333333vw;
    }

    .loading .logo_quan {
        width: 20.8333333333vw;
    }

    .loading .logo_box_ .sq {
        height: calc(18.2291666667vw + 100vh);
        transform: translateY(calc(18.2291666667vw + 100vh));
    }

    .loading .logo_box_ .sq .sq2 {
        height: 18.2291666667vw;
    }

    .loading .logo_box_ .logo_box1 .logo_line {
        width: 20.8333333333vw;
    }
}

@media screen and (max-width: 768px) {
    .loading .loading_logo {
        width: 60vw;
    }

    .loading .loading_logo.on svg {
        transform: scale(0.4);
    }

    .loading .loading_logo img {
        width: 80px;
    }

    .loading .loading_logo.on img {
        transform: translateY(-49px);
    }

    .index_banner .swiper .swiper-slide .slide_text {
        top: 30%;
    }

    .index_banner .swiper .swiper-slide .slide_text .title p {
        font-size: 22px;
    }

    .index_banner .swiper .swiper-slide .slide_text .text {
        padding: 0 5vw;
        margin: 10px 0 25px;
    }

    .index_banner .swiper .swiper-slide .slide_text .text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a {
        height: 32px;
        border-radius: 16px;
        padding: 0 15px;
        gap: 6px;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a p {
        font-size: 14px;
    }

    .index_banner .swiper .swiper-slide .slide_text .more a .iconfont {
        font-size: 9px;
    }

    .sec1 {
        padding: 50px 0 0;
    }

    .index_banner .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 3px;
        border-radius: 3px;
    }

    .index_banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 60px;
    }

    .index_banner .swiper .swiper-pagination {
        gap: 6px;
        bottom: 30px;
    }

    .sec1 .wrap .control {
        margin-bottom: 25px;
        gap: 10px;
        justify-content: space-between;
    }

    .sec1 .wrap .control .item {
        font-size: 13px;
        line-height: 30px;
    }

    .sec1 .wrap .box .item .l {
        display: none;
    }

    .sec1 .wrap .box .item .r_list {
        width: 100%;
        gap: 15px;
        justify-content: space-between;
    }

    .sec1 .wrap .box .item .r_list .pro_item {
        width: calc(45vw - 8px);
        height: 35vw;
        border-radius: 6px;
    }

    .sec1 .wrap .box .item .r_list .pro_item .img {
        width: 80%;
        height: 80%;
    }

    .sec1 .wrap .box .item .r_list .pro_item p {
        font-size: 10px;
        padding: 0 10px;
    }

    .sec2 {
        padding: 60px 0 40px;
    }

    .sec2 .wrap .text_box .title {
        font-size: 20px;
        width: 100%;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .sec2 .wrap .text_box .text {
        font-size: 14px;
        width: 100%;
        margin: 0 auto 25px;
        line-height: 1.5;
    }

    .sec2 .wrap .text_box {
        width: 100%;
    }

    .sec2 .wrap .text_box .more {

    }

    .sec2 .wrap .text_box .more a {
        height: 32px;
        padding: 0 15px;
        gap: 8px;
        border-radius: 4px;
    }

    .sec2 .wrap .text_box .more a .iconfont {
        font-size: 8px;
    }

    .sec2 .wrap .text_box .sq {
        display: none;
    }

    .sec2 .wrap .text_box .more a p {
        font-size: 13px;
    }

    .sec2 .wrap .numList {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .sec2 .wrap .numList .num_item {
        width: 49%;
        margin: 0 !important;
    }

    .sec2 .wrap .numList .num_item .num p {
        font-size: 24px;
    }

    .sec2 .wrap .numList .num_item .num span {
        font-size: 12px;
    }

    .sec2 .wrap .numList .num_item .des {
        font-size: 10px;
    }

    .sec2 .wrap .video_box .play {
        width: 50px;
        height: 50px;
    }

    .sec2 .wrap .video_box .play img {
        width: 40px;
    }

    .sec2 .wrap .video_box .play .iconfont {
        font-size: 12px;
    }

    .sec3 {
        padding: 50px 0;
    }

    .sec3 .wrap .sec3_top {
        margin-bottom: 30px;
    }

    .sec3 .wrap .sec3_top .title {
        font-size: 20px;
    }

    .sec3 .wrap .sec3_top .more a {
        padding: 0 10px;
        border-radius: 4px;
        gap: 6px;
        height: 32px;
    }

    .sec3 .wrap .sec3_top .more a .iconfont {
        font-size: 8px;
    }

    .sec3 .wrap .sec3_top .more a p {
        font-size: 12px;
        transform: translateY(2px);
    }

    .sec3 .wrap .box {
        padding: 20px;
        border-radius: 10px;
        display: block;
    }

    .sec3 .wrap .box .l {
        display: block;
    }

    .sec3 .wrap .box .l .item {
        display: block;
        width: 100%;
    }
    .sec3 .wrap .box .l .item:not(:last-child) {
        margin-bottom: 25px;
    }
    .sec3 .wrap .box .l .item .item_box {
        height: unset;
        border-radius: 8px;
    }

    .sec3 .wrap .box .l .item .item_box {
        height: unset;
        border-radius: 8px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom {
        position: unset;
        transform: unset !important;
        padding: 30px 20px 30px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date {
        opacity: 1;
        gap: 6px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date.bottom_date {
        display: none;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date .iconfont {
        font-size: 10px;
        margin-top: -3px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .date p {
        font-size: 12px;
    }

    .sec3 .wrap .box .l .item .item_box .img {
        height: 60vw;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_title {
        font-size: 16px;
        line-height: 24px;
        height: 48px;
        margin: 8px 0 18px;
        transform: unset !important;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_text {
        display: none;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .top_date {
        position: unset;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_more {
        height: 32px;
        padding: 0 15px;
        position: unset;
        border-radius: 4px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .item_more p {
        font-size: 13px;
    }

    .sec3 .wrap .box .l .item .item_box .item_bottom .label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .sec3 .wrap .box .r {
        width: 100%;
        margin: 20px 0 0;
    }

    .sec3 .wrap .box .r .item .item_box {
        height: unset;
        padding: 20px 0;
    }

    .sec3 .wrap .box .r .item {
        border-bottom: 1px solid #E0E0E0;
    }

    .sec3 .wrap .box .r .item .item_box .item_title {
        font-size: 16px;
        line-height: 1.2;
    }

    .sec3 .wrap .box .r .item .item_box .label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .sec4 {
        padding: 60px 0 40px;
    }

    .sec4 .box .title {
        font-size: 18px;
    }

    .sec4 .box {
        width: 90%;
        margin: 0 auto 24vw;
    }

    .sec4 .box .text {
        font-size: 14px;
        line-height: 1.4;
        margin: 15px 0 20px;
    }

    .sec4 .box .more a {
        padding: 0 12px;
        height: 36px;
        border-radius: 4px;
    }

    .sec4 .box .more a p {
        font-size: 13px;
        margin-top: 4px;
    }

    .sec4 .box .sq {
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
    }

    .sec4 .paos {
        transform: scale(1.35);
    }
    .index_banner .swiper .swiper-slide img {
        display: none;
    }
    .index_banner .swiper .swiper-slide img.ph {
        display: block !important;
    }
}
