body{
	overflow-y: scroll;
	background: #F2F2F2;
}
.naver{
	position: fixed;
	right: 0;
	left: 0;
	z-index: 99;
}
.banner{
	background: url(../img/Bg8.png)no-repeat center center;
	background-size: cover;
	height: 600px;
}
.banner .textBox{
	position: relative;
	transform: translate3D(-50%,-50%,0);
	top: 50%;
	left: 50%;
	text-align: center;
	font-size: 18px;
	color: #fff;
	width: 780px;
}
.banner .textBox p.title{
	font-size: 44px;
}
.banner .searchBox{
    position: relative;
    transform: translate3d(-50%,-50%,0);
    top: 50%;
    left: 50%;
	display: -ms-flexbox;
    display: flex;
    justify-content:center;
    align-items: center;	
    z-index: 9999;
}
.searchBox .keyWords{
	background: #fff;
	width: 370px;
	height: 48px;
	color: #9E9E9E;
	line-height: 48px;
	padding: 0 15px;
	position: relative;
	font-size: 14px;
}
.searchBox .keyWords input{
    border: none;
    font-size: 15px;
    width: 340px;	
}
.searchBox .keyWords .icon{
	width: 16px;
    height: 16px;
    position: absolute;
    right: 15px;
    top: 16px;
}
.content{
	width: 1040px;
	margin: 0 auto;
	color: #4A4A4A;
	position: relative;
	top: -60px;
	background: #fff;
	padding: 60px 80px;
}

.typeView{
	background: #FAFAFA;
	border: 1px solid #F0F0F0;
}
.typeView .panel{
	display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 56px;
    font-size: 14px;	
    border-bottom: 1px solid #f0f0f0;
}
.typeView .panel:last-of-type{
	border: none;
}
.typeView .panel .titleBox{
	width: 240px;
    height: 56px;
	display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;	
    margin-right: 92px;
}
.typeView .panel .titleBox img{
	margin-right: 15px;
}
.panel.addressPanel .titleBox{
	background: #059FCC;
}
.panel.typePanel .titleBox{
	background: #10A7D3;
}
.panel.timePanel .titleBox{
	background: #22B5DF;
}
.panel .opcity{
	width: 177px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;

	overflow: hidden;

}

