﻿

.main-faq {
    margin-top:10px;
    min-height: 600px;
    padding-bottom:60px;
}

.main-faq_types {
    margin: 10px 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-faq_types_item {
    height: 48px;
    cursor: pointer;
    line-height: 44px;
    border-radius: 24px;
    padding: 0 20px;
    background: #fff;
    color: #3d3d3d;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    transition: all .3s;
    border: solid 1px #eee;
}

    .main-faq_types_item:hover, .main-faq_types_item.curr {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: #fff;
    }

.main-faq_content {
    margin: 20px 20px;
}

.main-faq_content_q {
    height: 30px;
    line-height:30px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    margin-bottom: 30px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

    .main-faq_content_q::before {
        content: '\e605';
        font-size: 30px;
        font-family: 'iconfont';
        position: absolute;
        left: 0;
        top: 0;
    }
.main-faq_content_q i{
    position:absolute;
    right:0;
    transition:all .3s;
    top:10px;
}
    .main-faq_content_q i.expand{
        transform:rotate(180deg)
    }
.main-faq_content_a {
    margin-bottom: 40px;
    padding: 20px;
    background:#f0f5fb;
    font-size: 14px;
    border: solid 1px #eee;
    border-radius: 10px;
}

