body{
	background-color: #f8f8f8;
}
/* 面包屑导航 */
.breadcrumb {
	padding: 1.5rem 0;
	font-size: 1.4rem;
	color: var(--text-light);
}

.breadcrumb a {
	color: var(--primary);
}

/* 二级页面核心布局：左侧导航 + 右侧内容 */
.page-layout {
	display: flex;
	gap: 3rem;
	margin: 2rem 0 6rem;
	align-items: flex-start;
}

/* 左侧侧边导航 */
.sidebar {
	width: 240px;
	flex-shrink: 0;
	background: var(--white);
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.sidebar-header {
	background: var(--primary);
	color: var(--white);
	padding: 1.8rem;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
}

.side-nav {
	list-style: none;
}

.side-nav-item {
	border-bottom: 1px solid var(--border);
}

.side-nav-link {
	display: block;
	padding: 1.4rem 2rem;
	font-size: 1.6rem;
	color: var(--text-dark);
	transition: all 0.3s ease;
}

.side-nav-link:hover,
.side-nav-link.active {
	background: var(--light-green);
	color: var(--primary);
	font-weight: 500;
	padding-left: 2.5rem;
}

/* 右侧内容区 */
.content-area {
	flex: 1;
	background: var(--white);
	border-radius: 8px;
	padding: 3rem;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.content-title {
	font-size: 2.4rem;
	color: var(--primary);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--primary);
}

.content-text {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--text-dark);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.content-text img {
	display: block;
	width: 150px;
	margin-left: 40px;
}

.content-text p {
	margin-bottom: 1.8rem;
	text-indent: 2em;
	text-align: center;
	color: #999;
}

/* 列表样式（适配新闻/公告类内容） */
.content-list {
	list-style: none;
}

.content-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	border-bottom: 1px dashed var(--border);
}

.content-list-item a {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}

.content-list-item a:hover {
	color: var(--primary);
}

.list-date {
	font-size: 1.4rem;
	color: var(--text-light);
	margin-left: 1.5rem;
	white-space: nowrap;
}

/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 4rem;
}

.page-btn {
	padding: 0.8rem 1.5rem;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s;
}

.page-btn.active {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.page-btn:hover:not(.active) {
	background: var(--light-green);
	color: var(--primary);
}

/* 移动端二级页面适配 */
@media (max-width: 768px) {
	.page-layout {
		flex-direction: column;
		gap: 2rem;
	}

	.sidebar {
		width: 100%;
	}

	.content-area {
		padding: 2rem;
		width: 100%;
	}

	.content-title {
		font-size: 2rem;
	}
}

.filter-bar {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 1.5rem 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.filter-tag {
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 1.4rem;
	cursor: pointer;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}

.filter-tag.active {
	background: var(--primary);
	/* 主色（可替换为你的primary色值） */
	color: #fff;
	border-color: var(--primary);
}

/* 核心列表样式 */
.common-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.8rem 1rem;
	border-bottom: 1px dashed #eee;
	transition: background 0.3s ease;
}

.list-item:hover {
	background: #f8faf9;
	/* 悬停浅背景 */
}

.list-title {
	flex: 1;
	font-size: 1.6rem;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 1rem;
}

.list-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.list-title a:hover {
	color: var(--primary);
	/* 主色 */
	text-decoration: underline;
}

.list-meta {
	font-size: 1.4rem;
	color: #999;
	white-space: nowrap;
	margin-left: 1.5rem;
}

/* 分页组件 */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 4rem;
}

.page-btn {
	padding: 0.8rem 1.5rem;
	border: 1px solid #eee;
	border-radius: 4px;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s;
}

.page-btn.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.page-btn:hover:not(.active) {
	background: #f8faf9;
	color: var(--primary);
}

/* 移动端适配 */
@media (max-width: 768px) {
	.list-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: 1.2rem 0.5rem;
	}

	.list-meta {
		margin-left: 0;
		font-size: 1.2rem;
	}

	.filter-bar {
		justify-content: center;
	}
}

/* 分页样式 */
/* 分页容器 - 居中 + 自适应 */
.pagination {
	display: flex;
	flex-wrap: wrap;
	/* 手机放不下自动换行 */
	justify-content: center;
	/* 始终居中 */
	gap: 6px;
	list-style: none;
	max-width: 100%;
}

/* 页码按钮 - 自动适配屏幕 */
.pagination li {
	width: 32px;
	/* 手机更合适的大小 */
	height: 32px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
}

/* 手机端更小尺寸 */
@media (max-width: 400px) {
	.pagination li {
		width: 28px;
		height: 28px;
		line-height: 28px;
		font-size: 12px;
	}
}

.pagination li:hover {
	background: #f5f5f5;
}

.pagination li.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.pagination li.disabled {
	color: #ccc;
	cursor: not-allowed;
}

.pagination li.ellipsis {
	border: none;
	cursor: default;
	color: #999;
	width: auto;
	padding: 0 4px;
}

