.faq_list{
    width: 100%;
}
.faq_card{
    width: 100%;
    min-height: 46px;
    padding: 0 0 0 18px;
    border: 1px solid #BFBFBF;
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
}
.faq_card_title{
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    line-height: 46px;
}
.faq_card_desc{
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 36px;
    padding-bottom: 60px;
    display: none;
}
.faq_card_desc span{
    color: var(--primary-color);
    margin-left: 6px;
}
.faq_card_desc span:hover{
    text-decoration: underline;
}
.faq_card_btn{
    width: 150px;
    height: 46px;
    background: var(--primary-color);
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.faq_card_btn img{
    width: 10px;
    height: 20px;
    transform: rotate(90deg);
}
@media screen and (max-width: 800px) {
    .faq_card{
        padding-left: 10px;
    }
    .faq_card_title{
        font-size: 18px;
        line-height: 36px;
    }
    .faq_card_desc{
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        padding-bottom: 20px;
    }
    .faq_card_btn{
        width: 100px;
        height: 35px;
        position: relative;
        float: right;
    }
}