.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: 300px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}
.album-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.album-list .box .pic{
    margin:0 auto 16px;
}
.album-list .fancybox {
    display: none;
}
.album-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
    margin: 0 ;
    display: flex;
    align-items: center;
    transition: all .5s;
}
.album-list .box:hover .name {
    color: #52A9A4;
}
.album-list .name:before {
    font-family: 'icon-font-5' !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;
    content: "\e922";
    font-size: 22px;
    color:#52A9A4;
    vertical-align: text-bottom;
    margin: 0 8px -1px 0;
}
@media screen and (max-width: 1400px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1200px) {
    .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: 1000px) {
    .album-list .name {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .album-list .item {
        width: 50%;
    }
    .album-list .item:nth-child(3n+1) {
        clear: none;
    }
    .album-list .item:nth-child(2n+1) {
        clear: left;
    }
    .album-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 560px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}