/* 问答页 */
.question-body{
    max-width: 1400px;
    margin: 0 auto;
}
.question-body .top-title{
    font-size: 20px;
    padding: 80px 0 50px 0;
    text-align: center;
    color:#333;
}
.question-body .ask-list li{
    margin-top: 10px;
}
.question-body .ask-list .tip-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F3F3;
    border-radius: 5px;
    line-height: 38px;
    height: 38px;
    cursor: pointer;
}
.question-body .ask-list .lt-txt{
    font-size: 14px;
    color:#333;
    display: flex;
    align-items: center;
    line-height: normal;
}
.question-body .ask-list .question-icon{
    background-color: #E3CF90;
    color:#fff;
    border-radius: 5px;
    font-size: 24px;
    font-weight: bold;
    width: 34px;
    height: 34px;
    text-align: center;
    display: block;
    margin-right: 10px;
}
.question-body .ask-list .tip-title .btn{
    font-size: 24px;
    color:#F7C684;
    display: block;
    cursor: pointer;
    padding:0 14px;
}
.question-body .all-content{
    padding:10px 0 20px 0;
    display: none;
}
.question-body .all-content.show{
    display: block;
}
.question-body .all-content p{
    font-size: 12px;
    color:#777;
    padding:14px 44px 0 44px;
}
/* 手机版 */
@media (max-width: 768px) {
    .question-body{
        width: 100%;
        padding: 0 3vw;
    }
    .question-body .top-title{
        padding: 6vw 0 4vw 0;
        font-weight: bold;
    }
    .question-body .all-content p{
        padding: 1vw 8vw 0 9vw;
        font-size: 13px;
    }
    .question-body .ask-list .question-icon{
        width: 8vw;
        height: 8vw;
        margin-right: 2vw;
    }
}