@charset "utf-8";
/*------------ album ------------*/
/*列表通用 index、album*/
.album-list .item {
    margin: 0 auto 20px;
}
.album-list .item .pic,
.album-list .item .pic img {
    border-radius: 10px;
}
.album-list .item .name{
    color: #444;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 15px 0 0;
    transition: all 0.3s ease;
}
.album-list .box:hover .name {
    color: #00988D;
}
/*/列表通用 index、album*/
/*al_type1*/
.album-list.type1 .item {
    border-bottom: 1px dashed #d6d6d6;
}
.album-list.type1 .item .box .more:after{
    color: #fff;
    background: #071D49;
}
.album-list.type1 .item .name {
    color: #444;
    font-size: 18px;
    line-height: 1.4;
    margin: 15px 0 10px;
}
.album-list.type1.column4 .item .name {
    margin: 15px 0 20px;
}
/*/al_type1*/
/*al_type2*/
.album-list.type2 .item .pic,
.album-list.type2 .item .pic img {
    border-radius: 0;
}
.album-list.type2 .box .pic:before {
    width: 100%;
    height: 100%;
    background: rgba(102, 102, 102, 0.85);
}
/*/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 .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;
    position: absolute;
    right: 12px;
    top: -26px;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-indent: initial;
    font-size: 22px;
    color: #fff;
    background: #071D49;
    border-radius: 50%;
    transition: all .3s ease;
    z-index: 2;
    opacity: 0;
}
.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_瀑布流*/
/*------------ /album ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
    .masonry-list .item .namebox:after {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        opacity: 1;
    }
    .album-list.type1 {
        margin: 0 -5px;
    }
    .album-list.type1 .item{
        padding: 0 5px;
    }
}
@media screen and (max-width: 767px) {
    .album-list.type1 .item .name {
        height: 50px;
    }
}