@charset "utf-8";
/*列表通用 index、album*/
.album-list.type1 .item .box .more:after{
    color: #fff;
    background: rgb(0,160,155);
    background: -moz-linear-gradient(left, rgba(0,160,155,1) 0%, rgb(0,92,185,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,160,155,1) 0%,rgb(0,92,185,1) 100%);
    background: linear-gradient(to right, rgba(0,160,155,1) 0%,rgb(0,92,185,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00A09B', endColorstr='#005CB9',GradientType=1 );
}
.album-list .item .name{
    color: #444444;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    height: auto;
    transition: all .3s ease;
}
.album-list .item .box:hover .name{
    color: #005CB9;
}
.album-list.type2 .box .pic:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(26, 83, 83, .5);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    opacity: 0;
    transition: all .3s;
}
.album-list.type2 .pic {
    border-radius: 0;
}
.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: '';
    display: block;
    background: url(../../../images/layout06/common/index/album_hover.png);
    width: 44px;
    height: 44px;
    position: absolute;
    right: 12px;
    top: -26px;
    z-index: 20;
    transition: all .3s ease;
    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;
}
/*!瀑布流*/
.album-list .item .pic img{
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.album-list .item:hover .pic img{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/*------------ rwd ------------*/
/*!列表通用 index、album*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*!瀑布流*/
@media screen and (max-width: 767px) {
    .album-list.type1 .item .name {
        margin: 5px 0;
        font-size: 15px;
        height: auto;
    }
}