
        /* --- 极致紧凑、保险精英版式 --- */
        .uee-ins-choice-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 50px 5%; /* 缩减上下空白 */
            color: #111827;
        }

        .uee-choice-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- 顶部扁平化标题区 --- */
        .uee-choice-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end; /* 底部对齐显高级 */
            gap: 40px;
            margin-bottom: 50px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 30px;
        }

        .uee-header-left { flex: 1.5; }
        .uee-header-right { flex: 1; text-align: right; }

        .uee-choice-tag {
            font-size: 12px;
            font-weight: 800;
            color: #FF8022; /* 核心橙色 */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
        }

        .uee-choice-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -1.8px;
            margin: 0;
            color: #0B1221;
        }

        .uee-header-right p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.4;
            max-width: 380px;
            margin-left: auto;
        }

        /* --- 功能网格 (2列) --- */
        .uee-choice-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px 60px;
        }

        .uee-choice-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        /* 图标盒子 */
        .uee-choice-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid #f1f5f9;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .uee-choice-item:hover .uee-choice-icon {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* 颜色区分 */
        .icon-orange { background-color: #fff7ed; color: #FF8022; }
        .icon-teal   { background-color: #f0fdfa; color: #5FC0C1; }

        .uee-choice-text h4 {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 6px 0;
            color: #0B1221;
        }

        .uee-choice-text p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.45; /* 紧凑描述 */
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-choice-header { flex-direction: column; text-align: left; align-items: flex-start; }
            .uee-header-right { text-align: left; }
            .uee-header-right p { margin-left: 0; }
            .uee-choice-grid { grid-template-columns: 1fr; gap: 30px; }
        }
    