.sec1 {
    background: #F8F9FB;
    padding: 85px 0 78px;
}

.sec1 .wrap {
    width: 1600px;
    margin: 0 auto;
}

.sec1 .wrap h2 {
    font-weight: bold;
    font-size: 40px;
    color: #0E5FC2;
    margin: 0 0 40px;
}

.sec1 .wrap .content .item {
    width: 100%;
    margin-bottom: 30px;
}

.sec1 .wrap .content .item .item_box {
    width: 100%;
    height: 160px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 44px;
    transition: 0.6s;
}

.sec1 .wrap .content .item .item_box .l h5 {
    font-weight: bold;
    font-size: 24px;
    color: #111111;
    margin-bottom: 16px;
}

.sec1 .wrap .content .item .item_box .l .flex {
    display: flex;
    align-items: center;
}

.sec1 .wrap .content .item .item_box .l .flex p {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin: 0 40px 0 0;
}

.sec1 .wrap .content .item .item_box .r {
    width: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 400;
    font-size: 18px;
    color: #111111;
    border-left: 1px solid #F1F1F1;
    transition: 0.6s;
}

.sec1 .wrap .content .item:hover .item_box {
    border: 1px solid #0E5FC2;
}

.sec1 .wrap .content .item:hover .item_box .r {
    color: #0E5FC2;
}

.sec1 .wrap .page {
    margin: 50px 0 0;
}

.sec2 {
    padding: 121px 0 145px;
}

