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

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

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

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

.faq-question {
    color: #444444;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding: 0px 55px 0px 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    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;
    -webkit-transform: rotate(90deg);
    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: 1px solid #00a3f0;
    background: #fff url(../../images/common/faq/bg.png) repeat-y left top;
}

.faq-list li.active .faq-question,
.faq-list li:hover .faq-question {
    color: #005bac;
}

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

.faq-answer {
    display: none;
    position: relative;
    background: #fff;
    padding: 0 20px 35px 40px;
}
.faq-answer .title {
    font-size: 45px;
    color: #000000;
    font-weight: bold;
}
.faq-list.list-v li a {
    display: inline;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
    .faq-question {
        font-size: 15px;
    }
    .faq-answer {
        padding: 0 20px 20px 32px;
    }
}