
.side-cate>li.faq>a{background-color: var(--commonColor); color: #fff;}

.S_Faq_main {margin-top: 5%;}

.S_Faq_main .faq_list .faq_item {
    padding: 20px 45px;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #F1F1F1;
    margin-bottom: 30px; transition: all 0.5s ease;
}
.S_Faq_main .faq_list .faq_item:last-child{margin-bottom: 0;}

.S_Faq_main .faq_list .faq_item .faq_title {
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.S_Faq_main .faq_list .faq_item.active .faq_title {
    color: var(--commonColor);
}

.S_Faq_main .faq_list .faq_item .faq_title:after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: var(--commonColor);
    background-image: url(../img/plus.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 14px auto; margin-left: 12px;
}

.S_Faq_main .faq_list .faq_item.active .faq_title:after {
    background-image: url(../img/minus.png);
}

.S_Faq_main .faq_list .faq_item .faq_cont {
    display: none;
    font-family: 'Roboto-Regular';
    font-weight: 400;
    font-size: 16px;
    color: var(--txtColor);
    line-height: 28px;
    text-transform: none;
    padding-top: 12px;
}

.S_Faq_main .faq_list .faq_item:hover{box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);}


@media only screen and (max-width: 1200px) {
    .S_Faq_main .faq_list .faq_item{padding: 20px 30px; margin-bottom: 24px;}
}
@media only screen and (max-width: 980px) {
    .S_Faq_main{margin-top: 28px;}
    .S_Faq_main .faq_list .faq_item {
        padding: 18px 16px; border-radius: 15px;
    }
    .faq_title span{ width: 90%;}
    .S_Faq_main .faq_list .faq_item{margin-bottom: 16px;}
}