@charset "utf-8";
/*------------ faq ------------*/
/*.content-top{
    display: none;
}*/
.faq-list{
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px 50px 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none; 
}
/*.faq-list:before{
    content: '\e929';
    display: block;
    font-family: 'icon-font-41' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 56px;
    color: #3244b5;
    text-align: center;
}*/
.faq-list .faq-item{
    position: relative;
    border-bottom: 1px solid #ccc;
    margin: 0 0px 30px;
}
.faq-list .faq-item:before{
    content: 'Q';
    display: block;
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 20px;
    font-weight: bold;
    color:#244A6D;
}
.faq-question{
    position: relative;
    padding: 13px 40px 13px 60px;
    box-sizing: border-box;
    display: block;
    vertical-align: middle;
    transition: all .2s;
    cursor: pointer;
    font-size: 18px;
}
.faq-question h3{
    margin: 0;
}
.faq-question i:before{
    content: '\e904';
    font-family: 'icon-font-41' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #aaa;
    font-size: 22px;
    position: absolute;
    right: 5px;
    top: 15px;
}
.faq-question:hover i:before{
    color: #244A6D;
}
.faq-answer{
    position: relative;
    padding: 15px 20px 15px  60px;
    background: #e8e8e8;
    display: none;
}
.faq-answer:before{
    content: 'A';
    display: block;
    position: absolute;
    top: 15px;
    left: 10px;
    font-size: 20px;
    font-weight: bold;
    color:#399DBD;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .faq-list{
        padding: 20px 15px 25px;
        margin: 0 -15px;
    }
}
