.gallery .container{
    max-width: 1335px;
}
.album-title {
    font-size: 31px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
    margin-bottom: 60px;
}
.album-list {
    margin: 0 -5px;
}
.album-list .item {
    width: 25%;
    padding: 0 5px;
}
.album-list .item a {
    max-width: 340px;
    margin: 0 auto 8px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.album-list .item a.fancybox {
    display: none;
}
.album-list .cover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background:rgba(255,255,255,0.80);
	width: 100%;
	margin:0 auto;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.album-list a:hover .cover {
    background:rgba(4, 97, 193, 0.77);
}
.album-list .title {
    font-size: 15px;
    color: #000000;
    font-weight: 600;
    line-height: 22px;
    display: block;    
    overflow: hidden;
	padding: 8px 18px;
}
.album-list a:hover .title {
    color: #fff;
}
.album-list .icon {
    background-image: url(../images/album/hover.png);
    width: 48px;
    height: 48px;
    position: relative;
    margin-top: 30px;
}
.album-list .icon:before {
    content: "";
    border-top: 1px solid #fff;
    width: 74px;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -37px;
}

@media screen and (max-width: 1200px) {
    .album-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: auto;
        float: none;
    }
}