body{
	background-color: #F2F2F2;
}
.login-wrap{
	width: 100vw;
	height: 100vh;
	position: relative;
	background: url(../images/login/login-bg.jpg) no-repeat;
	background-position: top;
	background-size: 100%;
}
.login-content{
	position: absolute;
	top: 42vw;
	left: 50vw;
	width: 95vw;
	height: auto;
	border-radius: 10px;
	margin-left: -47.5vw;
	padding: 50px 40px 20px 40px;
	background-color: white;
}
.login-tip{
	color: white;
	font-size: 4.26vw;
	border-radius: 20px;
	background-color: #BD1805;
	padding: 3px 8px;
	position: absolute;
	left: 2%;
	top: 8px;
}
.inp-item{
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.inp-icon{
	display: inline-block;
	width: 22px;
	height: 22px;
}
.account-icon{
	background: url(../images/login/icon1.png) no-repeat;
	background-size: 100% 100%;
}
.password-icon{
	background: url(../images/login/icon2.png) no-repeat;
	background-size: 100% 100%;
}
.inp-item input::-webkit-input-placeholder {
	color: #D1D1D1;
	font-size: 16px;
	text-align: left;
}
.inp-item input{
	outline: none;
	border: 0;
	width: 100%;
	height: 30px;
	margin-left: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
}
.register-text{
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: flex-end;	
}
.register-text a{
	color: #36C0F4;
	font-size: 16px;
}
.sub-btn{
	width: 100%;
	height: 40px;
	color: white;
	font-size: 22px;
	margin-top: 15px;
	line-height: 40px;
	text-align: center;
	border-radius: 40px;
	background: linear-gradient(to bottom, #FF5C69 , #FF7971 );
}
.agreement-text{
	width: 100%;
	height: auto;
	font-size: 14px;
	color: #AEAEAE;
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.wxlogin-wrap{
	position: absolute;
	top: calc(42vw + 350px);
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;	
	padding-bottom: 50px;
}
.login-other{
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #AEAEAE;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.login-other::before{
  width: 50%;
  height: 50%;
  content: "";
  position: absolute;
  border-top: 1px solid #AEAEAE;
  left: 0;
  bottom: 0;
  transform:scaleX(.5);
}
.login-other::after{
  width: 50%;
  height: 50%;
  content: "";
  position: absolute;
  border-top: 1px solid #AEAEAE;
  left: 50%;
  bottom: 0;
  transform:scaleX(.5);
}
.wxlogin-btn{
	width: 38px;
	height: 38px;
	background: url(../images/login/wx-login.png) no-repeat;
	background-size: 100% 100%;
}


