.elsabout-container {
	width: 100%;
	overflow-x: hidden;
}
/* 顶部大图区域 */
.elsabout-hero {
	width: 100vw;
	height: 600px;
	max-height: 600px;
	position: relative;
	overflow: hidden;
}
.elsabout-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.elsabout-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(26, 94, 52, 0.4), rgba(15, 56, 30, 0.4));
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 20px;
}
.elsabout-hero-title {
	font-size: 2.8rem;
	margin-bottom: 15px;
	text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
	position: relative;
	padding-bottom: 15px;
}
.elsabout-hero-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: #fff;
	border-radius: 2px;
}
.elsabout-hero-subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	max-width: 800px;
	line-height: 1.6;
	margin-top: 20px;
}
.elsabout-breadcrumb {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	color: #fff;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
	flex-wrap: wrap;
	justify-content: center;
}
.elsabout-breadcrumb a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
}
.elsabout-breadcrumb a:hover {
	color: #a7f3d0;
}
.elsabout-breadcrumb span {
	margin: 0 12px;
}
.elsabout-breadcrumb i {
	margin-right: 8px;
}
/* 内容区域 */
.elsabout-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	position: relative;
}
/* 导航区域 */
.elsabout-nav-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 50px;
	position: relative;
}
.elsabout-nav-container:after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 1px;
	background: linear-gradient(to right, transparent, #d1d5db, transparent);
}
.elsabout-nav-item {
	padding: 12px 25px;
	margin: 0 10px 15px;
	cursor: pointer;
	border-radius: 30px;
	background: rgba(26, 94, 52, 0.1);
	transition: all 0.3s ease;
	font-size: 1.1rem;
	border: 0px solid #1a5e32;
	color: #1a5e32;
	display: flex;
	align-items: center;
	text-decoration: none;
}
.elsabout-nav-item i {
	margin-right: 10px;
	font-size: 1.2rem;
}
.elsabout-nav-item:hover {
	background: #1a5e32;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(26, 94, 50, 0.3);
}
.elsabout-nav-item.active {
	background: #1a5e32;
	color: white;
}
/* 内容区域 */
.elsabout-main-content {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	padding: 40px;
	margin-bottom: 40px;
}
.elsabout-section {
	margin-bottom: 40px;
	display: none;
}
.elsabout-section.active {
	display: block;
}
.elsabout-section:last-child {
	margin-bottom: 0;
}
.elsabout-section-title {
	font-size: 1.8rem;
	color: #1a5e32;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
}
.elsabout-section-title i {
	margin-right: 12px;
}
.elsabout-section-text {
	line-height: 1.8;
	color: #333;
	font-size: 1.05rem;
	margin-bottom: 10px;
    text-indent: 2em;
	
}
.elsabout-section-image {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin: 25px 0;/* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}
.elsabout-section-image img {
	width: 100%;
	height: auto;
	display: block;
}
.elsabout-image-caption {
	text-align: center;
	font-style: italic;
	color: #6b7280;
	margin-top: 10px;
	font-size: 0.95rem;
}
/* 天气信息 */
.elsabout-weather-info {
	background: #e6f7ff;
	border-radius: 10px;
	padding: 25px;
	margin-top: 20px;
	border-left: 4px solid #1890ff;
}
.elsabout-weather-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.elsabout-weather-icon {
	font-size: 2.5rem;
	margin-right: 15px;
	color: #1890ff;
}
.elsabout-weather-temp {
	font-size: 2rem;
	font-weight: bold;
	color: #1a5e32;
}
.elsabout-weather-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}
.elsabout-weather-detail {
	display: flex;
	align-items: center;
}
.elsabout-weather-detail i {
	margin-right: 10px;
	color: #1a5e32;
	width: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
.elsabout-hero-title {
	font-size: 2rem;
}
.elsabout-breadcrumb {
	font-size: 0.9rem;
	padding: 8px 15px;
}
/* 顶部大图区域 */
.elsabout-hero {
	width: 100vw;
	height: 300px;
	max-height: 300px;
	position: relative;
	overflow: hidden;
 .elsabout-nav-item {
 width: 100%;
 margin: 0 0 10px 0;
 justify-content: center;
}
.elsabout-main-content {
	padding: 25px;
}
.elsabout-section-title {
	font-size: 1.5rem;
}
}
 @media (max-width: 480px) {
.elsabout-hero-title {
	font-size: 1.6rem;
}
.elsabout-hero-subtitle {
	display: none;
}
.elsabout-breadcrumb {
	width: 90%;
	bottom: 15px;
}
.elsabout-breadcrumb span {
	display: none;
}
.elsabout-breadcrumb a {
	margin: 0 5px;
}
.elsabout-main-content {
	padding: 20px;
}
}
/* 返回顶部按钮 */
.elsnews-detail-back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #1a5e32;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
}
.elsnews-detail-back-to-top.visible {
	opacity: 1;
	visibility: visible;
}
.elsnews-detail-back-to-top:hover {
	background: #0c4a23;
	transform: translateY(-5px);
}

/* 手机端返回顶部按钮调整 */
@media (max-width: 768px) {
.elsnews-detail-back-to-top {
	bottom: 20px;
	right: 20px;
	width: 45px;
	height: 45px;
}
.elsnews-detail-article img {
	width: 100%;
	height: auto;
	display: block;
}
}
/* 装饰图案 */
.elsnews-pattern {
	position: absolute;
	z-index: -1;
	opacity: 0.05;
	pointer-events: none;
}
.elsnews-pattern-1 {
	top: 50px;
	right: 50px;
	font-size: 200px;
}
.elsnews-pattern-2 {
	bottom: 100px;
	left: 40px;
	font-size: 180px;
}
