
.modal{
	position: fixed;
	width: 100%;
	height: calc(100% - 100px);
	height: -moz-calc(100% - 100px);
	height: -webkit-calc(100% - 100px);
	top: 100px;
	background: rgba(0, 0, 0, .5);
	z-index: 888;
}
.form-co{
	position: fixed;
	width: 100%;
	height: calc(100% - 100px);
	height: -moz-calc(100% - 100px);
	height: -webkit-calc(100% - 100px);
	top: 100px;
	z-index:1000;
}
.box {
	width: 370px;
	height: 480px;
	background: #fff;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	z-index: 999;
}

.close {
	padding-top: 30px;
	position: relative;
	cursor: pointer;
}

.close span {
	position: absolute;
	right: 15px;
	top: 5px;
	font-size: 18px;
}

.box h5 {
	text-align: center;
	font-size: 30px;
	color: #444;
	font-weight: bold;
}

.box .tip {
	margin-top: 21px;
	text-align: center;
	font-size: 12px;
	color: #aaa;
}

.box .input-wrap {
	margin: 37px auto 0;
	width: 300px;
	height: 238px;
	border: 1px solid #eee;
	border-radius: 5px;
}

.input-wrap .input:not(:last-child) {
	border-bottom: 1px solid #eee;
}

.input-wrap .input {
	position: relative;
}

.input input {
	padding: 21px 24px;
	width: 100%;
	font-size: 14px;
	outline: none;
	border: 0 none;
	background: transparent;
}

.input span {
	left: 24px;
	color: #666;
}

.input.input-after:after,
.input span {
	position: absolute;
	top: 23px;
	font-size: 14px;
}

.input span em {
	font-size: 12px;
	color: #aaa;
	font-style: normal
}

.submit {
	display: block;
	margin: 20px auto 0;
	width: 300px;
	height: 60px;
	font-size: 24px;
	color: #fff;
	background: #03b0ff;
	cursor: pointer;
	border-radius: 5px;
	-webkit-transition: background .3s;
	transition: background .3s;
}

button {
	border: none;
}

.hidden-left {
	opacity: 0;
	margin-left: -400px;
	transition: all .3s;
}

.show-right {
	display: block;
	opacity: 1;
	margin-left:0;
	transition: all .3s;
}

.showModal {	
	transform: all .2s;
	display: block;
}

.hideModal {
	display: none;
	transform: all .2s;
}