.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 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 10px;
}
.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 {
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position:relative;
}
.album-list .pic img{
    width:100%;
}
.album-list .box:hover .pic {
    opacity: 0.8;
}
.album-list .pic:before {
      content: "";
      display:block;
      position: absolute;
      width: 55%;
      height: 35%;
      bottom: -10px;
      left: -10px;
      z-index: -1;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      background-image: -webkit-gradient(linear, left top, right top, from(#b3d5ff), to(#00e26a));
      background-image: linear-gradient(to right, #b3d5ff, #00e26a);
      /* background:red; */
    }
.album-list .name {
    color: #444;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 30px;
    margin: 17px auto 0;
}
.album-list .box:hover .name {
    color: #1d994f;
}
.album-list .more {
    display: inline-block;
    width: 80px;
    line-height: 20px;
    background: #1d994f;
    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;
    }
}