/*Tooltips*/
.tooltips {
	position:relative; /*这个是关键*/
	z-index:2;
}
.tooltips:hover {
	z-index:3;
	background:none; /*没有这个在IE中不可用*/
	
}
.tooltips span {
	display: none;
}
.tooltips:hover span { /*span 标签仅在 :hover 状态时显示*/
	display:block;
	position:absolute;
	top:-273px;
	left:0px;
	width:308px;
	height:290px;
	color:#fff;
	letter-spacing:1px;
	background-color:#000;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
       filter: alpha(opacity=70);
       opacity:.7;
	border-radius:0px;
	
}

.tooltips span div.name {
	width:308px;
	height: 60px;
	line-height:60px;
	text-align:center;
	font-size:30px;
	position:absolute;
	top:110px;
	left:0;
}
.tooltips span div.job {
	width:308px;
	height: 60px;
	line-height:60px;
	text-align:center;
	font-size:24px;
	position:absolute;
	top:170px;
	left:0;
}
.tooltips span div.more {
	width:308px;
	height: 64px;
	line-height:64px;
	text-align:center;
	font-size:24px;
	position:absolute;
	top:230px;
	left:0;
}
.tooltips span div.more b{
	font-weight:normal;
	width:234px;
	height: 56px;
	line-height:56px;
	text-align:center;
	display:block;
	border:3px solid #fff;
	border-radius: 5px;
	margin:0 auto;
	color:#fff;
}