.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;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .pic img {
    position: relative;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.album-list .box:hover .pic  img{
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.album-list .txt {
    border: 1px solid #ddd;
    padding: 10px 40px 10px 15px;
    position: relative;
}
.album-list .txt:before {
    content: 'MORE';
    display: inline-block;
    color: #29166F;
    letter-spacing: 0.05em;
    font-size: 13px;
    font-weight: 300;
}
.album-list .txt:after {
    content: '';
    width: 0px;
    height: 2px;
    background: #29166F;
    position: absolute;
    left: 13px;
    top: 35px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.album-list .box:hover .txt:after {
    width: 42px;
}
.album-list .name {
    color: #373737;
    font-size: 16px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 7px;
    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;
    }
}