.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:before {
	content: '';
    position: absolute;
    top: 140px;
    bottom:0;
    left: 0;
    right: 115px;
    background: url('../images/hover.png') 50% 50% no-repeat;
    opacity: 0;
    z-index:1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover:before {
    opacity: 1;
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:rgba(255,255,255,0.4);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover .pic:before {
    opacity: 1;
}
.album-list .txt {
    /*border: 1px solid #ddd;*/
    padding: 10px 15px 10px 15px;
    position: relative;
}
.album-list .txt:before {
    content: 'VIEW';
    display: inline-block;
	letter-spacing:0.5em;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: bold;
    /*border-bottom: 3px solid #737273;*/
    padding-bottom: 32px;
}

.album-list .txt:after {
    border-bottom: 3px solid #656565;
	width:20px;

	content:'';
	display:block;
	left:0px;
	opacity:0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.album-list .box:hover .txt:after {
	opacity:1;
	width:100px;
	left:50px;
}
.album-list .name {
    color: #737273;
    font-size: 16px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: -32px;
    height: 25px;
}
.album-list .box:hover .name {
    color: #142597;
}



@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 10px;
    }
    .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;
    }
}