/* 关于我们 - 分类 */
.about_sort {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.about_sort a {
    display:inline-block;
    width: 140px;
    height: 50px;
    line-height: 50px;
    border-radius:50px;
    border: 2px solid var(--brand-blue-line);
    color: #333;
    text-align: center;
    background: #fff;
    transition: all .25s ease;
}

.about_sort a:hover,
.about_sort a.active {
    background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
    color: #fff;
    border-color: var(--brand-blue);
}

/* 关于我们 - 详情 */
.aboutIntro .mainCon div {
    color: #333;
    font-size: 16px;
    line-height: 36px;
    text-indent: 2em;
}

/* 关于我们 - 合作伙伴 */
.about_partner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about_partner img {
    width: 100%;
    border: 1px solid var(--brand-blue-line);
    box-sizing: border-box;
}

/* 关于我们 - 荣誉资质 */
.about_honor {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about_honor2 { 
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr) !important;
}

.about_honor .about_honor_zl {
    width: 100%;
    border: 1px solid var(--brand-blue-line);
    box-sizing: border-box;
}

.about_honor .about_honor_zl img {
    width: 100%;
    height: 380px;
}

.about_honor2 .about_honor_zl img {
    height: 400px !important;
}

.about_honor .about_honor_zl p {
    text-align: center;
    color: #333;
    font-size: 14px;
    padding: 10px 0;
}





@media screen and (max-width:768px) {
    .about_sort {
        display: block;
        margin: 20px;
    }

    .about_sort a {
        margin-bottom: 20px;
    }

    .about_sort a:not(:last-child) {
        margin-right: 20px;
    }

    .about_partner {
        margin: 0 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about_honor_wrap {
        margin: 0 20px;
    }

    .about_honor {
        grid-template-columns: repeat(2, 1fr);
    }

    .about_honor2 { 
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .about_honor .about_honor_zl img,
    .about_honor2 .about_honor_zl img {
        height: auto;
    }
}
