.login {
  background: url(/assets/images/dd7fa024c825150251cfea5aab3948e4.png) no-repeat center bottom #fff;
  height: 100%;
  background-size: 100% auto;
}
.login-form {
  display: block;
  margin: 10% 2rem 0;
}
.login-form .ipt {
  display: block;
  width: 100%;
  height: 2rem;
  border: 0;
  border-bottom: 1px solid #ddd;
  outline: none;
}
.login-form .remember {
  text-align: right;
  margin: 0.5rem 0;
}
.login-form .submit {
  display: block;
  width: 100%;
  height: 2rem;
  background-color: #239de3;
  color: #fff;
  padding: 0;
  border: 0;
  outline: none;
}
.login-form .tips {
  text-align: center;
  color: #e10520;
}

/**修改密码框**/
.updatepwd-box{
	display:none;
	width:70%;
	z-index:1001;
	position:fixed;
	border-radius:6px;
	overflow:hidden;
	top:50%;
	left:50%;
	-webkit-transition-propery: webkit-transform,opacity;
	transition-property:transform,opacity;
	-webkit-transform:translate3d(-50%,-50%,0) scale(1.185);
	transform:translate3d(-50%,-50%,0) scale(1.185);
	text-align:center;
	background-color:#FAFAFC;
}
.updatepwd-box-title{
	padding:0.8rem 0.8rem;
	font-size:15px;
	color:#333;
}
.updatepwd-box-form{
	display: flex;
    flex-flow: column;
	padding:0 20px;
	font-size:14px;
	color:#888;
	word-wrap:break-word;
	word-break:break-all;
	text-align:left;
}
.updatepwd-box input {
	border:1px solid #D5D5D6;
	padding:5px;
	width:90%;
}
.updatepwd-box-btngroup{
	width:100%;
	margin-top:15px;
	position:relative;
}
.updatepwd-box button{
	background-color:#FAFAFC;
	width:30%;
	height:42px;
	line-height:42px;
	color:#444;
	font-size:12px;
	border:0px;
	padding:0px;
}
.updatepwd-box-btngroup button.ok{
	color:#0BB20C;
	width:100%;
}
.mask{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: #333;
	opacity: 0.7;
	z-index:1000;
    flex-flow : row nowrap;
    justify-content: center;
    align-items: center;
}