/* 招聘岗位 */
.recruit-container {
	max-width: 1600px;
	margin: 0 auto;
	box-sizing: content-box;
}

.recruit-container .column-title::after {
	display: none;
}

.recruit-container .column-title .label {
	font-weight: bold;
	color: #2D6AF6;
	text-align: center;
	margin: 0;
}

.recruit-item .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 78px;
	padding: 0 20px 0 10px;
	margin: 24px 0;
	cursor: pointer;
}

.recruit-item .header.active {
	background-color: #2CB053;
}

.recruit-item .header .title {
	font-weight: bold;
	font-size: 20px;
	color: #50535B;
	margin: 0;
}

.recruit-item .header.active .title {
	color: white;
}

.recruit-item .header .icon {
	display: block;
	width: 32px;
	height: 32px;
	background-image: url('/skin/en_static/images/common/icon-circle-arrow-up.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.5s;
}

.recruit-item .header.active .icon {
	background-image: url('/skin/en_static/images/common/icon-circle-arrow-down.png');
	transform: rotate(180deg);
}

.recruit-item .body {
	border-top: 1px solid #E5E5E5;
	max-height: 1px;
	transition: all 0.5s;
	overflow: hidden;
}

.recruit-item .header.active + .body {
	max-height: 2000px;
}

.recruit-item .body .card {
	margin: 34px 0 0;
	border: none;
}

.recruit-item .body .card+.card {
	margin: 56px 0 0;
}

.recruit-item .body .card .title {
	font-weight: bold;
	font-size: 18px;
	color: #000000;
	margin: 0 0 10px 0;
}

.recruit-item .body .card .cell {
	font-weight: 500;
	font-size: 16px;
	color: #000000;
	margin: 20px 0 0;
}

.recruit-item .body .link {
	display: block;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	line-height: 38px;
	min-width: 104px;
	height: 38px;
	background: #2CB053;
	border-radius: 20px;
	margin: 60px 0;
	justify-self: flex-start;
	padding: 0 10px;
}

.recruit-item .body .link:hover {
	text-decoration: none;
	background: #219c46;
}

@media screen and (max-width: 1023px) {
	.recruit-container {
		margin-top: 50px;
		margin-bottom: 50px;
		padding: 0 10px;
	}

	.recruit-container .column-title .label {
		font-size: min(20px, 3vw);
		margin-top: 10px;
	}

	.recruit-list {
		margin-top: 30px;
	}

	.recruit-item .header {
		height: 48px;
		padding: 0 10px;
		margin: 14px 0;
	}
	
	.recruit-item .header .title {
		font-size: 18px;
	}
	
	.recruit-item .header .icon {
		width: 24px;
		height: 24px;
	}
	
	.recruit-item .body .card {
		margin: 24px 0 0;
	}
	
	.recruit-item .body .card+.card {
		margin: 36px 0 0;
	}
	
	.recruit-item .body .card .title {
		font-size: 16px;
		color: #000000;
		margin: 0 0 5px 0;
	}
	
	.recruit-item .body .card .cell {
		font-size: 14px;
		margin: 10px 0 0;
	}
	
	.recruit-item .body .link {
		font-size: 12px;
		line-height: 32px;
		min-width: 90px;
		height: 32px;
		border-radius: 20px;
		margin: 40px 0;
	}
}

@media screen and (min-width: 1024px) {
	.recruit-container {
		margin-top: 6.25rem;
		margin-bottom: 6.25rem;
		padding: 0 20px;
	}

	.recruit-container .column-title .label {
		font-size: 26px;
		margin-top: 14px;
	}

	.recruit-list {
		margin-top: 9rem;
	}

	.recruit-item .header {
		height: 4.875rem;
		margin: 1.5rem 0;;
	}
	
	.recruit-item .header .title {
		font-size: 1.25rem;
	}
	
	.recruit-item .header .icon {
		width: 2rem;
		height: 2rem;
	}
	
	.recruit-item .body .card {
		margin: 2.125rem 0 0;
	}
	
	.recruit-item .body .card+.card {
		margin: 3.5rem 0 0;
	}
	
	.recruit-item .body .card .title {
		font-size: 1.125rem;
	}
	
	.recruit-item .body .card .cell {
		font-size: 1rem;
	}
	
	.recruit-item .body .link {
		font-size: 14px;
		line-height: 2.375rem;
		min-width: 6.5rem;
		height: 2.375rem;
		border-radius: 20px;
		margin: 3.75rem 0;
	}
}