.qa-container {
    width: 100%;
    background: #fff;
    border-radius: .28rem;
    box-shadow: 0 .18rem .35rem rgba(0, 20, 40, 0.05);
    padding: .22rem .2rem;
    box-sizing: border-box;
    margin: 0 auto;
}

.subhead {
    color: #4a607a;
    margin-bottom: 2.5rem;
    margin-top: 0.3rem;
    font-size: 1.05rem;
    padding-left: 1.8rem;
}

/* 问答列表——无折叠，全部可见 */
.qa-list {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

/* 单个问答项 */
.qa-item {
    border-bottom: 1px solid #dde5ef;
    padding-bottom: .15rem;
}

.qa-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* 问题样式 */
.question {
    display: flex;
    align-items: flex-start;
    gap: 0.08rem;
    margin-bottom: 0.08rem;
}

.q-mark {
    background: #E24535;
    color: white;
    font-weight: 600;
    font-size: .18rem;
    width: .32rem;
    height: .32rem;
    line-height: .32rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* margin-top: 4px; */
}

.question-text {
    font-size: .2rem;
    font-weight: 540;
    color: #0a263f;
    line-height: 1.4;
}

/* 答案样式 */
.answer {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    /* padding-left: 0.2rem; */
}

.a-mark {
    background: #ffe9e6;
    color: #E24535;
    font-weight: 600;
    font-size: .18rem;
    width: .28rem;
    height: .28rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .02rem;
}

.answer-content {
    flex: 1;
    color: #2a3f5a;
    font-size: .16rem;
    line-height: 1.6;
    background: #f8fafd;
    padding: .1rem .15rem;
    border-radius: .2rem;
    border: 1px solid #e2ebf5;
}

.answer-content span{
    font-size: 12px;
}

.answer-content p{
    margin-bottom: .05rem;
}

.answer-content p:last-child {
    margin-bottom: 0;
}
.answer-content p a{
    transition: all .5s ease;
}
.answer-content p a:hover{
    color:red;
}

.answer-content .huifuren {
    padding-bottom:.05rem;
    margin-bottom: .05rem !important;
    font-size: .13rem;
    color: #999;
    border-bottom: 1px solid #e5e5e5;
}

@media screen and (max-width: 750px) {
    .qa-container{
        width: 100%;
    }
    .q-mark{
        width: .56rem;
        height: .56rem;
        font-size: .36rem;
    }
    .question-text{
        font-size: .36rem;
    }
    .a-mark{
        width: .5rem;
        height: .5rem;
        font-size: .36rem;
    }
    .answer-content{
        font-size: .3rem;
    }
    
    .answer-content .huifuren{
        padding-bottom: 0.1rem;
        margin-bottom: 0.1rem !important;
        font-size: .26rem;
    }
}
