.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 .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{
    width: 100%;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../../images/common/album/hover.png') 50% 50% no-repeat rgba(0,0,0,0.4);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover .pic:before {
    opacity: 1;
}
.album-list .txt {
    padding: 10px 55px 10px 15px;
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    top: -10px;
    border: solid 1px #565656;
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
}
.album-list .box:hover .txt{
    background: none;
    border-color: #ededed;
}
.album-list .txt:before {
    content: 'MORE';
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 3px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 10px;
    font-family: 'Poppins', cursive;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    top: 0;
    margin: auto;
    height: 20px;
    line-height: 1.3;
    padding: 3px 10px;
    color: #646665;
}
.album-list .box:hover .txt:before{
    padding-right: 0;
    opacity: 0;
}
.album-list .pic img{
    width: 100%;
}
.album-list .txt:after{
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #2a59a7;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: visible;
}
.album-list .box:hover .txt:after{
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #ededed;
}
.album-list .name {
    color: #666;
    font-size: 16px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 1px;
    height: 25px;
}
.album-list .box:hover .name {
    color: #111;
}


@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;
    }
}