@charset "utf-8";
/* 瀑布流样式 */
.item_list{position:relative;padding:0px;}
.item{
	width:280px;overflow:hidden;margin:15px 0 0 0;
	color:#444;border:1px #ddd solid;
}
.item a {
	display: block;
	color: #969696;
	float: left;
	width:280px;
}
.item .pic {
	width: 100%;
	background-image: url(../images/caseimg_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	position: relative;
}
.item .pic img {
	width: 100%;
	transition: 600ms;
	-webkit-transition: 600ms;
}
.item .bodr {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #9acf16;
	transition: 300ms;
	-webkit-transition: 300ms;
	opacity: 0;
	display: none\9;
}
.item .title {
	padding: 20px 10px;
	position: relative;
	transition: background 300ms;
	-webkit-transition: background 300ms;
	
}
.item .title .ch {
	font-size: 16px;
	font-family: "微软雅黑";
	color: #272528;
	white-space: nowrap;
	overflow:hidden;white-space:nowrap;text-overflow:ellipsis;
}
.item .title .en {
	color: #999;
}
.item .title .line {
	display: block;
	background: #f9f9f9;
	position: absolute;
	transition: 300ms;
	-webkit-transition: 300ms;
}
.item .title .line_1 {
	width: 24px;
	height: 1px;
	top: 50%;
	right: 30px;
	margin-top: -1px;
	transform: translateX(30px);
	-webkit-transform: translateX(30px);
}
.item .title .line_2 {
	width: 1px;
	height: 24px;
	top: 50%;
	margin-top: -12px;
	right: 42px;
	transform: translateY(30px);
	-webkit-transform: translateY(30px);
}
.item:hover{border:1px #9acf16 solid;}
.item a:hover .pic img {
	transform: scale(1.09);
	-webkit-transform: scale(1.09);
}
.item a:hover .title {
	background: #9acf16;
}
.item a:hover .title .ch {
	color: #fff;
}
.item a:hover .title .en {
	color: #fff;
}
.item a:hover .title .line {
	transform: translate(0);
	-webkit-transform: translate(0);
}
