.site-main-content{
    padding:0px 10px;
    padding-bottom: 20px;
    max-width: 800px;
}
.faq-header{
    font-size: 24rem;
    padding:20px 0px;
    border-bottom: 1px solid gray;
    text-align: center;
}
.faq-subheader{
    font-size: 19rem;
    padding:20px 0px;
    text-align: center;
}
.faq-wrap{
    align-self: center;
    width: 100%;
    max-width: 1200px;
}
.search-ipt-wrap{
    padding: 2px 20px 2px 10px;
    height: 40px;
    background-color: white;
    border-radius: 35px;
    overflow: hidden;
    width: 290px;
    align-self: center;
    border: 1px solid gray;
}
.search-ipt-wrap input{
    border: none;
    height: 80%;
    font-size: 18rem;
}
.search-ipt-wrap input:focus,.search-ipt-wrap input:active,.search-ipt-wrap input:focus-visible{
    border:none;
    outline: none;
}

.search-btn{
    border: none;
    background: none;
}


/* faq item */
.faq-item-header{
    font-size: 19rem;
    padding:10px 0px;
    border-bottom: 1px solid #d5d4d4;
    cursor: pointer;
}
.faq-item-header p{
    font-weight: bold;
}
.faq-action{
    transition: 0.2s all;
}
.faq-action.active{
    transform: rotate(-180deg);
    
}
.faq-item-content{
    display: none;
    font-size: 17rem;
    color:#656565;
    padding-top:10px;
}

.faq-item-content.active{
    display: block;
}
.faq-item-content a{
    color:#656565;
}
/* === Match UEditor editor appearance ===
   UEditor iframe.css: body p { margin-bottom: 1em }
   Adds paragraph spacing so content looks the same as the backend editing view.
*/
.faq-item-content p {
    margin-bottom: 0.8em;
}
.faq-item-content p:last-child {
    margin-bottom: 0;
}


/* Layui global reset: li { list-style: none } breaks ul bullets in FAQ content */
.faq-item-content ul {
    list-style: disc;
    padding-left: 1.5em;
}
.faq-item-content ul li {
    list-style: disc !important;
}
.faq-item-content ol {
    list-style: decimal;
    padding-left: 1.5em;
}
.faq-item-content ol li {
    list-style: decimal !important;
}

/* FAQ accordion: pc-block/mobile-block use display:block !important which overrides
   the default display:none on .faq-item-content. Force-hide when not active. */
.faq-item-content.pc-block:not(.active) {
    display: none !important;
}
@media (max-width: 768px) {
    .faq-item-content.mobile-block:not(.active) {
        display: none !important;
    }
}
