@charset "utf-8";

.floatTip-mask {
	display: none;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 3000;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.7;
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	filter: alpha(opacity=70);
}

.floatTip {
	display: none;
	overflow: hidden;
	position: fixed;
	z-index: 3000;
	border-radius: 14px;
	max-width: 75%;
	bottom: 100px;
	padding-bottom: 0;
	background-color: #fff;
	margin-left: 12%;
}

.floatTip .title {
	text-align:center;
	font-size: 20px;
	padding: 10px 0 10px 0;
	border-bottom: 1px solid #e3e3e3;
}

.floatTip .title .t_detail {
	letter-spacing: 10px;
}

.floatTip .detail {
    font-size: 15px;
	text-indent: 2em;
	max-height: 400px;
	overflow-y: auto;
	padding: 10px 8px 8px 10px;
}

.floatTip .opts {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #d5444f;
	border-bottom-right-radius: 14px;
	border-bottom-left-radius: 14px;
}

.floatTip .opts a {
	text-align: center;
}

.floatTip .opts .close {
	color: #fff;
	font-size: 18px;
}