.album-list {
    margin: 0 -10px;
}
.album-list .item {
    width: 25%;
    padding: 0 10px;
}
.album-list .box {
    display: block;
    max-width: 260px;
    margin: 0 auto 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: url('../../images/common/album/bg.png') no-repeat 50% 250px ;
    padding-bottom: 18px;
}
.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 img{
    border-radius: 50%;
}
.album-list .pic {
    overflow: hidden;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    opacity: 0.8;
    position: relative;
    min-height: 260px;
}
.album-list .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: url('../../images/common/album/hover.png') no-repeat 50% 0% 
}
.album-list .box:hover  .pic:before  {
    opacity: 1;
    background-position: 50% 50%;
}
.album-list .name {
    color: #5F5F5F;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 36px;
    margin-top:30px;
}
.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;
    }
}