
        /* --- 极致紧凑、债务催收方案版式 --- */
        .uee-debt-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: #111827;
            line-height: 1.5;
            background-color: #ffffff;
        }

        /* --- 1. 顶部 Hero 区域 (浅紫色背景) --- */
        .uee-debt-hero {
            background-color: #f0e9ff; /* 浅薰衣草紫 */
            padding: 60px 5%;
        }

        .uee-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .uee-hero-text {
            flex: 1.2;
        }

        .uee-hero-text h1 {
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            margin: 0 0 20px 0;
            color: #1F2937;
        }

        .uee-hero-text h1 span {
            color: #59B7B8; /* 核心青色 */
        }

        .uee-hero-text p {
            font-size: 17px;
            color: #4B5563;
            max-width: 580px;
            line-height: 1.45;
            margin: 0;
        }

        /* 顶部右侧悬浮卡片 */
        .uee-hero-card {
            flex: 1;
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            max-width: 450px;
        }

        .uee-card-tag {
            font-size: 12px;
            font-weight: 800;
            color: #FF7D2A; /* 核心橙色 */
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .uee-hero-card p {
            font-size: 14px;
            color: #6B7280;
            line-height: 1.4;
            margin: 0;
        }

        /* --- 2. 底部挑战分析区域 (白色背景) --- */
        .uee-debt-challenge {
            padding: 80px 5% 60px 5%;
        }

        .uee-challenge-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            gap: 60px;
        }

        .uee-challenge-left {
            flex: 1.2;
        }

        .uee-challenge-left h2 {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 25px 0;
            letter-spacing: -1px;
        }

        .uee-challenge-left p {
            font-size: 16px;
            color: #4B5563;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* 右侧列表卡片 */
        .uee-challenge-right {
            flex: 1;
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
        }

        .uee-prob-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .uee-prob-item:last-child { margin-bottom: 0; }

        .uee-prob-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid #f1f5f9;
            font-size: 20px;
        }

        .uee-prob-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 5px 0;
            line-height: 1.1;
        }

        .uee-prob-text p {
            font-size: 14px;
            color: #6B7280;
            margin: 0;
            line-height: 1.35;
        }

        /* 颜色应用 */
        .icon-orange { background-color: #fff7ed; color: #f97316; border-color: #ffedd5; }
        .icon-cyan { background-color: #f0fdfa; color: #56B8B8; border-color: #ccfbf1; }
        .icon-slate { background-color: #f8fafc; color: #64748b; border-color: #f1f5f9; }

        /* 响应式 */
        @media (max-width: 992px) {
            .uee-hero-container, .uee-challenge-container {
                flex-direction: column;
                text-align: center;
            }
            .uee-hero-text p, .uee-challenge-left p { margin-left: auto; margin-right: auto; }
            .uee-prob-item { text-align: left; }
            .uee-hero-card { margin: 0 auto; }
        }
    