/* ========================= 招贤纳士列表页 ======================== */
.job-all {
	padding-top: 10px;
	padding-bottom: 80px;
}
.job-list {
	margin-bottom: 34px;
}
.job-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 36px;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	margin-bottom: 20px;
	transition: all .3s ease;
}
.job-card:hover {
	border-color: #e00012;
	box-shadow: 0 6px 24px rgba(224,0,18,0.08);
	transform: translateY(-2px);
}
.job-card-left {
	display: flex;
	align-items: center;
	flex: 1;
}
.job-card-icon {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	margin-right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.job-card-info {
	flex: 1;
	min-width: 0;
}
.job-card-title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
.job-card-info h3 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.job-card-info h3 a {
	color: #333;
	transition: color .3s;
}
.job-card:hover .job-card-info h3 a {
	color: #e00012;
}
.job-tag {
	display: inline-block;
	padding: 3px 12px;
	font-size: 12px;
	border-radius: 4px;
	margin-left: 8px;
}
.job-tag.tag-top {
	background: #fff0f0;
	color: #e00012;
	font-weight: 500;
}
.job-tag.tag-recommend {
	background: #f0f5ff;
	color: #1890ff;
	font-weight: 500;
}
.job-tag.tag-hot {
	background: #fff7e6;
	color: #fa8c16;
	font-weight: 500;
}
.job-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}
.job-card-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #999;
}
.job-card-meta .meta-item i {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.job-card-meta .meta-item .icon-clock {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}
.job-card-right {
	flex-shrink: 0;
	margin-left: 30px;
}
.job-card-btn {
	display: inline-block;
	padding: 10px 28px;
	font-size: 14px;
	color: #e00012;
	border: 1px solid #e00012;
	border-radius: 4px;
	transition: all .3s;
}
.job-card-btn:hover {
	background: #e00012;
	color: #fff;
	text-decoration: none;
}

/* ========================= 招贤纳士详情页 ======================== */
.job-all-dtl {
	padding-top: 60px;
	padding-bottom: 80px;
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
}
.job-dtl {
	margin: 0 auto;
	max-width: 900px;
}
h2.job-title {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 28px;
	font-weight: bold;
	color: #333;
	text-align: center;
}
.job-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 40px;
	margin-bottom: 40px;
	padding: 20px 30px;
	background: #fafafa;
	border-radius: 6px;
	text-align: center;
}
.job-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.job-meta-item .meta-icon {
	width: 18px;
	height: 18px;
}
.job-meta-item .meta-label {
	font-size: 13px;
	color: #999;
}
.job-meta-item .meta-value {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}
.job-meta-item .meta-value.salary {
	color: #e00012;
	font-weight: bold;
	font-size: 16px;
}
.job-section {
	margin-bottom: 40px;
}
.job-section h3 {
	position: relative;
	margin-bottom: 18px;
	padding-left: 14px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	line-height: 26px;
}
.job-section h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 3px;
	height: 18px;
	background: #e00012;
	border-radius: 2px;
}
.job-section .section-content {
	padding-left: 14px;
	font-size: 14px;
	line-height: 28px;
	color: #666;
}
.job-section .section-content p {
	margin-bottom: 12px;
}
.job-section .section-content ul {
	padding-left: 20px;
	margin-bottom: 12px;
}
.job-section .section-content ul li {
	list-style: disc;
	line-height: 28px;
	margin-bottom: 4px;
}
.job-apply-box {
	margin-top: 50px;
	padding: 40px;
	background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
	border: 1px solid #ffe0e0;
	border-radius: 8px;
	text-align: center;
}
.job-apply-box h3 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
}
.job-apply-box .apply-tip {
	font-size: 14px;
	color: #999;
	margin-bottom: 24px;
}
.job-apply-box .apply-contact {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.job-apply-box .apply-contact-item {
	font-size: 14px;
	color: #555;
}
.job-apply-box .apply-contact-item strong {
	color: #e00012;
}
.job-apply-box .apply-btn-large {
	display: inline-block;
	padding: 12px 48px;
	font-size: 16px;
	color: #fff;
	background: #e00012;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all .3s;
}
.job-apply-box .apply-btn-large:hover {
	background: #c00010;
	text-decoration: none;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(224,0,18,0.25);
}

/* 上一篇/下一篇 */
.job-ctrl {
	padding: 30px 0;
	margin-top: 30px;
	border-top: 1px solid #eee;
}
.job-ctrl a {
	display: block;
	padding: 10px 0;
	font-size: 14px;
	color: #666;
	transition: color .3s;
}
.job-ctrl a:hover {
	color: #e00012;
}
.job-ctrl .ctrl-label {
	margin-right: 8px;
	color: #999;
}

/* ========================= 响应式 ======================== */
@media (max-width: 1200px) {
	.job-dtl {
		max-width: 100%;
		padding: 0 15px;
	}
}
@media (max-width: 992px) {
	.job-all {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	.job-card {
		padding: 20px 24px;
	}
	.job-card-icon {
		width: 56px;
		height: 56px;
		margin-right: 20px;
	}
	.job-card-info h3 {
		font-size: 18px;
	}
	.job-card-btn {
		padding: 8px 22px;
		font-size: 13px;
	}
	.job-all-dtl {
		padding-top: 40px;
		padding-bottom: 50px;
	}
	h2.job-title {
		font-size: 24px;
	}
	.job-meta {
		gap: 12px 25px;
		padding: 16px 20px;
	}
	.job-apply-box {
		padding: 30px 20px;
	}
}
@media (max-width: 768px) {
	.job-card {
		flex-direction: column;
		align-items: flex-start;
	}
	.job-card-left {
		width: 100%;
	}
	.job-card-right {
		width: 100%;
		margin-left: 0;
		margin-top: 16px;
		display: flex;
		justify-content: flex-end;
	}
	h2.job-title {
		font-size: 20px;
	}
	.job-meta {
		justify-content: flex-start;
		gap: 10px 30px;
	}
	.job-section h3 {
		font-size: 16px;
	}
	.job-section .section-content {
		font-size: 13px;
		line-height: 26px;
	}
	.job-apply-box .apply-contact {
		flex-direction: column;
		gap: 10px;
	}
}
@media (max-width: 480px) {
	.job-card {
		padding: 16px 18px;
	}
	.job-card-icon {
		width: 48px;
		height: 48px;
		margin-right: 16px;
	}
	.job-card-info h3 {
		font-size: 16px;
	}
	.job-card-desc {
		font-size: 13px;
		line-height: 22px;
	}
	.job-card-meta {
		gap: 12px;
	}
	.job-card-meta .meta-item {
		font-size: 12px;
	}
	.job-card-btn {
		padding: 6px 20px;
		font-size: 12px;
	}
	.job-apply-box {
		padding: 24px 16px;
	}
	.job-apply-box .apply-btn-large {
		padding: 10px 36px;
		font-size: 14px;
	}
}
