.album-list {
    margin: 0 -1%;
}
.album-list .item {
    width: 25%;
    padding: 0 1%;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}
.album-list .box {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 530px;
    margin: 0 auto 30px;
    text-align: center;
}
.album-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(114,82,51,0.80);
    color: #F2E5C6;
    font-size: 15px;
    font-weight: bold;
    line-height: 50px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 50px;
    padding: 0 12px;
}
.album-list .box:hover .name {
    background: rgba(255,66,13,0.80);
    color: #fff;
}
@media screen and (max-width: 1200px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .album-list .item {
        width: 50%;
    }
    .album-list .item:nth-child(4n+1) {
        clear: none;
    }
    .album-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 500px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}