.logo-box {
	width: 480px;
	margin: 0 auto 35px;
	padding-bottom: 60px;
}
.logo-box h2 {
	padding: 35px 0;
	font-weight: 400;
	font-size: 24px;
	color: #00978A;
	text-align: center;
}
.login-form-item {
	position: relative;
	margin-bottom: 20px;
}
.login-form-item .error-info {
	margin-bottom: -20px;
}
.login-form-item input {
	width: 360px;
	margin: 0 60px;
	padding-right: 30px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #333;
	text-indent: 18px;
	outline: none;
	border: 1px solid #ddd;
}
.login-form-item input:focus {
	border: 1px solid #00978A;
}
.login-form-item > i {
	position: absolute;
	right: 70px;
	top: 10px;
	width: 20px;
	height: 20px;
	z-index: 9;
}
.all-sign-sprite {
	background: url(images/sign-sprite.png) no-repeat 0 0;
}
.login-form-item .username-icon {
	background-position:  0 0;
}
.login-form-item .username-icon.input-focus {
	background-position: 0 -30px;
}
.login-form-item .password-icon {
	background-position: -30px 0;
}
.login-form-item .password-icon.input-focus {
	background-position: -30px -30px;
}
.login-form-item .code-icon.input-focus {
	background-position: 0 -20px;
}
.login-form-item .code-icon {
	right: 215px;
	background-position: 0 0;
}
.login-form-item .error-info {
	display: none;
	margin-left: 60px;
	line-height: 45px;
	font-size: 12px;
	color: #ff4400;
}
.error-info i.all-sign-sprite {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	vertical-align: sub;
	z-index: 10;
	background-position: -90px 0px;
}
.error-info.warn-info {
	color: #999;
}
.error-info.warn-info i.all-sign-sprite {
	background-position: -90px -30px;
}
.login-code {
	position: relative;
	float: left;
	width: 215px;
}
.login-code input {
	width: 100%;
}

.captcha-box {
	position: relative;
	margin-left: 280px;
	z-index: 20;
}
.show-captcha {
	margin: 0 0 0 8px;
	cursor: pointer;
	width: 95px;
	height: 40px;
}
.rest-sprite {
	background: url(images/rest-sprite.png) no-repeat 0 0;
}
.refresh-captcha {
	position: absolute;
	right: 70px;
	top: 10px;
	width: 20px;
	height: 20px;
	background-position: -20px 0;
	cursor: pointer;
}
.refresh-captcha:hover {
	background-position: -20px -20px;
}

.login-options {
	margin-top: 18px;
	padding: 0 60px;
	line-height: 14px;
}
.captcha-deck {
	display: none;
}
.idsave-check {
	position: relative;
	z-index: 10;
	height: 16px;
	line-height: 16px;
	font-size: 12px;
	color: #666;
	padding-left: 20px;
	cursor: pointer;
}
.login-options a {
	float: right;
	color: #00978A;
	font-size: 12px;
	text-decoration: none;
}
.login-options a:hover {
	text-decoration: underline;
}
/*IE8下 checkbox 隐藏时，label的点击和js都无法改变 checked状态，所以使用定位达到“隐藏”的目的（被checkbox-icon图标盖住）*/
.idsave-check input {
	position: absolute;
	z-index: -10;
	left: 0;
	top: 3px;
	width: 3px;
	height: 3px;
}
.checkbox-icon {
	position: absolute;
	left: 0;
	top: 1px;
	z-index: 10;
	width: 16px;
	height: 16px;
	background: #fff url(images/sign-sprite.png) no-repeat -60px 0;
}
.checkbox-icon-checked {
	background-position: -60px -30px;
}


.login-submit {
	width: 360px;
	height: 40px;
	margin: 30px 60px;
	line-height: 40px;
	border-radius: 3px;
	font-size: 18px;
	background-color: #00978A;
	color: #fff;
	border: none;
	outline: none;
	cursor: pointer;
}
.login-submit:hover {
	background-color: #0066cc;
}
.login-submit.disabled {
	background-color: #CCC;
	cursor: not-allowed;
}
.login-submit.disabled:hover {
	background-color: #CCC;
}

.go-reg {
	width: 360px;
	margin: 0 auto;
	padding-top: 25px;
	font-size: 14px;
	color: #666;
	border-top: 1px solid #ddd;
}
.go-reg span {
	line-height: 30px;
}
.go-reg a {
	float: right;
	padding: 5px 10px;
	color: #00978A;
	border: 1px solid #00978A;
	background-color: #fff;
}
.go-reg a:hover {
	text-decoration: none;
}

/* 密码输入大写开启提示 */
.caps-lock-remind {
	display: none;
	position: absolute;
	top: 33px;
	right: 60px;
	z-index: 31;
	padding: 10px;
	line-height: 12px;
	background-color: #fff;
	-webkit-box-shadow: 1px 1px 3px 2px rgba(0, 159, 217, 0.2);
	border: 1px solid #ccc;
	font-size: 12px;
}
.caps-lock-remind:before,
.caps-lock-remind:after {
	content: "";
	position: absolute;
}
.caps-lock-remind:before {
	border: 4px solid transparent;
	border-bottom-color: #fff;
	top: -8px;
	left: 42px;
	z-index: 10;
	margin-left: -8px;
}
.caps-lock-remind:after {
	border: 6px solid transparent;
	border-bottom-color: #ccc;
	top: -12px;
	left: 40px;
	z-index: 9;
	margin-left: -8px;
}

/* 控制 邮箱提示列表 的样式 */
.email-complete-list {
	position: absolute;
	left: 60px;
	right: 0;
	top: 40px;
	width: 360px;
	z-index: 12;
	line-height: normal;
}
.email-complete-list .ui-autocomplete {
	left: 0 !important;
	right: 0 !important;
	padding-top: 1px;
	border-top-color: #009fd9;
}
.email-complete-list .ui-autocomplete .ui-menu-item {
	padding-left: 41px;
	overflow: hidden;
}