﻿/* ===== PC端样式 ===== */

html, body {
	overflow-x: hidden;
}

/* ===== 文章详情页 ===== */
.article-detail .article-detail-content {
	padding-top: 20px;
}

.article-title {
	font-size: 28px;
	color: #333;
	font-weight: bold;
	text-align: center;
	margin: 0 0 20px 0;
	line-height: 1.5;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.article-meta {
	text-align: center;
	margin-bottom: 30px;
	padding: 10px 0;
	color: #999;
	font-size: 14px;
}

.article-meta .meta-item {
	margin: 0 15px;
}

.article-body {
	line-height: 2;
	color: #333;
	font-size: 16px;
}

.article-body p {
	margin: 15px 0;
	text-indent: 2em;
	line-height: 2;
}

.article-body p:first-child {
	text-indent: 0;
}

/* ===== 文章列表页 ===== */
.page-banner {
	height: 420px;
	overflow: hidden;
}

.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-container {
	display: flex;
	gap: 30px;
	padding-top: 40px;
	padding-bottom: 60px;
    box-sizing: border-box;
}

.page-sidebar {
	width: 280px;
	flex-shrink: 0;
	background-color: #f5f5f5;
	position: relative;
	align-self: flex-start;
}

.sidebar-title {
	background-color: #419038;
	color: #fff;
	padding: 32px;
	font-size: 24px;
	font-weight: bold;
	text-align: left;
	padding-left: 40px;
}

.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-menu li {
	border-bottom: 1px solid #eee;
}

.sidebar-menu li a {
	display: block;
	padding: 26px 20px;
	color: #333;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s;
	padding-left: 40px;
}

.sidebar-menu li a {
	position: relative;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
	color: #419038;
	background-color: #f5f5f5;
}

.sidebar-menu li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) scaleY(0);
	width: 4px;
	height: 30px;
	background-color: #419038;
	transition: transform 0.3s ease;
}

.sidebar-menu li a:hover::before,
.sidebar-menu li.active a::before {
	transform: translateY(-50%) scaleY(1);
}

/* 三级菜单 */
.sidebar-menu li .sub-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: #f9f9f9;
}

.sidebar-menu li .sub-menu li {
	border-bottom: none;
}

.sidebar-menu li .sub-menu li a {
	padding: 15px 20px 15px 60px;
	font-size: 16px;
	color: #666;
}

.sidebar-menu li .sub-menu li a:hover,
.sidebar-menu li .sub-menu li.active a {
	color: #419038;
	background-color: #f5f5f5;
}

.sidebar-menu li .sub-menu li a::before {
	display: none;
}

.sidebar-bottom-img {
	width: 100%;
	text-align: right;
}

.sidebar-bottom-img img {
	width: 100%;
	height: auto;
	display: block;
}

.page-content {
	flex: 1;
	min-width: 0;
}

.page-content-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 0;
	margin-bottom: 25px;
}

.page-content-header h2 {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	margin: 0;
	position: relative;
	padding-bottom: 15px;
}

.page-content-header h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: #419038;
}

.page-content-header .breadcrumb {
	padding-bottom: 15px;
}

.breadcrumb {
	font-size: 16px;
	color: #999;
}

.breadcrumb a {
	color: #999;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #419038;
}

.breadcrumb .current {
	color: #419038;
}

.article-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.article-item {
	display: flex;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.3s;
}

.article-item:hover .article-date{
	background-color: #419038;
}

.article-item:hover .article-date .day,
.article-item:hover .article-date .ym{
	color: #fff;
}

.article-item:hover .article-info h3,
.article-item:hover .article-info p{
	color: #419038;
}

.article-date {
	flex-shrink: 0;
	width: 60px;
	background-color: #f5f5f5;
	border-radius: 0 10px;
	padding: 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.article-date .day {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	line-height: 1.2;
	transition: all 0.3s;
}

.article-date .ym {
	transition: all 0.3s;
	font-size: 14px;
	color: #999;
	margin-top: 2px;
}

.article-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.article-info h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 8px 0;
}

.article-info h3 a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.article-info h3 a:hover {
	color: #419038;
}

.article-info p {
	font-size: 14px;
	color: #999;
	margin: 0;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	transition: all 0.3s;
	-webkit-box-orient: vertical;
}

/* ===== 图片列表 ===== */
.picture-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.picture-item {
	flex: 0 0 calc(33.333% - 20px);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: opacity 0.3s;
}

.picture-item:hover {
	opacity: 0.8;
}

