.breadNav li.current{
    color: var(--baseColor);
}
.banFaq{
    height: 500px;
    max-height: 26vw;
    color: #FFFFFF;
}
.faqBg{
    background-color: #F8F8F8;
}
.faqTab{
    display: flex;
    gap: 100px;
    font-size: 16px;
    color: #333333;
    padding-top: .2rem;
    margin-bottom: .4rem;
    border-bottom: 1px solid #DFDFDF;
}
.faqTab > li span{
    position: relative;
    display: block;
    line-height: 1.1;
    padding: .3rem 0;
    cursor: pointer;
    transition: all .3s;
}
.faqTab > li span::before{
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: var(--baseColor);
    transition: all .3s;
}
.faqTab > li span:hover{
    color: var(--baseColor);
}
.faqTab > li.active span{
    color: var(--baseColor);
    font-weight: bold;
}
.faqTab > li.active span::before{
    left: 0;
    width: 100%;
}
.faqList{
    display: none;
    margin: .4rem 0 .8rem;
}

.faqList > li{
    padding: 0 .3rem;
    border-bottom: 1px solid #DFDFDF;
    transition: all .3s;
}
.faqTit{
    color: #333333;
    line-height: 94px;
    background: url(../images/faq/icon-plus.webp) right 30px center no-repeat;
    background-size: 24px auto;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all .3s;
}
.faqTit i{
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-top: -4px;
    margin-right: 8px;
    background: url(../images/faq/icon-q-gray.webp) left center no-repeat;
    background-size: contain;
}
.faqText{
    display: none;
    font-size: 16px;
    color: #333333;
    line-height: 32px;
    padding: 0 0 .4rem;
    padding-left: 32px;
    background: url(../images/faq/icon-a.webp) left 4px no-repeat;
    background-size: 24px auto;
}
.faqText p{ 
    margin: .06rem 0;
}
.faqText p:first-child{
    margin-top: 0;
}
.faqText strong{
    color: #333333;
}
.faqText ul{
    list-style-type: disc;
    margin: .15rem 0;
    margin-left: 20px;
}
.faqList .prev{
    border-color: transparent;
}
.faqList .active{
    border-radius: 24px;
    border-color: transparent;
    background-color: #FFFFFF;
}
.faqList .active .faqTit{
    margin-bottom: .3rem;
    background-image: url(../images/faq/icon-minus.webp);
    border-bottom: 1px solid #DFDFDF;
}
.faqTit:hover i,
.faqList .active .faqTit i{
    background-image: url(../images/faq/icon-q.webp);
}


@media (max-width:1600px) {
    .faqTab{
        gap: .6rem;
        margin-bottom: .3rem;
    }
    .faqTab li span{
        padding: .2rem 0;
    }
    .faqList{
        margin: .3rem 0 .7rem;
    }
    .faqList > li{
        padding: 0 .2rem;
    }
    .faqTit{ 
        line-height: 74px;
        background-size: 18px auto;
    }
    .faqList .active .faqTit{
        margin-bottom: .2rem;
    }
    .faqText{
        padding: 0 0 .3rem;
        padding-left: 32px;
    }
}
@media (max-width:1400px) {
    .faqTab{
        gap: .4rem;
    }
    .faqText{
        font-size: 14px;
    }
}
@media (max-width:1200px) {
    .faqTab{
        margin-bottom: .2rem;
    }
    .faqList{
        margin: .2rem 0 .6rem;
    }
}
@media (max-width:991px) {
    .faqTit{
        padding-right: 20px;
        line-height: 54px;
        background-position: right center;
        background-size: 14px auto;
    }
    .faqTit i{
        width: 20px;
        height: 20px;
    }
    .faqText{
        padding-left: 28px;
        background-size: 20px auto;
        background-position: left 6px;
    }
    .faqList .active{
        border-radius: .1rem;
    }
}
@media (max-width:640px) {
    .faqTab{
        gap: .4rem;
        justify-content: space-between;
        font-size: 14px;
        text-align: center;
    }
    .faqTab li span{
        max-width: 40px;
        margin: 0 auto;
    }
    .faqList > li{
        padding: 0 .3rem;
    }
}