
  .banner {
  	background: linear-gradient(135deg, #17aff0, #198754);
  	height: 70vh;
  	color: white;
  }


  .banner h1 {
  	font-size: 3.5rem;
  	font-weight: 800;
  	margin-bottom: 20px;

  }

  .banner p {
  	font-size: 1.4rem;
  	margin-bottom: 30px;
  	margin-bottom: 2rem;
  }


  .ecovadis-about-content h3 {
  	font-weight: 800;
  	margin-bottom: 20px;
  }

  .ecovadis-about-content p {
  	margin-bottom: 30px;
  }

  .ecovadis-value {
  	background-color: rgba(25, 135, 84, 0.1);
  }


  .ecovadis-wecan-btn {
  	width: 180px;
  	height: auto;
  }

  .ecovadis-wecan-icon {
  	width: 50% !important;
  	height: auto;
  }

  /* 基础样式保持与服务流程页面一致 */
  .section-title {
  	color: #198754;
  	border-bottom: 2px solid #d1e7dd;
  	padding-bottom: 0.5rem;
  	margin-bottom: 2rem;
  }

  /* FAQ容器样式 */
  .faq-container {
  	max-width: 1000px;
  	margin: 0 auto;
  }

  /* 问题分类标签 */
  .faq-category {
  	background-color: #f0fdf4;
  	color: #198754;
  	padding: 0.75rem 1.25rem;
  	border-radius: 0.375rem;
  	margin-bottom: 1.5rem;
  	font-weight: 600;
  	display: flex;
  	align-items: center;
  	gap: 0.5rem;
  }

  /* 问题卡片样式 */
  .faq-item {
  	background-color: #fff;
  	border: 1px solid #e2e8f0;
  	border-radius: 0.5rem;
  	margin-bottom: 1rem;
  	overflow: hidden;
  	transition: all 0.3s ease;
  }

  .faq-item:hover {
  	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  	border-color: #d1e7dd;
  }

  /* 问题标题 */
  .faq-question {
  	padding: 1rem 1.25rem;
  	font-weight: 500;
  	cursor: pointer;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  }

  /* 问题图标 */
  .faq-icon {
  	color: #198754;
  	transition: transform 0.3s ease;
  }

  .faq-icon.open {
  	transform: rotate(180deg);
  }

  /* 答案内容 */
  .faq-answer {
  	padding: 14px 1.5rem 1rem;
  	color: #4b5563;
  	border-top: 1px solid #f3f4f6;
  	display: none;
  }

  .faq-answer.show {
  	display: block;
  	animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
  	from {
  		opacity: 0;
  		transform: translateY(-10px);
  	}

  	to {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }

  /* 资讯栏样式 */
  .ecovadis-news-container {
  	max-width: 1400px;
  	margin: 0 auto;
  	padding: 2rem 1rem;
  }

  .ecovadis-news-header {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	margin-bottom: 2rem;
  	flex-wrap: wrap;
  	gap: 1rem;
  }

  .ecovadis-news-title {
  	color: #198754;
  	font-weight: 700;
  	margin: 0;
  }

  /* 资讯卡片样式 */
  .news-grid {
  	display: flex;
  	gap: 1.5rem;
  	transition: transform 0.5s ease;
  	width: 100%;
  }

  .news-card {
  	flex: 0 0 calc(25% - 1.125rem);
  	/* 一行4个，减去间距 */
  	background-color: #fff;
  	border-radius: 0.75rem;
  	overflow: hidden;
  	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  	transition: all 0.3s ease;
  	border: 1px solid #e2e8f0;
  }

  .news-card:hover {
  	transform: translateY(-5px);
  	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  	border-color: #d1e7dd;
  }

  .news-image {
  	height: 160px;
  	overflow: hidden;
  }

  .news-image img {
  	width: 100%;
  	height: 100%;
  	object-fit: cover;
  	transition: transform 0.5s ease;
  }

  .news-card:hover .news-image img {
  	transform: scale(1.05);
  }

  .news-content {
  	padding: 1.25rem;
  }

  .news-date {
  	font-size: 0.875rem;
  	color: #6b7280;
  	margin-bottom: 0.5rem;
  	display: flex;
  	align-items: center;
  	gap: 0.25rem;
  }

  .news-card:hover .news-title {
  	color: #198754;
  }

  .news-excerpt {
  	font-size: 0.9375rem;
  	color: #4b5563;
  	margin-bottom: 1rem;
  	height: 72px;
  	overflow: hidden;
  	display: -webkit-box;
  	-webkit-line-clamp: 3;
  	-webkit-box-orient: vertical;
  }

  .read-more {
  	display: inline-flex;
  	align-items: center;
  	color: #198754;
  	font-weight: 500;
  	font-size: 0.9375rem;
  	text-decoration: none;
  	gap: 0.25rem;
  	transition: all 0.3s ease;
  }

  .read-more:hover {
  	color: #155e38;
  	gap: 0.5rem;
  }

  /* 导航按钮样式 */
  .nav-buttons {
  	display: flex;
  	gap: 0.75rem;
  }

  .nav-btn {
  	width: 40px;
  	height: 40px;
  	border-radius: 50%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	background-color: #f0fdf4;
  	color: #198754;
  	border: 1px solid #d1e7dd;
  	cursor: pointer;
  	transition: all 0.3s ease;
  }

  .nav-btn:hover,
  .nav-btn.active {
  	background-color: #198754;
  	color: #fff;
  }

  .nav-btn:disabled {
  	opacity: 0.5;
  	cursor: not-allowed;
  	background-color: #f3f4f6;
  	color: #9ca3af;
  	border-color: #e5e7eb;
  }

  /* 轮播容器 */
  .carousel-container {
  	overflow: hidden;
  	position: relative;
  }




  @media (max-width: 767.9px) {

  	/* 上下边距统一设置 */
  	/* 上方间距 */
  	.spacing-above {
  		margin-top: 50px !important;
  	}

  	/* 下方间距 */
  	.spacing-below {
  		margin-bottom: 50px !important;
  	}

  }



  /* 响应式服务流程：*/
  @media (max-width: 768px) {
  	.process-step {
  		min-width: 100px;
  		/* 小屏幕下减小最小宽度 */
  	}

  	.process-arrow {
  		padding: 0 0.25rem;
  		/* 减小箭头间距 */
  	}
  }

  /* 超小屏幕优化（手机竖屏） */
  @media (max-width: 576px) {
  	.process-step {
  		min-width: 80px;
  		/* 进一步减小最小宽度 */
  		font-size: 0.875rem;
  		/* 缩小文字 */
  	}

  	.step-icon {
  		width: 40px;
  		height: 40px;
  		line-height: 40px;
  	}

  	.step-icon i {
  		font-size: 1.25rem;
  		/* 缩小图标 */
  	}
  }

  /* 常见问题响应式调整 */
  @media (max-width: 768px) {
  	.faq-container {
  		padding: 0 1rem;
  	}

  	.faq-question {
  		font-size: 0.95rem;
  	}

  	.faq-answer {
  		font-size: 0.9rem;
  	}

		
  }

  /* 资讯栏响应式调整 */
  @media (max-width: 1200px) {
  	.news-card {
  		flex: 0 0 calc(33.333% - 1rem);
  		/* 中等屏幕一行3个 */
  	}
  }

  @media (max-width: 992px) {
  	.news-card {
  		flex: 0 0 calc(50% - 0.75rem);
  		/* 平板屏幕一行2个 */
  	}
		.banner-content h1{
			font-size: 20px;
		}
		.banner-content p{
			font-size: 16px;
		}
  }

  @media (max-width: 575.9px) {
  	.news-card {
  		flex: 0 0 100%;
  		/* 手机屏幕一行1个 */
  	}

  	.section-header {
  		justify-content: center;
  		text-align: center;
  	}
		

  }
	
