
/* 背景 */
body {
	background: url('../images/login_bg_default.png') no-repeat center top;
}

/* 登录页面 */
.entry {
}
.entry-panel {
	position: relative;
	top: 50%;
	left: 50%;
	margin-left: -160px;
	margin-top: -200px;
	width: 320px;
	height: 400px;
	/*background: url('../images/loginbox_bg_default.png');*/
	background-color: rgba(255,255,255,0.9);
	border-radius: 5px;
	padding: 30px;
	box-sizing: border-box;
	box-shadow: 0 0 20px rgba(0,0,0,.15);
	margin-top: 120px;
}
.entry-title {
	color: #37c8e7;
	margin: 0px;
	/*line-height: 40px;*/
	text-align: center;
	font-size: 1.6em;
	font-weight: 400;
	margin-bottom: 70px;
}
.entry-item {
	margin-top: 10px;
}
.entry-input {
	display: inline-block;
	width: 100%;
	position: relative;
}
.entry-input i {
	display: inline-block;
	float: left;
	color: #aaa;
	font-size: 1.5em;
	padding: 10px 15px 0 5px;
	position: absolute;
	left: 0px;
	font-size: 1.2rem;
}
.entry-input input {
	float: left;
	border: 0px;
	background: transparent;
	width: 100%;
	height: 40px;
	outline: none;
	font-family: 微软雅黑;
	padding: 0 30px;
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
}
.entry-input input:focus {
	border-bottom: 1px solid #36c8e7;
}
.entry-input:hover i {
	color: #36c8e7;
}
.entry-error {
	height: 40px;
}
.entry-error span {
	color: red;
	font-size: 1rem;
	display: none;
}
.entry-submit {
	margin-top: 0px;
}
.entry-submit button {
	width: 256px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border: 0px;
	background: url('../images/loginbox_btn_default.png');
	color: #fff;
	font-size: 1.3em;
	font-family: 微软雅黑;
	cursor: pointer;
	outline: none;
}
.entry-bottom {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 256px;
	padding: 0 30px 30px;
}
.entry-bottom a {
	color: #000;
	text-decoration: none;
	outline: none;
}
.entry-bottom a:last-child {
	float: right;
}
@media only screen and (max-width: 640px) {
	.entry {
		min-width: auto;
	}
	.entry-panel {
		margin-top: 40px;
	}
}

/* 登录错误 */
.input-error {
	margin: 0px;
	font-size: 12px;
	color: orange;
	margin-top: 5px;
}