@charset "utf-8";
/*------------ faq ------------*/
/*.content-top{
    display: none;
}*/
.faq-list{
    background: #fafafa;
    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: #333;
    text-align: center;
}
.faq-list .faq-item{
    position: relative;
    border: 1px dotted #4e4e4e;
    border-width: 1px 0;
    margin: 30px 0 0px;
}
.faq-list .faq-item:before{
    content: '?';
    font-size:15px;
    font-weight:bold;
    color:#fff;
    display: flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    padding:0 16px 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    background:#333;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    font-family: 'Montserrat', sans-serif;
}
.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: #C8A063;
}
.faq-answer{
    position: relative;
    padding: 15px 20px 15px  60px;
    background: #fff;
    display: none;
}
.faq-answer:before{
    content: 'A';
    font-size:15px;
    font-weight:bold;
    color:#fff;
    display: flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    padding:0 16px 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 46px;
    background:#C8A063;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    font-family: 'Montserrat', sans-serif;
}
.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;
    }
}
