/* 管理团队模块 */
.environment-section .tab-content > .tab-pane {
	animation: fadeIn 0.5s ease-in-out;
}
.green-finance .title {
	color: #228B22;
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}
.green-finance .text-block {
	margin-bottom: 1.2rem;
	line-height: 1.6;
}
.green-finance .pdf-card {
	border-left: 2px solid #005195;
	padding: 2rem 1rem;
	text-align: center;
	margin-bottom: 1rem;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.08);
}
.green-finance .pdf-link {
	display: flex;
	justify-content: space-between;
	color: #005195;
	text-decoration: none;
}
.green-finance .pdf-link:hover {
	color: #005195;
	text-decoration: underline;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 成员卡片样式 */
.environment-section .member-card {
	background-color: #f8f9ff;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.environment-section .member-card img {
	width: 271px;
	height: 260px;
}
.environment-section .member-card:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.environment-section .nav-tabs {
	font-size: 1rem;
}
.environment-section .nav-item {
	flex: 1;
}
.environment-section .nav-tabs .nav-link {
	color: #6c757d;
	border: none;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
}
.environment-section .nav-tabs .nav-link.active {
	color: #0086C9;
	border-bottom: 3px solid #0086C9;
	font-weight: 500;
}
.environment-section .nav-item button {
	width: 100%;
}

.title-green {
	color: #009966;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}
.content-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
}
.content-text {
	line-height: 1.8;
	color: #333;
}
.img-box {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 横幅容器样式 */
.promise-banner {
	position: relative;
	width: 100%;
	height: 200px; /* 控制横幅高度 */
	border-radius: 8px;
	overflow: hidden;
	margin: 2rem 0;
}
/* 背景图 */
.promise-banner-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 文字层（绝对定位居中） */
.promise-banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	width: 100%;
	padding: 0 2rem;
}
.promise-banner-title {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.promise-banner-desc {
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
/* 文字两侧的线条装饰 */
.promise-banner-desc::before,
.promise-banner-desc::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.8);
	max-width: 150px;
}
.page-container {
	margin: 3rem auto;
	padding: 0 1rem;
}
.section-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 2rem;
	color: #333;
}
/* 业务板块容器 */
.business-block {
	position: relative;
	padding: 0 1rem;
}
/* 板块标题（绿色） */
.block-title {
	color: #229954;
	margin-bottom: 1rem;
	padding-left: 1.2rem;
	position: relative;
	font-size: 1.2rem;
	height:3rem;
	font-weight: normal;
}
/* 标题前的圆点+竖线 */
.block-title::before {
	content: "";
	position: absolute;
	left: -0.15rem;
	top: 0.2rem;
	width: .8rem;
	height: .8rem;
	border-radius: 50%;
	border: 1px solid #229954;
}
.bottom-business-block .block-title::before {
	top: 10.5rem;
}
.block-title::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1rem;
	width: 1px;
	height: 10.5rem;
	background: #229954;
}
.bottom-business-block .block-title::after {
	top: 0;
}
/* 目标项样式 */
.target-item {
	font-size: 0.95rem;
}
/* 目标项样式 */
.target-item p {
	padding-left: 1.2rem;
}
.target-item p:first-child {
	height: 6rem;
}
/* 数值强调样式（绿色大字体） */
.target-value {
	color: #229954;
	font-size: 1rem;
	margin-bottom: 0;
}
.target-value span {
	font-size: 3rem;
	display: inline-block;
	vertical-align: top;
	margin-top: -0.5rem;
}
.target-value .unit {
	vertical-align: bottom;
	font-size: 1rem;
	margin-bottom: 0.8rem;
}
/* 横线装饰 */
.horizontal-line {
	height: 1px;
	background: #229954;
}
.bottom-business-block {
	margin: 0 auto;
}
.green-action {
	background: url(../image/esg/rectangle-2302.png) top left no-repeat;
	background-size: 100% 100%;
	padding-bottom: 6rem;
}
.bg-pos {
	background-position: left -660px;
}
/* 绿色行动 */
.green-action .section-title {
	color: #fff;
	text-align: center;
	padding: 6rem 0 0;
	font-weight: bold;
	font-size: 2rem;
}
.green-action .tab-nav {
	border-radius: 8px 8px 0 0;
	overflow: hidden;
	display: flex;
	border: 1px solid #fff;
}
.green-action .nav-item{
	flex: 1;
	border-right: 1px solid #fff;

}
.green-action .nav-item:last-child{
	border-right: 0;

}
.green-action .tab-nav .nav-link {
	color: white;
	padding: 1rem 2rem;
	border: none;
	background: #2FA7EA;
	font-size: 1.5rem;
	height: 100%;
}
.green-action .tab-nav .nav-link.active {
	color: #2FA7EA;
	font-weight: bold;
	background: #fff;
}
/* 内容容器 */
.green-action .content-container {
	padding: 2rem;
	border-radius: 0 0 4px 4px;
	position: relative;
	z-index: 1;
}
/* 内容标题（加粗） */
.green-action .content-title {
	font-size: 1.4rem;
	font-weight: bold;
	margin: 1.5rem 0 0.8rem;
	color: #333;
}
/* 段落样式 */
.green-action .content-text {
	line-height: 1.8;
	color: #666;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}
.green-action .tab-content {
	margin-top: 4rem;
	background-color: rgba(255,255,255,0.9);
	border-radius: 8px;
}
.report-banner {
	margin: 2rem auto;
	background: #f8f9fa;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: url(../image/esg/banner-bottom.png) no-repeat;
	background-size: 100% auto;
	filter: drop-shadow(4px 4px 20px rgba(18, 127, 204, 0.15));
}

.report-banner-text {
	flex: 1;
	padding: 5.6rem;
	text-align: left;
}
.report-banner-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 1.5rem;
}
.report-btn-view {
	background: #0D8AE4;
	color: white;
	padding: 0.8rem 2rem;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s;
}
.report-btn-view:hover {
	background: #0a6ebd;
	color: white;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.page-container .business-block > .row > [class*="col-"] {
		margin-bottom: 1rem;
	}
	.page-container .business-block > div[style] {
		width: 100% !important;
	}
	.page-container .target-item p:first-child {
		height: auto;
		min-height: 0;
		padding-left: 1.2rem;
		line-height: 1.6;
	}
	.page-container .target-item {
		padding-bottom: 1rem;
	}
	.page-container .target-value {
		margin-top: .5rem;
		line-height: 1.1;
	}
	.rreport-eport-banner {
		flex-direction: column;
	}
	/* 绿色行动2030全景图：移动端保持背景、导航和内容在同一布局中 */
	.green-action {
		padding: 2rem 0 3rem;
		background-color: #2fa7ea;
		background-size: auto 100%;
		background-position: left top;
		background-repeat: no-repeat;
	}
	.green-action > .container {
		width: 100%;
		max-width: 100%;
		padding-left: 12px;
		padding-right: 12px;
	}
	.green-action .section-title {
		padding: 1rem 0 1.25rem;
		font-size: 1.35rem;
		line-height: 1.5;
	}
	.green-action .tab-nav {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		background: rgba(255,255,255,.12);
	}
	.green-action .tab-nav::-webkit-scrollbar {
		display: none;
	}
	.green-action .nav-item {
		flex: 0 0 auto;
		width: auto;
	}
	.green-action .tab-nav .nav-link {
		white-space: nowrap;
		padding: .7rem 1rem;
		font-size: .9rem;
		line-height: 1.4;
	}
	.green-action .tab-content {
		margin-top: 0;
		background: rgba(255,255,255,.94);
	}
	.green-action .content-container {
		padding: 1rem;
		min-height: 12rem;
	}
	.green-action .content-title {
		font-size: 1.05rem;
		line-height: 1.6;
		margin: .5rem 0 .75rem;
	}
	.green-action .content-text {
		font-size: .9rem;
		line-height: 1.7;
		word-break: break-word;
	}
}

