/**
 * 招聘页面样式
 * 设计风格：专业、现代、清晰
 */

/* ==================== Hero区域 ==================== */
.zp-hero {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a1628 0%, #1b263b 50%, #0066cc 100%);
	color: #fff;
	overflow: hidden;
}

.zp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

.zp-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.zp-hero h1 {
	font-size: 56px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 15px;
	letter-spacing: 8px;
}

.zp-subtitle {
	font-size: 20px;
	color: #60a5fa;
	letter-spacing: 6px;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.zp-desc {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
	max-width: 600px;
	margin: 0 auto;
}

/* ==================== 主体区域 ==================== */
.zp-main {
	padding: 80px 0 100px;
	background: #f8fafc;
}

/* ==================== 公司信息标题 ==================== */
.zp-company-info {
	text-align: center;
	margin-bottom: 50px;
}

.zp-company-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	border-radius: 50px;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.zp-company-badge i {
	font-size: 16px;
}

.zp-company-name {
	font-size: 36px;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 12px;
	letter-spacing: 2px;
}

.zp-company-slogan {
	font-size: 16px;
	color: #64748b;
	margin: 0;
}

/* ==================== 公司优势 ==================== */
.zp-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 80px;
}

.zp-benefit-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.zp-benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	border-color: #ff6b35;
}

.zp-benefit-card i {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	color: #fff;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 20px;
}

.zp-benefit-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 10px;
}

.zp-benefit-card p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* ==================== 招聘区域 ==================== */
.zp-section {
	margin-bottom: 80px;
}

.zp-section-header {
	text-align: center;
	margin-bottom: 40px;
}

.zp-section-header h2 {
	font-size: 36px;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 10px;
}

.zp-section-header p {
	font-size: 16px;
	color: #64748b;
}

/* ==================== 招聘表格 ==================== */
.zp-table-wrap {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	overflow: hidden;
}

.zp-table {
	width: 100%;
	border-collapse: collapse;
}

.zp-table thead {
	background: linear-gradient(135deg, #0a1628 0%, #1b263b 100%);
}

.zp-table th {
	padding: 20px 15px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.zp-table tbody tr {
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.2s;
}

.zp-table tbody tr:hover {
	background: #f8fafc;
}

.zp-table tbody tr:last-child {
	border-bottom: none;
}

.zp-table td {
	padding: 18px 15px;
	font-size: 14px;
	color: #334155;
}

/* 列宽设置 */
.zp-col-num {
	width: 60px;
	text-align: center;
	font-weight: 700;
	color: #64748b;
}

.zp-col-job {
	min-width: 150px;
}

.zp-col-job strong {
	font-size: 15px;
	font-weight: 700;
	color: #1e293b;
}

.zp-col-dept {
	color: #64748b;
}

.zp-col-loc {
	color: #64748b;
}

.zp-col-loc i {
	color: #ff6b35;
	margin-right: 5px;
}

.zp-col-edu,
.zp-col-exp {
	text-align: center;
}

.zp-col-count {
	text-align: center;
}

.zp-count {
	display: inline-block;
	min-width: 24px;
	height: 24px;
	background: #ff6b35;
	color: #fff;
	border-radius: 50%;
	font-weight: 700;
	font-size: 13px;
	line-height: 24px;
}

.zp-col-action {
	text-align: center;
}

/* 标签 */
.zp-tag {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 8px;
	text-transform: uppercase;
}

.zp-tag-hot {
	background: #ff6b35;
	color: #fff;
}

.zp-tag-urgent {
	background: #ef4444;
	color: #fff;
}

/* 申请按钮 */
.zp-btn {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	color: #fff;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.zp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

/* ==================== 联系方式 ==================== */
.zp-contact {
	text-align: center;
	padding: 60px 40px;
	background: linear-gradient(135deg, #0a1628 0%, #1b263b 100%);
	border-radius: 20px;
	color: #fff;
}

.zp-contact h3 {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px;
}

.zp-contact p {
	font-size: 16px;
	color: rgba(255,255,255,0.7);
	margin: 0 0 30px;
}

.zp-contact-info {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.zp-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
}

.zp-contact-item i {
	width: 50px;
	height: 50px;
	background: rgba(255,107,53,0.2);
	color: #ff6b35;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1200px) {
	.zp-benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.zp-hero h1 {
		font-size: 40px;
		letter-spacing: 4px;
	}
	
	.zp-benefits {
		grid-template-columns: 1fr;
	}
	
	.zp-table-wrap {
		overflow-x: auto;
	}
	
	.zp-table {
		min-width: 800px;
	}
	
	.zp-contact-info {
		flex-direction: column;
		gap: 20px;
	}
}
