@charset "utf-8";
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html,body{
	height: 100%;
}
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-button {
    height: 0;
    width: 0;
}
::-webkit-scrollbar-thumb {
    background: #024b8e;
}
::-webkit-scrollbar-track {
    background-color: #0e1d4d;
}
.mb10{
	margin-bottom: 10px;
}
.login{
	height: 100%;
	background-image: url(images_dy/loginImg/bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	overflow: hidden;
}

.header{
	width: 470px;
	height: 91px;
	background-image: url(images_dy/loginImg/login_title.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 15%;
	z-index: 1000;
}
.main{
	position: absolute;
	width: 536px;
	height: 472px;
	top: 55%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-image: url(images_dy/loginImg/login_box.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.login-form{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 360px;
	height: 360px;
	margin-left: -180px;
	margin-top: -180px;
	animation: mid 13s linear infinite;
	padding: 82px 30px 0 30px;
}
input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #66b3d8;
}

input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #66b3d8;
}

input::-webkit-input-placeholder {
	color: #66b3d8;
}

input:-ms-input-placeholder {
	color: #66b3d8;
}
.login-ipt{
	position: relative;
    width: 300px;
    height: 40px;
    background-color: #fff;
    left: 50%;
    border-radius: 5px;
    border: none;
    transform: translateX(-50%);
    padding-left: 30px;
    outline: none;
    color: #5b85bd;
}
/*.login-ipt:focus{
	border: 1px solid #4cbae8;
	box-shadow: 0 0 10px 3px #4cbae8 inset;
}*/
.login-ipt.verify{
	width: 180px;
	left: 0;
	transform: translateX(0);
}
.verify-span{
	display: inline-block;
	width: calc(100% - 200px);
	height: 40px;
	float: right;
	background-image: url(images_dy/loginImg/yanzhengma.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}
.login-ipt-sub{
	width: 100%;
	height: 51px;
	background-image: linear-gradient(to top, #32c5e9, #60f8ce);
	text-align: center;
	line-height: 51px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
	outline: none;
	border: 0;
	border-radius: 5px;
	margin-top: 14px;
	cursor: pointer;
}

/*.login-ipt-sub:hover{
	text-shadow: 0 0 5px #3dfbd5;
	color: #3dfbd5;
	box-shadow: 0 0 25px 3px #3dfbd5 inset;
	background-image: linear-gradient(to top, #16457d, #16457d);
	
}*/

.user, .psd, .veri{
	position: relative;
}
.user i{
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
	height: 16px;
	background-image: url(images_dy/loginImg/user.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}
.psd i{
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 17px;
	background-image: url(images_dy/loginImg/psd.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}
.veri i{
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 17px;
	background-image: url(images_dy/loginImg/psd.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}
/*.user .login-ipt:focus~i{
	background-image: url(images_dy/loginImg/user-hover.png);
}
.psd .login-ipt:focus~i{
	background-image: url(images_dy/loginImg/psd-hover.png);
}
.veri .login-ipt:focus~i{
	background-image: url(images_dy/loginImg/psd-hover.png);
}*/
.footer{
	position: absolute;
	bottom: 36px;
	color: #96c3e0;
	font-size: 12px;
	left: 50%;
	transform: translateX(-50%);
}

