
        /* --- 极致紧凑、55/45 宽屏房地产模块 --- */
        .uee-re-hero-section {
            font-family: 'Inter', sans-serif;
            background-color: #fcfcfc; /* 极淡的灰白背景 */
            padding: 40px 5%; /* 极致缩减上下空白 */
            color: #111827;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .uee-re-container {
            max-width: 1300px;
            width: 100%;
            display: flex;
            align-items: center; /* 左右垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧内容区 (55% 宽度) --- */
        .uee-re-left {
            flex: 55;
            min-width: 400px;
        }

        .uee-re-left h1 {
            font-size: clamp(32px, 5vw, 60px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2.2px;
            margin: 0 0 20px 0;
            color: #0B1221;
        }

        /* 青色斜体关键词 */
        .uee-re-left h1 span {
            color: #56B8B8;
            font-style: italic;
        }

        .uee-re-desc {
            font-size: 19px;
            color: #4B5563;
            line-height: 1.45; /* 紧凑描述 */
            margin-bottom: 35px;
            max-width: 600px;
        }

        /* 橙色单按钮样式 */
        .uee-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022;
            color: #ffffff;
            padding: 16px 40px;
            border-radius: 8px;
            font-size: 18px;
            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.3);
        }

        .uee-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.4);
        }

        /* --- 右侧悬浮卡片 (45% 宽度) --- */
        .uee-re-right {
            flex: 45;
            min-width: 380px;
        }

        .uee-re-info-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 24px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            position: relative;
        }

        /* 卡片顶部标签 */
        .uee-re-card-tag {
            font-size: 12px;
            font-weight: 800;
            color: #FF8022;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .uee-re-card-tag::before {
            content: '↗';
            font-size: 14px;
        }

        .uee-re-info-card p {
            font-size: 15px;
            color: #6B7280;
            line-height: 1.45;
            margin-bottom: 25px;
        }

        /* 分割线 */
        .uee-re-divider {
            height: 1px;
            background-color: #f1f5f9;
            margin-bottom: 25px;
            border: none;
        }

        /* 卡片底部统计网格 */
        .uee-re-stats-grid {
            display: flex;
            gap: 40px;
        }

        .uee-stat-item {
            text-align: left;
        }

        .uee-stat-val {
            font-size: 26px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .uee-stat-label {
            font-size: 10px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .val-teal { color: #56B8B8; }
        .val-orange { color: #FF8022; }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-re-container { flex-direction: column; text-align: center; }
            .uee-re-left, .uee-re-right { min-width: 100%; }
            .uee-re-desc { margin-left: auto; margin-right: auto; }
            .uee-re-info-card { text-align: left; }
        }
        
        @media (max-width: 640px) {
            .uee-re-hero-section { padding: 30px 5%; }
            .uee-re-left h1 { font-size: 30px; }
            .uee-re-info-card { padding: 25px; }
            .uee-re-stats-grid { gap: 20px; }
        }
    