/*------------ album ------------*/

.album-list {
    margin: 0 -10px;
}

.album-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 10px;
}

.album-list li:nth-child(3n+1) {
    clear: left;
}

.album-list li .box{
    max-width: 320px;
    margin: 0 auto 40px;
}

.album-list li .pic {
    overflow: hidden;
    position: relative;
}

.album-list li .namebox {
    transition: all .2s;
    position: absolute;
    bottom: 0;
    opacity: 0;
    background: rgba(0,0,0,0.7);
    color: #DDDDDD;
    font-size: 16px;
    text-align: center;
    left: 0;
    right: 0;
    z-index: 10;
}
.album-list li .name a{
    margin:10px 0;
    text-align: -webkit-auto;
    line-height: 1.2;
    font-size: 16px;
    height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    margin: 15px 0 5px;
    color: #0E6EB8;
}


.album-list li .pic 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 ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.album-list li:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/*------------ rwd ------------*/

@media screen and (max-width: 600px) {
    .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: 450px) {
    .album-list{
        margin: 0;
    }
    .album-list li {
        width: 100%;
    }
}
