.album-list {
    margin: 0 -16px;
}
.album-list .item {
    width: 25%;
    padding: 0 16px;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}
.album-list .box {
    max-width: 335px;
    margin: 0 auto 45px;
    padding: 6px 6px ;
    border: 1px solid #C8C8C8;
    box-shadow:2px 2px 2px rgba(0%,0%,0%,0.2);
    position: relative;
    overflow: hidden;
}
.album-list .box:before {
    content: '';
    background: url('../../images/common/album/hover.svg') center no-repeat rgba(255,255,255,0.3);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transition: all 0.3s;
}
.album-list .box:hover:before {
    opacity: 0;
}
.album-list .pic-bpx{
    position: relative;
}
.album-list .fancybox {
    display: none;
}
.album-list .name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -51px;
    background: rgba(0,0,0,0.6);
    color: #D8D4D5;
    font-size: 16px;
    line-height: 45px;
    padding: 0 12px;
    height: 45px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.3s;
}
.album-list .box:hover .name {
    bottom: 0;
}

@media screen and (max-width: 1240px) {
    .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: 900px) {
    .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: 480px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}