.common_banner .text1 .p1,.common_banner .text1 .p2{
    color: #111;
}
.sec1 {
    padding: 101px 0 121px
}

.sec1 .wrap {
    width: 1440px;
    margin: 0 auto
}

.sec1 .wrap .sec1_top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px
}

.sec1 .wrap .sec1_top .title {
    font-size: 36px;
    color: #111111;
    line-height: 48px
}

.sec1 .wrap .sec1_top .text {
    font-size: 18px;
    color: rgba(17, 17, 17, 0.8);
    line-height: 34px;
    width: 738px
}

/**/
.sec1 .wrap .grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    margin: 0 0 110px;
}
.sec1 .wrap .grid .item{
    width: 100%;
    height: 305px;
    background: #F7F8FA;
    border-radius: 16px;
    padding: 40px 32px 0 32px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .6s ease;
}
.sec1 .wrap .grid .item:hover{
    background: var(--color);
}
.sec1 .wrap .grid .item .common_bg{
    opacity: 0;
    transition: .6s ease;
}
.sec1 .wrap .grid .item:hover .common_bg{
    /*opacity: 1;*/
}
.sec1 .wrap .grid .item:hover .icon img{
    transform: rotateY(180deg);
}
.sec1 .wrap .grid .item .icon{
    width: 54px;
    height: 52px;
    display: flex;
    align-items: center;
    margin: 0 0 75px;
}
.sec1 .wrap .grid .item .icon img{
    object-fit: contain;
    transition: 1s;
}
.sec1 .wrap .grid .item:hover .icon img{
    filter: brightness(0) invert(1);
}
.sec1 .wrap .grid .item:hover .text .p1{
    color: #fff;
}
.sec1 .wrap .grid .item:hover .text .p2{
    color: #fff;
}
.sec1 .wrap .grid .item .text .p1{
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    margin: 0 0 20px;
    transition: .6s ease;
}
.sec1 .wrap .grid .item .text .p2{
    font-size: 16px;
    color: rgba(17, 17, 17, 0.8);
    line-height: 26px;
    margin: 0 0 40px;
    height: 52px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .6s ease;
}
.sec1 .wrap .grid .item .more{
    display: flex;
    align-items: center;
    gap: 8px;
    display: none;
}

.sec1 .wrap .grid .item .more p{
    font-size: 16px;
    color: #005EB8;
}
.sec1 .wrap .grid .item .more .iconfont{
    font-size: 14px;
    color: #005EB8;
}
/**/

.sec1 .wrap .bigImg {
    margin-bottom: 30px;
    width: 100%;
    height: 600px;
    position: relative
}

.sec1 .wrap .bigImg .bg {
    display: block;
    width: 100%
}

.sec1 .wrap .bigImg .position {
    position: absolute;
    right: 275px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3
}

.sec1 .wrap .bigImg .position .p1 {
    font-weight: bold;
    font-size: 36px;
    color: #111111;
    line-height: 40px;
    margin: 0 0 40px
}

.sec1 .wrap .bigImg .position .dis {
    display: flex;
    align-items: center;
    gap: 12px
}

.sec1 .wrap .bigImg .position .dis .iconfont {
    font-size: 28px;
    color: #005EB8
}

.sec1 .wrap .bigImg .position .dis a {
    font-weight: bold;
    font-size: 36px;
    color: #005EB8
}

.sec1 .wrap .bigImg .position .p2 {
    font-weight: 500;
    font-size: 18px;
    color: #111111;
    line-height: 40px
}

.sec1 .wrap .flex {
    display: flex;
    justify-content: space-between
}

