
        /* --- FAQ 模块：宽屏紧凑版 --- */
        .uee-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: 1000px; /* 加宽文字框 */
            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: 16px;
            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.05);
        }

        .uee-faq-item:hover {
            border-color: #59B7B8;
        }

        /* 标题部分 */
        .uee-faq-summary {
            list-style: none;
            padding: 20px 24px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
            line-height: 1.3;
        }

        /* 隐藏原生箭头并添加自定义 Chevron */
        .uee-faq-summary::-webkit-details-marker {
            display: none;
        }

        .uee-faq-summary::after {
            content: ' ';
            width: 12px;
            height: 12px;
            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: 6px;
        }

        /* 内容文本部分 */
        .uee-faq-content {
            padding: 0 24px 20px 24px;
            font-size: 15px;
            color: #4b5563;
            line-height: 1.5; /* 紧凑但易读 */
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .uee-faq-section { padding: 30px 5%; }
            .uee-faq-container h2 { font-size: 26px; }
            .uee-faq-summary { font-size: 15px; padding: 16px; }
        }
    