.album-list {
    max-width: 1200px;
    margin: 0 auto;
}
.album-list .item {
    width: 25%;
    padding: 6px;
}
.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;
    border: 7px solid #fff;
    box-shadow: 1px 0 #ECCFBF, 0 1px #ECCFBF, -1px 0 #ECCFBF, 0 -1px #ECCFBF;
    transition: all .3s;
}
.album-list .box:hover{
    box-shadow:0 0 15px #e9e9e9, 5px 5px 15px #e9e9e9, -5px 0 15px #e9e9e9;
}
.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 .pic::after{
    content:"";
    position: absolute;
    width: 100%;
    display: block;
    background: rgba(0,0,0,0.7);
    height: 102px;
    bottom:-120px;
    left: 0;
    transition: all .3s;
}
.album-list .box .pic img{
    transition:all .6s;
}
.album-list .box:hover .pic img{
    transform: scale(1.3);
}
.album-list .box:hover .pic::after{
    bottom: 0;
}
.album-list .name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    /* background: rgba(0,0,0,0.6); */
    color: #fff;
    font-size: 15px;
    /* line-height: 29px; */
    padding: 0 25px;
    height: 51px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s;
    box-sizing: border-box;
    text-align: left;
    /* margin-bottom: 0; */
}
.album-list .box:hover .name {
    bottom: 0;
    margin-bottom: 20px;
}

@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;
    }
}