.joblist ul li {
	height: 60px;
	background-color: #fff;
	line-height: 60px;
	cursor: pointer;
	transition: all .3s;
}

.jobheader {
	background-color: #fff;
	border-bottom: 1px solid #cdcdcd;
}

.joblist ul li h3,
.joblist ul li p {
	padding: 0 15px;
	font-size: 15px;
}

.joblist ul {
	margin-top: 28px;
}

.jobcenter {
	background-color: #f5f7f9;
}

.joblist ul li:hover {
	background-color: #eaf5fa;
	color: #3295da;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.6);
	display: none;
}

.jobpopup {
	width: 600px;
	height: 500px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -300px;
	margin-top: -250px;
	padding: 50px;
	overflow-y: scroll;
	
}
.jobpopuptitle{
	position: relative;
}
.jobpopuptitle h3{
	font-size: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #cdcdcd;
}
.joppopuptxt{
	line-height: 30px;
	margin-top: 20px;
}
.jobpopuptitle img{
	width: 35px;
	height: 35px;
	position: absolute;
	top: -30px;
	right: -30px;
	cursor: pointer;
	transition: all .3s;
}
