.album-list {
    margin: 0 -5px;
}
.album-list .item {
    width: 25%;
    padding: 0 5px;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}
.album-list .box {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto 10px;
    text-align: center;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .name {
    background: rgba(0,76,124,0.8);
    color: #fff;
    font-family: 'Lato','微軟正黑體', '文泉驛正黑', 'WenQuanYi Zen Hei', '儷黑 Pro', 'LiHei Pro',  'Microsoft JhengHei',  '微软雅黑', 'メイリオ', '맑은 고딕', sans-serif;
    font-size: 18px;
    line-height: 40px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 40px;
    padding: 0 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.album-list .box:hover .name {
    background: rgba(241, 137, 4,0.8);
}


@media screen and (max-width: 1000px) {
    .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: 700px) {
    .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: 500px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}