.jobPanel{
	margin-top: 30px;
	border: 1px solid #f0f0f0;
}
.jobPanel .row{
    font-size: 14px;
    padding-left: 85px;
}
.jobPanel .row span{
	width: 177px;
	display: block;
}
.jobPanel .row.title{
    color: #808080;
    background: #eeeeee;
    height: 56px;
	display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jobPanel .row.jobList{
    color: #4a4a4a;
    border-top: 1px solid #f0f0f0;
	display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    cursor: pointer;
}
.jobPanel .row.jobList:nth-of-type(odd){
	background: #FAFAFA;
}

/* pop2 */
.popBox2{
    background: rgba(0,0,0,.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}
.sampleApply{
	background: #fff;
	width: 840px;
	color: #4a4a4a;
}
.sampleApply .titleBox{
    padding: 19px 0px;
    padding-left: 50px;
    padding-right: 20px;
    border: 1px solid #f0f0f0;
	display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.titleBox .title{
	font-size: 20px;
}
.titleBox .closeIco{
    cursor: pointer;
    width: 21px;
    height: 21px;
}
.jobDetail{
	padding: 30px 50px;
}
.jobDetail .jobName{
	display: -ms-flexbox;
	display: flex;
	font-size: 15px;
	align-items: flex-end;
	line-height: 15px;
}
.jobName .name{
	font-size: 26px;
	line-height: 26px;
	margin-right: 30px;
	font-weight: 400;
}
.jobInfo{
	padding: 10px 50px;
}
.jobInfo .jobTitle{
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 400;
}
.jobInfo .jobList{
	font-size: 14px;
}
/* btn */
.sampleApply .btn{
	margin-top: 20px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	background: #059FCC;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	position: relative;
}
.sampleApply .btn input{
	position: absolute;
	background: #000;
	width: 100%;
	left: 0;
	bottom: 0;
	top: 0;
	opacity: 0;
}
.sampleApply .btn .lineView{
	background: #ccc;
	position: absolute;
	width: 100%;
	top: 0;
	bottom: 0;
	display: none;
}
.sampleApply .btn .lineView p{
	position: relative;
}
.sampleApply .btn .lineView .line{
	background: #4dd480;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	transition: all .3s ease-out;
}
/* btn end */
footer{
	margin-top: 0;
}


/* ipad横屏 */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape){
	.banner{
		height: 500px;
	}
	.banner .textBox{
		top: 40%;
	}
	.banner .searchBox{
		top: 40%;
	}
	.content{
	    width: 904px;
    	padding: 60px 30px;
	}
	.typeView .panel .titleBox{
		width: 200px;
		margin-right: 80px;
	}
	.panel .opcity{
		width: 156px;
	}
	.jobPanel .row{
		padding-left: 72px;
	}
	.jobPanel .row span{
		width: 156px;
	}
}


/* width 768 */

@media (max-width: 1023px) {
	.banner{
		height: 400px;
	}
	.banner .textBox{
		font-size: 16px;
		top: 40%;
	}
	.banner .textBox p.title{
		font-size: 36px;
	}
	.content{
        width: 668px;
	    padding: 30px 20px;
	    top: 0px;
	    margin: 30px auto;
	}
	.typeView .panel{
		font-size: 13px;
	}
	.typeView .panel .titleBox{
		width: 180px;
		margin-right: 40px;
	}
	.panel .opcity{
		width: 112px;
	}
	.jobPanel .row{
		padding-left: 62px;
	}
	.jobPanel .row span{
		width: 112px;
	}
	footer{
		margin-top: 0;
	}
	
	.sampleApply{
		width: 528px;
	}
	.sampleApply .titleBox{
		padding: 24px 0;
	    padding-left: 30px;
    	padding-right: 20px;
	}
	.jobDetail{
		padding: 30px;
	}
	.jobDetail .jobName{
		align-items: flex-start;
	}
	.jobDetail .jobName .notice{
		width: 250px;
		line-height: 22px;
	}
	.jobInfo {
	    padding: 10px 30px;
	}
}


/* width 480 */

@media (max-width: 767px) {
	.banner{
		height: 330px;
	}
	.banner .textBox{
		font-size: 14px;
		top: 50%;
	}
	.banner .textBox p.title{
		font-size: 28px;
	}
	.searchBox .keyWords{
		width: 270px;
	}
	.searchBox .keyWords input{
		width:240px;
	}
	.content{
        width: 420px;
	    padding:10px;
	    top: 0px;
	    margin: 30px auto;
	}
	.typeView{
		display: none;
	}
	.jobPanel{
		margin-top: 0;
	}
	.jobPanel .row{
		padding-left: 30px;
	}
	.jobPanel .row span{
		width: 110px;
	}
	.jobPanel .row span:nth-of-type(2),.jobPanel .row span:nth-of-type(5){
		display: none;
	}
	
	.sampleApply{
		width: 380px;
	}
	.sampleApply .titleBox{
		padding: 24px 20px;
	}
	.jobDetail{
	    padding: 30px 20px;
	}
	.jobDetail .jobName{
		align-items: flex-start;
		flex-direction: column;
	}
	.jobDetail .jobName .notice{
		width: 250px;
		line-height: 22px;
	    margin-top: 20px;
	}
	.jobInfo {
	    padding: 10px 20px;
	}
	.jobInfo .jobTitle{
		margin-bottom: 10px;
	}
}


/* width 320 */

@media (max-width: 479px) {
	.banner{
		height: 300px;
	}
	.banner .textBox{
	    transform: translateY(0);
	    left: 0;
	    width: auto;
	    top: 40%;
	}
	.banner .textBox p{
		display: none;
	}
	.banner .textBox p.title{
		font-size: 22px;
		display: block;
	}
	.searchBox .keyWords{
		width: 230px;
	}
	.searchBox .keyWords input{
		width:200px;
	}
	.content{
        width: 280px;
	    padding:10px;
	    top: 0px;
	    margin: 30px auto;
	}
	.jobPanel .row span:nth-of-type(4){
		display: none;
	}
	.jobPanel .row span{
		width: 100px;
	}
	
	
	.sampleApply{
		width: 280px;
	}
	.sampleApply .titleBox{
		padding:10px;
	}
	.titleBox .title{
		font-size: 18px;
	}
	.titleBox .closeIco{
		width: 18px;
		height: 18px;
	}
	.jobDetail{
	    padding: 20px 10px;
	}
	.jobName .name{
		font-size: 18px;
		line-height: 18px;
	}
	.jobDetail .jobName{
		align-items: flex-start;
		flex-direction: column;
	}
	.jobDetail .jobName .notice{
		width: 250px;
	    line-height: 18px;
	    margin-top: 10px;
	    font-size: 12px;
	}
	.jobInfo {
	    padding:0 10px;
	}
	.jobInfo .jobTitle{
		margin-bottom: 10px;
	}
	.jobInfo .jobList{
		font-size: 12px;
	}
	.sampleApply .btn{
		font-size: 14px;
	}
}