.picture-item .img-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 68.75%; /* 320:220 = 0.6875 */
	overflow: hidden;
}

.picture-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.picture-title {
	display: block;
	margin-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #419038;
	font-size: 16px;
	color: #333;
}

/* ===== 人员列表 ===== */
.personnel-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.personnel-item {
	flex: 0 0 calc(20% - 24px);
	display: block;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: opacity 0.3s;
}

.personnel-item:hover {
	opacity: 0.8;
}

.personnel-item .img-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 133.52%; /* 235/176 = 1.3352 */
	overflow: hidden;
	background-color: #419038;
}

.personnel-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.personnel-title {
	display: block;
	margin-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #419038;
	font-size: 16px;
	color: #333;
}

/* 分类标题 */
.category-title {
	display: inline-block;
	background-color: #419038;
	color: #fff;
	padding: 8px 40px;
	border-radius: 0px 10px 0 10px;
	font-size: 16px;
	margin-bottom: 25px;
	position: relative;
}

.category-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 6px;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	border-radius: 0px 10px 0 10px;
	z-index: -1;
}

.personnel-section {
	margin-bottom: 40px;
}

/* 头部 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	height: 200px;
	padding: 15px 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	transition: all 0.3s ease;
}

.header-scrolled {
	background: #419038;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	height: 80px;
}

.header-scrolled .nav-list li a {
	color: #fff;
}

.header-scrolled .nav-list li a::after {
	background-color: #fff;
}

.header-scrolled .search-btn {
	border-color: #fff;
	color: #fff;
}

.header-scrolled .search-btn:hover {
	background-color: #fff;
	color: #333;
}

.header-wrap {
	position: relative;
	padding: 0 80px;
}

.logo {
	float: left;
	padding-top: 5px;
}

.logo img {
	height: 70px;
	width: auto;
}

.header-right {
	float: right;
	text-align: right;
}

.header-top {
	margin-bottom: 10px;
}

.banner-text-img {
	height: 28px;
	width: auto;
	vertical-align: middle;
	margin-right: 20px;
}

.header-links {
	display: inline-block;
	vertical-align: middle;
}

.header-links a,
.header-links span {
	color: #fff;
	font-size: 13px;
	vertical-align: middle;
}

.header-links span {
	margin: 0 8px;
	opacity: 0.7;
}

.header-links a:hover {
	opacity: 0.8;
}

.search-icon img {
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin-left: 8px;
}

/* 导航 */
.nav {
	display: block;
}

.nav-list {
	list-style: none;
}

.nav-list li {
	float: left;
	margin-left: 20px;
}

.nav-list li:first-child {
	margin-left: 0;
}

.nav-list li a {
	color: #fff;
	font-size: 18px;
	padding: 4px 0;
	display: block;
	position: relative;
}

.nav-list li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-list li a:hover::after {
	width: 100%;
}

/* 汉堡菜单按钮 */
.mobile-menu-btn {
	display: none;
}

