@charset "utf-8";
/*------------ faq ------------*/
.faq-list{
    padding: 0 15px;
}
.faq-item{
    border-bottom: 1px dashed #ddd;
    list-style-type: none;
}
.faq-question{
    position: relative;
    font-size: 17px;
    min-height: 27px;
    padding: 32px 5px 32px 75px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.faq-question h3{
    margin: 0;
    font-weight: normal;
    letter-spacing: 1.5px;
    font-family: 'Noto Serif TC', serif;
}
.faq-question i{
    display: none;
}
.faq-question:before{
    content: '\f107';
    display: block;
    text-align: center;
    font-family: 'icon-font' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #00A290;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    position: absolute;
    top: 20px;
    left: 5px;
    color: #fff;
    font-size: 30px;
    transition: all 0.5s ease;
}
.faq-question:hover:before,
.faq-item.active .faq-question:before {
    background: #D6B452;
}
.faq-item.active .faq-question:before{
    background-position: 0 100%;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question{
    color: #00A290;
}
.faq-answer{
    margin: 0 0 20px 75px;
    background: #FAF6F2;
    border-radius: 8px;
    padding: 15px 20px;
    display: none;
}
.faq-answer .title{
    font-size: 45px;
    font-weight: bold;
}
/*------------ 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{
        padding: 23px 0 23px 40px;
    }
    .faq-answer{
        margin: 0 0 20px;
    }
}
