@charset "utf-8";

/* 英雄区域 */
.hero-section {
	padding: 160px 0 100px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
}

.hero-logo {
	max-width: 500px;
	margin-bottom: 30px;
}

.hero-logo img{
	width:100%;
	display:block;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}


.hero-subtitle {
	font-size: 1.25rem;
	color: #6c757d;
	margin-bottom: 40px;
}

/* 统计卡片 */
.stats-card {
	background: white;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.stats-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stats-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-green);
	margin-bottom: 10px;
}

.stats-label {
	font-size: 1.1rem;
	color: #6c757d;
	font-weight: 500;
}

/* 章节标题 */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--gradient-green);
	margin: 15px auto 0;
	border-radius: 2px;
}

.section-subtitle {
	text-align: center;
	color: #6c757d;
	max-width: 800px;
	margin: 0 auto 50px;
	font-size: 1.1rem;
}

/* 关于学会 */
.about-section {
	padding: 80px 0;
}

.about-card {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	height: 100%;
	transition: all 0.3s ease;
}

.about-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-card h4 {
	color: var(--primary-green);
	margin-bottom: 15px;
	font-weight: 600;
}

.about-card p {
	color: #6c757d;
	margin: 0;
}

.about-description {
	background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	font-size: 1.1rem;
	line-height: 1.8;
}

/* 核心业务 */
.business-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
}

.business-card {
	background: white;
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.business-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	background: var(--gradient-green);
	color: white;
}

.business-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--light-green);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.business-card:hover .business-icon {
	background: white;
}

.business-icon i {
	font-size: 2rem;
	color: var(--primary-green);
	transition: all 0.3s ease;
}

.business-card:hover .business-icon i {
	color: var(--primary-green);
}

.business-card h4 {
	font-weight: 600;
	margin-bottom: 15px;
}

.business-card p {
	color: #6c757d;
	margin: 0;
	transition: all 0.3s ease;
}

.business-card:hover p {
	color: rgba(255,255,255,0.9);
}

/* ===================== 新闻模块新增样式 ===================== */
.news-section {
	padding: 80px 0;
	background: #fff;
}
.news-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
	height: 100%;
}
.news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(40,167,69,0.15);
}
.news-img-box {
	height: 180px;
	background: linear-gradient(135deg,#cce5ff,#d4edda);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow:hidden;
}
.news-img-box img{
	width:100%;
	min-height:180px;
}
.news-img-box i {
	font-size: 4rem;
	color: var(--primary-green);
	opacity: 0.7;
}
.news-body {
	padding: 24px;
}
.news-tag {
	display: inline-block;
	padding: 3px 10px;
	background: var(--light-green);
	color: var(--primary-green);
	font-size: 13px;
	border-radius: 30px;
	margin-bottom: 12px;
}
.news-title {
	font-size: 18px;
	font-weight: 600;
	color: #222;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
	transition: color 0.2s;
}
.news-title:hover {
	color: var(--primary-green);
}
.news-desc {
	color: #666;
	font-size: 14px;
	margin: 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.7;
}
.news-meta {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #999;
}
.more-news-btn {
	border: 2px solid var(--primary-green);
	color: var(--primary-green);
	padding: 10px 32px;
	border-radius: 50px;
	font-weight: 500;
	transition: all 0.3s;
}
.more-news-btn:hover {
	background: var(--gradient-green);
	color: #fff;
	border-color: transparent;
}
/* 新闻列表页分页 */
.page-link {
	color: var(--primary-green);
}
.page-item.active .page-link {
	background: var(--primary-green);
	border-color: var(--primary-green);
}
/* 新闻详情页 */
.detail-banner {
	height: 320px;
	background: linear-gradient(135deg,#007bff,#28a745);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}
.article-content {
	font-size: 17px;
	line-height: 1.9;
	color: #333;
}
.article-content p {
	margin-bottom: 1.2rem;
}
/* ========================================================== */

/* 价值观 */
.values-section {
	padding: 80px 0;
}

.value-item {
	text-align: center;
	padding: 30px;
}

.value-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	transition: all 0.3s ease;
}

.value-circle:hover {
	transform: scale(1.1);
}

.value-innovation {
	background: var(--gradient-green);
}

.value-professional {
	background: var(--gradient-blue);
}

.value-service {
	background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}

/* 联系我们 */
.contact-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
	color: white;
}

.contact-section .section-title {
	color: white;
}

.contact-section .section-title::after {
	background: white;
}

.contact-section .section-subtitle {
	color: rgba(255,255,255,0.9);
}

.contact-card {
	background: rgba(255,255,255,0.1);
	border-radius: 15px;
	padding: 30px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
}
.contact-card .fas{
	text-align:center;
	width:16px;
}

.qr-code {
	max-width: 200px;
	border-radius: 10px;
	background: white;
	overflow:hidden;
}
.qr-code img{
	width:100%;
	display:block;
}

#allmap{width:100%;height:320px;overflow:hidden;margin:auto;position:relative;}

/* 响应式调整 */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.stats-number {
		font-size: 2.5rem;
	}
	
	.wave-top {
		height: 80px;
	}
	
	.wave-bottom {
		height: 100px;
	}
	.news-img-box {
		height: 140px;
	}
}