/* Banner */
.banner {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.banner-swiper {
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-slide {
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	/* object-fit: cover; */
	object-position: center center;
	min-width: 100vw;
}

.banner-swiper .swiper-pagination {
	bottom: 20px;
}

.banner-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active {
	background: #fff;
	width: 30px;
	border-radius: 5px;
}

/* 二级菜单 */
.nav-list .has-submenu {
	position: relative;
	padding-bottom: 8px;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 160px;
	background-color: #67a660;
	padding: 10px 0;
	border-radius: 4px;
	z-index: 200;
}

.submenu::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #67a660;
}

.submenu li {
	float: none;
	margin-left: 0;
	text-align: center;
}

.submenu li a {
	color: #fff;
	font-size: 13px;
	padding: 8px 20px;
	display: block;
	white-space: nowrap;
}

.submenu li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.nav-list .has-submenu:hover .submenu {
	display: block;
	animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

/* 搜索弹窗 */
.search-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	justify-content: center;
	align-items: center;
}

.search-popup.active {
	display: flex;
}

.search-box {
	position: relative;
	width: 90%;
	max-width: 600px;
}

.search-close {
	position: absolute;
	top: -60px;
	right: 0;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	text-decoration: none;
}

.search-input-wrap {
	display: flex;
	border-bottom: 2px solid #fff;
	padding-bottom: 10px;
}

.search-input {
	flex: 1;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 20px;
	padding: 10px;
	outline: none;
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.search-btn {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	padding: 10px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.search-btn:hover {
	background-color: #fff;
	color: #000;
}

/* 导航栏滚动效果 */
.header-scrolled {
	background: #419038;
	transition: background 0.3s ease;
}

/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #67a660;
	color: #fff;
	font-size: 24px;
	text-align: center;
	line-height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #4e8a48;
	transform: translateY(-3px);
}

/* ===== 新闻动态 / 通知公告 ===== */
.news-section {
	background: url('../images/bg.jpg') no-repeat center top;
	background-size: cover;
	padding: 60px 0;
}

.news-left {
	width: 68%;
}

.news-right {
	width: 29%;
}

.news-header {
	margin-bottom: 20px;
}

.section-title{
    text-align: center;
}

.section-title h2 {
	font-size: 26px;
	color: #333;
	font-weight: bold;
	margin-bottom: 5px;
}

.section-title img {
	width: auto;
	display: block;
}

.more-link {
	color: #82b12f;
	font-size: 16px;
	line-height: 30px;
	transition: opacity 0.3s;
}

.more-link:hover {
	text-decoration: underline;
}

.more-link img {
	margin-left: 5px;
	vertical-align: middle;
}

.news-content {
	position: relative;
}

.news-slider {
	width: 460px;
	float: left;
	position: relative;
	z-index: 3;
}

.news-swiper {
	width: 460px;
	overflow: hidden;
}

.news-swiper .swiper-slide img {
	width: 460px;
	height: 310px;
	display: block;
	object-fit: cover;
}

.news-slide-info {
	margin-top: 10px;
	position: relative;
}

.news-slide-title {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	width: 460px;
}

.news-slide-title p {
	width: 90%;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-pagination {
	position: absolute;
	left: 470px;
	top: 24%;
	transform: translateY(-50%);
	margin-top: 0;
	width: 100%;
	text-align: left;
}

.news-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #c2dbbf;
	opacity: 1;
	margin: 0 4px;
}

.news-pagination .swiper-pagination-bullet-active {
	background: #82b12f;
}

.news-list {
	float: left;
	width: calc(100% - 420px);
	margin-left: -40px;
	background-color: #67a660;
	border-radius: 0 0 20px 0;
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding-bottom: 40px;
}

.news-top-item {
	display: flex;
	align-items: flex-start;
	padding: 20px 0 10px 0;
	margin: 0 20px 10px 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 1);
	text-decoration: none;
}

.news-top-item:hover .news-title {
	text-decoration: underline;
}

.news-date {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	padding: 10px 15px;
	text-align: center;
	flex-shrink: 0;
	margin-right: 15px;
}

.news-date .day {
	display: block;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
}

.news-date .ym {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 5px;
}

.news-top-item .news-title {
	font-size: 18px;
	color: #fff;
	line-height: 1.7;
	overflow: hidden;
}

.news-item-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 20px 8px 60px;
	color: #fff;
	font-size: 16px;
	transition: background 0.3s;
}

.news-item-list li a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.news-item-list li:last-child a {
	border-bottom: none;
}

.news-item-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
}

.news-item-date {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
}

/* 通知公告 */
.notice-list {
	background-color: #f5f5f5;
	border-radius: 0 0 0 20px;
	overflow: hidden;
}

.notice-top-item {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration: none;
}

.notice-top-item:hover .notice-title {
	color: #67a660;
}

.notice-date {
	background-color: #419038;
	padding: 8px 12px;
	border-radius: 4px;
	margin-right: 15px;
	text-align: center;
	flex-shrink: 0;
}

.notice-date .day {
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
}

.notice-date .year {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 5px;
}

.notice-top-item .notice-title {
	font-size: 16px;
	color: #222222;
	line-height: 1.7;
	overflow: hidden;
}

.notice-item-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	color: #222222;
	font-size: 16px;
	transition: background 0.3s;
}

.notice-item-list li a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.notice-item-list li:last-child a {
	border-bottom: none;
}

.notice-item-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
}

.notice-item-date {
	font-size: 14px;
	color: #999999;
	white-space: nowrap;
}

/* 作物抗逆模块 */
.research-banner {
	margin-top: 40px;
	text-align: center;
}

.research-banner a {
	display: block;
	overflow: hidden;
	transition: transform 0.3s ease;
	overflow: hidden;
}

.research-banner a:hover {
	transform: translateY(-5px);
}

