.album-list {
    margin: 20px auto;
}
.album-list .item {
    width: 25%;
    margin: 15px 0;
}
.album-list a{
    border-radius: 50%;
    
    
}
.album-list .pic {
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    width: 207px;
    height: 207px;
    border: solid 4px silver;
	margin:0 auto;
}
.album-list .pic img{
    border-radius: 50%;
    
    width: 100%;
}
.album-list a:hover .pic:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.51);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.album-list a:hover .pic:after {
    content: '';
    display: block;
    background: url(../images/index/album_more.png) 50% 50% no-repeat ;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.album-list .item a.fancybox {
    display: none;
}


.album-list .name {
    display: block;
    width: 210px;
    color: #73331b;
    font-size: 16px;
    line-height: 22px;
/*    white-space: nowrap;*/
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 10px 0;
    height: 36px;
    text-align: center;
	margin:5px auto 0;
}

@media screen and (max-width: 1300px){
    .album-list .item{
        width:  33.333%;
    }
    .album-list .pic{margin: 0 auto;}
    .album-list .name{
		width: 100%;
		margin-top: 20px;
		padding:10px 20px;
		height: 50px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
	}
}
@media screen and (max-width: 767px) {
    .album-list .item {
        width: 50%;
        text-align: center;
    }
    
    
}
@media screen and (max-width: 480px) {
    .album-list .item {
        width: auto;
        float: none;
    }
    .album-list {
	margin: 40px auto 20px auto;
}
}