@charset "utf-8";
/*------------ faq ------------*/
.faq-list{
    padding: 0;
}
.faq-item{
    position: relative;
    box-sizing: border-box;
    margin: 0 0 20px;
    list-style-type: none;  
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}
.ic-angle-down{
    font-family: 'icon-font' !important;
    display: inline-block;
    color: #333;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    margin: -10px 0 0 0;
    transition: all .3s ease;
}
.ic-angle-down:before{
    content: "\f106";
}
.faq-item:hover .ic-angle-down,
.faq-item.active .ic-angle-down {
    transform: rotate(-180deg);
    color: #000;
}
.faq-question {
    position: relative;
    min-height: 30px;
    padding: 10px 40px 10px 20px;
    color: #000;
    font-weight: normal;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 60;
}
.faq-question h3 {
    margin: 0;
    font-weight: normal;
    letter-spacing: 1px;
}
.faq-item:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #000;
    z-index: 61;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question{
    color: #333;
    color: #333;
    background: #f0f0f0;
    border-radius: 0 10px 0 0;
}
.faq-answer{
    padding: 5px 20px 25px 35px;
    background: #fff;
    border-radius: 0 0 10px 0;
    display: none;
}
.faq-answer:before{
    font-family: 'icon-font2' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    content: "\e1030";
    font-size: 45px;
    color: #32302D;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ /faq ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list .item:before{
        margin:0 8px;
    }
    .faq-answer:before{
        display: none;
    }
    .faq-question:before{
        background-size: 30px auto;
        width: 30px;
        height: 30px;
        left: 0;
    }
    .faq-question{
        font-size: 15px;
    }
    .faq-answer{
        margin: 0 0 20px;
    }
}