/*------------ album ------------*/
.album-list {
    margin: 0 -4px;
}
.album-list li {
    width: 25%;
    padding: 0 4px 30px;
}
.album-list li:nth-child(4n+1) {
    clear: left;
}
.album-list li .box {
    position: relative;
    box-sizing: border-box;
    border: 1px solid #D7DDE8;
    max-width: 355px;
    text-align: center;
    padding: 5px 5px 10px;
    margin: 0 auto;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 97%, #f6f6f6 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 97%, #f6f6f6 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 97%, #f6f6f6 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6', GradientType=0);
    box-shadow: 0px 2px 2px rgb(236, 236, 236);
}
.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 li .pic {
    position: relative;
}
.album-list li .pic:before,
.album-list li .pic:after {
    transition: all .2s;
    position: absolute;
    opacity: 0;
    content: "";
}
.album-list li .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../../images/common/bg/bg03.png);
}
.album-list li .pic:after {
    content: "\e1038";
    font-family: 'icon-font' !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;
    display: block;
    font-size: 17px;
    color: #929391;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #fff;
    border-radius: 50%;
    top: 0;
    left: 50%;
    margin: -22px 0 0 -22px;
}
.album-list .box:hover .pic:before,
.album-list .box:hover .pic:after {
    transition: all .2s;
    opacity: 1;
}
.album-list .box:hover .pic:after {
    top: 50%;
}
.album-list li .text {
    margin: 5px 0 0 0;
}
.album-list li .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*------------ rwd ------------*/
@media screen and (max-width:1024px) {
    .album-list li {
        width: calc((100% / 3) - 0.1px);
    }
    .album-list li:nth-child(4n+1) {
        clear: none;
    }
    .album-list li:nth-child(3n+1) {
        clear: left;
    }
}
@media screen and (max-width: 767px) {
    .album-list li {
        width: 50%;
    }
    .album-list li:nth-child(3n+1) {
        clear: none;
    }
    .album-list li:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width:480px) {
    .album-list {
        margin: 0;
    }
    .album-list li {
        width: 100%;
        padding: 0 0 30px;
    }
}
