/* CSS Document */

/*====
	弹出层样式
	次样式文件可以脱离其他样式单独使用
====*/

/*全局样式*/
.radius3 {border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px;}
.radius5 {border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px;}
.radius8 {border-radius: 8px; -webkit-border-radius: 8px; -moz-border-radius: 8px;}
.radius10 {border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px;}
.radius50 {border-radius: 50%; -webkit-border-radius: 50%; -moz-border-radius: 50%;}
.center {text-align: center;}
.noBorder {border: none;}
.re{position:relative; z-index: 1;left: 0;top: 0;} /*相对定位样式*/
.ab{ position:absolute; z-index: 10;}/*绝对定位公用样式*/
.fixed{position: fixed; z-index: 100;}

.publicPop {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../images/pop/blackFilter.png);	
}
.popContainer {
	width: 800px;
	border: none;
	left: 50%;
	top: 50%;
	background: #fff;
}
.popContent {
	padding: 10px 0 0 0;	
}
.popContent h3.title {
	font-size: 15px;
	font-weight: normal;
	padding: 10px 0 30px 0;	
}
.popCloseBtnNew {
	right: 10px;
	top: 10px;	
	width: 18px;
	height: 17px;
	cursor: pointer;
	background: url(../images/pop/closeBtn2.png) no-repeat center;
	background-size: 18px 17px;
}
.popCloseBtnNew:hover {
	transform:rotate(180deg);
	-ms-transform:rotate(180deg); 	/* IE 9 */
	-moz-transform:rotate(180deg); 	/* Firefox */
	-webkit-transform:rotate(180deg); /* Safari 和 Chrome */
	-o-transform:rotate(180deg); 	    /* Opera */	
}
.popHeader {
	height: 120px;
	line-height: 90px;
	border-radius: 5px 5px 0 0; 
	-webkit-border-radius: 5px 5px 0 0; 
	-moz-border-radius: 5px 5px 0 0;
	/*background: #57aafa url(../images/pop/popHeadBg.png) no-repeat center bottom;	*/
}
.popHeader img {
	display: inline; 
	vertical-align: middle;
}
.popHeader span {
	color: #fff; 
	margin: 0 0 0 10px;
}
.popHeaderSmall {
	background: url(../images/pop/418.png) no-repeat center;	
}
.popHeaderMiddle {
	background: url(../images/pop/480.png) no-repeat center;	
}
.popHeaderBig {
	background: url(../images/pop/600.png) no-repeat center;	
}

.popbtnGroup .popBtn {
	padding: 0 20px;
	min-width: 96px;
	margin: 0 5px;
	height: 34px;
	outline: none;	
}
.popbtnGroup .popBtn:hover {
	filter: alpha(opacity=80);
	opacity: 0.8;	
}
.popbtnGroup .cancel_btn {
	color: #666;
	background: #EDEDED;
	border: none;
}
.popbtnGroup .sure_btn {
	background-color: #49a5f7;
	border: none;
	color: #fff;
}

.zIndexMax {z-index: 100000000;}