/*
===================
@explain: 系统后台登录页面
@copyright: Copyright 2012,phpwind.com
@author: longwenid@gmail.com
$Id: admin_login.css 22060 2012-12-19 03:01:55Z yanchixia $
===================
*/
html{
	padding:0;
	margin:0;
	background-color:#2f4050;
}
body {
	padding:0;
	margin:0;
	font-family:Arial, "Microsoft Yahei";
}

video{
	position:fixed;
	top: 0px;
	right: 0px;
	min-wdith:100%;
	min-height:100%;
	width:100%;
	height:auto;
	z-index:-999;
}
.cover{
	position: fixed;
	opacity: 1;
	background-color: rgba(0,0,0,0.2);
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: -2;
}
.wrap {
	width: 300px;
	overflow:hidden;
	margin: 180px auto 0;
	-webkit-animation: bounceIn 600ms linear;
	-moz-animation: bounceIn 600ms linear;
	-o-animation: bounceIn 600ms linear;
	animation: bounceIn 600ms linear;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -210px;
	margin-top: -200px;
	width: 340px;
	height: 320px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.35);
	background: #fff;
	border-radius: 5px;
	padding: 40px;
}
.logoback{
	font-size: 0;
}
.logoback img{
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
}
.logoback .logoback-title{
	width: 265px;
	margin-left: 5px;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	color: #fc4d4c;
}
.logoback-title h2{
	font-weight: 400;
	font-size: 26px;
	margin:0;
}
.logoback-title i{
	font-size: 12px;
}
a{
	color:#efefef;
	text-decoration: none;
}
a:hover{
	color:#ff9f10;
}

h1 {
	display: block;
	height: 50px;
	width: 250px;
	margin:auto;
	overflow: hidden;
	color:#fff;
	font-size: 45px;
	font-weight: normal;
	text-align: center;
	line-height: 50px;
	padding:10px;
}

.login ul,
.login li{
	padding:0;
	margin:0;
	list-style:none;
	color:#ffffff;
}
.login ul{
	background:transparent;
	border:none;
	border-radius:3px;
	overflow:hidden;
	/*width:300px;*/
	overflow:hidden;
}
.login li{
	border:none;
	/*padding:5px;*/
	position: relative;
	margin-top: 15px;
}
.login li img{
	vertical-align:top;
}
.login li .input-icon{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: 14px;
	left: 17px;
	font-size: 16px;
	color: #f55756;
}
.login li .input-icon2{
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: 16px;
	color: #f55756;
}
.login .input {
	color:#ffffff;
	width: 280px;
	height:30px;
	line-height: 30px;
	padding: 5px;
	padding-left:40px;
	vertical-align: middle;
	background-color: rgba(255, 255, 255, 0.10);
	border: 1px solid #dbdbdb;
	font-size:14px;
	font-family:Arial,"Microsoft Yahei";
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	color: #676a6c;
}
.login .input:focus {
	outline:0 none;
	border-color:#f55756;
}
#verify-code{
	width:160px;
	padding-right: 126px;
	position:relative;

}
.login img{
	position: absolute;
	right: 14px;
	top: 1px;
	height: 40px;
	*top: 2px;
	cursor: pointer;
}
.wrap p{
	margin-top: 14px;
	color:#888;text-align:center;font-size:14px;
	display: block;
	/* -webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px; */
}
.btn {
	width: 328px;
	height: 40px;
	padding: 0;
	margin-top: 15px;
	vertical-align: middle;
	background:#f55756;
	overflow:visible;
	color:#fff;
	font-size:16px;
	cursor:pointer;
	font-family:Arial, "Microsoft Yahei";
	border:none;
	border-radius:3px;
}
.btn:hover{
	background-position:0 -40px;
	background: #FA7474;
}
.btn:active {
	background-position:0 -80px;
}
.placeholder{
	color:#999;
}
/*登录框动画*/
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		-moz-transform: scale(1);
	}
}
@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		-o-transform: scale(1);
	}
}
@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}
html{
	height: 100%;
}
body{
	background: #f55756;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.aui_state_focus{
	display: none;
}