@charset "utf-8";

html,body{
	position: relative;
}
.dg-loginPage{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../../images/login_bg.jpg) center no-repeat;
	background-size: 100% 100%;
}
.dg-loginBox{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	margin: -278px 0 0 -419px;
	width: 838px;
	height: 568px;
	background: url(../../images/loginbox.png) center bottom no-repeat;
	background-size:105%;
}
.login-logo{
	display: block;
	text-align: center;
}
.login-form{
	margin: 26px auto 0;
	padding: 30px 80px 0;
	box-sizing: border-box;
	width: 494px;
	height: 286px;
}
.register-link{
	display: block;
	margin-top: 6px;
	width: 100%;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	color: #fff600;
	text-align: center;
}
.register-link:hover{
	color: #fff600!important;
	text-decoration: underline;
}
.btn-login{
	display: block;
	width: 100%;
	height: 44px;
	font-size: 18px;
	line-height: 44px;
	text-align: center;
	color: #fff!important;
	background: #217ddd;
	border: solid 1px #217ddd;
	border-radius: 4px;
	cursor: pointer;
}
.btn-login:hover{
	background-color: #3691F1;
}

.dg-loginInfo{
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
}
.dg-loginInfo span{
	padding: 0 5px;
	color: #4a70aa;
	font-size: 12px;
}


/* Icon */
.icon-user{
	background-image: url(../../images/icon_user.png);
}
.icon-password{
	background-image: url(../../images/icon_password.png);
}

/* 表单组件 */
.form-group{
	position: relative;
	margin-bottom: 16px;
}
.form-group .icon{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 50px;
	height: 44px;
}
.form-group .input-txt{
	box-sizing: border-box;
	padding-left: 50px;
	width: 100%;
	height: 44px;
	color: #fff;
	font-size: 14px;
	border: solid 1px transparent;
	border-radius: 2px;
	background-color: rgba(22,40,65,0.5);
}
.form-group .input-txt:focus{
	border-color: #00a8ff;
	box-shadow: 0 0 10px rgba(0,126,255,.35);
}
.form-group .input-txt::-webkit-input-placeholder { 
	/* WebKit browsers */
  color: #8da4b9;
}
.form-group .input-txt:-moz-placeholder { 
	/* Mozilla Firefox 4 to 18 */
  color: #8da4b9;
}
.form-group .input-txt::-moz-placeholder { 
	/* Mozilla Firefox 19+ */
  color: #8da4b9;
}
.form-group .input-txt:-ms-input-placeholder { 
	/* Internet Explorer 10+ */
  color: #8da4b9;
}

/* 组件 · 复选框 */
.check-box{
	position: relative;
	display: inline-block;
	height: 30px;
	vertical-align: middle;	
}
.check-box .input-check{
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 30px;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
}
.check-box span{
	display: block;
	padding-left: 20px;
	min-width: 30px;
	height: 30px;
	font-size: 14px;
	color: #333;
	line-height: 30px;
	background: url(../../images/checkbox.png) left center no-repeat;
}
.check-box span.on{
	background: url(../../images/checkbox_on.png) left center no-repeat;
}
.check-box.on span{
	background: url(../../images/checkbox_on.png) left center no-repeat;
}
.icon {
  display: inline-block; 
  cursor: pointer; 
  background-position-x: center; 
  background-position-y: center; 
  background-repeat: no-repeat;
  vertical-align: middle;
}
.form-group .err {
	color: #ff0000;
	background: url(../../images/login_icon_err.png) no-repeat left center;
	padding-left: 20px;
	margin-top: 5px;
}
