.banner{
	height: 150px;
	background-image: url("/static/home/img/banner_products.jpg");
	background-repeat: no-repeat;
	background-position: center center;
}

.breadcrumb{
	padding: 18px 0;
	background-color: #f8f8f8;
	margin: 0;
}
.breadcrumb a{
	color: #777;
	text-decoration: none;
}
.breadcrumb a:hover{
	color: #e62129;
}


.empty{
	text-align: center;
	padding: 50px 0;
}
.list-box{
	border-top: 1px solid #ccc;
}
.list-box .product-box{
	display: block;
	text-decoration: none;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #666;
	border: 1px solid #f8f8f8;
}
.list-box .product-box:hover{
	color: #e62129;
	border: 1px solid #e62129;
}
.list-box .product-box .product-img{
	width: 100%;
}
.list-box .product-box .title{
	padding: 5px;
	height: 50px;
	line-height: 22px;

	/*以下3句：单行文本显示省略号*/
	/*overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;*/

	/*以下5句：多行文本显示省略号*/
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}