.sec2 .wrap {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec2 .wrap .l {
    width: 720px;
    overflow: hidden;
    border-radius: 10px;
}

.sec2 .wrap .l img {
    display: block;
    transition: 2s;
    transform: scale(1.1);
}

.sec2 .wrap .l.aos-animate img {
    transform: scale(1);
}

.sec2 .wrap .r {
    width: 740px;
}

.sec2 .wrap .r .title {
    margin: 0 0 50px;
}

.sec2 .wrap .r .title h2 {
    font-weight: 400;
    font-size: 40px;
    color: #0E5FC2;
    line-height: 60px;
}

.sec2 .wrap .r .text p {
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 40px;
}

.sec3 {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.sec3 .img {
    width: 100%;
}

.sec3 .img img {
    display: block;
    width: 100%;
}

.sec3 .title {
    width: 1600px;
    position: absolute;
    bottom: 100px;
}

.sec3 .title h2 {
    font-weight: 400;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 60px;
}

.sec4 {
    background: #EDEFF2;
    padding: 83px 0 89px;
    width: 100vw;
    overflow: hidden;
}

.sec4 .wrap {
    width: 1600px;
    margin: 0 auto;
}

.sec4 .wrap .title {
    margin: 0 0 68px;
}

.sec4 .wrap .title h2 {
    font-weight: bold;
    font-size: 40px;
    color: #0E5FC2;
}

.sec4 .wrap .imgs {
    display: flex;
    width: max-content;
    animation: img_go2 100s infinite linear;
}

.sec4 .wrap .imgs .flex {
    display: flex;
}

.sec4 .wrap .imgs .flex .item {
    margin-right: 30px;
}

.sec4 .wrap .imgs .flex .item .img {
    width: 540px;
    height: 352px;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    margin: 0 0 20px;
    position: relative;
}

.sec4 .wrap .imgs .flex .item .img img {
    display: block;
    width: 100%;
    height: 100%;
}

.sec4 .wrap .imgs .flex .item .img:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #0E5FC2;
    transition: 0.6s;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.sec4 .wrap .imgs .flex .item .img p {
    width: 350px;
    position: absolute;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 36px;
    z-index: 3;
    transition: 0.6s;
    opacity: 0;
    top: 210px;
    left: 38px;
}

.sec4 .wrap .imgs .flex .item p {
    font-weight: 400;
    font-size: 20px;
    color: #111111;
}

.sec4 .wrap .imgs .flex .item:hover .img:after {
    opacity: 0.6;
}

.sec4 .wrap .imgs .flex .item:hover .img p {
    opacity: 1;
}

.sec4 .wrap .imgs1 {
    animation: img_go 100s infinite linear;
    margin: 50px 0 0;
}

@keyframes img_go {
    100% {
        transform: translateX(-50%);
    }
}

@keyframes img_go2 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/*# sourceMappingURL=job.css.map */
@media screen and (max-width: 1919px) {
    .sec1 {
        padding: 4.4270833333vw 0px 4.0625vw;
    }

    .sec1 .wrap {
        width: 83.3333333333vw;
    }

    .sec1 .wrap h2 {
        font-size: 2.0833333333vw;
        margin: 0px 0px 2.0833333333vw;
    }

    .sec1 .wrap .content .item {
        margin-bottom: 1.5625vw;
    }

    .sec1 .wrap .content .item .item_box {
        height: 8.3333333333vw;
        padding: 0px 0px 0px 2.2916666667vw;
    }

    .sec1 .wrap .content .item .item_box .l h5 {
        font-size: 1.25vw;
        margin-bottom: 0.8333333333vw;
    }

    .sec1 .wrap .content .item .item_box .l .flex p {
        font-size: 0.8333333333vw;
        margin: 0px 2.0833333333vw 0px 0px;
    }

    .sec1 .wrap .content .item .item_box .r {
        width: 11.71875vw;
        font-size: 0.9375vw;
    }

    .sec1 .wrap .page {
        margin: 2.6041666667vw 0px 0px;
    }

    .sec2 {
        padding: 6.3020833333vw 0px 7.5520833333vw;
    }

    .sec2 .wrap {
        width: 83.3333333333vw;
    }

    .sec2 .wrap .l {
        width: 37.5vw;
        border-radius: 0.5208333333vw;
    }

    .sec2 .wrap .r {
        width: 38.5416666667vw;
    }

    .sec2 .wrap .r .title {
        margin: 0px 0px 2.6041666667vw;
    }

    .sec2 .wrap .r .title h2 {
        font-size: 2.0833333333vw;
        line-height: 3.125vw;
    }

    .sec2 .wrap .r .text p {
        font-size: 0.9375vw;
        line-height: 2.0833333333vw;
    }

    .sec3 .title {
        width: 83.3333333333vw;
        bottom: 5.2083333333vw;
    }

    .sec3 .title h2 {
        font-size: 1.875vw;
        line-height: 3.125vw;
    }

    .sec4 {
        padding: 4.3229166667vw 0px 4.6354166667vw;
    }

    .sec4 .wrap {
        width: 83.3333333333vw;
    }

    .sec4 .wrap .title {
        margin: 0px 0px 3.5416666667vw;
    }

    .sec4 .wrap .title h2 {
        font-size: 2.0833333333vw;
    }

    .sec4 .wrap .imgs .flex .item {
        margin-right: 1.5625vw;
    }

    .sec4 .wrap .imgs .flex .item .img {
        width: 28.125vw;
        height: 18.3333333333vw;
        border-radius: 0.5208333333vw;
        margin: 0px 0px 1.0416666667vw;
    }

    .sec4 .wrap .imgs .flex .item .img p {
        width: 18.2291666667vw;
        font-size: 0.9375vw;
        line-height: 1.875vw;
        top: 10.9375vw;
        left: 1.9791666667vw;
    }

    .sec4 .wrap .imgs .flex .item p {
        font-size: 1.0416666667vw;
    }

    .sec4 .wrap .imgs1 {
        margin: 2.6041666667vw 0px 0px;
    }
}
@media screen and (max-width: 1024px) {
    .sec1 {
        padding: 50px 0;
    }
    .sec1 .wrap {
        width: 90%;
    }
    .sec1 .wrap h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .sec1 .wrap .content .item {
        margin-bottom: 30px;
    }
    .sec1 .wrap .content .item .item_box .l h5 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .sec1 .wrap .content .item .item_box {
        height: unset;
        padding: 20px;
        display: block;
    }
    .sec1 .wrap .content .item .item_box .l .flex p {
        font-size: 14px;
        line-height: 1.6;
    }
    .sec1 .wrap .content .item .item_box .l .flex {
        flex-wrap: wrap;
    }
    .sec1 .wrap .content .item .item_box .l {
        width: 100%;
        margin-bottom: 20px;
    }
    .sec1 .wrap .content .item .item_box .r {
        width: 100%;
        border: none;
        font-size: 14px;
        justify-content: flex-start;
    }
    .sec2 {
        padding: 40px 0;
    }
    .sec2 .wrap {
        width: 90%;
        flex-direction: column-reverse;
    }
    .sec2 .wrap .l,.sec2 .wrap .r {
        width: 100%;
    }
    .sec2 .wrap .r .title h2 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 40px;
    }
    .sec2 .wrap .r .text p {
        line-height: 1.6;
        font-size: 16px;
    }
    .sec2 .wrap .r {
        margin-bottom: 30px;
    }
    .sec3 .title h2 {
        font-size: 16px;
        line-height: 1.6;
    }
    .sec3 .title {
        bottom: 34vh;
    }
    .sec4 {
        padding: 50px 0;
    }
    .sec4 .wrap {
        width: 90%;
    }
    .sec4 .wrap .title {
        margin-bottom: 40px;
    }
    .sec4 .wrap .title h2 {
        font-size: 28px;
    }
    .sec4 .wrap .imgs .flex .item p {
        font-size: 14px;
    }
    .sec4 .wrap .imgs .flex .item {
        margin-right: 30px;
    }
    .sec4 .wrap .imgs1 {
        margin: 30px 0 0;
    }
    .sec4 .wrap .imgs .flex .item .img {
        margin-bottom: 10px;
        width: 50vw;
        height: 33vw;
    }
    .sec4 .wrap .imgs .flex .item .img p {
        width: 90%;
        font-size: 14px;
        line-height: 1.4;
    }

    .sec2 .wrap .r .text p span {
        font-size: 16px !important;
        line-height: 1.8 !important;
        color: #666666;
    }
    .sec3 .img img {
        height: 50vh;
    }
}
