@charset 'utf-8';
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: 14px/100% arial,"Hiragino Sans GB","Hiragino Sans GB W3";
	vertical-align: baseline;
	font-family:"微软雅黑";

}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*动画匀速执行*/
.transition{
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition: all .3s linear;
}
/*清除浮动*/
.clearfloat:after{
	display:block;
	clear:both;
	content:"";
	visibility:hidden;
	height:0
}
.clearfloat{
	zoom:1
}



#container{
	width: 100%;
	height: 100%;
	min-width:1100px;
	overflow: hidden;
}
.header{
	position: relative;
	width: 100%;
	min-height: 60px;
	background-color: RGB(10,92,142);
	box-shadow: 0 0px 10px 5px #154986;
	z-index:99;
}
.header h1{
	display: inline-block;
	padding-left: 60px;
	height: 60px;
	margin-left: 85px;
	line-height: 60px;
	font-size: 20px;
	font-weight:600;
	color: #fff;
	background: url(/jwfilepath/system/logo.png) 8px center no-repeat;
	text-shadow: 2px 2px 2px #000;
	letter-spacing: 3px;
}
.main{
	position: relative;
	max-width: 100%;
	min-height: 500px;
	background: #4f95f4
}

.main-bg{
	position: absolute;
	width: 1200px;
	height: 100%;
	top: 20%;
	min-height: 500px;
	bottom:0;
	background: #4f95f4 url("../image/main.png") no-repeat 0 -100px;
}
.appIcon{
	position: absolute;
	left: 464px;
	top: 268px;
	width: 100px;
	height: 120px;
	text-decoration: none;
	text-align: center;
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
}
.appIcon a{
	display: block;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: 3px 3px 4px #666;
}
.appIcon a img{
	width: 80px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition: all .3s linear;
}
.appIcon a:hover img{
	width: 100px;
	margin-left: -10px;
	margin-top: -10px;
}
.appIcon span{
	display: inline-block;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
}
/*登录框*/
.loginBox{
	position: absolute;
	z-index: 20;
	width: 300px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 25px #2b468c;
	-moz-box-shadow: 0 0 25px #2b468c;
	box-shadow: 0 0 25px #2b468c;
	border-radius:5px;
	-webkit-border-radius:5px;
	-ms-border-radius:5px;
	-moz-border-radius:5px;
}

.login-title{
	position: relative;
	display: block;
	width: 90%;
	padding-left: 10%;
	height: 50px;
	line-height: 50px;
	font-size: 18px;
	color: RGB(15,136,235);
	font-weight: bold;
	border-bottom:1px solid #D1D5D1;
	box-shadow: 0 0 1px #D1D5D1;
	-webkit-box-shadow: 0 0 1px #D1D5D1;
	-moz-box-shadow: 0 0 1px #D1D5D1;
	-ms-box-shadow: 0 0 1px #D1D5D1;
	border-top-right-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	/*background: url(../images/login-bg.png) left bottom repeat-x;*/
}
.login-form{
	padding: 30px;
}
.inputBox{
	position: relative;
	border: 1px solid #bdbdbd;
	height: 39px;
	width: 240px;
	margin: 0px auto 20px;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition: all .3s linear;
	border-radius:2px;
}
.inputBox:hover{
	-webkit-box-shadow: 0 0 5px #3aa2e4;
	-moz-box-shadow: 0 0 5px #3aa2e4;
	box-shadow: 0 0 5px #3aa2e4;
}
.input{
	line-height: 18px;
	height: 18px;
	border: 0;
	padding: 10px 0 10px 50px;
	width: 190px;
	float: none;
	overflow: hidden;
	font-size: 14px;
	background-color: #fff;
	outline: none;
}
.label{
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	width: 38px;
	height: 39px;
	background:url(../image/icon/icons.png) no-repeat;
}
.label-account{
	border-right: 1px solid #bdbdbd;
	background-position: 0 0;
}
.label-password{
	border-right: 1px solid #bdbdbd;
	background-position: -48px 0;
}
.account_focus{
	border-right: 1px solid #3aa2e4 !important;
	background-position: 0 -48px !important;
}
.password_focus{
	border-right: 1px solid #3aa2e4 !important;
	background-position: -48px -48px !important;
}
.safe-login{
	visibility:hidden;
	margin-top:-15px;
	position: relative;
	color: #666;
}
.safe-login #rmbUser{
	vertical-align: middle;
}
.safe-login label{
	font-size: 12px;
	line-height: 18px;
}
.submit-btn{
	position: relative;
	display: inline;
	height: 40px;
	min-width: 243px;
	margin: 20px auto 0;
	background-color: RGB(15,136,235);
	border: none;
	border-radius: 3px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition: all .3s linear;
	line-height:20px;
}
.submit-btn:hover{
	background-color: #55abed;
	cursor: pointer;
}


.footer{
	position: relative;
	width: 100%;
	min-height: 40px;
	max-height: 100px;
	padding-top: 20px;
	background-color: #fff;
	text-align: center;
}
.footer ul{
	display:table;
	margin:0 auto;
	text-align: center;
}
.footer ul li{
	float: left;
	display: inline-block;
	height: 20px;
	line-height: 20px;
}
.footer ul a{
	font-size:11px;
	color: #949494;
	text-decoration: none;
	border-right: 1px solid #949494;
	padding: 0 10px;
}
.footer ul li:last-child a{
	border-right: none;
}