.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%;
}

.honor {
    width: 100%;
    padding-top: 3.125rem;
    padding-bottom: 5rem;
}

.honor .center {
    display: flex;
    flex-wrap: wrap;
}

.honor .center .prc {
    width: 23.575%;
    margin-right: 1.9%;
    margin-bottom: 1.625rem;
    border: 1px solid #E5E5E5;
    aspect-ratio: 340/252;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
}

.honor .center .prc:nth-child(4n) {
    margin-right: 0;
}

.honor .center .prc img {
    display: block;
    width: 100%;
    max-height: 100%;
}


@media (max-width: 768px) {
    .banner img{
        min-height: 12.5rem;
    }

    .about_list .center{
        justify-content: flex-start;
    }

    .honor{
        padding: 1.875rem 0;
    }
}