/*所有列表默认一行显示一条，如果要一行显示多条需搭配layui-col使用*/
/*大图列表：上面图片，下面文字*/
.list-img-block .item{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #ececec;
    transition: all .2s;
    overflow: hidden;
    border-radius: 6px;
    padding-bottom: 10px;
}
.list-img-block .item:hover{
    border:1px solid #83aec2;
}
.list-img-block .item .img{
    width: 100%;
    height: 400px;
    background-image: url(/static/images/icons/icon-empty-img.svg);
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: center;
    background-color: #f2f6f9;
    color: #fff;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}
.list-img-block .item .img img{
    width: 100%;
    height: 100%;
}
.list-img-block .title {
    margin: 12px 8px 8px;
    height: 18px;
    font-size: 14px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-img-block .property{
    bottom: 8px;
    color: #9199A1;
    font-size: 12px;
    padding: 0 8px;
}