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

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

.faq_item .item_head {
    display: flex;
    align-items: center;
    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/app_www/base/img/icon_sm_arrow_gray_right.png) no-repeat center/contain;
    transform: rotate(90deg);
    transition: transform 300ms;
    flex-shrink: 0;
}

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

.faq_item .category {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 8px;
    text-align: left;
}

.faq_item .title {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    text-align: left;
}

.faq_item .item_body {
    border-top: 1px solid #fff;
    padding: 24px;
    /* font-size: 16px;
    font-weight: 400;
    color: #5e5e5e; */
    display: none;
}

@media screen and (max-width:1023px) {
    .faq_item .category {
        font-size: 14px;
    }

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

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