select,
input,
textarea {
	font-size: 14px;
	margin: 0;
	padding: 0;
	outline: none;
}

.login{
	padding: 90px 0;
	background-color: #f7f7f7;
}
.login_core{
	width: 1060px;
	max-width: 90%;
	height: 476px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	background-image: url(../image/login/login_bg.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 100%;
	background-color: #FFFFFF;
}
.login_img{
	flex-grow: 1;
	flex-shrink: 1;
	overflow: hidden;
}
.login_img img{
	height: 100%;
	display: block;
	margin: 0 auto;
	object-fit: cover;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.login_box{
	width: 416px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}
.login_form{
	width: 270px;
}
.login_form h3{
	text-align: center;
	margin-bottom: 44px;
}
.login_form h3 span{
	display: inline-block;
	font-size: 16px;
	color: #00a2e9;
	border-bottom: 3px solid #cce4ff;
	line-height: 1em;
}
.login_input{
	width: 100%;
	height: 42px;
	border: 2px solid #eeeeee;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 10px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 16px;
}
.login_icon{
	width: 30px;
	height: 100%;
	float: left;
	background-repeat: no-repeat;
	background-position: center;
}
.login_input input{
	width: 185px;
	height: 100%;
	border: none;
	float: left;
}
.login_eye{
	width: 30px;
	height: 100%;
	float: right;
	background-image: url(../image/login/eye_icon.png);
	background-repeat: no-repeat;
	background-position: center;
}
.login_form button{
	width: 100%;
	height: 42px;
	font-size: 14px;
	color: #FFFFFF;
	background-color: #00a2e9;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	border: none;
	margin-top: 40px;
}




@media screen and (max-width:768px) {
	.login_core{
		display: block;
		height: auto;
	}
	.login_img{
		border-radius: 20px;
	}
	.login_img img {
		width: 100%;
	    height: auto;
	}
	.login_box {
	    width: 100%;
		padding: 20px 0;
	}
}