
        /* --- 极致紧凑、横向宽屏金融优势模块 --- */
        .uee-lenders-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #f9fafb; /* 极淡灰色背景增加层次感 */
            padding: 40px 5%; 
            color: #111827;
        }

        .uee-lenders-container {
            max-width: 1100px; /* 宽屏扁平化布局 */
            margin: 0 auto;
        }

        /* 顶部主标题区 */
        .uee-lenders-header {
            margin-bottom: 30px;
            text-align: left;
        }

        .uee-lenders-header h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -1.5px;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-lenders-header p {
            font-size: 16px;
            color: #64748b;
            max-width: 700px;
            line-height: 1.4;
            margin: 0;
        }

        /* 优势列表布局 */
        .uee-lenders-list {
            display: flex;
            flex-direction: column;
            gap: 15px; /* 极致紧凑的项间距 */
        }

        .uee-lender-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 16px;
            padding: 20px 24px;
            display: flex;
            align-items: center; /* 核心：内容垂直居中 */
            gap: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .uee-lender-card:hover {
            transform: translateX(8px);
            border-color: #56B8B8;
            box-shadow: 0 10px 20px rgba(0,0,0,0.04);
        }

        /* 图标盒样式 */
        .uee-lender-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            border: 1px solid #f1f5f9;
        }

        /* 文字内容区 */
        .uee-lender-text h4 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.05; /* 紧缩行距 */
            margin: 0 0 4px 0;
            color: #0B1221;
        }

        .uee-lender-text p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 各卡片颜色 */
        .icon-orange { background-color: #fff7ed; color: #f97316; }
        .icon-teal { background-color: #f0fdfa; color: #14b8a6; }
        .icon-blue { background-color: #eff6ff; color: #3b82f6; }
        .icon-green { background-color: #f0fdf4; color: #22c55e; }
        .icon-gold { background-color: #fefce8; color: #ca8a04; }

        /* 响应式处理 */
        @media (max-width: 768px) {
            .uee-lender-card { flex-direction: column; align-items: flex-start; gap: 15px; }
            .uee-lenders-header { text-align: center; }
            .uee-lenders-header p { margin: 0 auto; }
        }
    