.album-list {
    margin: 0 -10px;
}
.album-list .item {
    width: 20%;
    padding: 0 10px;
}
.album-list .item:nth-child(5n+1) {
    clear: left;
}
.album-list .box {
    max-width: 260px;
    margin: 0 auto 40px;
    text-align: center;
    overflow: hidden;
    position: relative;
    /* background: url('../images/album/bg.png') no-repeat 50% 250px ; */
    padding-bottom: 18px;
}
.album-list .box:hover{
  opacity: 0.5;
  transition: all .4s;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    overflow: hidden;
    -webkit-border-radius: 100%;
            border-radius: 100%;
    z-index: 10;
    position: relative;
    /*min-height: 260px;*/
    border: solid 2px #fff;
    box-sizing: border-box;
}
.album-list .box:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    background: url(../images/album/shadow.png) no-repeat center bottom;
    width: 219px;
    height: 46px;
    margin: 0 auto;
    z-index: -1;

}

.album-list .name {
    color: #202020;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 25px;
    max-height: 25px;
    margin-top:40px;
}
.album-list .box:hover .name {
    text-decoration: underline;
}
.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(5n+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;
    }
}
