/*
* @Author: Administrator
* @Date:   2022-11-25 20:41:59
* @Last Modified by:   Administrator
* @Last Modified time: 2022-11-27 13:16:28
*/
body{
	width: 100%;
	height: 100%;
}
.main{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	background: url("../images/login.jpg") no-repeat;
	background-size: 100% 100%;
	animation: fadenum2 10s 1;
}
@keyframes fadenum2{
	0%{opacity: 0.1}
	100%{opacity: 1}
}
.main1{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	background: url("../images/login1.jpg") no-repeat;
	background-size: 100% 100%;
	animation: fadenum 10s 1;
}
@keyframes fadenum{
	0%{opacity: 0.1}
	100%{opacity: 1}
}
.login-box{
	margin: 10% auto;
	width: 280px;
	left:50%;
}
.title{
	font-size: 24px;
	text-align: center;
	padding: 20px;
}
.usernamg-icon{
	text-align:center;
	background-color: #000;
	line-height: 40px;
	border-radius: 12px 0 0 0;
}
.username-input{
	background-color:#000;
	border: none;
	line-height: 40px;
	border-radius: 0 12px 0 0;
	height: 44px;color: #fff;
}
.userpass-icon{
	text-align:center;
	background-color: #fff;
	line-height: 40px;
	border-radius: 0;	
}
.userpass-input{
	background-color:#fff;
	border: none;
	line-height: 40px;
	border-radius: 0;
	height: 44px;color: #000;
}