.fuxuan-faq{
    padding: 100px 0;
    background: #FBFBFB;
}

.fuxuan-faq .title{
    color: var(--second-color);
    font-family: var(--font--family);
    font-size: var(--font-title-size);
    font-style: normal;
    font-weight: 500;
    line-height: 118%; /* 54.28px */
    text-align: center;
}

.fuxuan-faq .faq-list{
    margin-top: 40px;
}
.fuxuan-faq .faq-list ul{
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.fuxuan-faq .faq-list ul .faq-item .question{
    padding: 18px 32px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.5s;
    border: 1px solid #E3E3E3;
}
.fuxuan-faq .faq-list ul .faq-item .question .icoReduce{
    display: none;
}
.fuxuan-faq .faq-list ul .faq-item.active .icoReduce{
    display: block;
}
.fuxuan-faq .faq-list ul .faq-item.active .icoPlus{
    display: none;
}
.fuxuan-faq .faq-list ul .faq-item.active .question{
    background: #8C7C67;
}
.fuxuan-faq .faq-list ul .faq-item.active .con{
    color: #fff;
}
.fuxuan-faq .faq-list ul .faq-item .con{
    color: #000;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 118%; /* 23.6px */
}
.fuxuan-faq .faq-list ul .faq-item .answer{
    color: #000;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 118%; /* 18.88px */
    background: #fff;
    padding: 27px 31px;
    border-right: 1px solid #D2AD7A;
    border-bottom: 1px solid #D2AD7A;
    border-left: 1px solid #D2AD7A;
    background: #FFF;
}

@media screen and (max-width: 992px) {
    .fuxuan-faq{
        padding: 50px 0;
    }
}