
        /* --- 数据统计条：极致紧凑版式 --- */
        .uee-stats-bar {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 上下间距 */
            border-top: 1px solid #f1f5f9;
            border-bottom: 1px solid #f1f5f9;
        }

        .uee-stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap; /* 移动端自动换行 */
            gap: 20px;
        }

        .uee-stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 数字部分：超重、黑灰、紧凑 */
        .uee-stat-value {
            font-size: 38px;
            font-weight: 800; /* Extra Bold */
            color: #0B1221;
            line-height: 1; /* 极致行高 */
            margin-bottom: 8px; /* 数字与文字的紧凑间距 */
            letter-spacing: -1px;
        }

        /* 标签部分：小字、灰色、大写、宽字间距 */
        .uee-stat-label {
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            line-height: 1.2;
        }

        /* 响应式适配：手机端 */
        @media (max-width: 768px) {
            .uee-stat-item {
                flex: 0 0 45%; /* 每行两个 */
            }
            .uee-stat-value {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .uee-stat-item {
                flex: 0 0 100%; /* 每行一个 */
            }
        }
    