  body {
  	min-width: 270px;
  }

/* 定义form表单样式 */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
	box-shadow: 0 0 0 var(--bs-focus-ring-width) rgba(var(--bs-primary-rgb), 0.05) !important;
}


.form-control:hover,
.form-select:hover,
.form-check-input:hover {
	box-shadow: 0 0 0 var(--bs-focus-ring-width) rgba(var(--bs-primary-rgb), 0.05) !important;
}

/* 上方间距 */
.spacing-above {
	margin-top: 120px;
}


/* 下方间距 */
.spacing-below {
	margin-bottom: 120px;
}

/* 字间距 */
.text-spaces {
	letter-spacing: 0.12em;
}

.text-shadow {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-trans{
	transition: all 0.2s ease;
}

.text-trans:hover{
	transform: translateY(-6px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}


/* --------------动画样式统一设置----------- */
.animate-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-item.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 错开动画延迟 */
.animate-item.delay-1 {
	transition-delay: 0.2s;
}

.animate-item.delay-2 {
	transition-delay: 0.4s;
}

.animate-item.delay-3 {
	transition-delay: 0.6s;
}


/* ----------------动画样式结束------------- */

/* CARD样式 */
.card-hover {
	transition: all 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-5px);
}

/* 脉动动画按钮样式 */
.pulse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(45deg, #00b09b, #96c93d);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    transform-origin: center;
    animation: pulse 2s infinite;
    text-decoration: none;
}

/* 脉动动画定义 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

 /* 关于我们--数字动画 */
@keyframes countUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-count {
	animation: countUp 0.8s ease forwards;
}

/* 数字动画结束 */




/* 悬停状态 */
.pulse-btn:hover {
    background: linear-gradient(45deg, #009174, #82b434);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}
/* 脉动动画定义结束 */

/* 鼠标放在上面效果 */
.mouseover:hover {
	transform: translateY(-6px) scale(1.1);
	/* 向上移动5px并轻微放大1.02倍 */
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	/* 增强阴影效果 */
}



/* 定义按钮光效类 */
.btn-light-effect {
	position: relative;
	overflow: hidden;
	/* 隐藏光效超出按钮的部分 */
	transition: all 0.5s ease;
	/* 按钮本身的过渡（颜色、背景等） */
}

/* 光效伪元素（初始不可见） */
.btn-light-effect::after {
	content: "";
	position: absolute;
	/* 初始在按钮左侧外部 */
	top: 0;
	left: -100%;
	/* 光效宽度 */
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.8) 50%,
			rgba(255, 255, 255, 0) 100%);
	/* 透明到白色再到透明的渐变（模拟光） */
	transition: left 0.9s ease;
	/* 光效从左到右的过渡动画 */
}

/* 鼠标悬浮时触发光效和颜色变化 */
.btn-light-effect:hover {
	background-color: #198754;
	color: #fff;
	border-color: #198754;
}

/* 光效从左移到右侧外部（完成“闪过”效果） */
.btn-light-effect:hover::after {
	left: 150%;
}

/* 光效类完成 */


/* 小圆形背景 */
.ecovadis-circle{
	width: 50px;
	height: 50px;
	background-color: rgba(46, 125, 50, 0.2); 
	border-radius: 50%;
	display: flex; 
	align-items: center; 
	justify-content: center;
}

/* 底部ADV样式 */
.ecovadis-adv-title{
	font-weight: 800;
}

.adv-one {
background: linear-gradient(135deg, #198754, #17aff0);
}

.adv-img{
	width: 300px;
	height: auto;
}

  /* 合作流程步骤卡片：hover增强交互感 */
  .process-step {
  	transition: all 0.3s ease;
  	padding: 1rem 0.5rem;
  	min-width: 120px;
  	/* 确保步骤有最小宽度，避免内容挤压 */
  }

  .process-step:hover {
  	transform: translateY(-5px);
  	color: #198754;
  }

  /* 图标容器：统一视觉大小 */
  .step-icon {
  	width: 48px;
  	height: 48px;
  	line-height: 48px;
  	margin: 0 auto;
  	border-radius: 50%;
  	background-color: #f0fdf4;
  	/* 淡绿色背景，呼应success主题 */
  	color: #198754;
  }

  /* 箭头样式调整 */
  .process-arrow {
  	display: flex;
  	align-items: center;
  	padding: 0 0.5rem;
  	color: #198754;
  }

  /* 流程容器基础样式 */
  .process-container {
  	display: flex;
  	flex-wrap: wrap;
  	/* 允许内容换行 */
  	justify-content: center;
  	/* 水平居中对齐 */
  	align-items: center;
  	gap: 0.5rem;
  	/* 步骤和箭头之间的间距 */
  }

/* 合作流程样式结束 */

/* 标题下的线条 */
.ecovadis-border-left{
	width: 80px;
	height: 4px; 
}
/* 标题下居中的线条 */
.ecovadis-border-center{
	width: 80px;
	height: 4px;
	margin: 0.5rem auto;
}







@media (max-width: 767.9px) {
  
/* 上方间距 */
.spacing-above {
	margin-top: 50px !important;
}

/* 下方间距 */
.spacing-below {
	margin-bottom: 50px !important;
}

}