: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);
	--banner-gradient: linear-gradient(105deg,
			rgba(0, 78, 162, 0.95) 0%,
			rgba(44, 128, 255, 0.92) 30%,
			rgba(0, 78, 162, 0.88) 70%,
			rgba(0, 78, 162, 0.95) 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;
	overflow-x: hidden;
}

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;
}

/* ==================== 全新的Banner区域 ==================== */
.training-banner {
	position: relative;
	height: 500px;
	background: var(--banner-gradient);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0;
}

.banner-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.15;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 15l5 10 11 2-8 7 2 11-10-5-10 5 2-11-8-7 11-2z" fill="white" opacity="0.1"/></svg>');
}

.banner-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.banner-content {
	text-align: left;
	color: white;
	padding-right: 30px;
}

.banner-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-badge i {
	color: #ffd700;
}

.banner-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	background: linear-gradient(90deg, #ffffff 0%, #e6f2ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.banner-subtitle {
	font-size: 20px;
	margin-bottom: 35px;
	opacity: 0.95;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
}

/* 特色标签区域 */
.banner-features {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.feature-tag-banner {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	padding: 10px 18px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.feature-tag-banner:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.feature-tag-banner i {
	color: #fff;
}

/* 右侧卡片区域 */
.banner-card-container {
	position: relative;
}

.banner-card {
	background: rgba(255, 255, 255, 1);
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.banner-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #004ea2 0%, #2c80ff 100%);
}

.card-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 25px;
	text-align: center;
}

.card-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 25px;
}

.stat-item-card {
	text-align: center;
	padding: 15px;
	background: linear-gradient(135deg, rgba(0, 78, 162, 0.05) 0%, rgba(44, 128, 255, 0.05) 100%);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-item-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 78, 162, 0.15);
}

.stat-number-card {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 5px;
	line-height: 1;
}

.stat-label-card {
	font-size: 14px;
	color: var(--text-medium);
	font-weight: 500;
}

/* 实训方向 */
.directions-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	text-align: center;
}

.directions-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.direction-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	background: rgba(0, 78, 162, 0.05);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.direction-item:hover {
	background: rgba(0, 78, 162, 0.1);
	transform: translateX(5px);
}

.direction-item i {
	color: var(--primary-color);
	font-size: 18px;
	width: 24px;
	text-align: center;
}

.direction-item span {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
}

/* CTA按钮区域 */
.cta-buttons {
	display: flex;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.btn-primary {
	background: linear-gradient(135deg, #004ea2 0%, #2c80ff 100%);
	color: white;
	padding: 16px 36px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 78, 162, 0.3);
	border: none;
	font-size: 16px;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 25px rgba(0, 78, 162, 0.4);
	background: linear-gradient(135deg, #003b7a 0%, #1a6de3 100%);
	color: white;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	padding: 16px 36px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 16px;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	color: white;
}

/* 浮动元素 */
.floating-element {
	position: absolute;
	z-index: 1;
	opacity: 0.6;
}

.floating-element-1 {
	top: 20%;
	left: 5%;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
	bottom: 30%;
	right: 10%;
	width: 60px;
	height: 60px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* 合作院校展示 */
.university-gallery {
	padding: 80px 0 40px;
	background-color: white;
}

.gallery-header {
	text-align: center;
	margin-bottom: 50px;
}

.gallery-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.gallery-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.gallery-container-new {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.gallery-card-new {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--module-shadow);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.gallery-card-new:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 78, 162, 0.15);
	border-color: var(--primary-light);
}

.gallery-image-new {
	width: 100%;
	height: 352px;
	overflow: hidden;
	position: relative;
}

.gallery-image-new img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-card-new:hover .gallery-image-new img {
	transform: scale(1.05);
}

.university-tag-new {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--primary-color);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
}

.gallery-content-new {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.university-name-new {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.3;
}

.university-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-medium);
	font-size: 14px;
	margin-bottom: 15px;
}

.university-location i {
	color: var(--primary-light);
}

.university-desc-new {
	color: var(--text-medium);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	flex: 1;
}

.collaboration-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 15px;
}

.feature-tag {
	background: rgba(0, 78, 162, 0.08);
	color: var(--primary-color);
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
}

/* 统计区域 */
.stats-section {
	background: var(--gradient-main);
	padding: 60px 0;
	color: white;
	text-align: center;
	margin-top: 50px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
	background-size: cover;
	pointer-events: none;
}

.stats-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	opacity: 0.9;
}

/* 校企协同项目实训优化布局 */
.training-integrated {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(26, 41, 128, 0.02) 0%, rgba(38, 208, 206, 0.02) 100%);
}

.integrated-container {
	background: white;
	border-radius: 20px;
	padding: 50px;
	border: 1px solid rgba(0, 78, 162, 0.1);
	position: relative;
	overflow: hidden;
	box-shadow: var(--module-shadow);
}

.integrated-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gradient-main);
}

.integrated-header {
	text-align: center;
	margin-bottom: 50px;
}

.integrated-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 20px;
	line-height: 1.2;
}

