.album-list {
}

.album-list .item {
    width: 33.33%;
    padding: 10px 10px 20px;
    border: 1px solid #444444;
}

.album-list .box {
    max-width: 370px;
    overflow: hidden;
    position: relative;
}

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

.album-list .pic {
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.album-list .pic:before {
    content: " ";
    position: absolute;
    background: url('../../images/common/album/hover.png') 0% 0% no-repeat;
    top: 0%;
    bottom: 0;
    left: 45%;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
    z-index: 11;
}

.album-list .pic:after {
    content: " ";
    position: absolute;
    background: rgba(0%, 0%, 0%, 0.8);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all .2s ease-in-out;
}

.album-list a:hover .pic:before,
.album-list a:hover .pic:after {
    opacity: 1;
    transition: all .2s ease-in-out;
}

.album-list a:hover .pic:before {
    top: 42%;
}

.album-list .name {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 30px;
    margin: 0 0 5px;
    text-align: left;
}

.album-list .more {
    display: inline-block;
    width: 80px;
    line-height: 20px;
    background: #80CAA5;
    color: #fff;
    font-size: 13px;
}

.album-list .description{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.6;
    height: 92px;
}

@media screen and (max-width: 1200px) {
    .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: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}