/* ====================================================  */
/* ====================================================  */
/* ===================== 首页页面-中间部分内容盒子 ========  */
/* ====================================================  */
/* ====================================================  */

.home {
    margin-top: 5%;
    width: 100%;
    text-align: center;
}

.home .home-logo {
    max-width: 100%;
    max-height: 280px;
    display: block;
    margin: 3rem auto 1.5rem;
}

.home .home-title {
    font-size: 3rem;
    text-align: center;
}

.home .home-description {
    margin: 0 auto;
    max-width: 35rem;
    font-size: 1.6rem;
    line-height: 1.3;
    color: #6a8bad;
    text-align: center;
}

.home .features {
    width: 80%;
    margin-left: 10%;
    border-top: 1px solid #eaecef;
    padding: 1.2rem 0;
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: stretch;
    justify-content: space-between;
}

.home .feature {
    flex-grow: 1;
    flex-basis: 30%;
    max-width: 30%;
}

.home .feature h2 {
    font-size: 1.4rem;
    font-weight: 500;
    border-bottom: none;
    padding-bottom: 0;
    color: #3a5169;
}

.home .feature p {
    color: #4e6e8e;
}


/* 移动端兼容 */
@media screen and (max-width: 980px) {
    .home .feature {
        flex-grow: 1;
        flex-basis: 100%;
        max-width: 100%;
    }
}