html, body{
	margin: 0;
	font-family: Microsoft YaHei, Arial, sans-serif;
	background-color: #F0F0F0;
}

.register-form{
	min-width: 1000px;
	max-width: 1180px;
	margin: auto;
	position: absolute;
	top: 10vh;
	left: 0;
	right: 0;
	padding-bottom: 24px;
	background-color: #fff;
}

.register-form .form-header{
	height: 150px;
	background-color: #EC923C;
	color: #fff;
	text-align: center;
	font-size: 24px;
	margin-bottom: 36px;
	position: relative;
}

.register-form .form-header .logo{
	background: url(../img/logo.png) center / contain no-repeat;
	width: 150px;
	height: 75px;
	position: absolute;
	top: 50%;
	left: 36px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.register-form .form-header .header-title{
	margin: 0;
	padding: 12px 0;
}

.register-form .form-header .header-desc{
	font-size: 16px;
}

.register-form .register-form-item{
	margin-bottom: 16px;
	padding: 0 24px;
	height: 50px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.register-form .register-form-item .form-label{
	width: 180px;
	display: inline-block;	
	text-align: right;
	padding-right: 16px;
}

.register-form .register-form-item input{
	height: 100%;
	max-width: 300px;
	width: 250px;
	border: 1px solid #bcbcbc;
	border-radius: 4px;
	outline: none;
	background: transparent;
	padding: 0 15px;
	font-size: 16px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin-right: 16px;
}

.register-form .register-form-item .form-desc{
	display: inline-block;	
	vertical-align: middle;
	height: 100%;
	color: #CE151D;
	line-height: 50px;
}

.register-form .register-form-item.code input{
	max-width: 138px;
	width: 138px;
}

.register-form .register-form-item.code img{
	width: 91px;
	height: 100%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 16px;
}

.register-form .register-form-item.button .button{
	max-width: 300px;
	width: 250px;
	height: 100%;
	color: #fff;
	background-color: #EC923C;
	outline: none;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	border-radius: 4px;
	margin-left: 200px;
}


.register-form .register-form-item.button .button.outline{
	color: #EC923C;
	border: 2px solid #EC923C;
	background-color: #fff;
}

.form-steps {
	margin-left: 200px;
	margin-right: 200px;
	margin-bottom: 25px;
}

.form-steps:after {
	content: '';
	clear: both;
	display: table;
}

.form-steps .steps{
	float: left;
	width: calc(100% / 3);
	height: 100px;
}

.form-steps .steps .steps-progress{
	width: 100%;
	height: 4px;
	line-height: 4px;
	background-color: #E0E0E0;
	margin-top: 25px;
	margin-bottom: 25px;
	text-align: center;
	position: relative;
	color: #fff;
}

.form-steps .steps .steps-progress span{
	content: '';
	position: absolute;
	background-color: #E0E0E0;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	left: 50%;
	top: -16px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.form-steps .steps .steps-label{
	text-align: center;
}

.form-steps .steps.active .steps-progress{
	background-color: #EC923C;
}

.form-steps .steps.active .steps-progress span{
	background-color: #EC923C;
}

.nodisplay{
	display: none;
}

p.form-title {
	color: red;
	padding-left: 225px;
}

@media screen and (max-width: 420px){
	.register-form{
		width: 100%;
		position: relative;
		min-width: auto;
		top: 0;
		font-size: 4vw;
		margin: 0 0 25px;
	}

	.register-form .form-steps .steps{
		width: 40%;
		white-space: nowrap;
	}

	.register-form .form-steps{
		margin: 0 0 25px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.register-form .form-header{
		height: auto;
		display: flex;
		align-items: center;
		flex-flow: row wrap;
	}

	.register-form .form-header .logo{
		flex-basis: 30%;
		position: relative;
		top: initial;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	.register-form .form-header .header-title{
		flex-basis: 70%;
		font-size: 7vw;
	}

	.register-form .form-header .header-desc{
		flex-basis: 100%;
		font-size: 3vw;
		padding-bottom: 2vw;
	}

	.register-form .register-form-item{
		display: flex;
		align-items: center;
		flex-flow: row wrap;
		height: auto;
		margin-bottom: 10px;
		padding: 0 16px;
	}

	.register-form .register-form-item .form-label{
		flex-basis: 30%;
		text-align: left;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.register-form .register-form-item input{
		flex-basis: 70%;
		flex-shrink: 1;
		margin: 0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		height: 50px;
		padding: 0 2vw;
		width: 100%;
	}
	.register-form .register-form-item .form-desc{
		flex-basis: 100%;
		padding-left: 30%;
		height: auto;
		line-height: 20px;
	}

	.register-form .register-form-item.code input{
		max-width: initial;
		flex-basis: calc(70% - 30% - 1vw);
		width: 0;
	}

	.register-form .register-form-item.code img{
		margin-left: 1vw;
		margin-right: 0;
		height: 50px;
		width: 30%;
	}

	.register-form .register-form-item.button .button{
		margin-left: 30%;
		width: 70%;
		height: 50px;
	}

}