.ct {
	width:230px;
	height:350px;
	position:relative;
	overflow:hidden;
	margin-bottom:15px;
	float:left;
	margin-left:10px;
}
.ct img {
	width:230px;
	height:350px;
	float:left;
	transition:all 0.6s;
	cursor:pointer;
	border:0;
}
.ct img:hover {
	transform:scale(1.5);
}
.note {
	width:230px;
	height:65px;
	font-size:13px;
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	cursor:pointer;
	line-height:30px;
	/*初始化隐藏多余文字*/
            white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	float:left;
	position:absolute;
	bottom:0px;
	background-color:rgba(0,0,0,0.5);
	/* 背景变灰 */
            transition:all 0.6s;
}
.note:hover {
	width:230px;
	height:350px;
	line-height:30px;
	text-indent:1em;
	/*显示全部文字*/
            white-space:normal;
	word-break:break-word;
	text-overflow:inherit;
}