/*
|---------------------------------------------------------------
|	Login Style
|---------------------------------------------------------------
|	File:login.css
|	Creation Date:2019-04-23
|	Last Modified:2019-04-23
|	From:YANG YA BO
|---------------------------------------------------------------
*/
*{
	margin:0;
	padding:0;
}
body {
	overflow: hidden;
	position: relative;
}
body>img{
	width: 100%;
	position: absolute;

}
#login-box {
	position: absolute;
	left: 38.5%;
	margin-top: 15%;
	z-index: 1;
	width: 27%;
	background:#fff;
}
.safe-tips{
	display: none;
}


/*
	修改样式
*/
.login_ul>li{
	padding-left: 5%;
	padding-top: 3%;
	padding-bottom: 3%;
	overflow: hidden;
}
.login_ul>li>p{
	float: left;
	line-height: 41px;
}
.login_ul>li>input{
	width: 82%;
	height: 35px;
	float: left;
	border:1px solid #96b1f2;
	background-image: none;
	transition: all 0.8s ease;
	outline-color:red;
}
.login_ul>li:hover input{
	box-shadow: #eee 3px 5px 5px;
	transition: all 0.8s ease;
}
.login_ul>li:nth-child(3) input{
	float: left;
	width: 55%;
}
.login_ul>li:nth-child(3) img{
	float: left;
	margin-left: 2%;
	margin-top: 2%;
}
.login_ul>li:nth-child(3) a{
	float: left;
	margin-left: 2%;
	line-height: 41px;
}
.login_ul>li>button{
	width: 80%;
	height: 45px;
	margin: 0px auto;
	margin-left: 10%;
	background:#fff;
	border:1px solid #eee;
	margin-bottom: 20px;
	transition: all 0.8s ease;
	font-size: 18px;
	font-weight: "微软雅黑" !important;
	background-color: #96b1f2;
	line-height: 45px;
}
.login_ul>li>button:hover{
	background-color: #6296ea;
	color: #fff;
	transition: all 0.8s ease;
}
.login_ul>li>input[type="text"]:focus, .login_ul>li>input[type="password"]:focus {
    border-color: #6296ea;
    color: #333;
    -moz-box-shadow: 0 0 3px #6296ea;
    -webkit-box-shadow: 0 0 3px #6296ea;
     box-shadow: 0 0 3px #6296ea; 
     outline: none; 
}