:host{
    height: 100%;
    &.f-listview-fill{
        // flex: 1 1 0;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        overflow: hidden;
        .f-list-view{
            height: 100%;
            .f-list-view-header{
                flex-shrink: 0;
            }
            .f-list-view-footer{
                flex-shrink: 0;
            }
            .f-list-view-content{
                overflow-y: auto;
                //flex: 1 1 0;
                flex-grow: 1;
                flex-shrink: 1;
                flex-basis: 0;
            }
        }
    }
    .f-list-view{
        display: flex;
        flex-direction: column;
        .f-list-view-group{
            // overflow: auto;
        }
        .f-paging-wrapper{
            padding: 14px 0;
        }
    }
    .f-list-view-group-item{
        display: flex;
        align-items:center;
        // border-bottom: 1px solid rgba(0,0,0,.125);
        // &.f-un-click{
        //     background-color: #eee;
        // }
        // &.f-un-select{
        //     background-color: #eee;
        // }
        &.f-none-border{
            border-bottom: 0;
        }
        .f-list-content{
            // flex: 1;
            // flex-grow: 1;
            flex: 1 1 auto;
            width: 100%;
        }
    }
    .f-list-select{
        padding: 0 14px;
    }
    .f-list-view-emptydata{
        .f-empty-title{
            font-size: 14px;
            line-height: 22px;
            color: #999;
            padding: 20px 0;
            text-align: center;
        }
    }
}