
        /* --- 样式还原 --- */
        .uee-reporting-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 80px 5%;
            text-align: center;
            color: #111827;
        }

        .uee-reporting-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 顶部微标 */
        .uee-mini-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background-color: #f0fdfa; /* 极浅青色 */
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: #59B7B8;
            margin-bottom: 25px;
        }

        .uee-mini-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: #59B7B8;
            border-radius: 50%;
            margin-right: 8px;
        }

        /* 主标题：紧凑行距 */
        .uee-reporting-headline {
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 25px;
            letter-spacing: -2px;
            color: #0B1221;
        }

        /* 关键文字颜色 */
        .uee-highlight-text {
            color: #59B7B8; /* 也可以使用渐变: background: linear-gradient(to right, #59B7B8, #2DD4BF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; */
        }

        /* 描述文字：加宽处理 */
        .uee-reporting-description {
            font-size: 18px;
            color: #6b7280;
            line-height: 1.5;
            max-width: 850px; /* 增加宽度，使排版更扁平舒展 */
            margin: 0 auto 40px auto;
        }

        /* 按钮样式：单按钮 */
        .uee-cta-btn {
            display: inline-flex;
            align-items: center;
            background-color: #59B7B8;
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(89, 183, 184, 0.3);
        }

        .uee-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(89, 183, 184, 0.4);
            background-color: #4aa2a3;
        }

        /* 按钮内的图标 */
        .uee-cta-btn svg {
            margin-right: 10px;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .uee-reporting-headline { font-size: 32px; }
            .uee-reporting-description { font-size: 16px; width: 100%; }
        }
    