.loginMask {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.35);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

.loginMask .mask-content{
	width: 456px;
	height: 470px;
	background-color: #FFFFFF;
	border-radius: 6px;
	-moz-border-radius: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -235px;
	margin-left: -228px;
	padding: 90px 50px;
}

.loginMask .mask-title{
	text-align: center;
	font-size: 24px;
	color: #383838;
	font-weight: 900;
	margin-bottom: 50px;
}

.loginMask .mask-content input{
	height: 40px;
	line-height: 40px;
	border: none;
	outline: none;
	font-size: 14px;
	color: #888888;
}

.loginMask .mask-content input::-webkit-input-placeholder {
	font-size: 14px;
	color: #888888;
}

.loginMask .mask-content input::-moz-placeholder {
	font-size: 14px;
	color: #888888;
}

.loginMask .mask-content input:-ms-input-placeholder {
	font-size: 14px;
	color: #888888;
}

.loginMask .mask-content input:-moz-placeholder {
	font-size: 14px;
	color: #888888;
}

.loginMask .mask-content .phone{
	width: 100%;
	border-bottom: 1px solid #E4E4E4;
	margin-bottom: 35px;
}

.loginMask .mask-content .code{
	width: 100%;
	height: 45px;
	border-bottom: 1px solid #E4E4E4;
	margin-bottom: 45px;
}

.loginMask .mask-content .code>input{
	width: 231px;
	position: relative;
	top: 4px;
	margin-right: 20px;
}

.loginMask .mask-content .code>a{
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #4A8F48;
	border-radius: 15px;
	-moz-border-radius: 15px;
	text-align: center;
	font-size: 14px;
	color: #4A8F48;
}

.loginMask .commit{
	display: block;
	width: 100%;
	height: 48px;
	line-height: 48px;
	border-radius: 24px;
	-moz-border-radius: 48px;
	text-align: center;
	background-image: linear-gradient(180deg, #8CBF8A 0%, #9FDA5D 100%);
	font-size: 16px;
	color: #FFFFFF;
}

.loginMask .close {
	width: 40px;
	height: 40px;
	text-align: center;
	position: absolute;
	top: 15px;
	right: 25px;
}

.loginMask .close>div{
	width: 25px;
	height: 0;
	border-bottom: 1px solid #383838;
	position: relative;
	top: 20.5px;
	left: 8px;
}

.loginMask .close>div:first-of-type {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}

.loginMask .close>div:last-of-type {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	top: 19.5px;
}

