﻿@charset "utf-8";
/*表单控件：多项单选*/
.multi-radio {
	display: inline-block;
	vertical-align: middle;
 *display:inline;
 *zoom:1;
}
.multi-radio:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.multi-radio .boxwrap {
	display: inline-block;
	vertical-align: middle;
 *display:inline;
}
.multi-radio a {
	display: inline-block;
	margin-right: -1px;
	float: left;
	padding: 5px 15px;
	height: 20px;
	line-height: 20px;
	border: 1px solid #ddd;
	vertical-align: middle;
	color: #555;
	font-size: 100%;
	cursor: pointer;
}
.multi-radio a:hover {
	background: #eee;
	text-decoration: none;
}
.multi-radio a:active {
	text-decoration: none;
}
.multi-radio a.selected {
	background: #0FBA5A;
	border-color: #0FBA5A;
	color: #fff;
}
/*表单控件：单项选择*/
.single-checkbox {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
 *display:inline;
 *zoom:1;
}
.single-checkbox a, .single-checkbox a:visited {
	display: inline-block;
	border: 1px solid #ddd;
	background: #ddd;
	width: 80px;
	vertical-align: middle;
	text-decoration: none;
}
.single-checkbox a i {
	display: block;
	width: 50%;
	height: 28px;
	line-height: 28px;
	font-style: normal;
	background: #fff;
	color: #555;
	text-align: center;
}
.single-checkbox a i.on {
	float: right;
	display: none;
}
.single-checkbox a i.off {
	float: left;
	display: block;
}
.single-checkbox a.selected {
	border: 1px solid #0FBA5A;
	background: #0FBA5A;
}
.single-checkbox a.selected i.on {
	display: block;
}
.single-checkbox a.selected i.off {
	display: none;
}
/*表单控件：多项选择*/
.multi-checkbox {
	display: inline-block;
	vertical-align: middle;
 *display:inline;
 *zoom:1;
}
.multi-checkbox:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.multi-checkbox .boxwrap {
	display: inline-block;
	vertical-align: middle;
}
.multi-checkbox a {
	display: inline-block;
	float: left;
	margin-right: -1px;
	padding: 5px 15px;
	height: 20px;
	line-height: 20px;
	border: 1px solid #ddd;
	vertical-align: middle;
	color: #555;
	font-size: 100%;
	cursor: pointer;
}
.multi-checkbox a:hover {
	background: #eee;
	text-decoration: none;
}
.multi-checkbox a:active {
	text-decoration: none;
}
.multi-checkbox a.selected {
	background: #0FBA5A;
	border-color: #0FBA5A;
	color: #fff;
}
.multi-checkbox a:last-child {
}
/*表单控件：多项选择PORP*/
.multi-porp {
	display: inline-block;
	vertical-align: middle;
 *display:inline;
 *zoom:1;
}
.multi-porp ul li {
	float: left;
	position: relative;
	margin: 0 8px 8px 0;
	padding: 1px;
	line-height: 20px;
	vertical-align: middle;
}
.multi-porp ul li a {
	display: block;
	padding: 4px 10px;
	color: #666;
	min-width: 10px;
	width: auto !important;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid #ddd;
	cursor: pointer;
}
.multi-porp ul li i {
	display: none;
	position: absolute;
	right: 0;
	bottom: 1px;
	width: 12px;
	height: 12px;
	text-indent: -99em;
	overflow: hidden;
}
.multi-porp ul li.sys {
	background: #FFFFD0;
}
.multi-porp ul li.selected a {
	margin: -1px;
	color: #555;
	border: 2px solid #0FBA5A;
}
.multi-porp ul li.selected i {
	display: block;
	background: url(../images/zs-drop-check.png);
}
/*表单控件：下拉菜单*/
.single-select {
	position: relative;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
	cursor: pointer;
 *float:left;
 *display:inline;
 *zoom:1;
}
.single-select .boxwrap {
	display: inline-block;
	vertical-align: middle;
 *display:inline;
 *zoom:1;
}
.single-select .select-tit {
	position: relative;
	display: block;
	padding: 5px 38px 5px 10px;
	min-width: 40px;
	line-height: 20px;
	height: 20px;
	border: solid 1px #ddd;
	text-decoration: none;
	background: #fff;
	white-space: nowrap;
	word-break: break-all;
}
.single-select .select-tit span {
	display: inline-block;
	color: #333;
	font-size: 12px;
	vertical-align: middle;
}
.single-select .select-tit i {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 28px;
	height: 100%;
	border-left: 1px solid #ddd;
	background: url(../images/zs-ddl-arr.png) center no-repeat #fafafa;
}
.single-select .select-items {
	display: none;
	position: absolute;
	left: 0;
	top: 45px;
	box-shadow: 1px 2px 5px #ccc;
}
.single-select .select-items ul {
	position: relative;
	padding: 5px;
	min-width: 120px;
	max-height: 280px;
	border: 1px solid #ddd;
	background: #fff;
	overflow-y: auto;
	overflow-x: hidden;
}
.single-select .select-items ul li {
	display: block;
	padding: 4px 10px;
	line-height: 20px;
	font-size: 12px;
	color: #666;
	white-space: nowrap;
	cursor: pointer;
}
.single-select .select-items ul li:hover {
	text-decoration: none;
	background: #eee;
}
.single-select .select-items ul li.selected {
	color: #FFF;
	background: #0FBA5A;
}
.single-select .arrow {
	display: none;
	position: absolute;
	left: 15px;
	top: 35px;
	width: 21px;
	height: 11px;
	text-indent: -9999px;
	background: url(../images/zs-ddl-bg.png) no-repeat;
}
/*表单验证*/
.Validform_checktip {
	margin-left: 8px;
	line-height: 20px;
	height: 20px;
	overflow: hidden;
	color: #999;
	font-size: 12px;
}
.Validform_right {
	color: #43cb1e;
	padding-left: 20px;
	background: url(../images/vform-right.png) no-repeat left center;
}
.Validform_wrong {
	color: red;
	padding-left: 20px;
	white-space: nowrap;
	background: url(../images/vform-error.png) no-repeat left center;
}
.Validform_loading {
	padding-left: 20px;
	background: url(../images/vform-onLoad.gif) no-repeat left center;
}
.Validform_error {
	border-color: #F56A6A;
	background-color: #FEFBD3;
}
#Validform_msg {
	color: #7d8289;
	font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
	width: 280px;
	-webkit-box-shadow: 2px 2px 3px #aaa;
	-moz-box-shadow: 2px 2px 3px #aaa;
	background: #fff;
	position: absolute;
	top: 0px;
	right: 50px;
	z-index: 99999;
	display: none;
 filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#999999');
	box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}