.business-card {
		display: flex;
		flex-direction: column;
		height: 100%;
		gap: 1.5rem;
}
.business-title {
		font-size: 2rem;
		font-weight: 700;
		color: #0086C9;
		margin-bottom: 0.5rem;
}
.business-card .tips {
	color: #999;
}
.business-subtitle {
	color: #0086C9;
	font-size: 1.125rem;
}
.business-desc {
		font-size: 1rem;
		color: #535862;
		line-height: 1.6;
		margin-bottom: 2.125rem;
		background: url(../image/business/line.png) no-repeat;
		background-size: 100% auto;
		padding-top: 2rem;
		text-indent: 2em;
}
.business-img {
		width: 100%;
		object-fit: cover;
		border-radius: 4px;
}
.variety-banner {
	background: url(../image/esg/rectangle-2300-2.png) no-repeat;
	background-size: 100% auto;

}
.variety-banner .report-banner-title {
	color: #fff;
}

.esg-card {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #1E88E5; /* 蓝色文字/图标 */
	transition: border-color 0.3s;
	padding: 2rem 0;
	cursor: pointer;
	background: none;
	font-size: 1.2rem;
	color: #333;
}

.esg-card:hover {
	background: none;
	color: #333;
	border-color: #1E88E5;
}
.esg-card:click {
	background: none;
}
.esg-icon {
	font-size: 2.5rem; /* 图标大小 */
	width: 3.875rem;
	height: 3.875rem;
}

.data-bar {
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 2rem 0;
	margin: 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.data-item {
	text-align: center;
	position: relative;
}
/* 竖线分隔符 */
.data-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 15%;
	right: 0;
	height: 70%;
	width: 1px;
	background: #cce5ff;
}
.data-value {
	font-size: 2rem;
	color: #006EBD; /* 蓝色数值 */
	margin-bottom: 0.5rem;
}
.data-desc {
	color: #333;
	line-height: 1.6;
}
/* 弹窗遮罩层 */
.modal-backdrop {
	background: rgba(0,0,0,0.5);
}
/* 弹窗内容区 */
.modal-content {
	border-radius: 4px;
	border: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* 弹窗头部 */
.modal-header {
	border-bottom: 1px solid #cce5ff;
	padding: 1.5rem;
}
.modal-title {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: #333;
}
.modal-icon {
	width: 35px;
	height: 35px;
}
/* 弹窗内容 */
.modal-body {
	padding: 1.5rem;
	line-height: 1.8;
	color: #555;
}
/* 关闭按钮 */
.btn-close {
	font-size: 1.2rem;
	opacity: 0.7;
}
.btn-close:hover {
	opacity: 1;
}

/* 报告入口横幅：移动端按高度缩放背景插画，避免只剩一条小图 */
@media (max-width: 768px) {
	.report-banner,
	.report-banner.variety-banner {
		position: relative;
		min-height: 230px;
		display: flex;
		align-items: center;
		background-image: none!important;
		background-color: #fff;
	}
	.report-banner::before {
		display: none;
	}
	.report-banner-text {
		position: relative;
		z-index: 1;
		flex: 0 0 100%;
		width: 100%;
		box-sizing: border-box;
		margin: 0;
		padding: 1.25rem 1rem!important;
		text-align: left;
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}
	.report-banner-title {
		font-size: 1.2rem;
		line-height: 1.5;
		margin-bottom: 1rem;
		color: #181D27!important;
	}
	.report-btn-view {
		display: inline-block;
		padding: .65rem 1.25rem;
		white-space: nowrap;
	}
}
