
        /* --- 紧凑版式还原 --- */
        .uee-analytics-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            /* 减少上下空白：从80px减至40px */
            padding: 40px 5%; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .uee-analytics-container {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center; /* 确保所有元素水平居中 */
            text-align: center;  /* 确保文字居中 */
        }

        /* 顶部微标 */
        .uee-badge-mini {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            background-color: #f0fdfa;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: #59B7B8;
            margin-bottom: 16px; /* 压缩间距 */
        }

        .uee-badge-mini::before {
            content: '';
            width: 5px;
            height: 5px;
            background-color: #59B7B8;
            border-radius: 50%;
            margin-right: 8px;
        }

        /* 主标题：深色、大字、极小行距 */
        .uee-analytics-title {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1; /* 紧凑行间距 */
            color: #0B1221;
            margin: 0 0 16px 0; /* 压缩间距 */
            letter-spacing: -1.5px;
        }

        /* 描述文字：加宽且文字居中 */
        .uee-analytics-p {
            font-size: 16px;
            color: #6b7280;
            line-height: 1.5;
            max-width: 800px; /* 宽度适中，保持美感 */
            margin: 0 auto 24px auto; /* 压缩间距 */
        }

        /* 按钮：居中对齐 */
        .uee-btn-schedule {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #5FC0C1; /* 匹配图中较亮的青色 */
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            /* 软阴影效果 */
            box-shadow: 0 8px 20px rgba(95, 192, 193, 0.25);
        }

        .uee-btn-schedule:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(95, 192, 193, 0.35);
            background-color: #52b1b2;
        }

        /* 按钮内的图标间距 */
        .uee-btn-schedule svg {
            margin-right: 8px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .uee-analytics-section { padding: 30px 5%; }
            .uee-analytics-title { font-size: 28px; }
            .uee-analytics-p { font-size: 14px; }
        }
    