: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;
	--gradient-tech: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
	--gradient-tech2: linear-gradient(to right, #004ea2 0%, #175daa 40%, #26d0ce 100%);
	--module-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--gradient-main: linear-gradient(135deg, #004ea2 0%, #2c80ff 100%);
	--gradient-dark: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.92));
	--hover-shadow: 0 8px 24px rgba(0, 78, 162, 0.15);
	--salary-high: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
	--salary-medium: linear-gradient(135deg, #f0932b 0%, #ffbe76 100%);
	--salary-normal: var(--gradient-main);
}

* {
	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 {
	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-main);
	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-header {
	background: var(--gradient-dark),
		url('../img/banner.avif');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 80px 0 40px;
	text-align: center;
	margin-bottom: 40px;
}

.employment-title {
	font-size: 42px;
	margin-bottom: 15px;
	color: white;
	line-height: 1.2;
	font-weight: 800;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.employment-subtitle {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.employment-stats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	min-width: 140px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	color: white;
	margin-bottom: 5px;
	line-height: 1;
}

.stat-label {
	font-size: 14px;
	opacity: 0.9;
	font-weight: 500;
}

/* 就业数据展示区域 */
.employment-data-section {
	padding: 60px 0;
	background-color: white;
	margin-bottom: 40px;
}

.section-title {
	text-align: center;
	font-size: 32px;
	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-main);
	margin: 15px auto 0;
	border-radius: 3px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-medium);
	font-size: 16px;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* 课程分类筛选 */
.course-filter {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 20px;
	background-color: white;
	border: 1px solid var(--border-color);
	border-radius: 30px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
	white-space: nowrap;
}

.filter-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.filter-btn.active {
	background: var(--gradient-main);
	color: white;
	border-color: var(--primary-color);
}

.filter-count {
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	color: var(--primary-color);
	padding: 1px 6px;
	border-radius: 10px;
	font-size: 11px;
	margin-left: 5px;
	font-weight: 600;
}

.filter-btn.active .filter-count {
	background: rgba(255, 255, 255, 0.2);
	color: white;
}

/* 就业数据网格布局 */
.employment-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
	align-items: stretch;
}

.employment-card {
	background-color: white;
	border-radius: 10px;
	padding: 24px 20px;
	box-shadow: var(--module-shadow);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.employment-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--hover-shadow);
	border-color: rgba(0, 78, 162, 0.1);
}

.salary-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	z-index: 2;
	min-width: 60px;
	text-align: center;
}

.salary-high {
	background: var(--salary-high);
}

.salary-medium {
	background: var(--salary-medium);
}

.salary-normal {
	background: var(--salary-normal);
}

.employment-name {
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--secondary-color);
	font-weight: 600;
	padding-right: 30px;
}

.employment-info {
	font-size: 13px;
	color: var(--text-medium);
	line-height: 1.7;
	margin-bottom: 8px;
}

.course-tag {
	display: inline-block;
	background: rgba(0, 78, 162, 0.1);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	margin-top: auto;
	margin-bottom: 5px;
}

/* 智能分页 - 最多显示5个页码按钮 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
	align-items: center;
	flex-wrap: wrap;
}

.page-btn {
	min-width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: white;
	border: 1px solid var(--border-color);
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
	padding: 0 10px;
}

.page-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.page-btn.active {
	background: var(--gradient-main);
	color: white;
	border-color: var(--primary-color);
}

.page-btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-btn.disabled:hover {
	border-color: var(--border-color);
	color: var(--text-medium);
}

.page-ellipsis {
	padding: 0 8px;
	color: var(--text-medium);
}

/* 筛选结果信息 */
.filter-info {
	text-align: center;
	color: var(--text-medium);
	margin-bottom: 20px;
	font-size: 14px;
}

.filter-info strong {
	color: var(--primary-color);
}

/* CTA区域 */
.cta-section {
	padding: 60px 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-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: white;
	color: var(--primary-color);
	padding: 16px 35px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	color: var(--primary-color);
}

/* 底部信息 */
.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);
	border-top: none;
}

/* 响应式适配 */
@media (max-width: 1200px) {
	.container {
		width: 95%;
	}

	.employment-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.footer-layout {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.employment-title {
		font-size: 34px;
	}
}

@media (max-width: 992px) {
	.employment-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.course-filter {
		gap: 10px;
	}

	.filter-btn {
		padding: 8px 15px;
		font-size: 13px;
	}
}

@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;
	}

	.employment-header {
		padding: 60px 0 30px;
	}

	.employment-title {
		font-size: 28px;
	}

	.employment-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.course-filter {
		flex-direction: row;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 10px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.course-filter::-webkit-scrollbar {
		display: none;
	}

	.filter-btn {
		flex-shrink: 0;
		white-space: nowrap;
	}

	.footer-layout {
		grid-template-columns: repeat(2, 1fr);
	}

	.nav-right {
		display: none;
	}

	.pagination {
		gap: 6px;
	}

	.page-btn {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}
}

@media (max-width: 576px) {
	.employment-title {
		font-size: 26px;
	}

	.employment-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 24px;
	}

	.footer-layout {
		grid-template-columns: 1fr;
	}

	.stat-item {
		min-width: calc(50% - 20px);
	}

	.employment-card {
		padding: 20px 18px;
	}

	.course-filter {
		justify-content: flex-start;
	}
}