
    /* 1. 整体容器 - 深色背景 */
    .uee-stats-section {
        background-color: #0b1120; /* 深蓝黑色背景 */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        padding: 80px 20px;
        color: #ffffff;
        text-align: center;
    }

    /* 2. 弹性布局容器 */
    .uee-stats-grid {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
        max-width: 1300px;
        margin: 0 auto;
        gap: 20px;
    }

    /* 3. 单个数据项样式 */
    .uee-stat-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    /* 特大数字样式 - 使用主色调 #56B8B8 */
    .uee-stat-number {
        font-size: 52px;
        font-weight: 800;
        color: #56B8B8;
        line-height: 1;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    /* 中间标签样式 - 纯白加粗 */
    .uee-stat-label {
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase; /* 强制大写 */
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 40px; /* 保持高度对齐 */
        display: flex;
        align-items: center;
        text-align: center;
    }

    /* 底部描述样式 - 淡灰色 */
    .uee-stat-desc {
        font-size: 13px;
        color: #94a3b8;
        font-weight: 400;
        line-height: 1.4;
    }

    /* 4. 响应式适配 */
    @media (max-width: 1024px) {
        .uee-stats-grid {
            flex-wrap: wrap; /* 平板端换行 */
            justify-content: center;
        }
        .uee-stat-item {
            flex: 0 0 30%; /* 每行显示3个或2个 */
            margin-bottom: 40px;
        }
    }

    @media (max-width: 640px) {
        .uee-stat-item {
            flex: 0 0 100%; /* 手机端单列 */
        }
        .uee-stat-number {
            font-size: 44px;
        }
    }
