 .album_box {
    max-width: 1310px;
    margin: 0 auto;
}
.album-list {
     margin: 0 -4px;
}
.album-list .item {
     width: 33.33%;
    padding: 0 4px;
    margin-bottom: 35px;
}
.album-list .item:nth-child(3n+1) {
    clear: left;
}
.album-list .box {
    max-width: 426px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.album-list .fancybox {
    display: none;
}
.album-list .box img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.album-list .box:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.album-list .cover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.album-list .name{
  color: #EBE9DF;
    display: block;
    padding: 10px 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    font-size: 16px;
}
.album-list .box:hover .cover {
    background: #CE000E;
}
.album-list .box .cover2{
    position: absolute;
    font-size: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 1200px) {
    .album-list .item {
        width: 50%;
    }
    .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;
    }
}