:root {
	--primary-color: #004ea2;
	--primary-light: #2c80ff;
	--primary-dark: #003b7a;
	--secondary-color: #1f2833;
	--light-bg: #f8fafc;
	--dark-bg: #111827;
	--text-dark: #1f2937;
	--text-medium: #4b5563;
	--border-color: #e5e7eb;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--gradient-tech: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
	--gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
	--gradient-warning: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
	--gradient-primary: linear-gradient(135deg, #004ea2 0%, #2c80ff 100%);
	--gradient-dark: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.92));
	--module-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--hover-shadow: 0 8px 24px rgba(0, 78, 162, 0.15);
	--card-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	--gradient-main: linear-gradient(135deg, #004ea2 0%, #2c80ff 100%);
	--edu-gradient: linear-gradient(135deg, #2e5bff 0%, #2ec4ff 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
	color: var(--text-dark);
	background-color: var(--light-bg);
	line-height: 1.6;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}

.container {
	width: 1152px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 导航栏 */
.header-nav {
	background-color: #ffffff;
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--module-shadow);
	position: sticky;
	top: 0;
	z-index: 999;
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-img {
	width: 160px;
	height: 54px;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	gap: 35px;
	align-items: center;
}

.nav-item {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
	transition: color 0.3s;
	cursor: pointer;
	position: relative;
	padding: 20px 0;
}

.nav-item.active {
	color: #004ea2 !important;
	font-weight: 500 !important;
}

.nav-item:hover {
	color: var(--primary-color);
}

.nav-item.has-dropdown {
	padding-right: 15px;
}

.nav-item.has-dropdown::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	font-size: 10px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	min-width: 250px;
	border-radius: 6px;
	box-shadow: var(--module-shadow);
	border: 1px solid var(--border-color);
	padding: 8px 0;
	display: none;
	z-index: 9999;
}

.nav-item.has-dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu:hover {
	display: block;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 20px;
	font-size: 14px;
	color: var(--text-dark);
	transition: all 0.3s;
}

.dropdown-menu li a:hover {
	background-color: var(--light-bg);
	color: var(--primary-color);
	padding-left: 24px;
}

/* 右侧功能区 */
.nav-right {
	display: flex;
	align-items: center;
	gap: 25px;
	font-size: 15px;
	font-weight: 500;
}

.contact-phone {
	background: var(--gradient-primary);
	color: white;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 78, 162, 0.2);
	position: relative;
}

.contact-phone:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 78, 162, 0.3);
	background: var(--primary-dark);
	color: white;
}

.qr-popup {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 1000;
	margin-top: 10px;
	width: 180px;
	text-align: center;
	border: 1px solid var(--border-color);
}

.qr-popup::before {
	content: '';
	position: absolute;
	bottom: 100%;
	right: 20px;
	border-width: 8px;
	border-style: solid;
	border-color: transparent transparent white transparent;
}

.contact-phone:hover .qr-popup {
	display: block;
}

.qr-popup img {
	width: 150px;
	height: 150px;
	margin-bottom: 8px;
	border-radius: 4px;
}

.qr-popup p {
	font-size: 12px;
	color: var(--text-medium);
	margin: 0;
}

/* 移动端导航切换按钮 */
.mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--text-dark);
	cursor: pointer;
}

/* 就业保障页面专属样式 */
.employment-guarantee-hero {
	background: var(--gradient-dark), url('./img/employment-bg.avif');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px 0 80px;
	text-align: center;
	margin-bottom: 60px;
}

.hero-title {
	font-size: 46px;
	margin-bottom: 20px;
	color: white;
	line-height: 1.2;
	font-weight: 800;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.hero-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.highlight-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 25px;
	margin-top: 40px;
	border-left: 4px solid var(--success-color);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.highlight-box h3 {
	font-size: 22px;
	margin-bottom: 15px;
	color: white;
	display: flex;
	align-items: center;
	gap: 10px;
}

.highlight-box h3 i {
	color: var(--success-color);
}

.highlight-box p {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.7;
}

/* 全链路就业保障流程 */
.process-section {
	padding: 80px 0;
	background-color: white;
	margin-bottom: 60px;
}

.section-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 15px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
	margin: 15px auto 40px;
	border-radius: 3px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-medium);
	font-size: 18px;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.process-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 50px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--gradient-primary);
	transform: translateX(-50%);
}

