.album-list {
    margin: 0 -10px;
}
.album-list .item {
    width: calc(100% / 4);
    padding: 0 10px;
}
.album-list .item:nth-child(4n+1){
    clear: both;
}
.album-list .box {
    display: block;
    max-width: 260px;
    margin: 0 auto 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 18px;
}
.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 {
    overflow: hidden;
    opacity: 0.8;
    position: relative;
    min-height: 260px;
}
.album-list .pic:before {
    content: '';
    background: rgba(204,218,227,0.5);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.6s ease;
}
.album-list .box:hover  .pic:before  {
    opacity: 1;
}
.album-list .name {
    color: #5F5F5F;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 36px;
    margin-top:15px;
    transition: all .6s ease;
}
.album-list .box:hover .name {
    color: #004475;
}
.album-list .more {
    display: inline-block;
    width: 80px;
    line-height: 20px;
    background: #80CAA5;
    color: #fff;
    font-size: 13px;
}
@media screen and (max-width: 1200px) {
    .album-list .item {
        width: calc(100% / 2);
    }
    .album-list .item:nth-child(3n+1) {
        clear: none;
    }
    .album-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}