/* Stylesheet */


/* Imports */
@import url(animate.css);
@import url(font-awesome/css/font-awesome.min.css);

/*重置input和textarea的默认样式*/
input,button,select,textarea{outline:none}
textarea{resize:none}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
input::-ms-clear { display: none;}input::-ms-reveal { display: none;}
/* Basics */
html, body {
	width: 100%;
	height: 100%;
	color: #444;
	-webkit-font-smoothing: antialiased;
    background: #ffffff;
}

a {
	color: #aaa;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

a:hover {
	color: #555;
}

#page{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
    color: #ffffff;
    font-family:PingFangSC-Regular,PingFang SC;
    font-weight:400;
}

#container {
    padding-left: 460px;
    position: relative;
    width: 460px;
    height: 570px;
    padding-top: 20px;
    margin: 0 auto;
    border-radius:0 40px 0 40px;
}

.title{
    margin-top: 20px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background-position: center 0;
    background-repeat: no-repeat;
    font-size:22px;
    font-family:PingFangSC-Medium,PingFang SC;
    font-weight:500;
    color:#555555;
}
.welcome{
	margin-top: 20px;
	text-align: center;
	color: #86929c;
	font-size: 0.75em;
}

form {
	margin: 20px auto 0;
}

.form_field {
	clear: both;
	height: 60px;
	line-height: 60px;
	color: #86929c;
	margin: 0 auto 21px;
	border: 1px solid #e1e6e7;
	border-radius: 5px;
}
.form_field img, .form_field label{
	float: left;
	margin-left: 7px;
}
.form_field img {
	margin-top:7px;
	-webkit-transform:scale(.7);
	-moz-transform:scale(.7);
	-o-transform:scale(.7);
	transform: scale(.7);
}
.form_field label {
	width: 36px;
}
.form_field, .form_checkbox_field, .form_button_field{
	width: 278.25px;
	font-size: 0.75em;
}
.form_field, .form_button_field {
	height: 42px;
	line-height: 42px;
}
.form_field .last_img{
	float: right;
	margin-right: 10px;
	cursor: pointer;
}
.form_field input{
	float: left;
	border: none;
	height: 38px;
	line-height: 38px;
	font-size: 1em;
	margin: 2px 0 0 7px;
}
.form_username_field input{
	width: 200px;
}
.form_username_field .last_img{
	margin-top: 11px;
}
.form_password_field label {
	margin-left: 11px;
}
.form_password_field input{
	width: 200px;
}
.form_password_field .last_img{
	margin-top: 13px;
}
.form_checkbox_field{
	clear: both;
	margin: 0 auto;
}
.form_checkbox_field input{
	float: left;
	margin: 0 5px 0 0;
}
.check {
	display: block;
	float: left;
	color: #444;
	text-shadow: 0 1px 0 #fff;
}
.checkbox_div {
	float: left;
}
.forgot_div{
	float: right;
}
.form_button_field {
	clear: both;
	height: 42px;
	line-height: 42px;
	margin: 0 auto;
	padding-top: 21px;
}
.form_button_field a{
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 18px;
    background: #00A292;
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
}
.form_button_field a:hover{
	background: #26AFA2;
}
/*====message====*/

.isa_info, .isa_success, .isa_warning, .isa_error {
	position: fixed;
	top: 0;
	padding:6px 0 3px 4px;
	width: 100%;
	z-index: 99;
}
.isa_info {
	color: #00529B;
	background-color: #BDE5F8;
}
.isa_success {
	color: #4F8A10;
	background-color: #DFF2BF;
}
.isa_warning {
	color: #9F6000;
	background-color: #FEEFB3;
}
.isa_error {
	color: #D8000C;
	background-color: #FFBABA;
}
.isa_info i, .isa_success i, .isa_warning i, .isa_error i{
	margin:6px 4px 5px 8px;
	font-size:1em;
	vertical-align:middle;
}
.isa_info span, .isa_success span, .isa_warning span, .isa_error span{
	vertical-align:middle;
}
.nice-select
{
	width: 258.25px;
	padding: 0 10px;
	height: 42px;
	position: relative;
	background: #fff url(/img/dropDown.jpg) no-repeat right center;
	cursor: pointer;
	border-radius: 5px;
}
.nice-select input
{
	display: block;
	width: 100%;
	height: 42px;
	line-height: 42px;
	border: 0;
	outline: 0;
	background: none;
	cursor: pointer;
	margin-left: 0;
}
.nice-select ul
{
	width: 100%;
	display: none;
	position: absolute;
	left: -1px;
	top: 38px;
	overflow: hidden;
	background-color: #fff;
	max-height: 150px;
	overflow-y: auto;
	border: 1px solid #e1e6e7;
	border-top: 0;
	z-index: 9999;
}
.nice-select ul li
{
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	padding: 0 10px;
	cursor: pointer;
}
.nice-select ul li.on
{
	background-color: #e0e0e0;
}