.integrated-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.synergy-system {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.system-intro {
	background: linear-gradient(135deg, rgba(0, 78, 162, 0.03) 0%, rgba(44, 128, 255, 0.03) 100%);
	padding: 30px;
	border-radius: 15px;
	border-left: 4px solid var(--primary-color);
}

.system-intro h3 {
	font-size: 24px;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.system-intro p {
	color: var(--text-medium);
	font-size: 16px;
	line-height: 1.7;
}

.courses-overview {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.course-overview-item {
	background: white;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: var(--module-shadow);
}

.course-overview-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--hover-shadow);
	border-color: var(--primary-color);
}

.course-overview-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient-main);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	margin-bottom: 20px;
}

.course-overview-name {
	font-size: 20px;
	color: var(--secondary-color);
	margin-bottom: 15px;
	font-weight: 600;
}

.course-overview-desc {
	color: var(--text-medium);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.course-overview-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: auto;
}

.course-feature-tag {
	background: rgba(0, 78, 162, 0.08);
	color: var(--primary-color);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.employment-guarantee {
	background: linear-gradient(135deg, rgba(0, 78, 162, 0.05) 0%, rgba(44, 128, 255, 0.05) 100%);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid rgba(0, 78, 162, 0.1);
	margin-top: 20px;
}

.employment-guarantee h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.employment-guarantee p {
	color: var(--text-medium);
	font-size: 16px;
	line-height: 1.7;
}

/* 实训流程区域 */
.training-process {
	padding: 80px 0;
	background-color: white;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--gradient-main);
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 3px;
}

.center-title .section-title {
	text-align: center;
}

.center-title .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.section-subtitle {
	font-size: 16px;
	color: var(--text-medium);
	margin-bottom: 40px;
	max-width: 800px;
}

.process-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
}

.process-container::before {
	content: '';
	position: absolute;
	left: 60px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--primary-light);
	opacity: 0.3;
}

.process-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	position: relative;
}

.process-number {
	width: 60px;
	height: 60px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: 700;
	flex-shrink: 0;
	z-index: 1;
}

.process-content {
	flex: 1;
	background: white;
	border-radius: 12px;
	padding: 25px;
	border: 1px solid var(--border-color);
	box-shadow: var(--module-shadow);
}

.process-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.process-desc {
	color: var(--text-medium);
	font-size: 14px;
	line-height: 1.7;
}

/* 底部信息 */
.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 {
	display: flex;
	flex-direction: column;
}

.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;
}

.footer-contact i {
	color: var(--primary-light);
}

.qr-column {
	text-align: center;
}

.qr-code {
	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%;
	}

	.banner-title {
		font-size: 46px;
	}

	.banner-container {
		gap: 40px;
	}

	.courses-overview {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-layout {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.stats-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.training-banner {
		height: auto;
		padding: 60px 0;
	}

	.banner-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.banner-content {
		text-align: center;
		padding-right: 0;
	}

	.banner-features {
		justify-content: center;
	}

	.banner-card {
		max-width: 500px;
		margin: 0 auto;
	}

	.cta-buttons {
		justify-content: center;
	}

	.integrated-title {
		font-size: 32px;
	}

	.integrated-subtitle {
		font-size: 16px;
	}

	.gallery-title {
		font-size: 32px;
	}

	.gallery-subtitle {
		font-size: 16px;
	}
}

@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;
		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;
	}

	.banner-title {
		font-size: 36px;
	}

	.banner-subtitle {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.card-stats {
		grid-template-columns: 1fr;
	}

	.feature-tag-banner {
		padding: 8px 15px;
		font-size: 13px;
	}

	.btn-primary,
	.btn-secondary {
		padding: 14px 28px;
		font-size: 15px;
		width: 100%;
		max-width: 300px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.floating-element-1,
	.floating-element-2 {
		display: none;
	}

	.integrated-title {
		font-size: 28px;
	}

	.integrated-subtitle {
		font-size: 16px;
	}

	.section-title {
		font-size: 26px;
	}

	/* 合并区域响应式 */
	.integrated-container {
		padding: 30px 20px;
	}

	.courses-overview {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.course-overview-item {
		padding: 25px;
	}

	.gallery-container-new {
		grid-template-columns: 1fr;
	}

	.process-container::before {
		left: 30px;
	}

	.process-item {
		gap: 15px;
	}

	.process-number {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.footer-layout {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.nav-right {
		display: none;
	}

	.stats-container {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.banner-title {
		font-size: 30px;
	}

	.banner-subtitle {
		font-size: 16px;
	}

	.card-title {
		font-size: 20px;
	}

	.stat-number-card {
		font-size: 28px;
	}

	.banner-card {
		padding: 25px;
	}

	.training-banner {
		padding: 50px 0;
	}

	.integrated-title {
		font-size: 24px;
	}

	.integrated-subtitle {
		font-size: 14px;
	}

	.section-title {
		font-size: 24px;
	}

	.gallery-title {
		font-size: 26px;
	}

	.gallery-subtitle {
		font-size: 14px;
	}

	.course-overview-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.course-overview-name {
		font-size: 18px;
	}

	.process-container::before {
		display: none;
	}

	.process-item {
		flex-direction: column;
		gap: 15px;
	}

	.process-number {
		align-self: center;
	}

	.footer-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.qr-column {
		align-items: flex-start;
	}
}