.album-list {
    margin: 0 -7px;
}
.album-list .item {
    width: 25%;
    padding: 0 7px;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}
.album-list .box {
    max-width: 270px;
    margin: 0 auto 30px;
    position: relative;
  
}
.album-list .item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.album-list .pic:before {
    content: "";
    background:rgb(31 44 92 / 0.4);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.album-list .box:hover .pic:before {
    opacity: 1;
}


.album-list .box:before {
    content: " ";
    background: url('../../images/common/album/icon_camera.png') no-repeat;
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 5;
}
.album-list .fancybox {
    display: none;
}
.album-list img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.album-list .name {
    position: absolute;
    left: 14px;
    right: 0;
    bottom: 14px;
    background: #94252a;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    padding: 0 12px;
    height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 220px;
    transition: all .7s ease;
    z-index: 2;
}

.album-list .box:hover .name {
    position: absolute;
    left: 14px;
    right: 0;
    bottom: -20px;
    background: #94292a;
    color:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    padding: 0 12px;
    height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 220px;
   
}
.album-list .box:hover .name {
    color: rgb(255 255 255 / 0.8);
}
@media screen and (max-width: 1000px) {
    .album-list .item {
        width: 33.33%;
    }
    .album-list .item:nth-child(4n+1) {
        clear: none;
    }
    .album-list .item:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 700px) {
    .album-list {
        margin: 0 -7px;
    }
    .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: 440px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}