*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul{
	list-style: none;
}

#mask{
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
}

#mask.open{
	display: block;
}

#resume-wrap{
	position: fixed;
	width: 800px;
	background-color: #fff;
	visibility: hidden;
}

#resume-wrap.open{
	visibility: visible;
}

#resume-wrap .resume-header{
	width: 100%;
	height: 54px;
	background-color: #f8f6f6;
	padding: 11px;
	padding-left: 46px;
}

#resume-wrap .resume-header::after{
	content: "";
	display: block;
	clear: both;
}

#resume-wrap .resume-header h2{
	float: left;
	font-size: 18px;
	color: #4e4e4e;
	font-weight: normal;
	line-height: 32px;
}

#resume-wrap #closeButton{
	float: right;
	position: relative;
	display: block;
	width: 29px;
	height: 29px;
	border: 1px solid #4e4e4e;
	border-radius: 50%;
	background-color: transparent;
	outline: none;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	cursor: pointer;
}

#resume-wrap #closeButton::after, #resume-wrap #closeButton::before{
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #4e4e4e;
}

#resume-wrap #closeButton::after{
	width: 1px;
	height: 15px;
}

#resume-wrap #closeButton::before{
	width: 15px;
	height: 1px;
}

/*表单*/
#resume-wrap .resume-form{
	padding: 46px;
	padding-right: 0;
}

#resume-wrap .resume-info-wrap::after{
	content: "";
	display: block;
	clear: both;
}

#resume-wrap .resume-info-wrap li{
	float: left;
	padding-right: 46px;
	margin-bottom: 26px;
}

#resume-wrap .resume-info-wrap li::after{
	content: "";
	display: block;
	clear: both;
}

#resume-wrap .resume-info-wrap li div{
	float: left;
	font-size: 14px;
	color: #4e4e4e;
	height: 100%;
}

#resume-wrap .kind{
	width: 80px;
	line-height: 34px;
}

#resume-wrap .kind + div{
	width: -webkit-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: -ms-calc(100% - 80px);
	width: calc(100% - 80px);
}

#resume-wrap .inputs-group{
	border: 1px solid #4e4e4e;
	height: 34px;
}

#resume-wrap input[type=text]{
	display: block;
	width: 100%;
	height: 100%;
}

#resume-wrap textarea{
	display: block;
	width: 100%;
	height: 100px;
	resize: none;
}

#resume-wrap .half{
	width: 50%;
	height: 34px;
}

#resume-wrap .row{
	width: 100%;
}

#resume-wrap .radio-group{
	line-height: 34px;
	margin-right: 20px;
}

/*错误消息*/
#resume-wrap .errorMessage{
	opacity: 0;
	color: red;
}

#resume-wrap input[type=text].error + .errorMessage{
	opacity: 1;
}

/*提交按钮组*/
.btn-group{
	text-align: right;
}

#submitButton{
	margin-right: 46px;
	font-size: 16px;
	color: #4e4e4e;
	border: 1px solid #4e4e4e;
	background-color: transparent;
	line-height: 34px;
	padding: 0 18px;
	cursor: pointer;
}


/*screen from 1280 to 1440....................................................................................................*/
@media screen and (min-width: 1275px) and (max-width: 1440px){
	#resume-wrap .resume-header{
		height: 40px;
		padding: 0px;
		padding-left: 46px;
	}

	#resume-wrap .resume-header h2{
		line-height: 40px;
	}

	#resume-wrap #closeButton{
		margin: 4px;
	}

	#resume-wrap .resume-form{
		padding: 30px;
		padding-right: 0;
	}

	#resume-wrap .resume-info-wrap li{
		padding-right: 30px;
		margin-bottom: 20px;
	}
}