.process-step {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.step-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 32px;
	flex-shrink: 0;
	margin-right: 40px;
	box-shadow: 0 8px 20px rgba(0, 78, 162, 0.3);
	z-index: 1;
}

.step-content {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-color);
	flex: 1;
	position: relative;
}

.step-content::before {
	content: '';
	position: absolute;
	left: -20px;
	top: 40px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 20px 10px 0;
	border-color: transparent white transparent transparent;
}

.step-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.step-desc {
	color: var(--text-medium);
	line-height: 1.7;
	margin-bottom: 15px;
}

.step-features {
	list-style: none;
	margin-top: 20px;
}

.step-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	color: var(--text-dark);
}

.step-features li i {
	color: var(--success-color);
	margin-top: 3px;
	flex-shrink: 0;
}

/* 四大保障体系 */
.guarantee-system {
	padding: 80px 0;
	background-color: var(--light-bg);
	margin-bottom: 60px;
}

.guarantee-tabs {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.guarantee-tab {
	background: white;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 25px 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
	min-width: 250px;
	box-shadow: var(--module-shadow);
}

.guarantee-tab.active {
	border-color: var(--primary-color);
	box-shadow: var(--hover-shadow);
	transform: translateY(-5px);
}

.guarantee-tab:hover:not(.active) {
	transform: translateY(-3px);
	box-shadow: var(--card-shadow);
}

.tab-icon {
	width: 70px;
	height: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: white;
}

.tab-1 .tab-icon {
	background: var(--gradient-primary);
}

.tab-2 .tab-icon {
	background: var(--gradient-success);
}

.tab-3 .tab-icon {
	background: var(--gradient-warning);
}

.tab-4 .tab-icon {
	background: var(--gradient-tech);
}

.tab-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.tab-desc {
	color: var(--text-medium);
	font-size: 14px;
	line-height: 1.6;
}

.guarantee-content {
	background: white;
	border-radius: 16px;
	padding: 50px;
	box-shadow: var(--card-shadow);
	min-height: 400px;
}

.guarantee-item {
	display: none;
}

.guarantee-item.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.item-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.item-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.feature-card {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 25px;
	border-left: 4px solid var(--primary-color);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-shadow);
}

.feature-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-card h4 i {
	color: var(--primary-color);
}

.feature-card p {
	color: var(--text-medium);
	line-height: 1.7;
	font-size: 15px;
}

.feature-list {
	list-style: none;
	margin-top: 15px;
}

.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	color: var(--text-dark);
}

.feature-list li i {
	color: var(--success-color);
	margin-top: 3px;
	flex-shrink: 0;
}

/* 就业承诺合同 */
.contract-section {
	padding: 80px 0;
	background-color: white;
	margin-bottom: 60px;
}

.contract-card {
	background: white;
	border-radius: 16px;
	padding: 50px;
	box-shadow: var(--card-shadow);
	border: 2px solid var(--primary-color);
	position: relative;
	overflow: hidden;
}

.contract-card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: var(--gradient-primary);
	opacity: 0.05;
	border-radius: 50%;
	transform: translate(100px, -100px);
}

.contract-header {
	text-align: center;
	margin-bottom: 40px;
}

.contract-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-success);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 36px;
	margin: 0 auto 20px;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.contract-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.contract-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	max-width: 600px;
	margin: 0 auto;
}

.contract-clauses {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.clause-item {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 25px;
	border: 1px solid var(--border-color);
}

.clause-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.clause-item h4 i {
	color: var(--primary-color);
}

.clause-item p {
	color: var(--text-medium);
	line-height: 1.7;
	font-size: 15px;
}

.clause-highlight {
	background: rgba(16, 185, 129, 0.1);
	border-color: var(--success-color);
}

.clause-highlight h4 {
	color: var(--success-color);
}

.contract-note {
	background: rgba(245, 158, 11, 0.1);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--warning-color);
	margin-top: 30px;
}

.contract-note h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--warning-color);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contract-note p {
	color: var(--text-medium);
	font-size: 14px;
	line-height: 1.6;
}

/* 合作企业展示 */
.partners-section {
	padding: 80px 0;
	background-color: var(--light-bg);
	margin-bottom: 60px;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.partner-card {
	background: white;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: var(--module-shadow);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.partner-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--card-shadow);
	border-color: var(--primary-color);
}

.partner-logo {
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.partner-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.partner-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 5px;
}

