@charset "utf-8";
/*列表通用 index、album*/
.album-list .pic {
    overflow: hidden;
}
.album-list .box .pic img {
    transition: all ease 0.5s;
}
.album-list .box:hover .pic img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.album-list.type3 .pic:before,
.album-list.type4 .pic:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /*border-radius: 50%;*/
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-image: url('../../../images/layout05/common/album/hover.png');
}
.album-list.type3 .box:hover .pic:before,
.album-list.type4 .box:hover .pic:before{
    opacity: 1;
    background-position: 50% 50%;
}
.album-list:not(.masonry-list) .pic{
    border-radius: 50%;
    overflow:hidden; 
    border: 6px solid #fff;
}
.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.type1 .item .box .more:after{
    background: #F3B1B1;
    color: #fff;
}
.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;
}
/*------------ rwd ------------*/
@media screen and (max-width: 768px){
}
/*!列表通用 index、album*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*!瀑布流*/