.faq-list-container .item{
    position: relative;
}
.faq-list-container .item .tit-wrap{
    border-bottom: 1px solid #E8E8E8;
    padding: 19px 20px;
    position: relative;
}
.faq-list-container .item .tit-wrap .tit{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
}
.faq-list-container .item .tit-wrap .status{
    width: 11px;
    position: absolute;
    right: 20px;
    top:20px;
}
.faq-list-container .item .anwser-wrap{
    padding: 15px 20px;
    background: #F8F8FD;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    border-bottom: 1px solid #E8E8E8;
}

.faq-list-container .item .answer-open{
    transition: all .5s ease-in-out;
    max-height: none;
}
.faq-list-container .item .answer-close{
    transition: all .5s ease-in-out;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
}
