body {font-family: "Helvetica Neue Light", "Helvetica Neue", Arial, sans-serif;}
a {text-decoration: none;}
/*---滚动条默认显示样式--*/
::-webkit-scrollbar-thumb{
    height:8px;
    outline-offset:-2px;
    outline:1px solid #333;
    -webkit-border-radius:3px;
    border: 1px solid #1b1b1b;
}
/*---鼠标点击滚动条显示样式--*/
::-webkit-scrollbar-thumb:hover{
    height:8px;
    -webkit-border-radius:3px;
}
/*---滚动条大小--*/
::-webkit-scrollbar{
    width:8px;
    height:8px;
}
/*---滚动框背景样式--*/
::-webkit-scrollbar-track-piece{
    -webkit-border-radius:0;
}
::-webkit-scrollbar-track { background-color: #1b1b1b; } /* 滚动条的滑轨背景颜色 */ 
::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, 0.1); } /* 滑块颜色 */ 
::-webkit-scrollbar-button { background-color: #1b1b1b; } /* 滑轨两头的监听按钮颜色 */
::-webkit-scrollbar-corner { background-color: #1b1b1b; } /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
/**
 * Progress bar for imagesLoaded
 */
.progress-bar {
    background-color: #0BC20B;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    -webkit-box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
        -moz-box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
            box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
    -webkit-transition: width 0.1s ease-out;
        -moz-transition: width 0.1s ease-out;
            -o-transition: width 0.1s ease-out;
                transition: width 0.1s ease-out;
}

/**
 * Placerholder css
 */
.wookmark-placeholder {
    -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
            border-radius: 2px;
    background-color: #eee;
    border: 1px solid #dedede;
    z-index: -1;
}

/**
 * Grid container
 */
.tiles-wrap {
    position: relative; /** Needed to ensure items are laid out relative to this container **/
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: none;
}


/**
 * Grid items
 */
.tiles-wrap li {
    display: block;
    opacity: 0;
    text-align: center;
    list-style-type: none;
    background-color: #fafafa;
    float: left;
    cursor: pointer;
    width: 290px;
    border: 0px solid #fafafa;
    overflow: hidden;
    /*
    border: 1px solid #dedede;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
            border-radius: 2px;
    */
}
.tiles-wrap.wookmark-initialised.animated li {
    -webkit-transition: all 0.3s ease-out;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
}

.tiles-wrap.wookmark-initialised li {
    opacity: 1;
}

.tiles-wrap li.wookmark-inactive {
    visibility: hidden;
    opacity: 0;
}

.tiles-wrap li:hover {
    background-color: #eee;
}
.tiles-wrap li p, .works-wrap li p{
    display: block;
    position: absolute;
    bottom: -22px;
    z-index: 1;
    text-align: center;
    color: #fff;
    width: 280px;
    height: 22px;
    line-height: 22px;
    font-size: 13px;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%);
    overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
    padding: 0 5px;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}
.works-wrap li p{ 
    width: 240px!important;
}
.tiles-wrap li:hover p, .works-wrap li:hover p{
    bottom:0px;
}

.tiles-wrap img {
    display: block;
}

.tiles-wrap a {
    color: #555;
    text-align: center;
    /* display: table-cell; */
    width: 290px;
    height: 290px;
    font-size: 2em;
    font-weight: bold;
    text-decoration: none;
}

.tile-loading:after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #ddd;
    content: "Loading\2026";
    padding-top: 20px;
    color: #999;
}

/**
 * Filters
 */
#filters {
    list-style-type: none;
    text-align: center;
    margin: 0 5% 0 5%;
}

#filters:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

#filters li {
    font-size: 12px;
    float: left;
    padding: 6px 8px 4px;
    cursor: pointer;
    margin: 0 10px;
    -webkit-transition: all 0.15s ease-out;
        -moz-transition: all 0.15s ease-out;
        -o-transition: all 0.15s ease-out;
            transition: all 0.15s ease-out;
    -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
            border-radius: 3px;
}

#filters li:hover {
    background: #4281f5;
    color: #ffffff;
}

#filters li.active {
    background: #4281f5;
    color: #ffffff;
}
