@charset "utf-8";
/*列表通用 index、album*/
.album-list .item .pic {
    border-radius: 15px;
}
.album-list .item .name{
    text-align: left;
    color: #2B1F1D;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
    margin: 15px 5px 0;
}
.album-list .item .box:hover .name {
    color: #31637C;
}
/*/列表通用 index、album*/
/*al_type1*/
.album-list.type1 .item .name{
    margin: 15px 5px;
}
.album-list.type1 .item {
    border-bottom: 1px dotted #d6d6d6;
}
.album-list.type1 .item .box .more:after{
    color: #fff;
    background: #C04826;
    border: 5px solid #DD7151;
}
.album-list.type1 .item .box:hover .more:after {
    bottom: -22.5px;
    opacity: 1;
}
/*/al_type1*/
/*al_type2*/
.album-list.type2.column4 .item .pic {
    border-radius: 0;
}
.album-list.type2 .box .pic:before {
    width: 100%;
    height: 100%;
    background: rgb(75, 68, 67, 0.4);
    transition: all 0.3s ease;
}
/*/al_type2*/
/*al_type3*/
.album-list.type3 {
    margin: 0 -10px;
}
/*/al_type3*/
/*al_瀑布式*/
.masonry-list.album-list.type1 .item{
    margin-bottom: 0;
}
.masonry-list.album-list.type1 .item .name{
    text-align: left; 
}
.masonry-list.album-list.type1 .item .box .more:after{
    display: none;
}
.masonry-list .item .namebox{
    position: relative;
}
.masonry-list .item .namebox:after{
    content: '\10ffff';
    font-family: 'icon-font-34' !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;
    font-size: 20px;
    position: absolute;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin: auto;
    z-index: 2;
    border-radius: 100%;
    text-indent: initial;
    transition: all .3s ease;
    opacity: 0;
    right: 12px;
    top: -26px;
    color: #fff;
    background: #C04826;
    border: 5px solid #DD7151;
}
.masonry-list.type1 .item .box:hover .namebox:after,
.masonry-list.type3 .item .box:hover .namebox:after{
    opacity: 1;
}
.masonry-list.type4 .item .namebox:after{
    display: none;
}
.masonry-list.type1 .item .name,
.masonry-list.type3 .item .name{
    padding-right: 60px;
    position: relative;
}
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*/al_瀑布流*/