<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.album-list {
    max-width: 1200px;
    margin: 0 auto;
}
.album-list .item {
    width: 25%;
}
.album-list .item:nth-child(4n+1) {
    clear: left;
}

.album-list .box {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 .item.more {
    background: url(../../images/common/index/album_title_right.jpg);
}

.album-list .item.more .box {
    background: url(../../images/common/index/album_more.png);
    width: 72px;
    height: 72px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-size: 100% auto;
}

.album-list .item.more .box:hover {
    opacity: 0.7;
}

.album-list .box .sect-title {
    background: url(../../images/common/index/album_title_txt.png) no-repeat 50% 50%;
    margin: 0 auto;
    width: 117px;
    height: 101px;
    text-indent: -99999px;
}

.album-sect .sect-title span {
    display: block;
    font-size: 36px;
}
.album-list .pic {
    position: relative;
    overflow: hidden;
}
.album-list .pic:before {
    content: '';
    display: block;
    background: url('../../images/common/album/hover.png') 50% 42% / 40% auto no-repeat rgba(68, 68, 68, 0.75);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover .pic:before {
    opacity: 1;
    background-size: 70% auto;
}
.album-list .name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    background:rgba(51, 51, 51, 0.7);
    color: #fff;
    font-size: 15px;
    line-height: 35px;
    padding: 0 10px;
    height: 35px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.album-list .box:hover .name {
    bottom: 0;
}
.album-list .item.more .box:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1000px) {
    .album-list {
        max-width: 900px;
    }
    .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: 600px) {
    .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: 400px) {
    .album-list .item {
        width: 100%;
    }
    .album-list .item:nth-child(n) {
        clear: none;
    }
}</pre></body></html>