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

.faq-list {
    max-width: 1150px;
    margin: 0 auto;
}

.faq-list li {
    cursor: pointer;
    border: 2px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.40);
    margin: 0 0 20px;
    position: relative;
}

.faq-list li:before {
    content: "";
    width: 6px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../../images/common/faq/bg.png) repeat-y;
    z-index: 10;
    display: none;
}

.faq-question {
    color: #444444;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding: 0px 55px 0px 15px;
    width: 100%;
    box-sizing: border-box;
    display: table;
}

.faq-question i {
    display: inline-block;
    color: #888888;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    margin: -10px 0 0 0;
    transform: rotate(90deg);
}

.faq-question .name {
    vertical-align: middle;
    width: calc(100% - 85px);
    display: table-cell;
    padding: 11px 0 11px 15px;
}

.faq-list li.active,
.faq-list li:hover {
    border: 3px solid #f2f1f6;
    background:#fbfbfb;
}

.faq-list li.active .faq-question,
.faq-list li:hover .faq-question {
    color: #4e5454;
}

.faq-list li.active .faq-question i,
.faq-list li:hover .faq-question i {
    transform: rotate(-90deg);
    color: #4e5454;
}

.faq-answer {
    display: none;
    position: relative;
    background: #fff;
    padding: 0 20px 35px 40px;
}

.faq-answer .title {
    font-size: 45px;
    color: #333;
    font-weight: bold;
}

.faq-answer .editor {}


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

@media screen and (max-width: 1000px) {
    .faq-question {
    font-size: 15px;
    }
    .faq-answer {
    padding: 0 20px 20px 32px;
    }
}
