body{
	background:#fff;
}


.pageBaner{
	position: relative;
	z-index:0;
}
.pageBaner img{
	display:block;
	max-width:100%;
}
@media screen and (min-width:0px) and (max-width:768px){
	.pageBaner .pageName{
		font-size:24px;
	}
}





/* 分类 */
.classify{
	position:relative;
	text-align:center;
	border-bottom:1px solid #eee;
	background:#fff;
	height:65px;
	display:flex;
	align-items:stretch;
}
.classify .main{
	display:flex;
	justify-content:center;
	align-items:stretch;
}
.classify .list{
	display:flex;
	align-items:center;
	justify-content:center;
	white-space: nowrap;
	overflow:auto;
}
.classify .list a{
	color:#333;
	font-size:15px;
	padding:4px 15px;
	border-radius:5px;
	margin:0 5px;
}
.classify .list a:hover{
	background:#ff0000;
	color:#fff;
}
.classify .list a:focus{
	outline:none;
}
.classify .list a.on{
	background:#ff0000;
	color:#fff;
}
.classify .listPop{
	padding-left:10px;
	border-left:1px solid #eee;
	align-items:center;
	display:none;
}
.classify .listPop i{
	font-size:22px;
}
.classify .listPop-content{
	position:fixed;
	top:0px;
	right:-100%;
	z-index:9999;
	height:100%;
	width:75%;
	background:#fff;
	display:flex;
	align-items:center;
	max-width:300px;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
	opacity:0;
}
.classify .listPop-content .pop-main{
	width:100%;
	max-height:100%;
	overflow:auto;
	padding:15px;
}
.classify .listPop-content a{
	display:block;
	text-align:left;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #eee;
	padding:0 10px;
}
.classify .listPop-content a:hover{
	color:#ff0000;
}
.classify .listPop-content a.on{
	background:#ff0000;
	color:#fff;
}

.classify .listPop-content .close{
	position:absolute;
	top:10px;
	right:10px;
	z-index:999999;
	opacity:1;
	color:#666;
	height:50px;
	width:50px;
	text-align:center;
	line-height:50px;
	border-radius:50px;
	background:rgba(255,255,255,0.3);
}
.classify .listPop-bg{
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background:#000;
	opacity:0.3;
	z-index:1000;
	display:none;
}

@media screen and (max-width:768px){
	.classify{height:55px;}
	.classify .list{justify-content:left;}
	.classify .list a{padding:4px 10px;}
}


/* 职位列表 */
.job-list{
	padding:50px 0;
}
.job-list .item{
	border-radius:5px;
}
.job-list .item:nth-child(odd){
	background:#f5f6f8;
}
.job-list .item .top{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	padding:30px;
}
.job-list .item .top .title{
	width:100%;
}
.job-list .item .top .date{
	min-width:168px;
	padding-right:50px;
}
.job-list .item .top .title h3{
	margin-top:0px;
}
.job-list .item .top .title h3:before{
	content:'';
	display:inline-block;
	width:3px;
	height:18px;
	background:#333;
	margin-right:8px;
}
.job-list .item .top .title .num{
	color:#666;
	padding-left:11px;
}
.job-list .item .top .date{
	display:flex;
	align-items:center;
}
.job-list .item .top .date p{
	height:18px;
	line-height:18px;
	font-size:18px;
	margin:0px;
	color:#999;
}
.job-list .item .top .date span{
	margin-right:5px;
}
.job-list .item .arrow{
	display:flex;
	align-items:center;
	cursor:pointer;
	-ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
.job-list .item .content{
	padding:30px 0;
	border-top:1px solid #ccc;
	margin:0 30px;
	display:none;
}
.job-list .item .content .main{
	line-height:32px;
	font-size:16px;
}
.job-list .item .reg{
	text-align:right;
}
.job-list .item .reg span{
	display:inline-block;
	border:2px solid #e6222a;
	padding:10px 30px;
	border-radius:5px;
	color:#e6222a;
	margin:30px 0 0 0;
	cursor:pointer;
	-webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
.job-list .item .reg span:hover{
	background:#e6222a;
	color:#fff;
}

.job-list .item.on .arrow{
	-ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
	color:#e6222a;
}



/* 联系我们 */
.contact{
	background:#f5f7fb;
	
}
.contact .toptitle{
	text-align:center;
	font-size:24px;
	padding-top:50px;
}

.addList{
	padding:30px 0 50px 0;
	display:flex;
	flex-wrap:wrap;
}
.addList .item{
	width:50%;
}
.addList .item .main{
	border:1px solid #eee;
	margin:10px;
	box-sizing:border-box;
	padding:15px;
	background:#fff;
}
.addList .item .bold{
	font-weight:700;
	border-bottom:1px solid #eee;
	padding-bottom:10px;
	font-size:18px;
}

@media screen and (max-width:768px){


	
	.job-list{padding:30px 0;}
	.job-list .item .top{padding:15px 15px;}
	.job-list .item .top .title h3{font-size:16px; margin-top:10px;}
	.job-list .item .top .title h3:before{height: 14px;}
	.job-list .item .top .title .num{font-size:14px;}
	.job-list .item .top .date p{font-size:14px;}
	.job-list .item .top .date span{font-size:14px;}
	.job-list .item .content{margin: 0 15px;}
	
	.job-list .item .top .date{padding-right: 10px; min-width:105px;}
}








