/* FAQ列表 */
.faq-list {
    padding: 20px;
    overflow-y: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.faq-actions {
    display: flex;
    gap: 8px;
}

.faq-answer {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.faq-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
}

.faq-tag {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
}