.banner {
    width: 100%;
}

.banner img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 21.875rem;

}

.about_list {
    width: 100%;
    padding: .75rem 0 0;
    border-bottom: 1px solid #E5E5E5;
}

.about_list .center {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}

.about_list .center a {
    display: block;
    white-space: nowrap;
    padding-bottom: .75rem;
    position: relative;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1rem;
    color: #333333;
    line-height: 1.25rem;
    text-align: center;
    font-style: normal;
    text-transform: none;
    transition: all 0.2s ease-in-out;
    margin: 0 1.125rem;
}

.about_list .center a:hover {
    color: #0154A4;
}

.about_list .center a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #0154A4;
    transition: all 0.3s ease-in-out;
}

.about_list .center a:hover::after {
    left: 0;
    width: 100%;
}

.about_list .center a.act {
    color: #0154A4;
}

.about_list .center a.act::after {
    left: 0;
    width: 100%;
}



body {
    background: #F8F8F8;
}

.jobs{
    overflow: hidden;
    padding-bottom: 5rem
}
.jobs .lm{
    display: flex;
    margin-top: 2.5rem;
}
.jobs .lm a{
    display: block;
    width: 104px;
    height: 2.25rem;
    line-height: 2.25rem;
    font-size: 1rem;
    text-align: center;
    background: #ffffff;
    border-radius: 1.125rem;
    margin-right: 1.25rem;
}
.jobs .lm a.act{
    background: #0154A4;
    color: #ffffff;
}
.jobs .search{
    margin: 1.25rem 0;
    padding: 1.625rem 3.125rem;
    background: #ffffff;
    display: flex;
    align-items: center;
}
.jobs .search span{
    font-size: 1rem;
    margin-right: .9375rem;
}
.jobs .search select{
    width: 18.0597%;/* 242px */
    height: 3.25rem;
    border: 1px solid #E5E5E5;
    font-size: 1.125rem;
    margin-right: 1.25rem;
    padding: .75rem;
}
.jobs .search input{
    width: 37.3134%;/* 500px */
    height: 3.25rem;
    border: 1px solid #E5E5E5;
    padding: .75rem;
    font-size: 1.125rem;
    margin-right: 1.25rem;
}
.jobs .search button{
    width: 11.9402%;
    height: 3.25rem;
    background: #0154A4;
    border-radius: 1.625rem;
    font-size: 1.25rem;
    color: #ffffff;
    border: 0;
}
.jobs .list li{
    padding: 2.5rem;
    background: #ffffff;
    margin-bottom: 1.25rem;
}
.jobs .list li .tit{
    display: flex;
    justify-content: space-between;
}
.jobs .list li .tit h3{
    font-size: 1.5rem;
    line-height: 1.875rem;
}
.jobs .list li .tit span{
    font-size: 1rem;
    line-height: 1.875rem;
    color: #999999;
}
.jobs .list li .con{
    margin-top: .625rem;
    font-size: 1rem;
    line-height: 1.875rem;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden; 
}
.jobs .list li:hover .tit{
    color: #0154A4;
}


@media (max-width: 1200px) {
    .banner{
        margin-top: 5rem;
    }
}


@media (max-width: 768px) {
    .banner{
        margin-top: 0;
    }
    .banner img{
        min-height: auto;
    }

    .about_list .center{
        justify-content: flex-start;
    }

    .jobs{
        padding-bottom: 1.875rem;
    }
    .jobs .lm a{
        font-size: .875rem;
    }
    .jobs .search{
        flex-wrap: wrap;
        padding: .625rem;
    }
    .jobs .search span{
        width: 100%;
        margin-right: 0;
    }
    .jobs .search select{
        width: 30%;
        height: 1.875rem;
        padding: .125rem;
        font-size: .875rem;
        margin-right: .3125rem;
    }
    .jobs .search input{
        width: 40%;
        height: 1.875rem;
        padding: .125rem;
        font-size: .875rem;
        margin-right: .3125rem;
    }
    .jobs .search button{
        font-size: .875rem;
        width: 20%;
        height: 1.875rem;
    }

    .jobs .list li{
        padding: .625rem;
    }
    .jobs .list li .tit h3{
        font-size: 1rem;
    }
    .jobs .list li .tit span{
        font-size: .75rem;
    }
    .jobs .list li .con{
        font-size: .875rem;
        line-height: 1.5;
    }
}