.album-list {
    margin: 0 -12px;
}
.album-list .item {
    width: 33.33%;
    padding: 0 12px;
}
.album-list .item:nth-child(3n+1) {
    clear: left;
}
.album-list .box {
    display: block;
    position: relative;
    background: #fff;
    max-width: 480px;
    margin: 0 auto 40px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.album-list .box:hover{
    -webkit-transform: translate(0,-5px);
    transform: translate(0,-5px);
}
.album-list .box:after{
    content: '';
    display: block;
    background: url(../../images/common/album/shadow.png) no-repeat center top;
    width: 100%;
    height: 16px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 autoa;
    bottom: -16px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: .5;
}
.album-list .box:hover:after{
    opacity: 1;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}

.album-list .txt {
    padding: 30px 40px 10px 15px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #f1f1f1;
    z-index: 5;
}
.album-list .txt:before {
    content: '';
    display: block;
   background: url(../../images/common/album/more.png) no-repeat;
    width: 57px;
    height: 41px;
    position: absolute;
    left: 20px;
    top: -8px;
    z-index: -1;
}
.album-list .box:hover .txt:before{
    background-position: 100% 0;
}

.album-list .name {
    color: #414141;
    font-size: 16px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 10px;
    height: 25px;
}
.album-list .box:hover .name {
}


@media screen and (max-width: 1000px) {
    .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: 767px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
    .album-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}