/* 核心容器样式：高度固定、宽度自适应 */
.img-container {
	width: 100%;
	height: 250px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 图片样式：保证比例、填充容器 */
.img-container img {
	width: 100%;
	/* 宽度铺满容器 */
	height: auto;
	/* 高度自动，保持比例 */
	min-height: 100%;
	/* 确保图片高度至少覆盖容器 */
	object-fit: cover;
	/* 超出部分裁剪，不拉伸变形 */
}

/* 移动端适配（可选）：调整固定高度 */
@media (max-width: 768px) {
	.img-container {
		height: 200px;
		/* 移动端降低高度 */
	}
}
			/* 详情页头部 */
			.detail-header {
				text-align: center;
				padding: 2rem 0;
				border-bottom: 1px solid #eee;
				margin-bottom: 2rem;
			}

			.detail-title {
				font-size: 2.2rem;
				color: var(--primary);
				/* 主色 */
				margin-bottom: 1.5rem;
				line-height: 1.4;
				padding: 0 1rem;
			}

			.detail-meta {
				font-size: 1.4rem;
				color: #999;
				display: flex;
				justify-content: center;
				gap: 2rem;
				flex-wrap: wrap;
			}

			/* 详情页正文 */
			.detail-content {
				font-size: 1.6rem;
				line-height: 1.8;
				color: #333;
				padding: 1rem 0;
			}

			.detail-content h3 {
				color: var(--primary);
				margin: 2.5rem 0 1.5rem;
				font-size: 1.8rem;
			}

			.detail-content p {
				margin-bottom: 1.8rem;
				text-indent: 2em;
			}

			.detail-content ol,
			.detail-content ul {
				margin: 1.5rem 0 1.5rem 3rem;
			}

			.detail-content li {
				margin-bottom: 1rem;
				line-height: 1.7;
			}

			.detail-content img {
				max-width: 100%;
				height: auto;
				margin: 2rem auto;
				display: block;
				border-radius: 4px;
			}

			/* 上下篇导航 */
			.detail-nav {
				display: flex;
				justify-content: space-between;
				padding: 2rem 0;
				border-top: 1px solid #eee;
				margin-top: 3rem;
				flex-wrap: wrap;
				gap: 1rem;
			}

			.detail-nav-item {
				font-size: 1.4rem;
				color: #999;
			}

			.detail-nav-item a {
				color: var(--primary);
				text-decoration: none;
				transition: color 0.3s;
			}

			.detail-nav-item a:hover {
				text-decoration: underline;
				color: var(--primary);
			}

			/* 移动端适配 */
			@media (max-width: 768px) {
				.detail-title {
					font-size: 1.8rem;
				}

				.detail-meta {
					flex-direction: column;
					gap: 0.5rem;
					align-items: center;
				}

				.detail-content {
					font-size: 1.4rem;
					padding: 0 0.5rem;
				}

				.detail-nav {
					flex-direction: column;
					gap: 1rem;
				}
			}

/* 学院简介css */
.intro-card {
	background: #fff;
	/* border: 1px solid #eee; */
	border-radius: 12px;
	/* padding: 40px; */
	margin-bottom: 50px;
}

.intro-card h2 {
	font-size: 22px;
	color: var(--primary);
	margin-bottom: 20px;
	border-left: 4px solid var(--primary);
	padding-left: 12px;
}

.intro-card p {
	font-size: 20px;
	color: #444;
	margin-bottom: 18px;
	text-align: justify;
	margin-top: 20px;
	line-height: 2;
	text-indent: 40px;
}

/* 五个坚持 */



/* 发展历程样式 */
/* 时间轴容器 */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 60px auto;
	padding-left: 90px;
	margin-left: 200px;

}

.timeline::before {
	content: "";
	position: absolute;
	left: 50px;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #2a7e54 0%, #52a77c 100%);
	border-radius: 4px;
}

.timeline-item {
	position: relative;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 16px;
	padding: 35px 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.timeline-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 25px rgba(42, 126, 84, 0.08);
	border: solid 1px var(--primary)
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: -53px;
	top: 35px;
	width: 20px;
	height: 20px;
	background: #2a7e54;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 0 0 2px #eee;
}

.tl-date {
	display: inline-block;
	background: #2a7e54;
	color: #fff;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 20px;
	margin-bottom: 15px;
}

.tl-text {
	font-size: 18px;
	color: #444;
	line-height: 2;
}

@media (max-width: 768px) {
	.section-head h1 {
		font-size: 28px;
	}

	.timeline {
		padding-left: 35px;
	}

	.timeline-item {
		padding: 25px 20px;
	}

	.timeline-item::before {
		left: -32px;
	}
}

/* 领导列表 */
/* 表格容器 */
.table-wrap {
	max-width: 1000px;
	margin: 0 auto;
	border-collapse: collapse;
	width: 100%;
}

.leader-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

/* 表头 */
.leader-table thead tr {
	background-color: #044e3e;
	color: #fff;
}

.leader-table th,
.leader-table td {
	padding: 18px 12px;
	border: none;
	font-weight: bold;
}

.leader-table th {
	font-size: 22px;
	font-weight: 600;
}

.leader-table td {
	font-size: 18px;
	color: #333;
}

/* 隔行变色，主色#044e3e的浅色调 */
.leader-table tbody tr:nth-child(odd) {
	background-color: #e0ebe8;
}

.leader-table tbody tr:nth-child(even) {
	background-color: #f0f5f3;
}

/* 响应式 */
@media (max-width: 768px) {
	.page-title {
		font-size: 20px;
	}

	.leader-table th,
	.leader-table td {
		padding: 12px 8px;
		font-size: 16px;
	}
}			
			