.partner-type {
	font-size: 12px;
	color: var(--text-medium);
}

/* 就业数据统计 */
.stats-section {
	padding: 80px 0;
	background-color: white;
	margin-bottom: 60px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.stat-card {
	background: white;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--hover-shadow);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.stat-desc {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.6;
}

/* CTA区域 */
.cta-section {
	padding: 80px 0;
	background: var(--gradient-tech),
		radial-gradient(circle at 30% 20%, rgba(26, 41, 128, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(38, 208, 206, 0.3) 0%, transparent 50%);
	color: white;
	text-align: center;
}

.cta-section .section-title {
	color: white;
	margin-bottom: 20px;
}

.cta-section .section-title::after {
	background: white;
}

.cta-section .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-light {
	padding: 16px 35px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	min-width: 200px;
}

.btn-primary {
	background: white;
	color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
	background: #f8fafc;
	color: var(--primary-color);
}

.btn-light {
	background: transparent;
	color: white;
	border: 2px solid white;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.btn-light:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
	color: white;
}

/* 底部信息 */
.footer {
	background-color: var(--secondary-color);
	color: rgba(255, 255, 255, 0.8);
	padding: 50px 0 20px;
}

.footer-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.5fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
	/* 每列自动分配宽度 */
}

.footer-logo {
	font-size: 20px;
	font-weight: 700;
	color: white;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
}

.footer-desc {
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 10px;
}

.footer-title {
	font-size: 16px;
	font-weight: 600;
	color: white;
	margin-bottom: 15px;
}

.footer-list li {
	font-size: 13px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: color 0.3s;
}

.footer-list li:hover {
	color: var(--primary-color);
}

.contact-column {
	display: flex;
	flex-direction: column;
}

.hotline-box {
	background: rgba(255, 255, 255, 0.05);
	padding: 15px;
	border-radius: 8px;
	margin-top: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotline-number {
	font-size: 18px;
	font-weight: 600;
	color: white;
	margin: 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hotline-number i {
	color: var(--primary-light);
}

.qr-column {
	text-align: center;
}

.qr-code {
	margin-top: 0;
	text-align: center;
}

.qr-code img {
	width: 120px;
	height: 120px;
	border-radius: 8px;
	background: white;
	padding: 8px;
}

.qr-code p {
	font-size: 12px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.7);
}

.copyright {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* 响应式适配 */
@media (max-width: 1200px) {
	.container {
		width: 95%;
	}

	.guarantee-tabs {
		flex-direction: column;
		align-items: center;
	}

	.guarantee-tab {
		width: 100%;
		max-width: 500px;
	}

	.item-grid,
	.contract-clauses,
	.partners-grid,
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-timeline::before {
		left: 60px;
	}

	.step-icon {
		width: 80px;
		height: 80px;
		font-size: 28px;
	}

	/* 底部5列布局响应式 */
	.footer-layout {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {

	/* 移动端导航样式 */
	.mobile-toggle {
		display: block;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 70px);
		background: white;
		flex-direction: column;
		align-items: flex-start;
		padding: 30px;
		transition: left 0.3s ease;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		overflow-y: auto;
		z-index: 998;
		gap: 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-item {
		margin: 0 0 15px 0;
		width: 100%;
		padding: 10px 0;
	}

	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding-left: 20px;
		display: none;
		margin-top: 10px;
	}

	.nav-item.has-dropdown:hover .dropdown-menu,
	.nav-item.has-dropdown.active .dropdown-menu {
		display: block;
	}

	.nav-item.has-dropdown::after {
		right: 20px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.process-timeline::before {
		display: none;
	}

	.process-step {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.step-icon {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.step-content::before {
		display: none;
	}

	.item-grid,
	.contract-clauses,
	.partners-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.guarantee-content {
		padding: 30px;
	}

	.contract-card {
		padding: 30px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-light {
		width: 100%;
		max-width: 300px;
	}

	/* 底部5列布局移动端响应式 */
	.footer-layout {
		grid-template-columns: repeat(2, 1fr);
	}

	.nav-right {
		display: none;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 28px;
	}

	.step-content {
		padding: 20px;
	}

	.feature-card {
		padding: 20px;
	}

	.stat-card {
		padding: 30px 20px;
	}

	.stat-number {
		font-size: 36px;
	}

	/* 底部5列布局小屏响应式 */
	.footer-layout {
		grid-template-columns: 1fr;
	}
}