
        /* --- 动态科技背景、55/45 宽屏医疗模块 --- */
        .uee-health-section {
            font-family: 'Inter', sans-serif;
            position: relative;
            /* 1. 科技感渐变背景 */
            background: radial-gradient(circle at 50% 50%, #f4f7ff 0%, #ffffff 100%);
            padding: 80px 5%; 
            color: #111827;
            overflow: hidden; /* 隐藏浮动圆圈 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- 2. 背景浮动圆圈动画 --- */
        .uee-bg-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px); /* 核心毛玻璃效果 */
            z-index: 1;
            pointer-events: none;
            opacity: 0.3;
            animation: orbFloat 20s infinite alternate ease-in-out;
        }
        .glow-teal { width: 400px; height: 400px; background: #56B8B8; top: -100px; left: -50px; }
        .glow-purple { width: 500px; height: 500px; background: #f0e9ff; bottom: -150px; right: -50px; animation-delay: -5s; }

        @keyframes orbFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 100px) scale(1.1); }
        }

        .uee-health-container {
            position: relative;
            z-index: 5;
            max-width: 1300px;
            width: 100%;
            display: flex;
            align-items: center; 
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 3. 左侧：加宽文字区 (55% 宽度) --- */
        .uee-health-left {
            flex: 55;
            min-width: 420px;
        }

        .uee-health-left h1 {
            font-size: clamp(34px, 5vw, 60px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2.5px;
            margin: 0 0 25px 0;
            color: #0B1221;
        }

        .uee-health-left h1 span {
            color: #56B8B8; /* 核心医疗青色 */
            font-style: italic;
        }

        .uee-health-desc {
            font-size: 19px;
            color: #4B5563;
            line-height: 1.55;
            /* 核心修改：文字显示宽度大幅增加 */
            max-width: 1000px; 
            margin-bottom: 40px;
        }

        /* 单一主按钮 */
        .uee-btn-health {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 核心橙色 */
            color: #ffffff;
            padding: 18px 44px;
            border-radius: 10px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(255, 128, 34, 0.35);
        }

        .uee-btn-health:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.45);
        }

        /* --- 4. 右侧：高保真卡片 (45% 宽度) --- */
        .uee-health-right {
            flex: 45;
            min-width: 400px;
            display: flex;
            justify-content: flex-end;
        }

        .uee-health-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            position: relative;
            max-width: 500px;
            /* 模拟图中微弱的彩色渐变边框效果 */
            background-clip: padding-box;
        }

        .uee-tag-row {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #FF8022;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .uee-tag-row svg { width: 16px; height: 16px; }

        .uee-health-card p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .uee-health-divider {
            height: 1px;
            background-color: #f1f5f9;
            margin-bottom: 25px;
            border: none;
        }

        /* 统计数字布局 */
        .uee-health-stats {
            display: flex;
            gap: 40px;
        }

        .uee-stat-box {
            display: flex;
            flex-direction: column;
        }

        .uee-stat-val {
            font-size: 28px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 6px;
        }

        .uee-stat-lab {
            font-size: 10px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .c-teal { color: #56B8B8; }
        .c-orange { color: #FF8022; }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-health-container { flex-direction: column; text-align: center; }
            .uee-health-left, .uee-health-right { min-width: 100%; }
            .uee-health-desc { margin: 0 auto 40px auto; }
            .uee-health-right { justify-content: center; }
            .uee-health-card { text-align: left; }
        }
    