/*------------ faq ------------*/

.faq-list {
    margin: 0 auto;
}

.faq-list li {
    cursor: pointer;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.faq-list li:last-child {
    border-bottom: none;
}

.faq-list .title {
    text-align: center;
    font-size: 24px;
    width: 54px;
    height: 54px;
    vertical-align: middle;
    border-radius: 5px;
    display: table-cell;
}

.faq-list .title span {
    font-family: 'Roboto';
    display: block;
    text-align: center;
    line-height: 33px;
    font-size: 20px;
    margin: 0 auto;
    font-weight: 500;
}

.faq-question {
    font-size: 18px;
    line-height: 25px;
    position: relative;
    padding: 0px 55px 0px;
    width: 100%;
    font-weight: bold;
    box-sizing: border-box;
    display: table;
}

.faq-question .name {
    vertical-align: middle;
    width: calc(100% - 85px);
    display: table-cell;
    padding: 16px 0 16px 15px;
}


.faq-list li.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0px 10px 65px;
    position: relative;
}

.faq-answer .title {
    display: inline-block;
    height: 60px;
}

.faq-answer .title span {
    margin: 10px auto;
}

.faq-answer .editor {
    vertical-align: top;
    margin: 0px 0px 0px 60px;
    width: calc(100% - 105px);
    font-size: 15px;
}



/*------------ rwd ------------*/

@media screen and (max-width: 1000px) {
    .faq-question {
        font-size: 16px;
        line-height: 20px;
        padding: 0px;
    }
    .faq-answer .editor {
        margin: 0px;
        font-size: 14px;
        width: 100%;
    }
    .faq-list .title {
        width: 45px;
        height: 30px;
    }
    .faq-question .name {
        padding: 8px 0 8px 15px;
    }
}

@media screen and (max-width: 480px) {
    .faq-question {
        display: block;
    }
    .faq-list .title {
        width: 40px;
        height: 40px;
        display: block;
        font-size: 20px;
        box-sizing: border-box;
        padding: 3px 0 0 0;
    }
    .faq-list .title span {
        width: 28px;
        height: 28px;
        line-height: 28px;
        margin: 0 auto;
    }
    .faq-question .name {
        padding: 10px 0px;
        display: block;
        width: auto;
    }
    .faq-answer .editor {
        display: block;
        width: auto;
        margin: 0px 0 0 0px;
    }
    .faq-answer {
        padding: 0 0px 10px 0px;
    }
    .faq-list li {
        margin-bottom: 25px;
        padding-bottom: 0px;
    }
}