
        /* --- 极致紧凑与现代感图标版式 --- */
        .uee-report-grid-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; 
            color: #111827;
        }

        .uee-report-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* 收益化标题优化 */
        .uee-report-header {
            margin-bottom: 35px;
        }

        .uee-report-header h2 {
            font-size: clamp(30px, 4.5vw, 44px);
            font-weight: 800;
            line-height: 1.05;
            color: #0B1221;
            margin-bottom: 12px;
            letter-spacing: -1.8px;
        }

        .uee-report-header p {
            font-size: 17px;
            color: #64748b;
            line-height: 1.4;
            max-width: 650px;
            margin: 0 auto;
        }

        /* 三栏布局 */
        .uee-report-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .uee-report-card {
            background-color: #f8fafc;
            border-radius: 24px;
            padding: 30px 24px;
            text-align: left;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .uee-report-card:hover {
            transform: translateY(-5px);
            background-color: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        }

        /* 顶部大图标 */
        .uee-main-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 24px;
        }

        .bg-purple { background-color: #f0f2ff; color: #6366f1; }
        .bg-orange { background-color: #fff7ed; color: #f97316; }
        .bg-teal   { background-color: #f0fdfa; color: #14b8a6; }

        .uee-report-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0f172a;
        }

        /* 列表项与匹配图标 */
        .uee-feat-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .uee-feat-list li {
            display: flex;
            align-items: center;
            font-size: 14.5px;
            color: #475569;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        /* 小图标样式 */
        .uee-feat-list svg {
            width: 16px;
            height: 16px;
            margin-right: 12px;
            flex-shrink: 0;
            opacity: 0.8;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .uee-report-grid { grid-template-columns: 1fr; }
            .uee-report-header h2 { font-size: 32px; }
        }
    