﻿/* ============ Banner 轮播区域 ============ */
.banner {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.banner-swiper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.banner-swiper .swiper-slide {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* 轮播指示器 */
.banner-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 10;
}

.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.4s;
}

.dot.active {
	width: auto;
	height: auto;
	background: none;
	border-radius: 0;
}

.dot.active::after {
	content: '';
	display: block;
	width: 44px;
	height: 40px;
	background: url(../images/bannerIcon.png) center center / contain no-repeat;
	animation: dotRotate 8s linear infinite;
}

@keyframes dotRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ============ 导航栏（悬浮在banner上）============ */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
	z-index: 100;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 40px 100px 0;
	box-sizing: border-box;
}

/* 左栏：Logo */
.header-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.header-logo img {
	width: auto;
	height: auto;
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-text .cn {
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.3;
}

.logo-text .en {
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1.3;
}

/* 右栏：导航区 */
.header-nav-area {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

/* 顶部栏：学校首页 + 搜索 */
.header-top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.header-top a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.3s;
}

.header-top a:hover {
	opacity: 1;
}

.header-top span {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.header-top .search-btn {
	width: 18px;
	height: 18px;
	background: url(../images/search.png) center center / contain no-repeat;
	cursor: pointer;
	opacity: 0.85;
	transition: opacity 0.3s;
}

.header-top .search-btn:hover {
	opacity: 1;
}

/* 移动端搜索按钮 - PC端隐藏 */
.header-search-btn {
	display: none;
}

/* 导航菜单 */
.nav {
	display: flex;
	align-items: center;
	gap: 0;
}

.nav > a,
.nav-item > a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding: 6px 12px;
	white-space: nowrap;
	transition: color 0.3s, background 0.3s;
	opacity: 0.9;
	position: relative;
	display: inline-block;
}

.nav > a:hover,
.nav-item > a:hover,
.nav > a.active,
.nav-item > a.active {
	opacity: 1;
	color: #419038;
}

.nav > a.active::after,
.nav-item > a.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: #419038;
	transition: width 0.3s;
}

/* 二级栏目下拉 */
.nav-item {
	position: relative;
}

.sub-nav {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 140px;
	background: rgba(255, 255, 255, 0.97);
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
	z-index: 200;
}

