
        /* --- FAQ 模块：部署专版宽屏紧凑版 --- */
        .uee-deploy-faq-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 缩减上下边距 */
            color: #111827;
        }

        .uee-faq-container {
            max-width: 1100px; /* 加宽文本框 */
            margin: 0 auto;
            text-align: center;
        }

        .uee-faq-container h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1.2px;
            color: #0B1221;
        }

        /* --- 手风琴列表布局 --- */
        .uee-faq-list {
            text-align: left;
        }

        .uee-faq-item {
            margin-bottom: 12px; /* 极致紧凑间距 */
            border: 1px solid #f1f5f9;
            border-radius: 12px;
            background-color: #ffffff;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .uee-faq-item[open] {
            border-color: #e2e8f0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.04);
        }

        .uee-faq-item:hover {
            border-color: #56B8B8;
        }

        /* 问题部分：指定颜色 #56B8B8 */
        .uee-faq-summary {
            list-style: none;
            padding: 18px 24px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
            line-height: 1.3;
            color: #56B8B8; 
        }

        /* 隐藏原生箭头 */
        .uee-faq-summary::-webkit-details-marker {
            display: none;
        }

        /* 自定义右侧 Chevron 图标 */
        .uee-faq-summary::after {
            content: ' ';
            width: 10px;
            height: 10px;
            border-right: 2px solid #94a3b8;
            border-bottom: 2px solid #94a3b8;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
            margin-left: 20px;
            flex-shrink: 0;
        }

        .uee-faq-item[open] .uee-faq-summary::after {
            transform: rotate(-135deg);
            margin-top: 5px;
        }

        /* 答案内容样式 */
        .uee-faq-content {
            padding: 0 24px 18px 24px;
            font-size: 15px;
            color: #4b5563;
            line-height: 1.5;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .uee-deploy-faq-section { padding: 30px 5%; }
            .uee-faq-summary { font-size: 15px; padding: 16px; }
            .uee-faq-content { font-size: 14px; }
        }
    