.grid figure {
	margin: 0;
	position: relative;
}
.grid figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1200px;
	min-height: 150px;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figcaption u {
	display: block;
	font-style: normal;
	text-decoration: none;
	font-size: 22px;
}
.grid figcaption i {
	display: block;
	font-style: normal;
	margin-top: 14px;
	color: #f5f5f5;
}
.grid figcaption p {
	position: absolute;
	left: 0;
	padding-left: 70px;
	width: 1050px;
	opacity: 0;
	letter-spacing: 1px;
	font-size: 16px;
	font-family: "Microsoft YaHei";
	z-index: 101;
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
}
figure figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 75%);*/
	
	background: rgba(0, 0, 0, 0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(0, 50%, 0);
	transform: translate3d(0, 50%, 0);
}
figcaption::before,
figcaption p {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figcaption p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2em;
	width: 100%;
	opacity: 0;
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
}
figure:hover figcaption::before,
figure:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}