
        /* --- 极致紧凑、教育成果高保真版式 --- */
        .uee-impact-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 极致缩减上下间距 */
            color: #111827;
        }

        .uee-impact-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 核心：内容垂直居中 */
            justify-content: space-between;
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧标题区 (40% 宽度) --- */
        .uee-impact-left {
            flex: 1;
            min-width: 350px;
            text-align: left;
        }

        .uee-impact-tag {
            font-size: 13px;
            font-weight: 800;
            color: #59B7B8; /* 核心青色 */
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .uee-impact-left h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2px;
            margin: 0 0 20px 0;
            color: #0B1221;
        }

        .uee-impact-left p {
            font-size: 17px;
            color: #4B5563;
            line-height: 1.45;
            max-width: 480px;
            margin-bottom: 35px;
        }

        /* 橙色主按钮 */
        .uee-btn-success {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 核心橙色 */
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(255, 128, 34, 0.25);
        }

        .uee-btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.4);
            background-color: #f77619;
        }

        /* --- 右侧数据网格 (60% 宽度) --- */
        .uee-impact-right {
            flex: 1.5;
            min-width: 450px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px 40px; /* 紧凑间距 */
        }

        .uee-stat-card {
            text-align: left;
        }

        /* 数据大字：使用极浅青色 */
        .uee-stat-value {
            font-size: 40px;
            font-weight: 800;
            color: rgba(89, 183, 184, 0.25); /* 还原图中那种透明质感的浅青色 */
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .uee-stat-card h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 8px 0;
            color: #0B1221;
        }

        .uee-stat-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-impact-container { flex-direction: column; text-align: center; }
            .uee-impact-left, .uee-impact-right { min-width: 100%; }
            .uee-impact-left p { margin-left: auto; margin-right: auto; }
            .uee-stat-card { text-align: center; }
        }

        @media (max-width: 640px) {
            .uee-impact-right { grid-template-columns: 1fr; gap: 30px; }
            .uee-impact-section { padding: 30px 5%; }
            .uee-stat-value { font-size: 34px; }
        }
    