@charset "utf-8";
.filter{
    margin-bottom: 10px;
}
.filter .type{
    margin-bottom: 5px;
}
.filter label{
    font-size: 14px;
    font-weight: normal;
    margin-right: 10px;
    cursor:pointer;
}
.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    margin-bottom: 10px;
    min-height: 500px;
}

.list .item {
    width: calc((100% - 10 * 5px) / 6);
    margin-right: 10px; /* 右侧间隙 */
    margin-bottom: 10px; /* 底部间隙 */
}

.cover{
    position: relative;
    height: 210px;
    overflow: hidden;
}
.cover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.5));
}
.item-img{
    width: 100%;
    height: 100%;
    display: block;
}
.remark{
    font-size: 12px;
    color: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px 5px;
    line-height: 18px;
}
.head-abs{
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1px 5px;
    line-height: 18px;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    color: #FFF;
}
.item-info{
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 大于 900px */
@media (min-width: 1001px) {
    .list .item {
        width: calc((100% - 10px * 5) / 6);
    }
    .list .item:nth-child(6n) {
        margin-right: 0;
    }
}
/* 大于 800px 且小于等于 900px */
@media (min-width: 801px) and (max-width: 1000px) {
    .list .item {
        width: calc((100% - 10px * 4) / 5);
    }
    .list .item:nth-child(5n) {
        margin-right: 0;
    }
}

/* 大于 500px 且小于等于 800px */
@media (min-width: 501px) and (max-width: 800px) {
    .list .item {
        width: calc((100% - 10px * 3) / 4);
    }
    .list .item:nth-child(4n) {
        margin-right: 0;
    }
}

/* 小于等于 500px */
@media (max-width: 500px) {
    .list .item {
        width: calc((100% - 10px * 2) / 3);
    }
    .list .item:nth-child(3n) {
        margin-right: 0;
    }
    .cover {
        height: 161px;
    }
}
