.select-level-container{
    width: 170px;
    position: absolute;
    z-index:100;
    .select-level-box{
        width: 100%;
        background: #fff;
        box-shadow: 0 3px 10px 0 rgba(0,0,0,0.15);
        border-radius: 5px;
        box-sizing: border-box;
        border: 1px solid #dedede;
            li{
                padding: 6px 20px 0 20px;
                width: 100%;
                font-size: 12px;
                color: #0A131A;
                line-height: 20px;
                box-sizing: border-box;
                cursor: pointer;
                &:hover{
                    background: #F5F8FA;
                }
                .select-level-text{
                    margin-left: 6px;
                    vertical-align: top;
                    display: inline-block;
                }
            }
    }
}