.album-list {
    margin: 0 -1%;
}
.album-list .item {
    width: 33.33%;
    padding: 0 1%;
}
.album-list .item:nth-child(3n+1) {
    clear: left;
}
.album-list .box {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto 50px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.album-list .box:hover{
    -webkit-transform: translate(0,-3px);
    transform: translate(0,-3px);
}
.album-list .fancybox {
    display: none;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .box:hover .pic{
    opacity: 0.7;
}
.album-list .name {
    background:  #7f2121;
    color: #fff;
    font-size: 15px;
    line-height: 48px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 48px;
    padding: 0 12px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.album-list .box:hover .name {
    background: #222;
}
.album-list .name .ic {
    color: #ad292e;
    font-size: 24px;
    vertical-align: middle;
    margin: 0 8px 3px 0;
}
.album-list .description{
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.15em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 34px;
    margin-top: 8px;
}
.album-detail-title{
    font-size: 28px;
    font-weight: bold;
    color: #111;
    text-align: center;
    margin: 10px auto;
}

.album-detail .title {
    color: #fff;
    /* font-family: 'Inder', sans-serif; */
    font-size: 17px;
    margin: 0 auto 15px;
    background: #7f2122;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 10px;
    max-width: 300px;
}
.album-detail .title .ic {
    vertical-align: text-bottom;
    margin-bottom: 2px;
    margin-right: 5px;
}
.album-detail .title .editor {
    padding: 20px 0;
}
.album-detail{
    text-align: center;
}
.album-slider{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto 40px;
    text-align: center;
}
.album-slider .slick-item{
    margin: 0 auto;
    height: auto;
    text-align: center;
}
.album-slider .slick-item img{
    margin: 0 auto;
}
.slick-dots{
    list-style: none;
    text-align: center;
}
.slick-dots li{
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}
.slick-dots button{
    text-indent: -9999999px;
    line-height: normal;
    padding: 0;
    margin: 0;
    width: 9px;
    height: 9px;
    background: #777;
    border-radius: 50%;
    border: none;
}
.slick-dots li.slick-active button{
    background: #ac292d;
}

@media screen and (max-width: 1280px) {
    .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: 767px) {
    .album-list {
        margin: 0 -7px;
    }
    .album-list .item {
        padding: 0 7px;
    }
    .album-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}