: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;
	--module-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--gradient-main: linear-gradient(135deg, #004ea2 0%, #2c80ff 100%);
	--gradient-icon: linear-gradient(135deg, #004ea2 0%, #25c9cb 100%);
	--gradient-tech: linear-gradient(135deg, #1a2980 0%, #26d0ce 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);
	--tech-glow: 0 0 15px rgba(44, 128, 255, 0.3);
	--edu-gradient: linear-gradient(135deg, #2e5bff 0%, #2ec4ff 100%);
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--info-color: #3b82f6;
}

* {
	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;
}

/* 专升本头部横幅 */
.education-hero {
	padding: 80px 0 60px;
	background: var(--edu-gradient),
		radial-gradient(circle at 30% 20%, rgba(46, 91, 255, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(46, 196, 255, 0.3) 0%, transparent 50%);
	color: white;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.education-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;
	position: relative;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.education-hero-subtitle {
	font-size: 20px;
	margin-bottom: 40px;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	font-weight: 300;
	letter-spacing: 0.5px;
}

.hero-highlights {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}

.hero-highlight {
	text-align: center;
	padding: 20px;
	min-width: 160px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlight-icon {
	font-size: 28px;
	margin-bottom: 10px;
	color: white;
}

.hero-highlight-number {
	font-size: 32px;
	font-weight: 800;
	color: white;
	margin-bottom: 5px;
	line-height: 1;
}

.hero-highlight-label {
	font-size: 14px;
	opacity: 0.9;
	font-weight: 500;
}

.education-cta {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: none;
}

.btn-primary {
	background: white;
	color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-3px);
}

/* 课程安排部分 */
.schedule-section {
	padding: 80px 0;
	background-color: white;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--edu-gradient);
	margin: 10px auto 0;
	border-radius: 2px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	line-height: 1.7;
}

.schedule-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.schedule-card {
	background: var(--light-bg);
	border-radius: 16px;
	padding: 35px 30px;
	border: 1px solid var(--border-color);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.schedule-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--edu-gradient);
}

.schedule-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(46, 91, 255, 0.15);
}

.schedule-icon {
	width: 70px;
	height: 70px;
	background: var(--edu-gradient);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	margin: 0 auto 20px;
	box-shadow: 0 10px 20px rgba(46, 91, 255, 0.2);
}

.schedule-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 15px;
}

.schedule-date {
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
	padding: 8px 15px;
	background: rgba(46, 91, 255, 0.1);
	border-radius: 8px;
	display: inline-block;
}

.schedule-desc {
	color: var(--text-dark);
	line-height: 1.8;
	font-size: 15px;
}

/* 作息时间表 */
.timetable-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(46, 91, 255, 0.02) 0%, rgba(46, 196, 255, 0.02) 100%);
}

.timetable-container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 16px;
	padding: 40px;
	box-shadow: var(--module-shadow);
	border: 1px solid var(--border-color);
}

.timetable-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.timetable-title i {
	color: var(--primary-color);
}

.timetable-item {
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.timetable-item:hover {
	background-color: rgba(46, 91, 255, 0.03);
}

.timetable-item:last-child {
	border-bottom: none;
}

.time-period {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	min-width: 180px;
	padding-right: 20px;
}

.time-activity {
	font-size: 16px;
	color: var(--text-dark);
	flex: 1;
}

.time-note {
	font-size: 14px;
	color: var(--success-color);
	font-weight: 500;
	margin-left: 15px;
	background: rgba(16, 185, 129, 0.1);
	padding: 4px 10px;
	border-radius: 4px;
}

/* 培训形式部分 */
.training-mode {
	padding: 80px 0;
	background-color: white;
}

.mode-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.mode-content {
	padding-right: 30px;
}

.mode-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px;
	line-height: 1.3;
}

.mode-desc {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.8;
	margin-bottom: 25px;
}

.mode-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mode-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mode-feature i {
	color: var(--success-color);
	font-size: 18px;
	background: rgba(16, 185, 129, 0.1);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mode-feature-text {
	font-size: 15px;
	color: var(--text-dark);
}

.mode-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mode-icon-container {
	width: 280px;
	height: 280px;
	background: var(--edu-gradient);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 15px 35px rgba(46, 91, 255, 0.2);
}

.mode-icon-container::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 30px;
	background: var(--edu-gradient);
	z-index: -1;
	filter: blur(20px);
	opacity: 0.3;
}

.mode-icon {
	font-size: 90px;
	color: white;
}

/* 专业覆盖部分 - 新增学员规模信息 */
.majors-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(46, 91, 255, 0.03) 0%, rgba(46, 196, 255, 0.03) 100%);
}

.majors-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.major-card {
	background: white;
	border-radius: 12px;
	padding: 30px 25px;
	text-align: center;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.major-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color);
}

