
        /* --- 极致紧凑、宽屏 3 行文本版式 --- */
        .uee-routing-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            /* 紧凑上下间距 */
            padding: 40px 5%; 
            text-align: center;
            color: #111827;
        }

        .uee-routing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 顶部淡紫色微标 */
        .uee-routing-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            background-color: #EEF2FF;
            color: #6366F1;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* 主标题：双色设计，紧缩行距 */
        .uee-routing-title {
            font-size: clamp(32px, 5vw, 60px);
            font-weight: 800;
            line-height: 1.05;
            margin: 0 0 20px 0;
            letter-spacing: -2px;
            color: #0B1221;
        }

        .uee-routing-title span {
            color: #5FC0C1; /* 匹配图中青色 */
            display: block; /* 强制换行以匹配图中排版 */
            margin-top: 5px;
        }

        /* 描述文字：大幅加宽，确保 3 行内 */
        .uee-routing-p {
            font-size: 19px;
            color: #4b5563;
            line-height: 1.5;
            /* 设定极宽的显示区域，确保长文本在 PC 端不超 3 行 */
            max-width: 1100px; 
            margin: 0 auto 35px auto;
            letter-spacing: -0.1px;
        }

        /* 按钮：匹配单按钮设计 */
        .uee-routing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #5FC0C1;
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(95, 192, 193, 0.3);
        }

        .uee-routing-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(95, 192, 193, 0.4);
            background-color: #52b1b2;
        }

        /* 按钮内的箭头 */
        .uee-routing-btn::after {
            content: '→';
            margin-left: 10px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .uee-routing-btn:hover::after {
            transform: translateX(5px);
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .uee-routing-p { max-width: 95%; }
        }

        @media (max-width: 768px) {
            .uee-routing-section { padding: 30px 5%; }
            .uee-routing-title { font-size: 28px; letter-spacing: -1px; }
            .uee-routing-p { font-size: 16px; line-height: 1.4; }
            .uee-routing-btn { width: 100%; max-width: 280px; }
        }
    