.album-list {
    margin: 0 -20px;
}
.album-list .item {
    width: 25%;
    padding: 0 20px;
}
.album-list .item .box {
    max-width: 282px;
    padding: 8px;
    border: 1px solid #E0E0E0;
    background: #fff;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}
.album-list .item .box:hover {
    border-color: #bd8d00;
    box-shadow:0px 2px 6px rgba(0%,0%,0%,0.2);
-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
     -o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.album-list .box .pic a:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0);
}
.album-list .item a.fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;

}
.album-list .box:hover .pic img {
    -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 200ms linear;
   -moz-transition: all 200ms linear;
     -o-transition: all 200ms linear;
	transition: all 200ms linear;
}
.album-list .box:hover .pic a:before{
    background: rgba(0,0,0,.3);
-webkit-transition: all 200ms linear;
   -moz-transition: all 200ms linear;
     -o-transition: all 200ms linear;
	transition: all 200ms linear;
    z-index: 1;
}

.album-list .name a {
    position: relative;
    display: block;
    color: #333;
    font-size: 15px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 26px;
}
.album-list .name a:before {
    content: "＋";
    display: inline-block;
    color: #9685CF;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 1400px) {
    .album-list {
        margin: 0 -8px;
    }
    .album-list .item {
        padding: 0 8px;
    }
}
@media screen and (max-width: 1140px) {
    .album-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 1000px) {
    .album-list .item {
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .album-list .item {
        width: auto;
        float: none;
    }
    .album-list .item a {
        margin-bottom: 25px;
    }
}