        /* 重置样式 - 使用独特前缀避免冲突 */
        .sw-faq-reset {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .sw-faq-body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: #ffffff; /* 改为白色 */
            background: transparent;
            padding: 30px 0;
            margin: 30px 0;
        }
        
        /* 主容器 */
        .sw-faq-container {
            max-width: 980px;
            width: 100%;
            margin: 0 auto;
            padding: 10px 0px;
        }
        
        /* 标题区域 */
        .sw-faq-title-area {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .sw-faq-title {
            font-size: 24px;
            font-weight: 700;
            font-weight: bold; /* 双重保障 */
            color: #ffbe92;
            margin: 0;
            padding: 0; /* 添加padding重置 */
            letter-spacing: 1px;
            line-height: 1.2;
            text-align: center;
            display: block; /* 确保块级显示 */
            width: 100%; /* 确保宽度 */
            box-sizing: border-box; /* 盒模型统一 */
            position: relative;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .sw-faq-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);

            border-radius: 0px;
        }
        
        .sw-faq-subtitle {
            color: #ffffff; /* 改为白色 */
            font-size: 14px;
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.5;
        }
        
        /* 两列布局 */
        .sw-faq-columns {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .sw-faq-column {
            flex: 1;
            min-width: 300px;
        }
        
        /* 手风琴容器 */
        .sw-faq-accordion {
            border-radius: 0px;
            overflow: hidden;
            background: transparent;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3); /* 边框改为白色 */
            position: relative;
        }
        
        .sw-faq-accordion:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00c6ff, #0072ff, #7b00ff);
            z-index: 1;
        }
        
        /* FAQ项目 */
        .sw-faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* 边框改为白色 */
            position: relative;
            overflow: hidden;
        }
        
        .sw-faq-item:last-child {
            border-bottom: none;
        }
        
        /* 问题标题 */
        .sw-faq-question {
            padding: 6px 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            transition: all 0.3s ease;
            position: relative;
            min-height: 30px;
        }
        
        .sw-faq-question:hover {
            background: rgba(255, 255, 255, 0.1); /* 悬停效果改为白色 */
        }
        
        .sw-faq-question h3 {
            font-size: 12px;
            font-weight: 600;
            color: #ffffff; /* 改为白色 */
            margin: 0;
            padding-right: 25px;
            position: relative;
            z-index: 2;
            line-height: 1.4;
        }
        
        /* 图标 */
        .sw-faq-icon {
            width: 18px;
            height: 18px;
            position: relative;
            transition: transform 0.4s ease;
            flex-shrink: 0;
            z-index: 2;
        }
        
        .sw-faq-icon span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 1.5px;
            background: #ffffff; /* 改为白色 */
            transition: all 0.4s ease;
            border-radius: 0px;
        }
        
        .sw-faq-icon span:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 12px;
            height: 1.5px;
            background: #ffffff; /* 改为白色 */
            transform: rotate(90deg);
            transition: all 0.4s ease;
            border-radius: 0px;
        }
        
        .sw-faq-item.active .sw-faq-icon {
            transform: rotate(45deg);
        }
        
        /* 答案区域 */
        .sw-faq-answer {
            padding: 0 18px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            background: transparent;
            position: relative;
        }
        
        .sw-faq-item.active .sw-faq-answer {
            padding: 0 18px 15px;
            max-height: 2000px;
        }
        
        .sw-faq-content {
            padding-top: 15px;
        }
        
        .sw-faq-content p {
            margin-bottom: 10px;
            color: #ffffff; /* 改为白色 */
            line-height: 1.5;
            font-size: 12px;
        }
        
        .sw-faq-content ul, .sw-faq-content ol {
            margin-bottom: 10px;
            padding-left: 18px;
        }
        
        .sw-faq-content li {
            margin-bottom: 6px;
            color: #ffffff; /* 改为白色 */
            line-height: 1.5;
            font-size: 12px;
        }
        
        .sw-faq-content table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 10px;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            font-size: 11px;
        }
        
        .sw-faq-content th, .sw-faq-content td {
            padding: 8px 10px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.3); /* 边框改为白色 */
        }
        
        .sw-faq-content th {
            background: rgba(255, 255, 255, 0.2); /* 背景改为白色 */
            font-weight: 600;
            color: #ffffff; /* 改为白色 */
        }
        
        .sw-faq-content td {
            background: rgba(255, 255, 255, 0.1); /* 背景改为白色 */
            color: #ffffff; /* 改为白色 */
        }
        
        .sw-faq-content strong {
            color: #00c6ff; /* 保持蓝色强调色 */
            font-weight: 600;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .sw-faq-container {
                padding: 20px 15px;
            }
            
            .sw-faq-title {
                font-size: 20px;
            }
            
            .sw-faq-subtitle {
                font-size: 12px;
            }
            
            .sw-faq-columns {
                flex-direction: column;
                gap: 15px;
            }
            
            .sw-faq-question {
                padding: 10px 15px;
            }
            
            .sw-faq-question h3 {
                font-size: 11px;
            }
            
            .sw-faq-answer {
                padding: 0 15px;
            }
            
            .sw-faq-item.active .sw-faq-answer {
                padding: 0 15px 12px;
            }
            
            .sw-faq-content table {
                font-size: 10px;
            }
            
            .sw-faq-content th, .sw-faq-content td {
                padding: 6px 8px;
            }
        }