.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;
    max-width: 320px;
    margin: 0 auto 40px;
}
/*-*/
.album-list .box:before, 
.album-list .box:after{
    content: '';
    position: absolute;
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 0;
    transition: .25s all cubic-bezier(.275,0,0,1);
    z-index: 1;
    top: 5%;
    bottom: 0%;
    right: 5%;
    left: 5%;
}
.album-list .box:before{
    border-top: 5px solid #43C249;
    border-bottom: 5px solid #43C249;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);

}
.album-list .box:after{
    border-left: 5px solid #43C249;
    border-right: 5px solid #43C249;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);

}
.album-list .box:hover:before{
    opacity: 1;
    transition: .3s -webkit-transform cubic-bezier(.275,0,0,1);
    transition: .3s transform cubic-bezier(.275,0,0,1);
    transition: .3s transform cubic-bezier(.275,0,0,1),.3s -webkit-transform cubic-bezier(.275,0,0,1);
    -webkit-transform: none;
    transform: none;
} 
.album-list .box:hover:after{
    opacity: 1;
    transition: .3s -webkit-transform cubic-bezier(.275,0,0,1);
    transition: .3s transform cubic-bezier(.275,0,0,1);
    transition: .3s transform cubic-bezier(.275,0,0,1),.3s -webkit-transform cubic-bezier(.275,0,0,1);
    -webkit-transform: none;
    transform: none;
}
/*-*/
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .pic img{
    transform:scale(1);
    transition:all .5s ease;
}
.album-list .box:hover .pic img{
    transform:scale(1.1);
}
/*.album-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../../images/common/album/hover.png') 50% 50% no-repeat rgba(0,0,0,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 40px 10px 15px;
    position: relative;
}
/*.album-list .txt:before {
    content: 'MORE';
    display: inline-block;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 3px solid #000;
    padding-bottom: 3px;
}
.album-list .txt:after {
    content: '\e92a';
    font-family: 'icon-font-41' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #999;
    font-size: 26px;
    position: absolute;
    right: 10px;
    bottom: 9px;
}
.album-list .box:hover .txt:after {
    color: #142597;
}*/
.album-list .name {
    color: #888;
    font-size: 18px;
    text-align:center;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    /* margin-top: 10px; */
    height: 25px;
}
.album-list .box:hover .name {
    color: #000;
}


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