@charset "utf-8";
/*------------ album ------------*/
/*列表通用 index、album*/
.album-list.type1 .item .box .more:after{
    color: #fff;
    background: #D2A36C;
}
.album-list .item .name{
    text-align: left;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #3F2D26;
    font-family: 'Noto Serif TC', serif;
    transition: all 0.3s ease;
    font-size: 18px;
}
.album-list .box:hover .name{
    color: #D2A36C;
}
/*/列表通用 index、album*/
/*al_type1*/
.album-list.type1 {
    margin: 0;
}
.album-list.type1 .item {
    padding: 0;
}
.album-list.type1 .item .name {
    margin: 15px 5px 0;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 16px;
}
.album-list.type1.masonry-list {
    margin: 0 -10px;
}
.album-list.type1.masonry-list .item {
    padding: 0 10px;
}
.album-list.type1.masonry-list .item .name {
    font-size: 18px;
}
.album-list.type1 .item {
    border-bottom: 1px solid #ECE7E1;
}
/*/al_type1*/
/*al_type2*/
.album-list.type2 .box .pic:before {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: rgba(63, 46, 39, 0.5);
    border: 3px solid #D2A36C;
    transform: translate(0, 50px);
    transition: all .3s ease;
}
.album-list.type2 .box:hover .pic:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
/*/al_type2*/
/*al_type3*/
.album-list.type3 {
    margin: 0 -10px;
}
.album-list.type3 .item {
    padding: 0 10px;
}
/*/al_type3*/
/*al_瀑布式*/
.masonry-list.album-list.type1 .item{
    margin-bottom: 40px;
}
.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: 24px;
    position: absolute;
    width: 40px;
    height: 40px;
    text-align: center;
    right: 18px;
    margin: auto;
    top: -45px;
    z-index: 3;
    color: #ffffff;
    background: #D2A36C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    border-radius: 100%;
    transform: translate(0, 50px);
    opacity: 0;
}
.masonry-list.type1 .item .box:hover .namebox:after,
.masonry-list.type3 .item .box:hover .namebox:after{
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.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_瀑布式*/
/*------------ /album ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
    .album-list.type1 .item .name,
    .album-list.type1.masonry-list .item .name {
        font-size: 16px;
        padding: 0;
        -webkit-line-clamp: 1;
        height: 22px;
    }
    .masonry-list .item .namebox:after {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .album-list.type1 .item .name {
        -webkit-line-clamp: 1;
        height: 22px;
    }
}