#Validform_msg .iframe {
	position: absolute;
	left: 0px;
	top: -1px;
	z-index: -1;
}
#Validform_msg .Validform_title {
	line-height: 25px;
	height: 25px;
	text-align: left;
	font-weight: bold;
	padding: 0 8px;
	color: #fff;
	position: relative;
	background-color: #0FBA5A;
}
#Validform_msg a.Validform_close:link, #Validform_msg a.Validform_close:visited {
	line-height: 22px;
	position: absolute;
	right: 8px;
	top: 0px;
	color: #fff;
	text-decoration: none;
}
#Validform_msg a.Validform_close:hover {
	color: #ccc;
}
#Validform_msg .Validform_info {
	padding: 8px;
	border: 1px solid #ddd;
	border-top: none;
	text-align: left;
}
.infor {
	margin-left: 8px;
	border: 1px solid #ccc;
	padding: 8px 20px 8px 10px;
	color: #666;
	float: left;
	position: relative;
	display: none;
	line-height: 20px;
}
/*对话框*/
.dialogParent {
	padding: 6px;
	width: 302px;
	background: #cdcdcd;
	background: rgba(201,201,201,0.5);
	position: absolute;
	-moz-border-radius: 3px;
	font-size: 12px;
	top: 50px;
	left: 50px;
	z-index: 100;
}
.dialogContent {
	height: auto;
	background: #fff;
}
h2.dialogTitle {
	width: 100%;
	height: 28px;
	background: #0FBA5A;
	text-indent: 10px;
	font-size: 12px;
	color: #fff;
	line-height: 28px;
	margin: 0;
}
.dialogHtml {
	padding: 20px 20px 20px 70px;
	width: 200px;
	line-height: 25px;
	font-size: 12px;
	background: url(../images/dialog-bg.png) 30px center no-repeat;
}
.dialogUrl {
	padding: 20px 30px;
	width: 240px;
	background: none;
}
.dialogUrl iframe {
	width: 240px;
	height: 100px;
	overflow: hidden;
}
.dialogBar {
	border-top: 1px solid #eee;
	background: #f8f8f8;
	height: 30px;
}
.dialogBar input.dialogBtn {
	float: right;
	margin: 3px 5px 0px 0px;
	width: 63px;
	height: 23px;
	color: #fff;
	border: 0px;
	background: #0FBA5A;
	cursor: pointer;
}
.dialogBar input.dialogCancel {
	background: #666;
}
.dialogBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background: #eee;
	z-index: 99;
}
