/*
===================
@explain: 系统后台登录页面
*/
html {
	padding: 0;
	margin: 0;
}

body {
	padding: 0;
	margin: 0;
	font-family: Arial, "Microsoft Yahei";

}

.wrap {
	width: 100%;
	height: 100%;
	background: url('./login_bg.jpg') no-repeat;
	background-size: 100% 100%;
	position: relative;
}
.wrap .logo img{
	width: 350px;
	margin: 50px 0 0 30px;
}
.container {
	height: 600px;
}

.container>.row {
	width: 400px;
	float: right;
	margin: 0;
	padding: 0;
}

.container>.left {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	color: #074c8f;
	font-weight: bold;
	text-align: center;
}

.container>.left .descBox {
	width: 600px;
	margin: 50px auto;
}

.container>.left .head h1 {
	margin-top: 50px;
	font-size: 50px;
	font-weight: bold;
}

.container>.left .content {
	margin-top: 50px;
	font-size: 38px;
}

.login-div {
	width: 520px;
	height: auto;
	overflow: hidden;
	margin: 5% auto 0 auto;
	padding: 10px 40px 30px;
	border: 1px solid #ccc;
	border-radius: 8px;
	border: none;
	background: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.login-div h1 {
	font-size: 28apx;
	font-weight: bold;
	text-align: left;
	color: #333;
	text-shadow: 0 0 1px #ccc;
	padding: 10px 0;
	font-family: "微软雅黑";
}

.login-div h1 strong {
	display: block;
	padding: 5px 0;
}

.login-div h1 em {
	font-size: 12px;
	color: #999;
	font-weight: normal;
}

.login-div .captcha_div img {
	width: 37%;
}

.form-control {
	height: 43px;
	font-size: 16px;
	/* font-weight: bold; */
	border: none;
	background-color: #f4f4f4;
}

.copyright {
	font-size: 14px;
	line-height: 20px;
	color: #999;
	text-align: center;
}

.btn-primary {
	width: 100%;
	height: 43px;
	border-radius: 40px;
	border: none;
	font-size: 18px;
	background: #2061c9;
	color: #f8f8f8;
}

.btn:hover {
	background-position: 0 -40px;
}

.btn:active {
	background-position: 0 -80px;
}

.placeholder {
	color: #999;
}
.footer{
	width: 100%;
	height: 50px;
	background-color: #c1d0e6;
	text-align: center;
	line-height: 50px;
	color: #666;
	position: absolute;
	bottom: 0;
	opacity: 0.7;
}