
        /* --- 极致紧凑、双色调医疗平台功能网格 --- */
        .uee-hc-platform-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 极致缩减上下空白 */
            color: #111827;
        }

        .uee-hc-container {
            max-width: 1250px;
            margin: 0 auto;
        }

        /* 顶部标题区 */
        .uee-hc-header {
            margin-bottom: 40px;
            text-align: left;
        }

        .uee-hc-header h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -1.5px;
            margin: 0 0 15px 0;
            color: #0B1221;
        }

        .uee-hc-header p {
            font-size: 17px;
            color: #64748b;
            line-height: 1.4;
            max-width: 850px; /* 宽屏舒展布局 */
            margin: 0;
        }

        /* 3列网格布局 */
        .uee-hc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .uee-hc-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 12px;
            padding: 28px;
            transition: all 0.3s ease;
            text-align: left;
        }

        .uee-hc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.04);
            border-color: #e2e8f0;
        }

        /* 图标盒样式 */
        .uee-hc-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #ffffff;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* 颜色类名 */
        .bg-teal   { background-color: #56B8B8; } /* 品牌青色 */
        .bg-orange { background-color: #FF780F; } /* 您的定制橙色 */

        .uee-hc-card h4 {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-hc-card p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.45; /* 紧凑描述行距 */
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-hc-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .uee-hc-grid { grid-template-columns: 1fr; }
            .uee-hc-platform-section { padding: 30px 5%; }
            .uee-hc-header h2 { font-size: 26px; }
        }
    