/* 关于奥慧布局 */
.about-conteiner-warp {
    display: flex;
    padding: 2.5rem;
    background-color: #F9F9F9;
}

.about-conteiner-warp .about-nav-warp {
    width: 28.75rem;
    flex-shrink: 1;
    padding-left: 6.25rem;
    padding-right: 12.5rem;
    padding-top: 5.375rem;
    box-sizing: border-box;
}

.about-conteiner-warp .about-nav-warp ul {
    display: flex;
    flex-direction: column;
    width: 11.625rem;
    padding-bottom: 4.625rem;
    border-bottom: 1px solid #E3E3E3;
    padding-left: 0;
}

.about-conteiner-warp .about-nav-warp h4 {
    font-size: 2.25rem;
}

.about-conteiner-warp .about-nav-warp ul li {
    font-size: 1.875rem;
    list-style: none;
    margin-top: 2.8125rem;
}

.about-conteiner-warp .about-nav-warp ul a {
    color: #000000;
}

.about-conteiner-warp .about-nav-warp ul a.active {
    color: #C51030;
}

.about-conteiner-warp .about-nav-warp ul a:hover {
    text-decoration: none;
}

.about-conteiner-warp .about-content-warp {
    width: calc(100% - 28.75rem);
    background-color: #fff;
    flex-shrink: 1;
    margin-bottom: 6.25rem;
}

.about-content-warp {
    padding: 2.875rem 8.75rem 7.5rem;
    background-image: url(../img/aowit.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 86% auto;
}

.about-content-warp h2 {
    font-size: 2.25rem;
    line-height: 1;
}

.about-content-warp .img-warp {
    height: 23.75rem;
    background-color: #C4112F;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.875rem;
}

.about-content-warp .img-warp img {
    width: 32.5rem;
}


.about-content-warp .company-data-warp {
    width: 100%;
    display: inline-flex;
    margin-top: 6.25rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    justify-content: space-between;
}

.about-content-warp .company-data-warp .data-warp {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
}

.about-content-warp .company-data-warp .data-warp:last-of-type {
    border-right: none;
}

.about-content-warp .company-data-warp .data-warp p:nth-child(1) {
    color: #C51030;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.about-content-warp .line {
    display: inline-block;
    width: 1px;
    height: 6rem;
    background-color: #E3E3E3;
}

.about-content-warp>h4 {
    font-size: 1.875rem;
    margin-top: 6.25rem;
    text-align: center;
}

.about-content-warp .about-brand-warp {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 1.25rem;
    margin-top: 5rem;
}

.about-content-warp .about-brand-warp .brand-warp {
    height: 5.5rem;
    box-shadow: 0 3px 0.625rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background-size: 100% auto;
    background-position: center;
}


.about-content-warp .about-text {
    font-size: 1.5rem;
}

.about-content-warp .logo-warp {
    margin-top: 7.75rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.about-content-warp .logo-warp img {
    width: 12.25rem;
}

.about-content-warp .about-sub-title {
    font-size: 1.875rem;
    color: #C51030;
    text-align: center;
    line-height: 1;
}

.about-content-warp .about-sub-text {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 2.5rem;
}

.about-content-warp .img-warp-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3.75rem;
}

.about-content-warp .img-warp-list img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}


/* 四合一服务 */

.service-content {
    display: flex;
    justify-content: center;
    margin-top: 5.375rem;
}

.service-content .service-pane {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 8px;
    background: #F9F9F9;
    box-sizing: border-box;
    border: 1px solid #E3E3E3;
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-content .service-pane i {
    font-size: 2.8125rem;
    color: #C4112F;
    line-height: 1;
    margin-bottom: 4px;
}

.service-content .service-pane>p {
    padding-top: 1rem;
}

.strategy-img-warp {
    padding: 0 8.9375rem;
    margin-top: 4.5rem;
}

.strategy-img-warp img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* 媒体查询屏幕小于680 触发移动端样式 */
@media screen and (max-width: 680px) {
    .about-conteiner-warp {
        padding: 2rem;
    }

    .about-conteiner-warp .about-nav-warp {
        width: 18%;
        padding: 0;
        font-size: 1rem !important;
    }

    .about-conteiner-warp .about-nav-warp h4 {
        font-size: 1.2rem;
    }

    .about-conteiner-warp .about-nav-warp ul {
        padding: 0 0 2rem;
        margin-top: 2rem !important;
    }

    .about-conteiner-warp .about-nav-warp ul li {
        font-size: 1rem;
    }

    .about-conteiner-warp .about-content-warp {
        width: 84%;
        padding: 2rem;
    }

    .about-content-warp .img-warp {
        height: 15rem;
    }

    .about-content-warp .img-warp img {
        width: 60%;
    }

    .about-content-warp .title-warp {
        margin-top: 4rem !important;
    }

    .about-content-warp .company-data-warp {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }

    .about-content-warp .line {
        display: none;
    }

    .about-content-warp .company-data-warp .data-warp {
        height: 100%;
        display: inline-flex;
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-content-warp .company-data-warp .fs-36 {
        font-size: 1.5rem;
    }

    .about-content-warp .company-data-warp .fs-18 {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    .about-content-warp .about-brand-warp {
        grid-template-columns: repeat(3, 1fr)
    }

    .about-content-warp .about-sub-title {
        font-size: 2rem !important;
        margin-top: 4rem !important;
        line-height: 1.4;
    }

    .about-content-warp>h4 {
        /* font-size: 1.1rem; */
    }


    .service-content {
        margin-top: 4rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
        width: 100%;
    }

    .service-content .service-pane {
        margin: 0;
        width: 100%;
    }

    .service-content .service-pane>p {
        margin: 0;
    }

}