.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.083vw 3.125vw;
    margin: 4.167vw auto 6.25vw;
    width: 100%;
    justify-content: space-between;
}

.faq-item {
    width: calc((100% - 3.125vw) / 2);
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}

.faq-question,
.faq-answer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.042vw;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'bold', sans-serif;
    font-size: 0.938vw;
    flex-shrink: 0;
    margin-right: 0.625vw;
    user-select: none;
}

/* 蓝色正方形Q */
.question-icon {
    width: 1.458vw;
    height: 1.458vw;
    background-color: #008ee7;
    color: #fff;
}

/* 透明黑框A */
.answer-icon {
    width: 1.458vw;
    height: 1.458vw;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #989898;
    background-color: transparent;
}

/* 问题标题 */
.faq-question h3 {
    font-size: 1.667vw;
    font-family: 'semibold', sans-serif;
    color: #4d4d4d;
    margin: 0;
    line-height: 36px;
}

/* 回答内容 */
.faq-answer p {
    font-size: 0.729vw;
    color: #555;
    margin: 0;
    line-height: 24px;
}