.nav-item:hover .sub-nav {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.sub-nav a {
	display: block;
	padding: 8px 20px;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}

.sub-nav a:hover {
	color: #419038;
	background: rgba(65, 144, 56, 0.06);
}

/* ============ 搜索弹窗 ============ */
.search-overlay {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s;
}

.search-overlay.show {
	opacity: 1;
	visibility: visible;
}

.search-box {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	width: 520px;
	max-width: 90%;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-overlay.show .search-box {
	transform: scale(1) translateY(0);
}

.search-box input {
	flex: 1;
	border: none;
	outline: none;
	padding: 16px 24px;
	font-size: 15px;
	color: #333;
}

.search-box input::placeholder {
	color: #aaa;
}

.search-box button {
	background: #419038;
	border: none;
	color: #fff;
	padding: 16px 28px;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.3s;
	white-space: nowrap;
}

.search-box button:hover {
	background: #357a2e;
}

/* 移动端元素默认隐藏，css3.css @media 覆盖 */
.mobile-nav,
.mobile-nav-overlay,
.hamburger,
.header-search-btn {
	display: none;
}

/* 中等屏幕自适应 */
@media screen and (max-width: 1400px) {
	.nav {
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}

/* ============ 内页 Banner ============ */
.page-banner {
	position: relative;
}

.banner-inner-img {
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ============ 内容区：学院新闻 + 通知公告 ============ */
.content-section {
	background: url(../images/bg2.png) center center / cover no-repeat;
	padding: 60px 0 80px;
	position: relative;
}

.content-section .w {
	position: relative;
}

.content-row {
	display: flex;
	gap: 40px;
}

.content-col {
	min-width: 0;
}

.news-col {
	width: 64.7%;
}

.notice-col {
	width: 32.4%;
}

/* 栏目标题 */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.section-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	position: relative;
    padding-bottom: 10px;
}

.section-title h2 {
	font-size: 36px;
	color: #222;
	margin: 0;
	font-weight: bold;
	line-height: 1;
}

.section-title img {
	position: absolute;
	top: -36px;
	left: 83%;
	margin-left: 10px;
	width: auto;
	height: auto;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50px;
	height: 3px;
	background: #f7c35e;
}

.section-more {
	font-size: 16px;
	color: #419038;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.3s;
}

.section-more:hover {
	opacity: 0.7;
}

.section-more img {
	width: auto;
	height: auto;
}

/* 学院新闻主体 */
.news-body {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

/* 左侧轮播 */
.news-carousel-wrap {
	width: 54.5%;
	max-width: 54.5%;
	min-width: 0;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.carousel-green-extend {
	position: absolute;
	bottom: 81px;
	left: 0;
	height: 315px;
	background: #419038;
	pointer-events: none;
}

.news-swiper {
	width: 100%;
	height: auto !important;
	position: relative;
	overflow: hidden;
}

.news-swiper .swiper-slide {
	height: auto;
}

.news-swiper .swiper-slide > a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.slide-image-wrap {
	position: relative;
}

.slide-image {
	width: 100%;
	aspect-ratio: 480 / 320;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slide-info {
	background: #419038;
	padding: 20px;
	height: 235px;
	box-sizing: border-box;
	overflow: hidden;
}

.swiper-button-prev.news-prev,
.swiper-button-next.news-next {
	width: 60px !important;
	height: 60px !important;
	background-color: rgba(0,0,0,0.3);
    background-size: 15px ;
	z-index: 10 !important;
}

/* 分页圆点 */
.news-pagination {
	bottom: 15px !important;
}

.news-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,0.5);
	opacity: 1;
	margin: 0 4px;
	transition: all 0.3s;
}

.news-pagination .swiper-pagination-bullet-active {
	width: 20px;
	border-radius: 4px;
	background: #fff;
}

.slide-info h3 {
	font-size: 18px;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.5;
	font-weight: normal;
}

.slide-info p {
	font-size: 16px;
	color: rgba(255,255,255,0.85);
	margin: 0 0 16px;
	line-height: 1.6;
}

.slide-bottom {
	display: flex;
	align-items: center;
	margin-top: 16px;
}

.slide-date {
	font-size: 16px;
	color: #fff;
}

.slide-date span {
	font-size: 24px;
	font-weight: bold;
}

/* 右侧新闻列表 */
.news-list {
	flex: 1;
	min-width: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-list li {
	border-bottom: 1px solid #eee;
	transition: transform 0.3s ease, background 0.3s ease;
}

.news-list li a {
	display: block;
	padding: 12.5px 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.news-list li a:hover {
	padding-left: 16px;
	background: rgba(65, 144, 56, 0.04);
}

.news-list-title {
	font-size: 18px;
	color: #333;
	line-height: 1.5;
	height: 54px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 0.3s;
}

.news-list li a:hover .news-list-title {
	color: #419038;
}

.news-list-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
}

.news-list-date {
	font-size: 16px;
	color: #419038;
	white-space: nowrap;
}

.news-list-icon {
	width: auto;
	height: auto;
	flex-shrink: 0;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.news-list li a:hover .news-list-icon {
	opacity: 1;
}

/* 通知公告列表 */
.notice-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.notice-list li {
	display: flex;
	align-items: flex-start;
	padding: 18px 20px;
	background: #fff;
	margin-bottom: 12px;
	gap: 20px;
	border-radius: 6px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-list li:last-child {
	margin-bottom: 0;
}

.notice-list li:hover {
	transform: translateX(6px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.notice-date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 50px;
	flex-shrink: 0;
	padding-right: 20px;
	border-right: 1px solid #eee;
}

.notice-day {
	font-size: 30px;
	font-weight: bold;
	color: #419038;
	line-height: 1;
	position: relative;
	padding-bottom: 6px;
}

.notice-day::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: #f7c35e;
}

.notice-month {
	font-size: 14px;
	color: #419038;
	margin-top: 6px;
}

.notice-content {
	flex: 1;
	min-width: 0;
}

.notice-content a {
	font-size: 18px;
	color: #333;
	text-decoration: none;
	line-height: 1.8;
	transition: color 0.3s;
}

.notice-content a:hover {
	color: #419038;
}

/* ============ 党建思政模块 ============ */
.party-section {
	padding: 60px 0 80px;
	background: #fff;
}

.party-header {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 40px;
}

.party-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	position: relative;
	padding-bottom: 10px;
}

.party-title h2 {
	font-size: 36px;
	color: #222;
	margin: 0;
	font-weight: bold;
	line-height: 1;
}

.party-title img {
	position: absolute;
	top: -36px;
	left: 83%;
	margin-left: 10px;
	width: auto;
	height: auto;
}

.party-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #f7c35e;
}

.party-more {
	position: absolute;
	right: 0;
	font-size: 16px;
	color: #419038;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.3s;
}

.party-more:hover {
	opacity: 0.7;
}

.party-more img {
	width: auto;
	height: auto;
}

/* 卡片容器 */
.party-cards {
	display: flex;
}

/* 单个卡片 */
.party-card {
	width: 25%;
	flex-shrink: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.party-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.party-card > a {
	display: block;
	text-decoration: none;
	color: inherit;
}

/* 图片区域 */
.party-card-img {
	position: relative;
	width: 100%;
	overflow: visible;
	z-index: 3;
}

.party-card-img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 340 / 230;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 日期标签 - 绿色背景 + 黄色错位阴影 */
.party-date {
	position: absolute;
	left: 12px;
	z-index: 3;
}

/* 奇数卡：日期在图片底部，跨在图片与文字之间 */
.party-date-bottom {
	bottom: -15px;
}

/* 偶数卡：日期在图片顶部，跨在图片与文字之间 */
.party-date-top {
	top: -15px;
}

.party-date span {
	position: relative;
	display: inline-block;
	background: #419038;
	color: #fff;
	font-size: 16px;
	padding: 6px 16px;
	line-height: 1.4;
	box-shadow: 4px 4px 0 #f7c35e;
}

/* 卡片信息区 - 奇数卡：日期从上方重叠 */
.party-card-info {
	padding: 45px 16px 20px;
	background: #f4f7f4;
	position: relative;
	z-index: 2;
	transition: background 0.4s ease;
}

/* 偶数卡：日期从下方重叠 */
.party-card-reverse .party-card-info {
	padding: 20px 16px 45px;
}

.party-card-info h3 {
	font-size: 18px;
	color: #333;
	margin: 0 0 10px;
	line-height: 1.5;
	font-weight: bold;
	height: 54px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 0.4s ease, transform 0.4s ease;
}

.party-card-info p {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
	height: 51px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 0.4s ease, transform 0.4s ease;
}

/* Hover 状态 */
.party-card:hover .party-card-info {
	background: #419038;
}

.party-card:hover .party-card-img img {
	transform: scale(1.08);
}

.party-card:hover .party-card-info h3,
.party-card:hover .party-card-info p {
	color: #fff;
}

.party-card:hover .party-date span {
	background: #fff;
	color: #419038;
	box-shadow: 4px 4px 0 rgba(232, 168, 56, 0.6);
	transition: all 0.4s ease;
}

/* ============ 科学研究模块 ============ */
.research-section {
	background: url(../images/bg.png) center center / cover no-repeat;
	padding: 60px 0 100px;
}

.research-swiper {
	position: relative;
	padding-bottom: 40px;
}

.research-swiper .swiper-slide {
	height: auto;
}

/* 标题区 */
.research-header {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 30px;
}

.research-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	position: relative;
	padding-bottom: 10px;
}

.research-title h2 {
	font-size: 36px;
	color: #fff;
	margin: 0;
	font-weight: bold;
	line-height: 1;
}

.research-title img {
	position: absolute;
	top: -36px;
	left: 83%;
	margin-left: 10px;
}

.research-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #f7c35e;
}

.research-more {
	position: absolute;
	right: 0;
	font-size: 16px;
	color: #f7c35e;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.3s;
}

.research-more:hover {
	opacity: 0.7;
}

.research-more img {
	width: auto;
	height: auto;
}

/* 学术报告卡片 */
.report-cards {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.report-card {
	width: calc((100% - 40px) / 3);
	flex-shrink: 0;
	background: #fff;
	padding: 24px 20px;
	box-sizing: border-box;
	transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
}

.report-card:hover {
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.report-card:hover h3 {
	color: #419038;
}

.report-card > a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.report-card h3 {
	font-size: 18px;
	color: #333;
	margin: 0 0 12px;
	line-height: 1.6;
	font-weight: bold;
	height: 58px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 虚线分隔 - 虚线和图标一排 */
.report-divider {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.report-divider-line {
	flex: 1;
	border-bottom: 1px dashed #419038;
}

.report-divider img {
	flex-shrink: 0;
}

/* 报告信息 */
.report-meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.report-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #555;
	line-height: 1.5;
}

.report-meta-item img {
	flex-shrink: 0;
}

.report-meta-item em {
	font-style: normal;
	font-size: 18px;
	color: #419038;
}

/* 简单列表卡片 */
.simple-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.simple-card {
	width: calc((100% - 20px) / 2);
	flex-shrink: 0;
	background: #fff;
	padding: 20px 24px;
	box-sizing: border-box;
	transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
}

.simple-card:hover {
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.simple-card:hover h3 {
	color: #419038;
}

.simple-card > a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.simple-card-text {
	flex: 1;
	min-width: 0;
}

.simple-card-text h3 {
	font-size: 18px;
	color: #333;
	margin: 0 0 12px;
	line-height: 1.5;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.simple-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.simple-card-date {
	font-size: 18px;
	color: #419038;
}

.simple-card-icon {
	flex-shrink: 0;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.simple-card:hover .simple-card-icon {
	opacity: 0.6;
}

/* 分页器 */
.research-pagination {
	bottom: -35px !important;
}

.research-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 5px;
	transition: all 0.3s;
}

.research-pagination .swiper-pagination-bullet-active {
	width: 24px;
	border-radius: 5px;
	background: #fff;
}

/* ========== 折叠标签模块 ========== */
.fold-section {
	padding: 60px 0 80px;
	background: #f4f7f4;
}

.fold-container {
	display: flex;
	width: 100%;
	height: 520px;
}

/* 每个折叠分组 */
.fold-group {
	flex: 1;
	height: 100%;
	display: flex;
	transition: flex 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	overflow: hidden;
}

.fold-group.hover {
	flex: 12;
}

/* 侧边栏标题 */
.fold-title {
	width: 100px;
	min-width: 100px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fold-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: 100px 560px;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	transition: clip-path 0.4s ease;
	clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.fold-group:nth-child(1) .fold-title::before {
	background-image: url(../images/l1.png);
}

.fold-group:nth-child(2) .fold-title::before {
	background-image: url(../images/l2.png);
}

.fold-group:nth-child(3) .fold-title::before {
	background-image: url(../images/l3.png);
}

.fold-group.hover .fold-title::before {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fold-title span {
	position: relative;
	z-index: 1;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 8px;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.fold-title span i {
	font-style: normal;
	font-size: 28px;
	font-weight: normal;
}

/* 内容区 */
.fold-content {
	flex: 1;
	background: #fff;
	padding: 30px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	display: none;
}

.fold-group.hover .fold-content {
	display: block;
}

/* Tab1 学生工作 - 上排3张卡片 */
.fold-cards-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.fold-card {
	flex: 1;
	overflow: hidden;
	transition: box-shadow 0.3s;
	text-decoration: none;
	display: block;
}

.fold-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.fold-card-img {
	width: 100%;
	aspect-ratio: 313 / 210;
	background-size: cover;
	background-position: center;
}

.fold-card-body {
	padding: 16px 20px;
	background: #f5f8f5;
}

.fold-card-body h4 {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fold-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fold-card-date {
	font-size: 16px;
	color: #419038;
}

.fold-card-date span:first-child {
	font-size: 24px;
	font-weight: bold;
}

.fold-card-icon {
	width: 20px;
	height: 20px;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.fold-card:hover .fold-card-icon {
	opacity: 1;
}

/* Tab1 下排2张文字卡片 */
.fold-text-row {
	display: flex;
	gap: 20px;
}

.fold-text-card {
	flex: 1;
	background: #f5f8f5;
	padding: 20px;
	border-radius: 4px;
	text-decoration: none;
	display: block;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.fold-text-card:hover {
	background: #e8f5e9;
	border-left-color: #419038;
}

.fold-text-card:hover h4 {
	color: #419038;
}

.fold-text-card h4 {
	font-size: 18px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 8px;
}

.fold-text-date {
	font-size: 16px;
	color: #419038;
}

/* Tab2 招生就业 - 左图右列表 */
.fold-enroll-layout {
	display: flex;
	gap: 30px;
}

.fold-enroll-main {
	width: 52%;
	min-width: 0;
	flex-shrink: 0;
	text-decoration: none;
	display: block;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.fold-enroll-main:hover h4 {
	color: #419038;
}

.fold-enroll-main:hover .fold-card-icon {
	opacity: 1;
}

.fold-enroll-img {
	width: 100%;
	aspect-ratio: 485 / 305;
	background-size: cover;
	background-position: center;
}

.fold-enroll-info {
	padding: 16px 20px;
	background: #f5f8f5;
	height: 104px;
}

.fold-enroll-info h4 {
	font-size: 20px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 12px;
}

.fold-enroll-list {
	flex: 1;
	list-style: none;
	padding: 0;
	margin: 0;
}

.fold-enroll-list li {
	padding: 0;
	margin-bottom: 10px;
}

.fold-enroll-list li a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 14px 16px;
	background: #f5f8f5;
	border-radius: 4px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.fold-enroll-title {
	font-size: 18px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 6px;
	width: 100%;
}

.fold-enroll-list li a:hover {
	background: #e8f5e9;
	border-left-color: #419038;
}

.fold-enroll-list li a:hover .fold-enroll-title {
	color: #419038;
}

.fold-list-date {
	font-size: 16px;
	color: #419038;
	white-space: nowrap;
}

/* Tab3 教育教学 - 上排小图卡片 */
.fold-edu-cards-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.fold-edu-card {
	flex: 1;
	padding: 20px;
	display: flex;
	gap: 0;
	align-items: flex-start;
	transition: box-shadow 0.3s;
	text-decoration: none;
	overflow: hidden;
	background: #f5f8f5;
}

.fold-edu-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.fold-edu-card-img {
	width: 180px;
	min-width: 180px;
	aspect-ratio: 180 / 120;
	background-size: cover;
	background-position: center;
}

.fold-edu-card-body {
	flex: 1;
	position: relative;
	padding: 16px 20px;
	box-sizing: border-box;
	height: 100%;
}

.fold-edu-card-body h4 {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fold-edu-card-date {
	font-size: 16px;
	color: #419038;
}

.fold-edu-card-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	opacity: 0.3;
	transition: opacity 0.3s;
}

.fold-edu-card:hover .fold-edu-card-icon {
	opacity: 1;
}

/* Tab3 下排文字列表 */
.fold-edu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fold-edu-list li {
	padding: 0;
	margin-bottom: 10px;
}

.fold-edu-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 16px 20px 18px;
	background: #f5f8f5;
	border-radius: 4px;
	font-size: 18px;
	color: #333;
	text-decoration: none;
	position: relative;
	transition: all 0.3s;
}

.fold-edu-list li a:hover {
	background: #e8f5e9;
	color: #419038;
}

.fold-edu-list-border {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 60%;
	background: #419038;
	border-radius: 2px;
}

/* 榜样风采模块 */
.role-section {
	padding: 60px 0 80px;
	background: #fff;
}

.role-section .w {
	position: relative;
}

.role-header {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 40px;
}

.role-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	position: relative;
	padding-bottom: 10px;
}

.role-title h2 {
	font-size: 36px;
	color: #333;
	margin: 0;
	font-weight: bold;
	line-height: 1;
}

.role-title img {
	position: absolute;
	top: -30px;
	right: -50px;
}

.role-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: #f7c35e;
}

.role-more {
	position: absolute;
	right: 0;
	font-size: 16px;
	color: #419038;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 4px;
	transition: opacity 0.3s;
}

.role-more:hover {
	opacity: 0.7;
}

.role-more img {
	width: 16px;
	height: 16px;
}

.role-swiper-wrap {
	position: relative;
}

.role-swiper {
	width: 100%;
	overflow: hidden;
	padding-right: 20px;
}

.role-card {
	position: relative;
	background: #f5f8f5;
	padding: 20px;
	transition: background 0.3s;
}

.role-card:hover {
	background: #419038;
}

.role-card:hover h4 {
	color: #fff;
}

.role-card:hover p {
	color: rgba(255,255,255,0.85);
}

.role-card::after {
	content: '';
	position: absolute;
	right: -17px;
	bottom: -20px;
	width: 17px;
	height: 98%;
	background: rgba(65, 144, 56, 0.15);
	clip-path: polygon(0 0, 100% 0, 0% 100%);
}

.role-card a {
	position: relative;
	z-index: 1;
	text-decoration: none;
	display: block;
}

.role-card-img {
	width: 100%;
	aspect-ratio: 200 / 270;
	background-size: cover;
	background-position: center;
	margin-bottom: 16px;
}

.role-card h4 {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin: 0 0 8px;
	text-align: center;
}

.role-card p {
	font-size: 16px;
	color: #666;
	margin: 0;
	text-align: center;
}

.role-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
}

.role-nav img {
	width: 40px;
	height: 40px;
	display: block;
}

.role-nav-prev {
	left: -60px;
}

.role-nav-next {
	right: -60px;
}

/* ============ 底部 ============ */
.footer {
	background: #419038;
	padding: 40px 0 0;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 30px;
}

.footer-info {
	flex: 1;
}

.footer-links {
	display: inline-flex;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links select {
	width: 315px;
	height: 50px;
	padding: 0 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.footer-links select option {
	color: #333;
	background: #fff;
}

.footer-address p {
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
	margin: 0;
}

.footer-qrcode {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer-qrcode img {
	width: 140px;
	height: 140px;
	background: #fff;
	padding: 5px;
}

.footer-qrcode span {
	color: #fff;
	font-size: 16px;
}

.footer-copyright {
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	text-align: center;
}

.footer-copyright p {
	color: #fff;
	font-size: 16px;
	margin: 0;
}

/* ============ 内页内容区 ============ */
.inner-content {
	position: relative;
	padding-bottom: 80px;
}

.inner-content .w {
	display: flex;
	gap: 40px;
	position: relative;
}

/* 左侧菜单 */
.inner-sidebar {
	width: 280px;
	flex-shrink: 0;
	position: relative;
	margin-top: -120px;
	z-index: 10;
	overflow: hidden;
	align-self: flex-start;
}

.sidebar-header {
	background: #419038;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	width: 280px;
	height: 120px;
	box-sizing: border-box;
	padding-left: 40px;
	line-height: 120px;
	cursor: pointer;
	position: relative;
}

.sidebar-arrow {
	display: none;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-50%) rotate(-45deg);
	transition: transform 0.3s;
}

.sidebar-collapse {
	overflow: visible;
}

.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #f4f7f4;
	position: relative;
	z-index: 1;
}

.sidebar-menu li a {
	display: block;
	font-size: 18px;
	color: #333;
	line-height: 80px;
	padding-left: 40px;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
	position: relative;
	transition: all 0.3s;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
	color: #419038;
}

.sidebar-menu li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 31px;
	background: #419038;
	opacity: 0;
	transition: opacity 0.3s;
}

.sidebar-menu li a:hover::before,
.sidebar-menu li a.active::before {
	opacity: 1;
}

.sidebar-bg {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}

/* 右侧内容 */
.inner-main {
	flex: 1;
	min-width: 0;
}

/* 面包屑 */
.breadcrumb {
	font-size: 16px;
	color: #fff;
	position: relative;
	margin-top: -50px;
	margin-bottom: 50px;
	background-color: rgba(0, 0, 0, 0.3);
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	margin-left: -40px;
}

.breadcrumb a {
	color: #fff;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #419038;
}

.breadcrumb span {
	color: #fff;
}

/* 内页标题 */
.inner-title {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-end;
}

.inner-title h2 {
	font-size: 30px;
	color: #222;
	margin: 0;
	padding-bottom: 12px;
	border-bottom: 2px solid #419038;
	display: inline-block;
	flex-shrink: 0;
}

.inner-title::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0;
}

/* 机构板块 */
.org-section {
	background: #f5f8f5;
	border-top: 2px solid #419038;
	padding: 30px;
	margin-bottom: 30px;
}

.org-section h3 {
	font-size: 18px;
	color: #222;
	margin: 0 0 20px;
	position: relative;
	display: inline-block;
}

.org-section h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 40px;
	height: 3px;
	background: #419038;
}

.org-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.org-grid a {
	font-size: 16px;
	color: #555;
	text-decoration: none;
	padding: 8px 0;
	transition: color 0.3s;
}

.org-grid a::before {
	content: '?';
	margin-right: 6px;
	color: #999;
}

/* 师资队伍 - 教师列表 */
.faculty-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.faculty-card {
	background: #f4f7f4;
	padding: 30px;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.faculty-photo {
	flex-shrink: 0;
	position: relative;
}

.faculty-photo::after {
	content: '';
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 90%;
	height: 90%;
	border-right: 10px solid #d0e2ce;
	border-bottom: 10px solid #d0e2ce;
	z-index: 0;
}

.faculty-photo img {
	position: relative;
	z-index: 1;
	width: 160px;
	height: 210px;
	max-width: 100%;
	object-fit: cover;
	display: block;
}

.faculty-info {
	flex: 1;
	padding-top: 10px;
}

.faculty-name {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
	margin: 0 0 15px;
}

.faculty-name::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: #419038;
}

.faculty-title {
	font-size: 16px;
	color: #666;
	margin: 0 0 10px;
}

.faculty-research {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.faculty-card {
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s;
}

.faculty-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.org-grid a:hover {
	color: #419038;
}

/* 分页 */
.pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.page-btn,
.page-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 10px;
	font-size: 14px;
	color: #333;
	background: #fff;
	border: 1px solid #ddd;
	text-decoration: none;
	box-sizing: border-box;
	transition: all 0.3s;
}

.page-btn:hover,
.page-num:hover {
	color: #419038;
	border-color: #419038;
}

.page-num.active {
	background: #419038;
	color: #fff;
	border-color: #419038;
}

.page-ellipsis {
	padding: 0 4px;
	color: #999;
}

.page-jump {
	font-size: 14px;
	color: #666;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 10px;
}

.page-input {
	width: 40px;
	height: 32px;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 14px;
	outline: none;
	box-sizing: border-box;
}

.page-input:focus {
	border-color: #419038;
}

.page-go {
	height: 32px;
	padding: 0 12px;
	background: #e0e0e0;
	border: 1px solid #ddd;
	font-size: 14px;
	cursor: pointer;
	color: #333;
	box-sizing: border-box;
}

.page-go:hover {
	background: #419038;
	color: #fff;
	border-color: #419038;
}

/* 文章列表 */
.article-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.article-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	background: #f4f7f4;
	padding: 24px 30px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.3s;
}

.article-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-date {
	flex-shrink: 0;
	text-align: left;
	min-width: 60px;
}

.date-day {
	display: block;
	font-size: 30px;
	font-weight: bold;
	color: #419038;
	line-height: 1;
	position: relative;
	padding-bottom: 8px;
}

.date-day::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 20px;
	height: 2px;
	background: #f7c35e;
}

.date-month {
	display: block;
	font-size: 14px;
	color: #419038;
	margin-top: 8px;
}

.article-content {
	flex: 1;
	padding-left: 24px;
	border-left: 1px solid #ddd;
}

.article-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0 0 10px;
	line-height: 1.4;
}

.article-excerpt {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* 文章详情 */
.article-detail {
	padding: 20px 0 40px;
}

.detail-title {
	font-size: 30px;
	font-weight: bold;
	color: #333;
	text-align: center;
	line-height: 1.4;
	margin: 0 0 20px;
}

.detail-meta {
	text-align: center;
	font-size: 16px;
	color: #999;
	padding: 16px 0;
	border-top: 1px dashed #ddd;
	margin-bottom: 30px;
}

.detail-meta span {
	margin: 0 12px;
}

.detail-body {
	font-size: 18px;
	color: #333;
	line-height: 1.8;
}

.detail-body p {
	margin: 0 0 20px;
	text-indent: 2em;
}

.detail-body img {
	display: block;
	max-width: 100%;
	margin: 20px auto;
	height: auto;
}