@charset "utf-8";
/*------------ album ------------*/
/*列表通用 index、album*/
.album-list .item {
    margin: 0 auto 40px;
}
.album-list li .pic:before {
	content: "";
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}
.album-list li .box:hover .pic:before{
    opacity: 1;
}
.album-list .item .name {
    font-size: 18px;
    color: #32302D;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 24px;
    max-height: 24px;
    height: 24px;
    -webkit-line-clamp: 1;
    transition: all 0.3s ease;
    margin: 10px 5px;
}
.album-list .box:hover .name{
    color: #6A080C;
}
/*/列表通用 index、album*/
/*al_type1*/
.album-list.type1.column6 {
    margin: 0;
}
.album-list.type1.column6 .item {
    padding: 0;
}
.album-list.type1 .item .name {
    font-weight: normal;
}
.album-list.type1 .item{
    border-color: #ddd;
}
.album-list.type1 .item .box .more:after{
    background: #6A080C; 
    color: #D4AA56; 
}
.masonry-list.album-list.type1 .box{
    border-bottom: 1px solid rgb(212, 170, 86, 0.5);
    transition: all 0.3s ease;
}
.masonry-list.album-list.type1 .box:hover  {
    border-bottom: 1px solid rgb(212, 170, 86, 1);
}
.masonry-list.album-list.type1 .item .name {
    margin: 10px 5px;
}
/*/al_type1*/
/*al_type2*/
.album-list.type2 .box .pic:before {
    background: rgba(0, 0, 0, 0.55);
    transition: all .3s ease;
}
/*/al_type2*/
/*al_type3*/
.album-list.type3 {
    margin: 0 -15px;
}
.album-list.type3 .item {
    padding: 0 15px;
}
.album-list.type3 .item .box {
    border-bottom: 1px solid rgb(212, 170, 86, 0.5);
    transition: all 0.3s ease;
}
.album-list.type3 .item .box:hover .box {
    border-bottom: 1px solid rgb(212, 170, 86, 1);
}
/*/al_type3*/
/*al_瀑布流*/
.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;
}
.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: 1440px){
    .album-list.type3 {
        margin: 0 -10px;
    }
    .album-list.type3 .item {
        padding: 0 10px;
    }
}
@media screen and (max-width: 1000px){
    .album-list .item .name{
        font-size: 16px;
    }
}
@media screen and (max-width: 480px){
    .album-list.type3 {
        margin: 0 -5px;
    }
    .album-list.type3 .item {
        padding: 0 5px;
    }
}