/*------------ faq ------------*/

.faq-list li {
    margin: 0 0 45px;
}

.faq-list .title {
    vertical-align: top;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    width: 38px;
    line-height: 48px;
    text-align: center;
    display: inline-block;
    background: #FFCF02;
}

.faq-question {
    box-sizing: border-box;
    width: 100%;
    cursor: pointer;
    background: #ffffff;
    position: relative;
    color: #000000;
    font-size: 16px;
    transition: all .2s;
}

.faq-question i {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: rgb(0, 141, 223) transparent transparent transparent;
    top: 50%;
    right: 15px;
    margin: -3px 0 0 0;
}

.faq-question .name {
    display: inline-block;
    vertical-align: top;
    line-height: 25px;
    width: calc(100% - 75px);
    position: relative;
    padding: 0 0 0 6px;
    box-sizing: border-box;
}

.faq-list li.active .faq-question,
.faq-list li:hover .faq-question {
    transition: all .2s;
    color: #008bdd;
}

.faq-list li.active .faq-question i {
    transform: rotate(180deg);
    border-color: #008bdd transparent transparent transparent;
}

.faq-answer {
    display: none;
    border: 3px solid #adadad;
    margin: 15px 0 0 0;
    position: relative;
}

.faq-answer:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin: 0 0 3px -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5.5px 8px 5.5px;
    border-color: transparent transparent #adadad transparent;
    display: none;
}

.faq-answer .title {
    background: #adadad;
    text-align: center;
    width: 100%;
    height: 35px;
    color: #ffffff;
    line-height: 35px;
}

.faq-answer .editor {
    color: #000000;
    padding: 15px 25px;
}


/*------------ rwd ------------*/

@media screen and (max-width: 480px) {
    .faq-question .name {
        display: block;
        width: auto;
        padding: 0;
        margin: 0 15px 20px;
    }

    .faq-question .name:before {
        display: none;
    }

    .faq-list .title {
        display: block;
        width: auto;
        text-align: center;
    }

    .faq-question i {
        top: 100%;
        right: 50%;
        margin: -12px -4px 0 0;
    }

    .faq-answer .editor {
        padding: 10px;
    }
}