.energy-hero {
	position: relative;
	height: 700px;
	background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 50%, #1a3a2f 100%);
	overflow: hidden;
}

.energy-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.3) 0%,
		transparent 40%),
		radial-gradient(circle at 70% 80%, rgba(139, 195, 74, 0.2) 0%,
		transparent 40%);
}

.energy-hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L45 15 L37 23 L40 33 L30 27 L20 33 L23 23 L15 15 L25 15 Z' fill='none' stroke='%234CAF50' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
	opacity: 0.5;
}

.energy-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 150px 50px 100px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 80px;
	align-items: center;
}

.energy-hero-left .energy-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: rgba(76, 175, 80, 0.2);
	border: 1px solid rgba(76, 175, 80, 0.4);
	border-radius: 30px;
	color: #81c784;
	font-size: 14px;
	margin-bottom: 30px;
}

.energy-hero-left h1 {
	font-size: 52px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 25px;
	line-height: 1.3;
}

.energy-hero-left h1 span {
	color: #81c784;
	display: block;
}

.energy-hero-left p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	margin-bottom: 40px;
}

.energy-hero-features {
	display: flex;
	gap: 30px;
}

.energy-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.energy-feature-icon {
	width: 40px;
	height: 40px;
	background: rgba(76, 175, 80, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #81c784;
}

.energy-feature-text {
	color: #fff;
	font-size: 15px;
}

.energy-hero-right {
	position: relative;
}

.energy-stats-circle {
	width: 300px;
	height: 300px;
	background: rgba(76, 175, 80, 0.1);
	border: 2px solid rgba(76, 175, 80, 0.3);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
}

.energy-stats-circle::before {
	content: '';
	position: absolute;
	width: 350px;
	height: 350px;
	border: 1px dashed rgba(76, 175, 80, 0.2);
	border-radius: 50%;
	animation: energyRotate 20s linear infinite;
}

@
keyframes energyRotate {from { transform:rotate(0deg);
	
}

to {
	transform: rotate(360deg);
}

}
.energy-main-stat {
	text-align: center;
}

.energy-main-number {
	font-size: 72px;
	font-weight: 700;
	color: #81c784;
	line-height: 1;
}

.energy-main-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 10px;
}

.energy-sub-stats {
	position: absolute;
	width: 100%;
	height: 100%;
}

.energy-sub-stat {
	position: absolute;
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.energy-sub-stat:nth-child(1) {
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.energy-sub-stat:nth-child(2) {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.energy-sub-stat:nth-child(3) {
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.energy-sub-stat:nth-child(4) {
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
}

.energy-sub-number {
	font-size: 20px;
	font-weight: 700;
	color: #81c784;
}

.energy-sub-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

/* 服务模块 - 环形布局 */
.energy-services {
	padding: 100px 0;
	background: #f5f7f5;
}

.energy-services-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.energy-services-header {
	text-align: center;
	margin-bottom: 80px;
}

.energy-services-header h2 {
	font-size: 40px;
	font-weight: 700;
	color: #1a3a2f;
	margin-bottom: 15px;
}

.energy-services-header p {
	font-size: 16px;
	color: #666;
}

.energy-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.energy-service-card {
	background: #fff;
	border-radius: 24px;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s ease;
	border: 1px solid #e8e8e8;
}

.energy-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4CAF50, #81c784);
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.energy-service-card:hover::before {
	transform: scaleX(1);
}

.energy-service-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(76, 175, 80, 0.15);
}

.energy-service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #4CAF50 0%, #81c784 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-bottom: 30px;
	font-size: 32px;
}

.energy-service-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a3a2f;
	margin-bottom: 15px;
}

.energy-service-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 25px;
}

.energy-service-list {
	list-style: none;
	padding: 0;
}

.energy-service-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	font-size: 14px;
	color: #555;
}

.energy-service-item::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #4CAF50;
	border-radius: 50%;
}

/* 节能数据展示 */
.energy-data {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 100%);
}

.energy-data-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.energy-data-header {
	text-align: center;
	margin-bottom: 60px;
}

.energy-data-header h2 {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.energy-data-header p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.energy-data-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.energy-data-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(76, 175, 80, 0.2);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
}

.energy-data-card:hover {
	background: rgba(76, 175, 80, 0.2);
	transform: translateY(-10px);
}

.energy-data-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	color: #81c784;
}

.energy-data-number {
	font-size: 48px;
	font-weight: 700;
	color: #81c784;
	line-height: 1;
}

.energy-data-unit {
	font-size: 18px;
	color: #81c784;
}

.energy-data-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 15px;
}

/* 节能案例 */
.energy-cases {
	padding: 100px 0;
	background: #fff;
}

.energy-cases-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.energy-cases-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

.energy-cases-header h2 {
	font-size: 40px;
	font-weight: 700;
	color: #1a3a2f;
}

.energy-cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.energy-case-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f5f7f5;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.energy-case-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.energy-case-image {
	height: 250px;
	background-size: cover;
	background-position: center;
}

.energy-case-content {
	padding: 40px;
}

.energy-case-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a3a2f;
	margin-bottom: 15px;
}

.energy-case-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.energy-case-result {
	display: flex;
	gap: 20px;
}

.energy-result-item {
	padding: 10px 15px;
	background: rgba(76, 175, 80, 0.1);
	border-radius: 8px;
}

.energy-result-value {
	font-size: 18px;
	font-weight: 700;
	color: #4CAF50;
}

.energy-result-label {
	font-size: 12px;
	color: #666;
}

/* 联系区域 */
.energy-contact {
	padding: 80px 0;
	background: #f5f7f5;
}

.energy-contact-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
}

.energy-contact-box {
	background: linear-gradient(135deg, #1a3a2f 0%, #2d5a4a 100%);
	border-radius: 24px;
	padding: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.energy-contact-left h2 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.energy-contact-left p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

.energy-contact-btn {
	padding: 18px 40px;
	background: #4CAF50;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.energy-contact-btn:hover {
	background: #66bb6a;
	transform: translateY(-3px);
}

@media ( max-width : 1024px) {
	.energy-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.energy-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.energy-data-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.energy-case-card {
		grid-template-columns: 1fr;
	}
	.energy-contact-box {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
}

@media ( max-width : 768px) {
	.energy-hero {
		height: 600px;
	}
	.energy-hero-left h1 {
		font-size: 36px;
	}
	.energy-services-grid, .energy-data-grid, .energy-cases-grid {
		grid-template-columns: 1fr;
	}
	.energy-stats-circle {
		width: 250px;
		height: 250px;
	}
}