.album-list {
    max-width: 1300px;
    margin: 0 auto;
}
.album-list .item {
    width: 25%;
    padding: 0 1%;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}

.album-list .box {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto 30px;
}

.album-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}


.album-list .fancybox {
    display: none;
}

.album-list .pic {
    position: relative;
    overflow: hidden;
}

.album-list .pic:before{
    content: '';
    display: block;
    background: rgba(4,9,65,0.85);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0 ;
    opacity: 0;
    transition: all .3s ease;
}
.album-list .box:hover .pic:before {
    opacity: 1;
}
.album-list .barVign2 {
    position: absolute;
    background: #C6A869;
    transition: all .8s ease;
}
.barVign2.T {
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
}
.album-list .box:hover  .barVign2.T{
    width: 100%;

}
.barVign2.R {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
    
}
.album-list .box:hover  .barVign2.R{
    height: 100%;

}
.barVign2.B {
    bottom: 0;
    left: 0;
     width: 0;

    height: 1px;
}
.album-list .box:hover .barVign2.B{
    width: 100%;

}
.barVign2.L {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;

}
.album-list .box:hover  .barVign2.L{
    height: 100%;

}
.album-list .name {
    color: #C5A768;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 41px;
    margin-top: 20px;
}


@media screen and (max-width: 1200px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
}
@media screen and (max-width: 1000px) {
    .album-list .item {
        width: 50%;
    }
    .album-list .item:nth-child(4n+1) {
        clear: none;
    }
    .album-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 500px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}