
/****************************  ****************************/

.album-list{
    position: relative;
    margin-top: 50px;
}
.album-list .item{
    width: 20%;
}
.album-list .box{
    max-width: 280px;
    margin: 0 auto 15px;
    display: block;
}
.album-list .pic{
    position: relative;
}
.album-list .txt a{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100%;
    left: 0;
    color: #666;
    z-index: 1;
    padding-top: 80px;
    font-size: 16px;
	opacity: 0;
}
.album-list .box:hover .txt a{
    bottom: 0;
    background: rgba(255,255,255,.7);
-webkit-transition: all 300ms linear;
   -moz-transition: all 300ms linear;
     -o-transition: all 300ms linear;
	transition: all 300ms linear;
	opacity: 1;
}
/*
.album-list a .name,.album-list a:hover .name{
    display: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
}
.album-list:hover .name{
    display: block;
}
.album-list:hover .txt{
    bottom: 3px;
    background: rgba(255,255,255,.7);
-webkit-transition: all 250ms linear;
   -moz-transition: all 250ms linear;
     -o-transition: all 250ms linear;
	transition: all 250ms linear;
}
.album-list a:hover .txt{
    background: rgba(0,0,0,0);
}*/

@media screen and (max-width: 1000px) {
    .album-list .item{
        width: 33.33%;
    }
}
@media screen and (max-width: 480px) {
    .album-list .item{
        width: 100%;
    }
}