.research-banner img {
	max-width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.research-banner a:hover img {
	transform: scale(1.03);
}

/* ===== 学科建设 / 选项卡 ===== */
.subject-left {
	width: 38%;
}

.subject-list {
	background-color: #f5f5f5;
	overflow: hidden;
	padding: 10px 20px;
	border-bottom: 2px solid #419038;
}

.subject-item {
	display: flex;
	align-items: flex-start;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: background 0.3s;
}

.subject-item:hover {
	background-color: rgba(0, 0, 0, 0.03);
}

.subject-item:last-child {
	border-bottom: none;
}

.subject-date {
	background-color: #419038;
	border-radius: 0 8px 0 8px;
	padding: 8px 12px;
	text-align: center;
	flex-shrink: 0;
	margin-right: 15px;
	min-width: 50px;
}

.subject-date .day {
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
}

.subject-date .ym {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 4px;
}

.subject-title {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 选项卡 */
.tab-right {
	width: 58%;
}

.tab-header {
	margin-bottom: 20px;
}

.tab-title-wrap img {
	height: 8px;
	width: auto;
	display: block;
	margin-top: 5px;
}

.tab-nav {
	display: flex;
}

.tab-item {
	font-size: 26px;
	color: #999;
	cursor: pointer;
	padding-bottom: 8px;
	border-bottom: 2px solid transparent;
	transition: all 0.3s;
	position: relative;
	display: block;
	box-sizing: border-box;
	padding-left: 30px;
	padding-right: 10px;
}

.tab-item:first-child:before {
	content: "";
	height: 25px;
	width: 1px;
	background-color: #999;
	position: absolute;
	right: 0;
	top: 10%;
}

.tab-item.active {
	color: #333;
	font-weight: bold;
	border-bottom-color: transparent;
}

.tab-item img {
	opacity: 0;
	height: 15px;
	width: auto;
	margin-top: 5px;
}

.tab-item.active img {
	opacity: 1;
}

.tab-item:hover {
	color: #333;
}

.tab-content,
.feature-tab-content {
	background-color: #fff;
	overflow: hidden;
	padding: 20px 0 14px 0;
	border-bottom: 2px solid #419038;
}

.feature-tab-content {
	padding: 20px;
}

.tab-panel,
.feature-tab-panel {
	display: none;
}

.tab-panel.active,
.feature-tab-panel.active {
	display: block;
}

.tab-top-item {
	display: flex;
	align-items: flex-start;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	text-decoration: none;
}

.tab-top-item:hover .tab-top-title {
	color: #67a660;
}

.tab-date {
	margin-right: 15px;
	text-align: left;
	flex-shrink: 0;
	border-right: 1px solid #ddd;
	padding-right: 20px;
}

.tab-date .day {
	display: block;
	font-size: 20px;
	color: #67a660;
	font-weight: bold;
	line-height: 1;
}

.tab-date .ym {
	display: block;
	font-size: 14px;
	color: #67a660;
	margin-top: 4px;
}

.tab-top-title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 8px;
	transition: color 0.3s;
}

.tab-top-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.tab-item-list li a {
	display: flex;
	align-items: center;
	padding: 12.5px 0;
	color: #333;
	font-size: 16px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all 0.3s;
}

.tab-item-list li a:hover {
	color: #67a660;
	padding-left: 5px;
}

.tab-item-list li:last-child a {
	border-bottom: none;
}

.list-icon {
	display: inline-block;
	margin-right: 10px;
	flex-shrink: 0;
	vertical-align: middle;
}

.tab-item-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
}

.tab-item-date {
	font-size: 12px;
	color: #999;
	white-space: nowrap;
	flex-shrink: 0;
}

/* 专题专栏 / 作物学"1+5" */
.feature-section {
	background: url('../images/bg2.png') no-repeat center;
	background-size: cover;
	padding: 60px 0;
	margin-top: 60px;
}

.feature-left {
	width: 62%;
}

.feature-right {
	width: 35%;
}

.feature-header {
	margin-bottom: 20px;
}

.feature-top-item {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	margin-bottom: 15px;
	text-decoration: none;
	transition: all 0.3s;
}

.feature-top-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-date {
	border-radius: 0 8px 0 8px;
	padding: 8px 12px;
	text-align: left;
	flex-shrink: 0;
	margin-right: 15px;
	min-width: 50px;
	border-right: 1px solid #ddd;
	padding-right: 15px;
}

.feature-date .day {
	display: block;
	font-size: 20px;
	color: #419038;
	font-weight: bold;
	line-height: 1;
}

.feature-date .ym {
	display: block;
	font-size: 14px;
	color: #419038;
	margin-top: 4px;
}

.feature-top-info {
	flex: 1;
	min-width: 0;
}

