.about {}

.about_banner {
    width: 100%;
    height: 2.092rem;
    margin-top: 80px;
}

.about_banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* about_nav 面包屑 */
.about_nav {
    width: 100%;
    height: 60px;
    background: #F2F4F7;
}
.dis {
    display: none;
}
.about_nav .about_nav_inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.about_nav .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    font-size: 14px;
    color: #666;
}

.about_nav .breadcrumb_home {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.about_nav .breadcrumb_home img {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
}

.about_nav .breadcrumb_link {
    color: #666;
    text-decoration: none;
}

.about_nav .breadcrumb_sep {
    color: #ccc;
}

.about_nav .breadcrumb_current {
    color: #0A0A0A;
}

/* 选项卡 */
.about_tabs {
    list-style: none;
    height: 60px;
    display: flex;
    align-items: center;
}

.about_tabs .tab_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 124px;
    color: #333;
    font-size: 14px;
}

.about_tabs .tab_item.active a,
.about_tabs .tab_item:hover a {
    background: #D80C24;
    color: #fff;
}

/* 内容 */
.about_main {
    width: 7.322rem;
    margin: 0 auto;
    padding-top: .445rem;
    min-height: 4.482rem;
    padding-bottom: 30px;
}

.about_title {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    margin-bottom: 16px;
    text-align: center;
}

.about_line {
    width: 40px;
    height: 3px;
    background: #D80C24;
    margin: 0 auto .251rem;
}
.about_content {
    color: #666;
    font-size: 14px;
    line-height: 24px;
}
@media (max-width: 800px) { 
    .dis {
        display: block;
        padding: 0 16px;
        font-size: 14px;
    }
    .about_tabs {
        display: none;
    }
    .about_nav_inner {
        display: none;
    }
    .about_nav {
        height: 100px;
    }
    .dis .layui-form-select dl dd.layui-this {
        color: #D80C24;
    }
    .about_main {
        width: 95%;
    }
}