/* 关于我们 /about */
.about {
    padding-top: 60px;
}

/* 公司简介 */
.about-content {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    margin-bottom: 60px;
}
.about-text p {
    line-height: 1.8;
    color: var(--fontcolor);
    margin-bottom: 10px;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* 数字跳动 */
.stats {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.stats .stats-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.stat-num {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.stat-num h3 {
    margin-right: 6px;
    height: 50px;
    color: #2563eb;
    font-size: 45px;
    font-family: "gilroy-bold-4";
}
.stat-num span {
    font-weight: 100;
    font-family: "Microsoft YaHei", 微软雅黑;
}
.stat-item p {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-text {
        order: 2;
    }
    .about-image {
        order: 1;
        text-align: center;
    }
    .values-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 2fr);
    }
}