/* FAQ 样式 */
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
}

.faq-list {
    border-top: 2px solid #7D2F8D;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
    background: #fff;
    transition: all 0.2s;
}

.faq-item:hover {
    background: #faf8fb;
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    transition: all 0.2s;
}

.faq-question.active {
    background: #f5f0fa;
}

.faq-q-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #7D2F8D;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 14px;
}

.faq-q-text {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    font-size: 22px;
    color: #999;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-question.active .faq-toggle {
    color: #7D2F8D;
}

.faq-answer {
    display: none;
    padding: 5px 25px 20px 67px;
    background: #faf8fb;
    border-top: 1px solid #f0e8f5;
}

.faq-a-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #5a9ad7;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 14px;
    vertical-align: top;
}

.faq-a-content {
    display: inline-block;
    width: calc(100% - 42px);
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-top: 3px;
}

@media (max-width: 639px) {
    .faq-question {
        padding: 14px 15px;
    }
    .faq-q-text {
        font-size: 14px;
    }
    .faq-answer {
        padding: 5px 15px 16px 53px;
    }
    .faq-a-content {
        font-size: 14px;
        width: calc(100% - 42px);
    }
}