.sec1 .wrap .flex .img {
    width: 460px;
    height: 280px;
    background: #F7F8FA;
    border-radius: 16px;
    transition: 0.6s;
    padding: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sec1 .wrap .flex .img .common_bg {
    opacity: 0;
    transition: .6s ease
}

.sec1 .wrap .flex .img .color {
    width: 100px;
    height: 100px;
    background: rgba(0, 94, 184, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .6s ease
}

.sec1 .wrap .flex .img .color img {
    object-fit: contain;
    width: 46px;
    transition: .6s ease
}

.sec1 .wrap .flex .img .p1 {
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    margin: 30px 0 20px
}

.sec1 .wrap .flex .img .more {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.sec1 .wrap .flex .img .more p {
    font-weight: 500;
    font-size: 16px;
    color: #005EB8
}

.sec1 .wrap .flex .img .more .iconfont {
    color: #005EB8;
    font-size: 14px
}

.sec1 .wrap .flex .img .p2 {
    font-weight: 500;
    font-size: 16px;
    color: #111111
}

.sec1 .wrap .flex .img:hover {
    transform: translateY(-10px)
}

.sec1 .wrap .flex .img:hover .common_bg {
    opacity: 1
}

.sec1 .wrap .flex .img:hover .color {
    background: var(--color)
}

.sec1 .wrap .flex .img:hover .color img {
    filter: brightness(0) invert(1)
}

.sec2 {
    background: #F7F8FA;
    padding: 111px 0 153px
}

.sec2 .wrap {
    width: 1440px;
    margin: 0 auto
}

.sec2 .wrap .title {
    font-weight: 500;
    font-size: 36px;
    color: #111111;
    margin-bottom: 58px
}

.sec2 .wrap .list .item {
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px transparent
}

.sec2 .wrap .list .item .block {
    height: 85px;
    padding: 0 20px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer
}

.sec2 .wrap .list .item .block:after {
    content: "";
    width: 1380px;
    height: 1px;
    background: #000000;
    opacity: 0.1;
    position: absolute;
    left: 30px;
    bottom: 0;
    transform: scaleX(0);
    transition: 1s
}

.sec2 .wrap .list .item .block p {
    font-weight: 500;
    font-size: 16px;
    color: #111111
}

.sec2 .wrap .list .item .block .jia {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #E3E4E6;
    border-radius: 50%;
    position: relative;
    transition: 0.6s
}

.sec2 .wrap .list .item .block .jia span {
    display: block;
    width: 13px;
    height: 1px;
    position: absolute;
    background: #FFFFFF;
    transition: 0.6s
}

.sec2 .wrap .list .item .block .jia span:nth-child(2) {
    transform: rotate(90deg)
}

.sec2 .wrap .list .item .block:hover .jia {
    background: #005EB8
}

.sec2 .wrap .list .item .none {
    padding: 34px 46px 53px 30px;
    font-weight: 500;
    font-size: 16px;
    color: #111111;
    line-height: 30px;
    opacity: 0.8;
    display: none
}

.sec2 .wrap .list .item.item_active .block:after {
    transform: scaleX(1)
}

.sec2 .wrap .list .item.item_active .block .jia span {
    transform: rotate(180deg) !important
}

.fixed_alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.fixed_alert.on {
    pointer-events: auto
}

.fixed_alert.on .black {
    pointer-events: auto;
    opacity: 1
}

.fixed_alert.on .content {
    opacity: 1;
    pointer-events: auto
}

.fixed_alert .black {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(13, 15, 14, 0.2);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: .6s ease
}

.fixed_alert .content {
    position: relative;
    opacity: 0;
    pointer-events: none;
    transition: .6s ease
}

.fixed_alert .content .close {
    position: absolute;
    right: -50px;
    top: 0;
    font-weight: 500;
    font-size: 18px;
    color: #005EB8;
    cursor: pointer
}

.fixed_alert .content .jump {
    width: 860px;
    height: 540px;
    background: #FFFFFF;
    border-radius: 16px 16px 16px 16px;
    padding: 60px 40px;
    position: relative;
    z-index: 5;
    overflow: hidden;
    overflow-y: scroll
}

.fixed_alert .content .jump::-webkit-scrollbar {
    display: none
}

.fixed_alert .content .jump h1 {
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 32px
}

.fixed_alert .content .jump h5 {
    font-weight: bold;
    font-size: 18px;
    color: #111111;
    margin: 0 0 20px
}

.fixed_alert .content .jump p {
    font-weight: 500;
    font-size: 16px;
    color: #111111
}


.sec3{
    padding: 94px 0 90px;
}
.sec3 .wrap{
    width: 1440px;
    margin: auto;
}
.sec3 .wrap .title{
    font-weight: 500;
    font-size: 36px;
    color: #111111;
    margin: 0 0 50px;
}
.sec3 .wrap .content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.sec3 .wrap .content .item{
    width: 100%;
}
.sec3 .wrap .content .item .img{
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.sec3 .wrap .content .item .img .play{
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
.sec3 .wrap .content .item .img .play div{
    width: 18px;
    height: 21px;
    background: #005EB8;
    clip-path: polygon(0 0,100% 50%,0 100%,0 0);
    position: relative;
    left: 3px;
}
.sec3 .wrap .content .item .img .pic{
    width: 100%;
    height: 100%;
}
.sec3 .wrap .content .item .img img{
    width: 100%;
    height: 100%;
}
.sec3 .wrap .content .item .text{
    font-size: 20px;
    color: #111111;
    margin: 21px 0 0 0;
}
.sec3 .wrap .more{
    width: fit-content;
    height: 50px;
    background: #005EB8;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    font-size: 18px;
    color: #FFFFFF;
    margin: 66px auto 0;
}

@media screen and (max-width: 1919px) {
    .sec1{
        padding: 5.2604166667vw 0px 6.3020833333vw;
    }
    .sec1 .wrap{
        width: 75vw;
    }
    .sec1 .wrap .sec1_top{
        margin-bottom: 4.1666666667vw;
    }
    .sec1 .wrap .sec1_top .title{
        font-size: 1.875vw;
        line-height: 2.5vw;
    }
    .sec1 .wrap .sec1_top .text{
        font-size: 0.9375vw;
        line-height: 1.7708333333vw;
        width: 38.4375vw;
    }
    .sec1 .wrap .grid{
        gap: 1.3541666667vw;
        margin: 0px 0px 5.7291666667vw;
    }
    .sec1 .wrap .grid .item{
        height: 15.8854166667vw;
        border-radius: 0.8333333333vw;
        padding: 2.0833333333vw 1.6666666667vw 0px;
    }
    .sec1 .wrap .grid .item .icon{
        width: 2.8125vw;
        height: 2.7083333333vw;
        margin: 0px 0px 3.90625vw;
    }
    .sec1 .wrap .grid .item .text .p1{
        font-size: 1.25vw;
        margin: 0px 0px 1.0416666667vw;
    }
    .sec1 .wrap .grid .item .text .p2{
        font-size: 0.8333333333vw;
        line-height: 1.3541666667vw;
        margin: 0px 0px 2.0833333333vw;
        height: 2.7083333333vw;
    }
    .sec1 .wrap .grid .item .more{
        gap: 0.4166666667vw;
    }
    .sec1 .wrap .grid .item .more p{
        font-size: 0.8333333333vw;
    }
    .sec1 .wrap .grid .item .more .iconfont{
        font-size: 0.7291666667vw;
    }
    .sec1 .wrap .bigImg{
        margin-bottom: 1.5625vw;
        height: 31.25vw;
    }
    .sec1 .wrap .bigImg .position{
        right: 14.3229166667vw;
    }
    .sec1 .wrap .bigImg .position .p1{
        font-size: 1.875vw;
        line-height: 2.0833333333vw;
        margin: 0px 0px 2.0833333333vw;
    }
    .sec1 .wrap .bigImg .position .dis{
        gap: 0.625vw;
    }
    .sec1 .wrap .bigImg .position .dis .iconfont{
        font-size: 1.4583333333vw;
    }
    .sec1 .wrap .bigImg .position .dis a{
        font-size: 1.875vw;
    }
    .sec1 .wrap .bigImg .position .p2{
        font-size: 0.9375vw;
        line-height: 2.0833333333vw;
    }
    .sec1 .wrap .flex .img{
        width: 23.9583333333vw;
        height: 14.5833333333vw;
        border-radius: 0.8333333333vw;
        padding: 1.5625vw;
    }
    .sec1 .wrap .flex .img .color{
        width: 5.2083333333vw;
        height: 5.2083333333vw;
        border-radius: 0.625vw;
    }
    .sec1 .wrap .flex .img .color img{
        width: 2.3958333333vw;
    }
    .sec1 .wrap .flex .img .p1{
        font-size: 1.0416666667vw;
        margin: 1.5625vw 0px 1.0416666667vw;
    }
    .sec1 .wrap .flex .img .more{
        gap: 0.2604166667vw;
    }
    .sec1 .wrap .flex .img .more p{
        font-size: 0.8333333333vw;
    }
    .sec1 .wrap .flex .img .more .iconfont{
        font-size: 0.7291666667vw;
    }
    .sec1 .wrap .flex .img .p2{
        font-size: 0.8333333333vw;
    }
    .sec1 .wrap .flex .img:hover{
        transform: translateY(-0.5208333333vw);
    }
    .sec2{
        padding: 5.78125vw 0px 7.96875vw;
    }
    .sec2 .wrap{
        width: 75vw;
    }
    .sec2 .wrap .title{
        font-size: 1.875vw;
        margin-bottom: 3.0208333333vw;
    }
    .sec2 .wrap .list .item{
        border-radius: 0.4166666667vw;
        margin-bottom: 0.5208333333vw;
        box-shadow: transparent 0px 0px 0.5208333333vw;
    }
    .sec2 .wrap .list .item .block{
        height: 4.4270833333vw;
        padding: 0px 1.0416666667vw 0px 1.5625vw;
    }
    .sec2 .wrap .list .item .block::after{
        width: 71.875vw;
        left: 1.5625vw;
    }
    .sec2 .wrap .list .item .block p{
        font-size: 0.8333333333vw;
    }
    .sec2 .wrap .list .item .block .jia{
        width: 1.8229166667vw;
        height: 1.8229166667vw;
    }
    .sec2 .wrap .list .item .block .jia span{
        width: 0.6770833333vw;
    }
    .sec2 .wrap .list .item .none{
        padding: 1.7708333333vw 2.3958333333vw 2.7604166667vw 1.5625vw;
        font-size: 0.8333333333vw;
        line-height: 1.5625vw;
    }
    .fixed_alert .black{
        backdrop-filter: blur(0.2604166667vw);
    }
    .fixed_alert .content .close{
        right: -2.6041666667vw;
        font-size: 0.9375vw;
    }
    .fixed_alert .content .jump{
        width: 44.7916666667vw;
        height: 28.125vw;
        border-radius: 0.8333333333vw;
        padding: 3.125vw 2.0833333333vw;
    }
    .fixed_alert .content .jump h1{
        font-size: 1.25vw;
        padding: 0px 0px 1.5625vw;
        margin: 0px 0px 1.6666666667vw;
    }
    .fixed_alert .content .jump h5{
        font-size: 0.9375vw;
        margin: 0px 0px 1.0416666667vw;
    }
    .fixed_alert .content .jump p{
        font-size: 0.8333333333vw;
    }
    .sec3{
        padding: 4.8958333333vw 0px 4.6875vw;
    }
    .sec3 .wrap{
        width: 75vw;
    }
    .sec3 .wrap .title{
        font-size: 1.875vw;
        margin: 0px 0px 2.6041666667vw;
    }
    .sec3 .wrap .content{
        gap: 1.5625vw;
    }
    .sec3 .wrap .content .item .img{
        height: 14.5833333333vw;
        border-radius: 0.5208333333vw;
    }
    .sec3 .wrap .content .item .img .play{
        width: 4.1666666667vw;
        height: 4.1666666667vw;
    }
    .sec3 .wrap .content .item .img .play div{
        width: 0.9375vw;
        height: 1.09375vw;
        left: 0.15625vw;
    }
    .sec3 .wrap .content .item .text{
        font-size: 1.0416666667vw;
        margin: 1.09375vw 0px 0px;
    }
    .sec3 .wrap .more{
        height: 2.6041666667vw;
        border-radius: 1.3020833333vw;
        padding: 0px 2.0833333333vw;
        font-size: 0.9375vw;
        margin: 3.4375vw auto 0px;
    }
}

@media screen and (max-width: 1024px) {
    .sec1{
        padding: 50px 0;
    }
    .sec1 .wrap {
        width: 100%;
        padding: 0 3.3333333333333335vw;
    }


    .sec1 .wrap .sec1_top{
        flex-direction: column;
        margin: 0 0 30px;
        gap: 18px;
        align-items: unset;
    }
    .sec1 .wrap .sec1_top .title{
        font-size: 22px;
        line-height: 1.4;
    }
    .sec1 .wrap .sec1_top .text{
        font-size: 12px;
        line-height: 25px;
        width: 100%;
    }
    .sec1 .wrap .bigImg{
        margin: 0 0 15px;
    }
    .sec1 .wrap .bigImg .bg{
        display: none;
    }
    .sec1 .wrap .bigImg .bg.sj_bg{
        display: block!important;
    }
    .sec1 .wrap .bigImg{
        height: 53.333333333333336vw;
    }
    .sec1 .wrap .bigImg .position{
        right: unset;
        left: 41.46666666666667vw;
    }
    .sec1 .wrap .bigImg .position .p1{
        font-weight: bold;
        font-size: 3.7333333333333334vw;
        color: #111111;
        line-height: 4.8vw;
        margin: 0 0 5.066666666666666vw;
    }
    .sec1 .wrap .bigImg .position .dis{
        gap: 1.6vw;
        margin: 0 0 4.666666666666667vw;
    }
    .sec1 .wrap .bigImg .position .dis .iconfont{
        font-size: 4vw;
    }
    .sec1 .wrap .bigImg .position .dis a{
        font-size: 4.8vw;
    }
    .sec1 .wrap .bigImg .position .p2{
        font-weight: 400;
        font-size: 2.4vw;
        color: rgba(17, 17, 17, 0.8);
        line-height: 5.333333333333333vw;
    }
    .sec1 .wrap .flex{
        flex-direction: column;
        gap: 20px;
    }

    .sec1 .wrap .flex .img {
        width: 100%;
        height: auto;
        border-radius: 7px;
        padding: 25px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .sec1 .wrap .flex .img .color{
        width: 50px;
        height: 50px;
        border-radius: 7px;
    }
    .sec1 .wrap .flex .img .color img{
        width: 25px;
    }

    .sec1 .wrap .flex .img .p1{
        font-size: 18px;
        margin: 0 0 4px 0;
    }
    .sec1 .wrap .flex .img .p2{
        font-size: 14px;
    }

    .sec1 .wrap .flex .img .more{
        gap: 7px;
    }
    .sec1 .wrap .flex .img .more p{
        font-size: 14px;
    }

    .sec1 .wrap .flex .img .more .iconfont{
        font-size: 12px;
    }

    .sec2{
        padding: 50px 0;
    }
    .sec2 .wrap{
        width: 90%;
    }
    .sec2 .wrap .title{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .sec2 .wrap .list .item .block{
        height: auto;
        padding: 12px 5%;
    }
    .sec2 .wrap .list .item .block p{
        font-size: 14px;
    }
    .sec2 .wrap .list .item .block .jia{
        width: 35px;
        height: 35px;
    }
    .sec2 .wrap .list .item .block .jia span{
        width: 12px;
    }
    .sec2 .wrap .list .item{
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .sec2 .wrap .list .item .none{
        padding: 20px 5% 30px 5%;
        font-size: 11px;
        line-height: 25px;
    }
    .sec2 .wrap .list .item .block::after {
        width: 90%;
        left: 5%;
    }
    .sec1 .wrap .grid{
        gap: 15px;
        margin: 0 0 20px;
        grid-template-columns: repeat(1,1fr);
    }
    .sec1 .wrap .grid .item{
        height: auto;
        padding: 20px 5%;
        border-radius: 10px;
    }

    .sec1 .wrap .grid .item .icon{
        width: 30px;
        height: 30px;
        margin: 0 auto 20px;
    }
    .sec1 .wrap .grid .item .text{
        text-align: center;
    }
    .sec1 .wrap .grid .item .text .p1{
        font-size: 20px;
        margin: 0 0 10px;
    }
    .sec1 .wrap .grid .item .text .p2{
        font-size: 13px;
        line-height: 25px;
        height: auto;
        margin: 0 0 20px;
    }
    .sec1 .wrap .grid .item .more{
        gap: 10px;
    }
    .sec1 .wrap .grid .item .more p{
        font-size: 13px;
    }
    .sec1 .wrap .grid .item .more .iconfont{
        font-size: 12px;
    }

    .sec3{
        padding: 35px 0;
    }
    .sec3 .wrap{
        width: 90%;
    }
    .sec3 .wrap .title{
        font-size: 22px;
        margin: 0 0 20px;
    }
    .sec3 .wrap .content{
        gap: 15px;
        grid-template-columns: repeat(2,1fr);
    }
    .sec3 .wrap .content .item .img{
        height: auto;
        border-radius: 10px;
    }
    .sec3 .wrap .content .item .text{
        font-size: 12px;
        margin: 15px 0 0 0;
    }
    .sec3 .wrap .more{
        height: 40px;
        width: fit-content;
        padding: 0 20px;
        margin: 35px auto 0;
        font-size: 13px;
        border-radius: 30px;
    }
    .sec3 .wrap .content .item .img .play{
        width: 40px;
        height: 40px;
    }
    .sec3 .wrap .content .item .img .play div{
        width: 12px;
        height: 15px;
        left: 0;
    }

    .common_banner .img img{
        display: none;
    }
    .common_banner .img img.sj_img{
        display: block!important;
    }
}
