
.about-stat-section {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    box-sizing: border-box;
}
.about-stat-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto-bold, sans-serif;
}
/* 整体最大宽度1792px，水平居中，左右预留200px内边距 */
.container {
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 200px;
}
/* 左右比例42:58，改为顶部对齐 */
.row-wrap {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 65px;
    align-items: flex-start;
}

/* 右侧板块向下偏移，对齐左侧 ONE VISION, ONE FUTURE */
.content-col {
    margin-top: 60px;
}

/* 左侧标题样式（按需求配置） */
.about-title {
    font-size: 44px;
    color: #00458A;
    font-family: Roboto-bold;
    font-weight: bold;
    margin-bottom: 32px;
}
.company-name {
    font-size: 24px;
    color: #4395e7;
    font-family: Roboto, sans-serif;
    font-weight: normal;
    margin-bottom: 12px;
}

/* 左侧统计模块 */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 15px;
}
.stat-item .stat-num {
    display: block;
    font-size: 40px;
    color: #0066CC;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-item .stat-text {
    font-size: 15px;
    color: #919191;
}

/* 右侧文字样式 */
.about-desc p {
    font-size: 15px;
    color: #666666;
    line-height: 1.5;   /* 上下行间距 */
    margin-bottom: 8px;  /* 段落之间距离 */
    letter-spacing: 0.3px; /* 字母横向间距（按需添加） */
}

/* 移动端自适应 */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .row-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    /* 移动端上下布局，取消上边距 */
    .content-col {
        margin-top: 0;
    }
    .stat-item .stat-num {
        font-size: 32px;
    }
    .stat-item .stat-text {
        font-size: 13px;
    }
    .about-title {
        font-size: 30px;
    }
    .company-name {
        font-size: 16px;
    }
    .about-desc p {
        font-size: 12px;
        line-height: 1.4;
    }
}
