* {
	margin: 0;
	padding: 0;
    -webkit-appearance: none; /*去掉浏览器默认样式*/
    box-sizing: border-box;
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.login{
    position: relative;
    height: 100%;
    /*background: url(../images/login-bg.jpeg) no-repeat;*/
    background: url(../images/44444.jpg) no-repeat;
    text-align: center;
    background-size: cover;
    background-color: #06082f;
}

.login ul, .login li {
	list-style: none;
}

.login-wp{
	position: absolute;
    width: 420px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 50px;
    background: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.login-hd h2{
	font-size: 28px;
    line-height: 1;
    border-bottom: #3f51b5 solid 3px;
    padding: 5px 20px;
    text-align: center;
    display: inline-block;
    margin-bottom: 5px;
}
.txt{
    width: 250px;
    height: 36px;
    line-height: 36px;
    padding-left: 15px;
    margin-top: 15px;
    border: none;
    font-size: 14px;
}
.form-login li{
	border-bottom: 1px solid gray;
}
.login-btn{
	margin-top: 25px;
}
.btn {
    height: 46px;
    width: 100%;
    background: #3F51B5;
    color: #fff;
    font-size: 18px;
    border: 1px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.btn:hover{
    background-color: #009688;
    cursor: pointer;
}