@charset "utf-8";
/*列表通用 index、album*/

.album-list li .pic:before {
        content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(136,209,88,.0) 0%, rgba(136,209,88,.8) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    opacity: 0;
    transition: all .3s;
}

.album-list li .box:hover .pic:before {
    transition: all 0.3s ease;
    opacity: 1;
}

.album-list .box .name {
    color: #333;
}

/* 版型 */

.album-list.type3 .box .namebox, .album-list.type1.masonry-list .box .namebox {
    padding: 20px 10px 0;
    background: unset;
    transition: all 0.3s ease;
}

.album-list.type3 .box:hover .namebox, .album-list.type1.masonry-list .box:hover .namebox {
    background: unset;
}

.album-list.type3 .box .name, .album-list.type1.masonry-list .box .name {
    color: #333333;
    font-size: 17px;
    margin: 0;
    letter-spacing: 0.75px;
    font-weight: bold;
    transition: all .3s ease;
}

.album-list.type3 .item .name, .album-list.type1.masonry-list .item .name {
    height: 25px;
    -webkit-line-clamp: 1;
}
.album-list.type3 .box:hover .name, .album-list.type1.masonry-list .box:hover .name{
    color: #0E8639;
}
.album-list.type2 .box .pic:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(136,209,88,.0) 0%, rgba(136,209,88,.8) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    opacity: 0;
    transition: all .3s;
}

/* ! 版型 */
.album-list .item .pic{
    border-radius: 25px;
    position: relative;

}
/*瀑布流*/

.masonry-list.album-list.type1 .item {
    margin-bottom: 25px;
}

.masonry-list.album-list.type1 .item .name {
    text-align: left;
}

.masonry-list.album-list.type1 .item .box .more {
    display: none;
}

/*!瀑布流*/

/*!列表通用 index、album*/

.album-list.type1 .item {
    border-color: #ccc;
}

.album-list.type1 .item .box .more:after {
    background-color: #0F8739;
    color: #fff;
}

/*瀑布流*/

.masonry-list .item:nth-child(n), .has-side .masonry-list .item:nth-child(n) {
    clear: none!important;
}

/*!瀑布流*/

@media screen and (max-width: 480px) {
    .album-list .item .pic {
        border-radius: 20px;
    }
    .album-list.type3 .box .namebox, .album-list.type1.masonry-list .box .namebox{
        padding: 10px 3px 0;
    }
    .album-list.type3 .box .name, .album-list.type1.masonry-list .box .name {
        font-size: 16px;
    }
}