@charset "utf-8";
/*列表通用 index、album*/
.album-list .item {
    margin-bottom: 40px;
}
.album-list:not(.masonry-list) .pic{
    box-sizing: border-box;
    margin: 0 1px;
    background: #fff;
    border: 6px solid #fff;
    outline: solid 1px #ddd;
    border-radius: 50%;
    overflow: hidden;
}
.album-list:not(.masonry-list) .pic *,
.album-list:not(.masonry-list) .pic:before,
.album-list:not(.masonry-list) .pic:after{
    border-radius: 50%;
    overflow: hidden;
}
.album-list .pic:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: rgb(70, 56, 50, 0.4);
    z-index: 1;
}
.album-list .box:hover .pic:before {
    opacity: 1;
}
.album-list .item .name {
    margin: 15px 5px 0;
    color: #4E423D;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
}
.album-list .box:hover .name{
    color: #A6864B;
}
/*al_type1*/
.album-list.type1 .item .box .more:after{
    background: #EC9879;
    color: #fff;
}
.album-list.type1 .item {
    border-bottom: 1px solid rgb(221, 204, 191, 0.3);
}
.album-list.type1 .item .name {
    margin: 15px 15px;
}
/*/al_type1*/
/*al_type2*/
.album-list.type2 .box .pic:before {
    width: 100%;
    height: 100%;
    background: rgb(70, 56, 50, 0.4);
}
/*/al_type2*/
/*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.album-list .item .namebox{
    position: relative;
}
.masonry-list.album-list.type4 .item .namebox:after{
    display: none;
}
.masonry-list.album-list.type3 .item,
.masonry-list.album-list.type1 .item{
    padding: 0 15px!important;
}
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*/al_瀑布式*/
/*------------ rwd ------------*/