a {
    color: inherit;
    /* 继承父元素的颜色，或者您可以指定其他颜色值 */
    text-decoration: none;
    /* 删除下划线 */
}

.textIndent2{
    text-indent: 2em;
}

.about_banner {
    font-size: 26px;
    height: 80px;
    line-height: 80px;
    color: #1B2336;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.06);
}

.banner_box {
    display: flex;
    justify-content: space-between;
}

.banner_box div {
    padding: 0 40px;
}

.banner_active {
    background-image: url('/asset/imgs/about/banner_active.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #004874;
}

.com_title {
    padding-top: 50px;
}

.commom_bottom {
    padding-bottom: 50px;
}

.brand_icon_border {
    width: 20px;
    height: 20px;
    border: 1px solid #15C3DD;
    border-radius: 50%;
    position: relative;
}

.brand_icon_his {
    background: linear-gradient(298deg, #0068B6 0%, rgba(4, 221, 255, 0.61) 100%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translate(5%, 5%);
}

.brand_icon {
    background: linear-gradient(298deg, #0068B6 0%, rgba(4, 221, 255, 0.61) 100%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.brand_common_bottom {
    margin-bottom: 20px;
}

.brand_common_padding {
    padding: 50px 0 100px 0;
}

@media screen and (min-width: 992px) {
    .com_title {
        padding-top: 60px;
    }

    .commom_bottom {
        padding-bottom: 66px;
    }

}

/*手机端*/
@media screen and (max-width: 991px) {

    .brand_common_padding {
        padding: 50px 0 50px 0;
    }

    .banner_box div {
        padding: 10px 0px;
    }

    .banner_active {
        background-image: unset;
        color: #004874;
        font-weight: bold;
        position: relative;
    }

    .banner_active::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 2px;
        background: #004874;
        bottom: 0px;
        left: 50%;
        margin-left: -25%;
    }

    .brand_icon_border {
        border: 1px solid #15C3DD;
        border-radius: 50%;
        position: relative;
    }

    .about_banner {
        font-size: 16px;
        height: auto;
        line-height: unset;
    }

    .banner_box {
        flex-wrap: wrap;
    }

    .banner_box>a {
        display: block;
        width: 50%;
        text-align: center;
    }


}