.feature-top-title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 8px;
}

.feature-top-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.feature-item-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-item-list li a {
	display: flex;
	align-items: center;
	padding: 16px 0;
	color: #333;
	font-size: 16px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all 0.3s;
}

.feature-item-list li a:hover {
	color: #67a660;
	padding-left: 5px;
}

.feature-item-list li:last-child a {
	border-bottom: none;
}

.feature-item-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
}

.feature-item-date {
	font-size: 12px;
	color: #999;
	white-space: nowrap;
	flex-shrink: 0;
}

.topic-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.topic-item {
	display: block;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topic-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.topic-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.topic-item:hover img {
	transform: scale(1.03);
}

/* ===== 招生工作 / 就业工作 / 校友园地 ===== */
.info-section {
	padding: 60px 0;
	background-color: #fff;
}

.info-wrap {
	display: flex;
	gap: 30px;
}

.info-column {
	flex: 1;
	min-width: 0;
}

.info-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.info-title-wrap {
	display: flex;
	flex-direction: column;
}

.info-title-wrap h2 {
	font-size: 26px;
	color: #333;
	font-weight: bold;
	margin: 0;
}

.info-title-wrap img {
	width: auto;
	display: block;
	margin-top: 5px;
}

.info-content {
	background-color: #f5f5f5;
	padding: 20px;
	border-bottom: 2px solid #419038;
}

.info-top-item {
	display: flex;
	align-items: flex-start;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all 0.3s;
}

.info-top-item:hover .info-top-title{
	color: #419038;
}

.info-date {
	border-radius: 4px;
	padding: 8px 12px;
	text-align: left;
	flex-shrink: 0;
	margin-right: 15px;
	min-width: 50px;
}

.info-date .day {
	display: block;
	font-size: 20px;
	color: #126334;
	font-weight: bold;
	line-height: 1;
}

.info-date .ym {
	display: block;
	font-size: 12px;
	color: #126334;
	margin-top: 4px;
}

.info-top-title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.info-list li a {
	display: flex;
	align-items: center;
	padding: 12.5px 0;
	color: #333;
	font-size: 16px;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
	text-decoration: none;
	transition: all 0.3s;
}

.info-list li a:hover {
	color: #67a660;
	padding-left: 5px;
}

.info-list li:last-child a {
	border-bottom: none;
}

.info-item-title {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 10px;
}

.info-item-date {
	font-size: 12px;
	color: #999;
	white-space: nowrap;
	flex-shrink: 0;
}

.info-list-alumni li a {
	padding: 15px 0;
	gap: 15px;
}

.info-list-alumni li a .info-date {
	margin-right: 0;
	min-width: 45px;
	padding: 6px 10px;
	border-radius: 8px 0;
	background-color: #419038;
	text-align: center;
}

.info-list-alumni li a .info-date .day {
	color: #fff;
}

.info-list-alumni li a .info-date .ym {
	color: #fff;
}

.info-list-alumni .info-item-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	    white-space: normal;
}

/* ===== Footer ===== */
.footer {
	position: relative;
	padding: 0;
	margin-top: 30px;
	overflow: hidden;
}

.footer-wrap {
	display: flex;
	align-items: stretch;
}

.footer-left-block {
	flex: 0 0 42%;
	background-color: #419038;
	border-radius: 0 90px 0 0;
	padding: 40px 20px;
	margin-right: -30px;
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 16px;
	line-height: 2;
}

.footer-left-block::before {
	content: '';
	position: absolute;
	top: 0;
	right: 100%;
	width: 50vw;
	height: 100%;
	background-color: #419038;
}

.footer-left-block p {
	margin: 0;
}

.footer-right-block {
	flex: 1;
	background-color: #21853b;
	border-radius: 90px 0 0 0;
	padding: 40px 20px;
	padding-left: 50px;
	margin-left: -30px;
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	min-width: 0;
}

.footer-right-block::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 50vw;
	height: 100%;
	background-color: #21853b;
}

.footer-middle {
	flex: 1;
	min-width: 0;
}

.footer-middle h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.friend-links {
	display: flex;
	gap: 15px;
}

.friend-link-item {
	background-color: #fff;
	padding: 10px;
	flex: 1;
}

.friend-link-item select {
	width: 100%;
	padding: 8px 15px;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #333;
	font-size: 14px;
	cursor: pointer;
	outline: none;
}

.footer-right {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-shrink: 0;
}

.footer-qr {
	text-align: center;
	color: #fff;
	font-size: 12px;
}