.list{
    margin-top: 15px;
    background-color: #fff;
}
.list .item{
    border-bottom: 1px solid #eee;
    padding: 15px
    
}
.list .item:hover{
    background-color: #f5f5f5;
}
.item .title{
    font-weight: 600;
    display: block;
    font-size: 18px;
    margin-bottom: 11px;
    color: #000;
} 
.list .item .title:hover{
    color: #ff552e;
    cursor: pointer;
}
.list .item .num{
    color: #ff552e;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 11px;
    font-weight: bold;
}
.list .item .num span{
    font-size: 12px;
}

.list .item .tag span{
    background: #f8f8f8;
    margin-right: 6px;
    font-size: 12px;
    color: #6c95ba;
    padding: 4px;
    margin-bottom: 3px;
}
.list .item .name {
    color: #333;
    display: inline-block;
    max-width: 48px;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    margin-right: 4px;
    vertical-align: middle;
    font-size: 12px;
    text-overflow: ellipsis;
    margin-bottom: 14px;
}
.list .item .name:hover{
    color: #ff552e;
    cursor: pointer;
}