/* 关于我们 */

.about {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about_left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about_left_img {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
}

.about_left img {
    width: 100%;
    height: 100%;
}

.about_left p {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

.about_left h6 {
    font-size: 1rem;
    color: #999;
}

.about_right p {
    font-size: 1.4rem;
    color: #333;
    text-indent: 3rem;
    line-height: 2.8rem;
}

.about_right p a {
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
    color: #38f;
}

.about_right div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 0 5rem;
    color: #ccc;
}

@media screen and (max-width:576px) {
    .about_right {
        margin-top: 1rem;
    }
    .about_right p {
        font-size: 1rem;
        text-indent: 2rem;
        line-height: 2rem;
    }
    .about_right p span {
        line-height: 1.5rem;
    }
    .about_left p {
        font-size: 1.2rem;
    }
    .about_right p a {
        justify-content: center;
        margin-top: .5rem;
    }
    .about_right div h1 {
        font-size: 1.3rem;
    }
    .about_right div h4 {
        font-size: 1rem;
    }
}