@charset "utf-8";

/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
	margin: 0;
	padding: 0;
}

/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
	/*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
	font: 12px/1 ; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

html {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

img {
	width: 100%;
	height: 100%;
}

/* 登录 */
.login_bg {
	font-family: "Microsoft YaHei","Open Sans",poppin,'PingFang SC',"Hiragino Sans GB","STHeiti",sans-serif;
	background: url(../img/bg.png) no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.login {
	width: 336px;
}

.login h3 {
	font-size: 30px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 36px;
	margin-bottom: 24px;
	text-align: center;
	letter-spacing: 2px;
}

.login .info {
	width: 336px;
	height: 292px;
	background: url(../img/bg_info.png) no-repeat;
	background-size: 100% 100%;
	padding: 28px 44px 0;
	box-sizing: border-box;
	margin-bottom: 112px;
}

.login .info > p {
	font-size: 20px;
	color: #FFFFFF;
	line-height: 26px;
	text-align: center;
	margin-bottom: 24px;
}

.login .list{
	position: relative;
	margin-bottom: 20px;
}
.login .list img{
	width: 18px;
	height: 18px;
	position: absolute;
	left: 8px;
	top: 5px;
}

.login .list input {
	width: 244px;
	height: 30px;
	border: 1px solid #52ABE5;
	border-radius: 3px;
	outline: none;
	box-sizing: border-box;
	padding-left: 34px;
	font-size: 13px;
	color: #fff;
	line-height: 30px;
	background-color: transparent;
	transition: 0.3s;
}

.login .list:nth-of-type(2) {
	margin-bottom: 10px;
}

.login .list input::placeholder {
	color: #ccc;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #1175c5 inset !important;
	-webkit-text-fill-color: #fff !important;
}

.login .list input:focus {
	box-shadow: 0 0 0 2px rgba(68, 220, 251, .4);
	border-color: #44dcfb;
}

.login .info input:hover {
	border-color: #44dcfb;
}

.login .error{
	color: red;
	font-size: 13px;
	display: block;
	height: 14px;
}

.login .remember{
	position: relative;
	padding-left: 20px;
	box-sizing: border-box;
}
.login .remember > input {
	opacity: 0;
	position: absolute;
	cursor: pointer;
	z-index: 2;
	margin: -4px 0 0 0;
	top: 50%;
	left: 0;
}
.login .remember > label {
	text-align: center;
	vertical-align: middle;
	line-height: 12px;
	cursor: pointer;
	background: #1175c5;
	font-size: 12px;
	color: #fff;
}

.login .remember > label:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -5px;
	background: #1175c5;
	width: 12px;
	height: 12px;
	border: 1px solid #52ABE5;
	border-radius: 2px;
}
.login .remember input[type="checkbox"]:checked +label:before {
	content: "\2713";
	background-color: #4aeaf8;
	top: 50%;
	left: 0;
	margin-top: -5px;
	font-size: 10px;
	width: 12px;
	height: 12px;
	border-radius: 2px;
	color: #fff;
	border: 1px solid #4aeaf8;
}

.login .remember p {
	font-size: 12px;
	color: #fff;
	line-height: 14px;
	float: right;
	margin-top: 3px;
	cursor: pointer;
}

.login .remember label:hover,
.login .remember p:hover {
	color: #4aeaf8;
}

.login .btn {
	width: 244px;
	height: 30px;
	background: #4DA2D9;
	border: 1px solid #52ABE5;
	border-radius: 3px;
	font-size: 15px;
	line-height: 30px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	margin-top: 20px;
}

.login .info .btn:hover {
	background-color: #44a7e7;
}

.login .info .btn:active {
	background-color: #4abef7;
}

.login .info > input:focus {
	box-shadow: 0 0 0 2px rgba(68, 220, 251, .4);
}