body{
    font-family:Microsoft Yahei;
	background-color:#2A303E;
}
input[type="text"], input[type="password"]{
    outline:0px;
    border:1px solid #cccccc;
}
.icon{
    position:absolute;
    top:10px;
    left:3px;
}
.login-logo img{
    width:100%;
}
.login-logo{
	height:80px;
	text-align:center;
}
.login-wrap{
	position:absolute;
	top:50%;
	left:50%;
	width:300px;
	margin:-200px auto auto -140px;
	height:300px;
}
.login-form .col {
	position:relative;
	margin:10px auto;
	width:280px;
}
.login-input{
	padding:7px 0px 7px 8%;
	border-radius:5px;
	width:92%;
}
.login-select{
	width:100%;
	border:1px solid #cccccc;
	padding:7px 0px;
}
.login-code{
	position:absolute;
	right:2px;
	top:8px;
    cursor:pointer;
}
.login-btn{
	margin:10px auto;
	/*width:95%;*/
	height:45px;
	color:rgba(256, 256, 256, 0.5);
}
.login-remember{
	display:inline-block;
	line-height:2;
	
}
.login-btn .submit{
	float:right;
	padding:8px 15px;
	font-size:1.2em;
    border:0;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	background-color:rgba(20, 68, 106, 0.7);
	color:rgba(256, 256, 256, 0.5);
	cursor:pointer;
}
.login-btn .submit:hover{
	background-color:rgba(20, 68, 106, 1);
	color:rgba(256, 256, 256, 1);
}

.login-Tip{
	font-size:0.9em;
	text-align:center;
	/*color:rgba(256,0,0,0.5);*/
}
@-webkit-keyframes shake{
    0%{
        -webkit-transform:translate(2px,2px);
    }
    25%{
        -webkit-transform:translate(-2px,-2px);
    }
    50%{
        -webkit-transform:translate(0px,0px);
    }
    75%{
        -webkit-transform:translate(2px,-2px);
    }
    100%{
        -webkit-transform:translate(-2px,2px);
    }
}
@keyframes shake{
    0%{
        transform:translate(2px,2px);
    }
    25%{
        transform:translate(-2px,-2px);
    }
    50%{
        transform:translate(0px,0px);
    }
    75%{
        transform:translate(2px,-2px);
    }
    100%{
        transform:translate(-2px,2px);
    }
}
.shake{
    -webkit-animation:shake 0.2s 1;
    animation:shake 0.2s 1;
}

@keyframes rotates{
    0%{
        transform:rotate(0deg);
    }
    25%{
        transform:rotate(90deg);
    }
    50%{
        transform:rotate(180deg);
    }
    75%{
       transform:rotate(270deg);
    }
    100%{
        transform:rotate(360deg);
    }
}
@-webkit-keyframes rotates{
    0%{
        transform:rotate(0deg);
    }
    25%{
        transform:rotate(90deg);
    }
    50%{
       transform:rotate(180deg);
    }
    75%{
        transform:rotate(270deg);
    }
    100%{
        transform:rotate(360deg);
    }
}

.rotate{
    -webkit-animation:rotates 1.2s infinite linear;
    animation:rotates 1.2s infinite linear;
}

.warning{
    color:red;
}
@media screen and (max-width:768px){
	.login-wrap{
		top:63%;
	}
}