.major-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--edu-gradient);
}

.major-icon {
	width: 60px;
	height: 60px;
	background: var(--edu-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	margin: 0 auto 15px;
}

.major-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.major-desc {
	font-size: 13px;
	color: var(--text-medium);
	line-height: 1.6;
}

.major-stats {
	background: white;
	border-radius: 16px;
	padding: 30px;
	border: 1px solid var(--border-color);
	text-align: center;
	margin-top: 40px;
}

.major-stats-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.stats-item {
	text-align: center;
}

.stats-number {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1;
}

.stats-label {
	font-size: 16px;
	color: var(--text-medium);
}

.major-stats-note {
	font-size: 14px;
	color: var(--text-medium);
	margin-top: 20px;
	font-style: italic;
	background: rgba(46, 91, 255, 0.05);
	padding: 12px;
	border-radius: 8px;
	border-left: 4px solid var(--primary-color);
}

/* 升本成果部分 */
.achievement-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(46, 91, 255, 0.03) 0%, rgba(46, 196, 255, 0.03) 100%);
}

.achievement-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.achievement-stats {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.achievement-stat {
	background: white;
	border-radius: 16px;
	padding: 30px;
	border: 1px solid var(--border-color);
	text-align: center;
	transition: all 0.3s ease;
}

.achievement-stat:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-stat-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

.achievement-rate {
	font-size: 48px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1;
}

.achievement-rate.rate-high {
	color: var(--success-color);
}

.achievement-label {
	font-size: 14px;
	color: var(--text-medium);
	margin-bottom: 15px;
}

.achievement-progress {
	height: 8px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
}

.achievement-progress-bar {
	height: 100%;
	background: var(--edu-gradient);
	border-radius: 4px;
	transition: width 1.5s ease;
}

.achievement-progress-bar.rate-83 {
	width: 83%;
}

.achievement-progress-bar.rate-68 {
	width: 68%;
}

.achievement-content {
	padding-left: 30px;
}

.achievement-text {
	font-size: 16px;
	color: var(--text-dark);
	line-height: 1.8;
	margin-bottom: 25px;
}

.achievement-highlight {
	background: linear-gradient(to right, rgba(46, 91, 255, 0.1), transparent);
	padding: 20px 25px;
	border-left: 4px solid var(--primary-color);
	border-radius: 0 8px 8px 0;
	font-size: 17px;
	color: var(--secondary-color);
	font-weight: 600;
	margin-top: 30px;
}

/* CTA区域 */
.education-cta-section {
	padding: 100px 0;
	background: var(--edu-gradient),
		radial-gradient(circle at 30% 20%, rgba(46, 91, 255, 0.4) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(46, 196, 255, 0.3) 0%, transparent 50%);
	color: white;
	text-align: center;
}

.education-cta-section .section-title {
	color: white;
	text-align: center;
}

.education-cta-section .section-title::after {
	background: white;
	left: 50%;
	transform: translateX(-50%);
}

.education-cta-section .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.btn-light {
	background: white;
	color: var(--primary-color);
	padding: 16px 38px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
	font-size: 16px;
}

.btn-light:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
	color: var(--primary-color);
}

.btn-light i,
.btn-primary i {
	margin-right: 10px;
	font-size: 18px;
}

/* 底部信息 */
.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-title {
	font-size: 16px;
	font-weight: 600;
	color: white;
	margin-bottom: 15px;
}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.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);
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 10px;
}

.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%;
	}

	.schedule-cards,
	.majors-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mode-container,
	.achievement-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mode-content {
		padding-right: 0;
	}

	.achievement-content {
		padding-left: 0;
	}

	.footer-layout {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.education-hero-title {
		font-size: 38px;
	}
}

@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;
	}

	.education-hero {
		padding: 60px 0 40px;
	}

	.education-hero-title {
		font-size: 32px;
	}

	.education-hero-subtitle {
		font-size: 18px;
	}

	.schedule-cards,
	.majors-grid {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-light,
	.btn-primary,
	.btn-outline {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.footer-layout {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.nav-right {
		display: none;
	}

	.timetable-container {
		padding: 20px;
	}

	.time-period {
		min-width: 140px;
		font-size: 16px;
	}

	.major-stats-content {
		flex-direction: column;
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.education-hero-title {
		font-size: 28px;
	}

	.education-hero-subtitle {
		font-size: 16px;
	}

	.hero-highlight {
		min-width: calc(50% - 15px);
	}

	.section-title {
		font-size: 28px;
	}

	.footer-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.time-period {
		min-width: 120px;
		font-size: 15px;
	}

	.mode-icon-container {
		width: 220px;
		height: 220px;
	}

	.mode-icon {
		font-size: 70px;
	}
}