.album-list {
    max-width: 1280px;
    margin: 0 auto;
}
.album-list .item {
    width: 25%;
}
.album-list .item a {
    display: block;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.album-list .item a.fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}

.album-list .pic img {
    width: 100%;
    opacity: 1;
}
.album-list a:hover .pic img {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition: all .5s ease;
       -moz-transition: all .5s ease;
        -ms-transition: all .5s ease;
         -o-transition: all .5s ease;
            transition: all .5s ease;
}
.album-list .name {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../../images/common/album/title_ic.png) 15px 12px no-repeat rgba(26, 99, 116, 0.8);
    color: #ddd;
    font-size: 15px;
    line-height: 45px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 5px 0 48px;
}


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