<style>
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
}

body {
	background-color: #ffffff;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.page-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 0 20px;
}

.page-title {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: #2c3e50;
	position: relative;
}

.page-title:after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #3498db, #2c3e50);
	margin: 15px auto;
	border-radius: 2px;
}

.page-subtitle {
	font-size: 1.2rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

section {
	margin-bottom: 80px;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 30px;
	text-align: center;
	color: #2c3e50;
	position: relative;
}

.section-title:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #3498db;
	margin: 10px auto;
	border-radius: 2px;
}

/* 案例展示部分 */
.cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.case-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

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

.case-image {
	/*height: 100px;*/
	overflow: hidden;
	position: relative;
}

.case-image img {
	width: 100%;
	height: 100%;
	/*object-fit: contain;*/
	transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
	transform: scale(1.05);
}

.case-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.case-card:hover .case-overlay {
	opacity: 1;
}

.case-link {
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border: 2px solid white;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.case-link:hover {
	background: white;
	color: #333;
}

.case-content {
	padding: 20px;
}

.case-title {
	font-size: 1.2rem;
	color: #2c3e50;
	text-align: center;
}

/* 荣誉证书部分 */
.certificates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.certificate-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.certificate-image {
	height: 180px;
	overflow: hidden;
	position: relative;
}

.certificate-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
	transform: scale(1.05);
}

.certificate-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.certificate-card:hover .certificate-overlay {
	opacity: 1;
}

.certificate-link {
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border: 2px solid white;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.certificate-link:hover {
	background: white;
	color: #333;
}

.certificate-content {
	padding: 15px;
}

.certificate-title {
	font-size: 1rem;
	color: #2c3e50;
	text-align: center;
}

.certificate-year {
	font-size: 0.85rem;
	color: #7f8c8d;
	text-align: center;
	margin-top: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {

	.cases-grid,
	.certificates-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.7rem;
	}
}

@media (max-width: 480px) {

	.cases-grid,
	.certificates-grid {
		grid-template-columns: 1fr;
	}

	.partner-logo {
		flex: 0 0 150px;
		height: 100px;
		padding: 15px;
	}
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 面包屑导航 */
.breadcrumb {
	background-color: #fff;
	padding: 15px 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.breadcrumb-content {
	display: flex;
	align-items: center;
}

.breadcrumb-content a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb-content a:hover {
	color: #01663e;
}

.breadcrumb-content span {
	margin: 0 10px;
	color: #999;
}

.breadcrumb-content .current {
	color: #01663e;
	font-weight: 500;
}

/* 主要内容区域 */
.main-content {
	margin-bottom: 50px;
}

/* 新闻标签页 */
.newslist-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.tab {
	padding: 15px 25px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s;
	border-bottom: 3px solid transparent;
	flex: 1;
	text-align: center;
}
.newslist-tabs .tab a{
    display: block;
}
.tab.active,.tab:hover {
	color: #fff;
    background-color: #01663e;
}

/* 新闻网格布局 */
.newslist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.newslist-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.newslist-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.newslist-image {
	height: auto;
	overflow: hidden;
}

.newslist-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.newslist-card:hover .newslist-image img {
	transform: scale(1.05);
}

.newslist-content {
	padding: 20px;
}

.newslist-title {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #333;
	text-decoration: none;
	display: block;
	transition: color 0.3s;
	line-height: 1.4;
}

.newslist-title:hover {
	color: #01663e;
}

.newslist-date {
	color: #999;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.newslist-date i {
	margin-right: 5px;
	font-size: 13px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.footer-section {
	flex: 1;
	min-width: 250px;
	margin-bottom: 20px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #ffd700;
}

.footer-section p,
.footer-section a {
	color: #bdc3c7;
	margin-bottom: 10px;
	display: block;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: #ffd700;
}

.social-links a {
	display: inline-block;
	margin-right: 15px;
	font-size: 18px;
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #34495e;
	color: #95a5a6;
	font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.newslist-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.header-content {
		flex-direction: column;
		text-align: center;
	}

	nav ul {
		margin-top: 20px;
		justify-content: center;
	}

	nav ul li {
		margin: 0 10px;
	}
}

@media (max-width: 768px) {
	.newslist-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.tab {
		padding: 12px 15px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.pagination a {
		padding: 8px 12px;
		font-size: 14px;
	}

	.newslist-tabs {
		flex-direction: column;
	}
}
/* 左侧新闻详情 */
.news-detail {
	flex: 1;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 30px;
}

.news-title {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 15px;
	color: #1a1a1a;
}

.news-meta {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	color: #666;
	font-size: 14px;
}

.news-meta span {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.news-meta i {
	margin-right: 5px;
	color: #999;
}

.news-content {
	font-size: 16px;
	line-height: 1.8;
}

.news-content p {
	margin-bottom: 20px;
}

.news-image {
	width: 100%;
	margin: 25px 0;
	border-radius: 6px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: auto;
	display: block;
}

.news-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.action-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #f5f7fa;
	border-radius: 20px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
}

.action-btn:hover {
	background: #e8ecf1;
}

.action-btn.active {
	color: 01663e;
	background: #e6f7ff;
}

/* 右侧热门推荐 */
.hot-news {
	width: 320px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 20px;
}

.section-title {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid 01663e;
	display: inline-block;
}

.hot-list {
	list-style: none;
}

.hot-item {
	display: flex;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.hot-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.hot-img {
	width: 90px;
    height: auto;
	border-radius: 4px;
	overflow: hidden;
	margin-right: 15px;
	flex-shrink: 0;
}

.hot-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hot-content {
	flex: 1;
}

.hot-title {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 8px;
	color: #333;
	cursor: pointer;
	transition: color 0.3s;
}

.hot-title:hover {
	color: 01663e;
}

.hot-meta {
	font-size: 12px;
	color: #999;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.container {
		flex-direction: column;
	}

	.hot-news {
		width: 100%;
	}
}
.contact-cards {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}

.contact-card {
	flex: 1;
	min-width: 250px;

	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-top: 160px;
	margin-bottom: 40px;
}

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

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.contact-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1b8b40;
	font-size: 1.8rem;
	animation: pulse 2s infinite;
}

.contact-card h3 {
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 15px;
	color: #2c3e50;
}

.contact-card p {
	color: #666;
	margin-bottom: 10px;
}

.contact-card a {
	color: #01663e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: #01663e;
}

.map-section {}

.map-section h2 {
	text-align: center;
	margin: 40px 0 20px 0;
	font-size: 2rem;
	color: #ffffff;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	height: 700px;
}

.map-placeholder {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	position: relative;
	padding-bottom: 40px;
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-info {
	background: white;
	padding: 20px;
	border-radius: 10px;
	max-width: 300px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	color: #333;
}

.map-info h3 {
	margin-bottom: 10px;
	color: #2c3e50;
}

@media (max-width: 768px) {
	.contact-card {
		min-width: 100%;
	}

	.map-container {
		height: 350px;
	}

	header h1 {
		font-size: 2.2rem;
	}
}