.banner {
    width: 100%;
}

.banner img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 21.875rem;

}

.about_list {
    background: #ffff;
    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%;
}


.case_detail{
    padding: 3.125rem 0 4.375rem;
}
.case_detail .tit{
    font-size: 2rem;
    line-height: 2.625rem;
    text-align: center;
    margin-bottom: 2.25rem;
}
.case_detail .img{
    text-align: center;
    margin-bottom: 2.1875rem;
}
.case_detail .info{
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
}
.case_detail .con{
    font-size: 1rem;
    line-height: 1.875rem;
}


@media (max-width: 768px) {
    .banner img{
        min-height: 12.5rem;
    }

    .about_list .center{
        justify-content: flex-start;
    }

    .case_detail{
        padding: 1.875rem 0;
    }
    .case_detail .tit{
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    .case_detail .info{
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .case_detail .con{
        font-size: .875rem;
        line-height: 1.5;
    }
}