/*瀑布流*/
#paint-list{
	position: relative;
	width: 96%;
	margin-left: 2%;
}

.paint-list-item{
	background: #ccc;
	position: absolute;
	float: left;

	left: 0;
	top: 20px;
	width: 22%;

	box-shadow: 0 0 10px #666;

	border-top: 1px solid #fff;
	border-bottom: 1px solid #333;
}
.paint-list-item:hover{
	box-shadow: 0 -10px 20px #666;
	border-bottom: none;
}

.paint-list-pin{
	background: #999;
}

.paint-list-pin > .paint-list-img{
	background: yellow;
	background: url("/public/static/catt/img/img_bg.jpg") left top;
	width: 100%;

	cursor: pointer;
}

.paint-list-pin > .paint-list-img > img{
	width: 100%;
}

.paint-list-pin > .paint-list-title{
	background: #eee;

	padding: 10px 5px;
	font-size: 18px;
}

.paint-list-pin > .paint-list-intro{
	background: #fff;

	padding: 10px;
	color: #666;
}