.album-list {
    margin: 0 -10px;
}
.album-list .item {
    width: 25%;
    padding: 0 10px;
}
.album-list .item a {
    max-width: 320px;
    margin: 0 auto 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.album-list .item a.fancybox {
    display: none;
}
.album-list .pic {
    margin-bottom: 10px;
    position: relative;
}
.album-list a:hover .pic:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/album/cover.png)center no-repeat rgba(20,108,173,0.48);
    position: absolute;
    left: 0;
    top: 0;
}
.album-list .title {
    color: #555;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #555;
    height: 30px;
}
.album-list a:hover .title {
    color: #146CAD;
    border-bottom-color: #146CAD;
}

@media screen and (max-width: 1200px) {
    .album-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: auto;
        float: none;
    }
}