.pingshang-faq{
    padding: 100px 0;
    background: #FEF8F8;
}
.pingshang-faq .faq-content{
    display: flex;
    gap: 50px;
}
.faq-content .faq-left{
    width: 539px;
}
.faq-left img{
    width: 100%;
    aspect-ratio: 539/760;
    object-fit: cover;
    border-radius: 20px;
}

.faq-content .faq-right{
    flex: 1;
}
.faq-right .faq-title{
    text-transform: uppercase;
}
.faq-list{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq-item .faq-question{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #F4C3C1;
    cursor: pointer;
    transition: all 0.5s;
}
.faq-question:hover{
    background: #FFF2EA;
}
.faq-question .faq-question-text{
    color: var(--text-color);
    font-family: var(--font-primary-family);
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.faq-question i{
    font-size: 24px;
    color: #8a8a8a;
    font-weight: bold;
    
}
.faq-item .faq-answer{
    color: #666;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s, padding 0.5s;
}
.faq-item.active .faq-answer{
    max-height: 1000px;
    padding: 20px 20px 0 20px;
}
.faq-item.active .faq-question i{
    color: #EB715A;
}
.faq-item.active .faq-question-text{
    color: #EB715A;
}
.faq-item.active .faq-question{
    background: #FFF2EA;
    border: 1px solid #FFF2EA;
}


@media screen and (max-width: 1500px) {
    .faq-content .faq-left{
        width: 40%;
    }
}
@media screen and (max-width: 1200px) {
    .pingshang-faq{
        padding: 50px ;
    }
    .faq-list{
        margin-top: 30px;
    }
    .faq-content .faq-left{
        display: none;
    }
}