.album-list {
    margin: 0 -10px;
}
.album-list .item {
    width: 33.33%;
    padding: 0 10px;
}
.album-list .item:nth-child(3n+1) {
    clear: left;
}
.album-list .box {
    max-width: 320px;
    margin: 0 auto 60px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.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 .fancybox {
    display: none;
}
.album-list .pic {
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-border-radius: 300px;
            border-radius: 300px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover .pic {
    opacity: 0.8;
}
.album-list .name {
    color: #444;
    font-size: 23px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 36px;
    margin-bottom: 15px;
}
.album-list .box:hover .name {
    color: #80CAA5;
}
.album-list .more {
    display: inline-block;
    width: 80px;
    line-height: 20px;
    background: #80CAA5;
    color: #fff;
    font-size: 13px;
}
@media screen and (max-width: 1200px) {
    .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: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}