
/* =========================================================
   FAQ LIST 4
   简约白色窗口 + Remix Icon
   外层 class：faq-list-44
   ========================================================= */

.faq-list-44 {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-list-44 .accordion-item {
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 8px;
    overflow: hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-list-44 .accordion-item:hover {
    border-color: #dedede;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .035);
}

.faq-list-44 .accordion-item.active {
    border-color: #dedede;
}


/* =========================================================
   TITLE
   ========================================================= */
.faq-list-44 h3{
    font-size: 15px !important;
}
.faq-list-44 .accordion-title {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 56px;

    padding:
        16px
        54px
        16px
        20px;

    margin: 0;

    background: #fff !important;

    border: 0 !important;

    color: #222;

    /* 标题缩小 */
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.5;

    text-decoration: none;

    transition:
        background-color .25s ease,
        color .25s ease;
}


/* Hover */
.faq-list-44 .accordion-title:hover {
    background: #fafafa !important;
    color: #111;
}


/* Active */
.faq-list-44 .accordion-title.active {
    background: #fff !important;
    color: #111;
}


/* =========================================================
   隐藏 Flatsome 默认图标
   ========================================================= */

.faq-list-44 .accordion-title .toggle {
    display: none !important;
}


/* =========================================================
   Remix Icon
   使用 ri-add-line
   ========================================================= */

.faq-list-44 .accordion-title::after {
    content: "\ea13";

    position: absolute;

    top: 50%;
    right: 18px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    background: #f7f7f7;

    border: 1px solid #e7e7e7;
    border-radius: 50%;

    font-family: "remixicon" !important;
    font-size: 17px;
    font-weight: normal;

    color: #555;

    transition:
        transform .3s ease,
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}


/* 展开后 + 旋转成 × */
.faq-list-44 .accordion-title.active::after {
    transform:
        translateY(-50%)
        rotate(45deg);

    background: #f3f3f3;
    border-color: #ddd;

    color: #222;
}


/* =========================================================
   CONTENT
   ========================================================= */

.faq-list-44 .accordion-inner {
    padding:
        0
        20px
        20px;

    background: #fff;

    color: #666;

    font-size: 14px;
    line-height: 1.75;
}


/* 内容分割线 */
.faq-list-44 .accordion-inner::before {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    margin-bottom: 17px;

    background: #f0f0f0;
}


/* Paragraph */
.faq-list-44 .accordion-inner p {
    margin-top: 0;
    margin-bottom: 10px;
}


/* 最后元素 */
.faq-list-44 .accordion-inner > *:last-child {
    margin-bottom: 0;
}


/* Link */
.faq-list-44 .accordion-inner a {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* 最后一项 */
.faq-list-44 .accordion-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 849px) {

    .faq-list-44 .accordion-item {
        margin-bottom: 8px;
        border-radius: 7px;
    }

    .faq-list-44 .accordion-title {
        min-height: 54px;

        padding:
            15px
            50px
            15px
            17px;

        font-size: 14px;
    }

    .faq-list-44 .accordion-title::after {
        right: 14px;

        width: 27px;
        height: 27px;

        font-size: 16px;
    }

    .faq-list-44 .accordion-inner {
        padding:
            0
            17px
            18px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 549px) {

    .faq-list-44 .accordion-title {
        min-height: 52px;

        padding:
            14px
            46px
            14px
            15px;

        font-size: 13px;
        line-height: 1.45;
    }

    .faq-list-44 .accordion-title::after {
        right: 12px;

        width: 26px;
        height: 26px;

        font-size: 16px;
    }

    .faq-list-44 .accordion-inner {
        padding:
            0
            15px
            17px;

        font-size: 13px;
        line-height: 1.7;
    }

}