.album-list {
    max-width: 1200px;
    margin: 0 auto;
}
.album-list .item {
    width: 25%;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}
.album-list .box {
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}
/*
.album-list .box:before {
    content: '';
    display: block;
    background: url('../../images/common/album/hover.png') 50% 50% / 35% auto no-repeat rgba(204, 204, 204, 0.83);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.album-list .box:hover:before {
    opacity: 1;
    background-size: 49% auto;
}*/
.album-list .fancybox {
    display: none;
}

.album-list .box:before {
    content: '';
    display: block;
    background: url('../../images/common/album_hover.png') 50% 50% no-repeat;
    background-size:cover;
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    opacity: 0;
    transition: all 0.3s;
}.album-list .box:hover:before {
    opacity:1;
}
.album-list .name {
    position: absolute;
    /*left:calc(50% - 97px);
    top:calc(50% - 97px);
    width:194px;
    height:194px;*/
    left:0;
    top:0;
    right:0;
    bottom:0;
    text-align:center;
    /*background: rgba(23,52,69,0.75);*/
    color: #fff;
    font-size: 15px;
    line-height: 216px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.3s;
    opacity:0;
}
.album-list .box:hover .name {
    opacity:1;
}
/*
.album-list .name:before {
    content:'';
    display:inline-block;
    width:3px;
    height:31px;
    background:#fff;
    position:absolute;
    top:0;
    left:31px;
}*/

@media screen and (max-width: 1000px) {
    .album-list {
        max-width: 900px;
    }
    .album-list .item {
        width: 33.33%;
    }
    .album-list .item:nth-child(4n+1) {
        clear: none;
    }
    .album-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 600px) {
    .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: 400px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}