.faq_subheading {
    margin-bottom: 50px;
}

.faq_subheading .subheading {
    font-size: 28px;
    font-weight: 600;
    color: #000;
}

.faq_subheading .desc {
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
    margin-top: 6px;
}

.faq_item:not(:last-child) {
    margin-bottom: 8px;
}

.faq_item {
    background-color: #F8F8F8;
    border-radius: 8px;
    overflow: hidden;
}

.faq_item .item_head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    gap: 16px;
    background-color: transparent;
}

.faq_item .item_head::after {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url(/static/common/img/icon_select_down.png) no-repeat center/contain;
    /* transform: rotate(90deg); */
    transition: transform 300ms;
    flex-shrink: 0;
    opacity: 0.8;
}

.faq_item .item_head.active::after {
    transform: rotate(180deg);
}

.faq_item .item_head.active .title {
    white-space: initial;
}

.faq_item .faq_left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: calc(100% - 38px);
}

.faq_item .faq_q {
    font-size: 16px;
    font-weight: 600;
    color: var(--success-color);
}

.faq_item .title {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 24px);
}

.faq_item .item_body {
    border-top: 1px solid #fff;
    padding: 24px;
    display: none;
}

.faq_item .item_body pre {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

@media screen and (max-width:1023px) {
    .faq_subheading {
        margin-bottom: 32px;
    }

    .faq_subheading .subheading {
        font-size: 22px;
    }

    .faq_subheading .desc {
        font-size: 14px;
    }

    /* 
    .faq_item .category {
        font-size: 14px;
    } */

    .faq_item .title {
        font-size: 16px;
    }

    .faq_item .item_body {
        font-size: 14px;
    }

}