.album-list {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.album-list .item {
    width: 25%;
}

.album-list .item:nth-child(4n+1) {
    clear: left;
}

.album-list .box {
    max-width: 250px;
    margin: 0 auto 0px;
    overflow: hidden;
    position: relative;
}

.album-list .fancybox {
    display: none;
}

.album-list .pic {
    overflow: hidden;
}

.album-list .box .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 35px;
    left: 0;
    right: 0;
    background: url('../../images/common/album/hover.png') 50% 60% no-repeat rgba(78, 97, 56, 0.8);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.album-list .box:hover .pic:before {
    opacity: 1;
    background-position: 50% 50%;
}

.album-list .name {
    background: rgba(78, 97, 56, 0.8);
    color: #ffffff;
    font-size: 15px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 35px;
    line-height: 35px;
    padding: 0 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.album-list .name .ic {
    vertical-align: middle;
    margin: 0 4px 4px 0;
}

@media screen and (max-width: 767px) {
    .album-list .item {
        width: 33.33%;
    }

    .album-list .item:nth-child(4n+1) {
        clear: none;
    }

    .album-list .item:nth-child(3n+1) {
        clear: left;
    }

    .album-list .box {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    .album-list {
        max-width: 500px;
        margin-bottom: 0px;
    }

    .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;
    }
}