/*中部图片悬停效果*/
.container{
	width: 100%;
	height: 150px;
	margin-left: auto;
    margin-right: auto;
	margin-bottom: 40px;
	padding: 16px 0;
    background-color: #535353;
    overflow: hidden;
} 
.gallery{
	margin-left: -9px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.gallery-item{
	width: 115px;
	height: 150px;
	border: 1px solid #393939;
	margin-left: 10px;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.gallery-item-image{
	position: absolute;
	width: 115px;
	height: 150px;
	background: lightblue;
	z-index:20;
	-webkit-transition:all .5s ease;
	transition: all .5s ease;
	bottom:0;
	overflow: hidden;
}
.gallery-item:hover{
	border-color: #ff9a6a;
	box-shadow: 0 0 14px #ff9a6a;
}
.gallery-item:hover .gallery-item-image{
	border-bottom: 1px solid #ff9a6a;
	box-shadow: 0 0 30px #ff9a6a;
	bottom: 126px;
}

.gallery-item-description{
	color:#E8E8E8;
	width: 100%;
	height: 126px;
	padding: 6px;
	background: #3E3E3E;
	position: absolute;
	bottom:0;
}
.gallery-item-description h3{
	margin-top: 15px;
	font-weight:bold;
	font-size: 13px;
	text-align: center;
	width: 100px;
	display: -moz-inline-box;
	display: inline-block;
	float: inherit;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.gallery-item-description span{
	font-size: 12px;
	color: #969696 ;
	margin-left: -2px;
	word-break: break-all;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:5;
	overflow: hidden;
	height: 80px;
	line-height: 16px;
	text-align: left;
	white-space: pre-line;
	
}