/*!
 * 业务常见问题
 * author:qianyuting
 * date:2021-07-27
 */

html,
body {
    min-width: auto;
    background-color: #fff;
}

.wrap {
    padding: 30px 20px 20px;
}

.faq-items {
    border: 1px solid #e7eeff;
    border-radius: 6px;
    margin-bottom: 20px;
}

.faq-items:last-child {
    margin-bottom: 0;
}

.faq-node {
    position: relative;
    height: 58px;
    line-height: 58px;
    padding: 0 90px 0 30px;
    font-size: 20px;
    color: #333;
    background: url("../images/faq_open_ico.png") calc(100% - 25px) center no-repeat;
    border-radius: 6px;
    border-bottom: 1px solid #e7eeff;
    box-shadow: 0 5px 17px rgba(164, 184, 235, 0.24);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.faq-sub-list {
    padding: 12px 30px 12px 25px;
}

.faq-sub-item {
    position: relative;
    margin-bottom: 15px;
    line-height: 28px;
    font-size: 16px;
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: left 4px;
    cursor: pointer;
}

.faq-sub-item:last-child {
    margin-bottom: 0;
}
.faq-sub-item.icon-question {
    background-image: url("../images/faq_question_ico.png");
}

.faq-sub-item.icon-warn {
    background-image: url("../images/faq_warn_ico.png");
}

.faq-items.open .faq-node {
    background-image: url("../images/faq_open_icoh.png");
}

.faq-items.open .faq-sub-list {
    display: block;
}

.faq-node + .faq-sub-list {
    display: none;
}