﻿/*
******************************
********** author:@zhou小白猪
******************************
*/

.z_popup{
	position:fixed;
	_position:absolute;
	top:0;
	left:0;
	z-index:9999;
}
.z_popup_black{
	width:100%;
	height:100%;
	float:left;
	background:rgba(0,0,0,.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
	z-index:9999;
}
.z_popup_box{
	position:absolute;
	top:50%;
}
.z_popup_title{
	width:100%;
	height:49px;
	line-height:49px;
	float:left;
	border-bottom:1px solid #e6e6e6;
	background:#f4f5f9;
}
.z_popup_title a.z_popup_close{
	float:right;
	margin-right:15px;
	font-size:20px;
}
.z_popup_title a.z_popup_close:hover{
	text-decoration:none;
	color:#db4453;
}
.z_popup_title .z_popup_text{
	float:left;
	margin-left:10px;
	font-size:16px;
	font-weight:bold;
}
.z_popup_main{
	background:#fff;
	float:left;
}
.z_popup_main iframe{
	float:left;
}


/*系统加载中*/
.z_loading{
	position:fixed;
	_position:absolute;
	top:0;
	left:0;
	background:rgba(0,0,0,.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
	z-index:9999;
	font-size:20px;
	color:#fff;
	text-align:center;
	letter-spacing:2px;
}

/*提示信息框*/
.z_alert{
	position:fixed;
	_position:absolute;
	top:0;
	left:0;
	z-index:9999;
}
.z_alert_black{
	width:100%;
	height:100%;
	float:left;
	background:rgba(0,0,0,.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
	z-index:9999;
}
.z_alert_box{
	position:absolute;
	width:350px;
	height:160px;
	top:50%;
	left:50%;
	margin-left:-175px;
	margin-top:-80px;
	opacity:0;
}
.z_alert_title{
	width:100%;
	height:39px;
	line-height:39px;
	float:left;
	border-bottom:1px solid #e6e6e6;
	background:#f4f5f9;
}
.z_alert_title a.z_alert_close{
	float:right;
	margin-right:15px;
	font-size:20px;
}
.z_alert_title a.z_alert_close:hover{
	text-decoration:none;
	color:#db4453;
}
.z_alert_title .z_alert_text{
	float:left;
	margin-left:10px;
	font-size:16px;
	font-weight:bold;
}
.z_alert_main{
	width:300px;
	height:80px;
	background:#fff;
	float:left;
	position:relative;
	padding:20px 25px;
	font-size:15px;
}
.z_alert_main a.z_alert_close{
	width:75px;
	height:28px;
	line-height:28px;
	text-align:center;
	position:absolute;
	bottom:15px;
	right:20px;
	background:#68b42b;
	color:#fff;
	border-radius:2px;
}
.z_alert_main a.z_alert_close:hover{
	text-decoration:none;
	background:#58a21b;
}

/*CONFIRM 提示信息框*/
.z_confirm{
	position:fixed;
	_position:absolute;
	top:0;
	left:0;
	z-index:9999;
}
.z_confirm_black{
	width:100%;
	height:100%;
	float:left;
	background:rgba(0,0,0,.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
	z-index:9999;
}
.z_confirm_box{
	position:absolute;
	width:330px;
	height:180px;
	top:50%;
	margin-left:-165px;
	margin-top:-90px;
}
.z_confirm_title{
	width:100%;
	height:39px;
	line-height:39px;
	float:left;
	border-bottom:1px solid #e6e6e6;
	background:#f4f5f9;
}
.z_confirm_title a.z_confirm_close{
	float:right;
	margin-right:15px;
	font-size:20px;
}
.z_confirm_title a.z_confirm_close:hover{
	text-decoration:none;
	color:#db4453;
}
.z_confirm_title .z_confirm_text{
	float:left;
	margin-left:10px;
	font-size:16px;
	font-weight:bold;
}
.z_confirm_main{
	width:280px;
	height:100px;
	background:#fff;
	float:left;
	position:relative;
	padding:20px 25px;
	font-size:15px;
}
.z_confirm_main a.z_confirm_yes{
	width:75px;
	height:28px;
	line-height:28px;
	text-align:center;
	position:absolute;
	bottom:15px;
	right:20px;
	background:#68b42b;
	color:#fff;
	border-radius:2px;
}
.z_confirm_main a.z_confirm_yes:hover{
	text-decoration:none;
	background:#58a21b;
}
.z_confirm_main a.z_confirm_no{
	width:75px;
	height:28px;
	line-height:28px;
	text-align:center;
	position:absolute;
	bottom:15px;
	right:105px;
	background:#d3413c;
	color:#fff;
	border-radius:2px;
}
.z_confirm_main a.z_confirm_no:hover{
	text-decoration:none;
	background:#bf322d;
}