.album-list {
    margin: 0 -1%;
}
.album-list .item {
    width: 33.33%;
    padding: 0 1%;
}
.album-list .item:nth-child(3n+1) {
    clear: left;
}
.album-list .box {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto 50px;
}
.album-list .fancybox {
    display: none;
}
.album-list .box .cover{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 30;
    font-size: 0;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.80);
    color: #333;
    font-size: 15px;
    line-height: 48px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 48px;
    padding: 0 12px;
}
.album-list .box:hover .name {
    background: #01215D;
    color: #fff;
}
.album-list .name:before{
    margin: -2px 8px 0px 0;
    font-size: 24px;
    color: #C2A445;
    content: "\e915";
    font-family: 'icon-font-40' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
}
@media screen and (max-width: 1280px) {
    .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: 767px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
    .album-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}