
        /* --- 全局规范：Apple 极简 FAQ 版式 --- */
        .uee-faq-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #ffffff;
            padding: 100px 0;
            color: #1d1d1f;
            line-height: 1.5;
        }

        /* 1400px 内容宽度容器 */
        .uee-faq-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 90%;
            text-align: center;
        }

        /* 顶部标题：极致紧缩 */
        .uee-faq-container h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 60px;
            color: #000000;
        }

        /* --- 手风琴列表核心样式 --- */
        .uee-faq-list {
            max-width: 1100px; /* 问题列表收窄一点更具阅读感 */
            margin: 0 auto;
            text-align: left;
        }

        .uee-faq-item {
            border-bottom: 1px solid #e5e5e7; /* 极细分割线 */
            padding: 10px 0;
        }

        .uee-faq-item summary {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            outline: none;
            transition: color 0.3s ease;
        }

        .uee-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .uee-faq-item summary:hover {
            color: #56B8B8; /* 悬停时显示品牌色 */
        }

        /* 自定义右侧 Chevron 箭头 */
        .uee-faq-icon {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
            color: #86868b;
        }

        .uee-faq-item[open] .uee-faq-icon {
            transform: rotate(180deg);
        }

        /* 答案文字内容 */
        .uee-faq-content {
            padding-bottom: 30px;
            font-size: 17px;
            color: #424245;
            line-height: 1.6;
            animation: fadeIn 0.4s ease;
        }

        /* 列表排版优化 */
        .uee-faq-content ul {
            margin: 15px 0 0 20px;
            padding: 0;
        }
        .uee-faq-content li {
            margin-bottom: 8px;
            list-style-type: disc;
            color: #56B8B8; /* 列表点用品牌色 */
        }
        .uee-faq-content li span {
            color: #424245;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .uee-faq-container h2 { font-size: 32px; }
            .uee-faq-item summary { font-size: 18px; padding: 20px 0; }
            .uee-faq-content { font-size: 15px; }
            .uee-faq-section { padding: 60px 0; }
        }
    