
        /* --- 动态科技感部署模块版式 --- */
        .uee-deploy-tech-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
            /* 极淡的科技蓝背景 */
            background: radial-gradient(circle at 50% 50%, #f4f7ff 0%, #ffffff 100%);
            padding: 80px 5%; 
            text-align: center;
            color: #111827;
            overflow: hidden; /* 隐藏溢出的装饰圆圈 */
        }

        /* --- 背景动态浮动圆圈 --- */
        .uee-bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px); /* 核心毛玻璃模糊感 */
            z-index: 1;
            pointer-events: none; /* 穿透点击，不影响按钮 */
            opacity: 0.35;
            animation: orbFloat 25s infinite alternate ease-in-out;
        }

        .orb-1 {
            width: 450px;
            height: 450px;
            background: #5FC0C1; /* 品牌青色 */
            top: -150px;
            left: -100px;
        }

        .orb-2 {
            width: 550px;
            height: 550px;
            background: #6366F1; /* 徽标紫色 */
            bottom: -200px;
            right: -100px;
            animation-delay: -7s;
        }

        @keyframes orbFloat {
            0% { transform: translate(0, 0) scale(1) rotate(0deg); }
            50% { transform: translate(60px, 40px) scale(1.1) rotate(15deg); }
            100% { transform: translate(-30px, 80px) scale(1) rotate(-10deg); }
        }

        .uee-content-layer {
            position: relative;
            z-index: 5; /* 确保内容在动态背景之上 */
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 徽标 */
        .uee-badge-glass {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            background: rgba(238, 242, 255, 0.6);
            backdrop-filter: blur(8px); /* 徽标也带点磨砂感 */
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: #6366F1;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        /* 主标题 */
        .uee-deploy-h2 {
            font-size: clamp(34px, 5.5vw, 64px);
            font-weight: 800;
            line-height: 1.05;
            margin: 0 0 25px 0;
            letter-spacing: -2.5px;
            color: #0B1221;
        }

        .uee-cyan-highlight {
            color: #5FC0C1;
            display: block;
            margin-top: 8px;
        }

        /* 加宽文本排版：PC端2-3行 */
        .uee-deploy-desc {
            font-size: 19px;
            color: #4b5563;
            line-height: 1.55;
            max-width: 1100px; 
            margin: 0 auto 40px auto;
            letter-spacing: -0.1px;
        }

        /* 单个主按钮 */
        .uee-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #5FC0C1;
            color: #ffffff;
            padding: 18px 44px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(95, 192, 193, 0.4);
        }

        .uee-btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(95, 192, 193, 0.5);
            background-color: #52b1b2;
        }

        .uee-btn-primary svg {
            margin-right: 12px;
            transition: transform 0.3s ease;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .uee-deploy-tech-section { padding: 60px 5%; }
            .uee-bg-orb { width: 250px; height: 250px; filter: blur(50px); }
            .uee-deploy-h2 { font-size: 36px; letter-spacing: -1.5px; }
            .uee-deploy-desc { font-size: 16px; width: 100%; }
            .uee-btn-primary { width: 100%; max-width: 300px; }
        }
    