.facing-item{
	float: left;
	width: 280px;
	height: 220px;
	margin: 0 10px;
	border-radius: 5px;
	box-shadow: 0 0 1px 1px #f6f6f6;
	-webkit-transition: box-shadow .3s linear;
    -moz-transition: box-shadow .3s linear;
    -o-transition: box-shadow .3s linear;
    transition: box-shadow .3s linear;
	overflow: hidden;
}
.facing-img{
	width: 100%;
	height: 148px;
	overflow: hidden;
}
.facing-img img{
	display: block;
	width: 100%;
	height: 100%;
	-webkit-transition: transform .3s linear;
    -moz-transition: transform .3s linear;
    -o-transition: transform .3s linear;
    transition: transform .3s linear;
}
.facing-bi{
	padding: 13px 10px;
}
.facing-special{
	height: 22px;
	line-height: 22px;
	font-size: 16px;
	color: #222;
	font-weight: normal;
	margin-bottom: 8px;
	-webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
}
.facing-belong{
	height: 16px;
	line-height: 16px;
	font-size: 14px;
	color: #474747;
	-webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
}
.facing-item:hover{
	box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
}
.facing-item:hover img{
	transform: scale(1.1,1.1);
}
.facing-item:hover .facing-special{
	color: #cb0000;
}
.facing-item:hover .facing-belong{
	color: #222;
}