.banner-image::before {
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:-webkit-gradient(linear,left top,left bottom,color-stop(80%,transparent),to(rgba(0,0,0,.5)));
	background:-webkit-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:-o-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:linear-gradient(to bottom,transparent 20%,rgba(0,0,0,.8) 100%);
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
}
.banner-image img {
	width:100%;
	display:block;
	object-fit:cover;
}
/* 产品分类 */
 .container {
	max-width:1600px;
	margin:0 auto;
	padding:0 0px;
}
@media (min-width: 980px){
h2 {
	font-size:1.6rem;
	font-weight:bold;
	margin-bottom:1rem;
}
h3 {
	font-size:36px;
	font-weight:300;
	margin-bottom:1rem;
}
h4 {
	font-size: 18px;
    font-weight: 500;
    color: #0a0b0d;
    line-height: 1.5;
}
}
p {
	font-size:1.2rem;
	color:#4b5563;
	line-height:1.6;
}
@media (max-width: 979px) {
    h3{
    font-size:26px;
	font-weight:100;
	margin-bottom:1rem;
    }
    h4{
    font-size:18px;
	font-weight:100;
	margin-bottom:1rem;
    }
}
.text-center {
	text-align:center;
}
.mb-4 {
	margin-bottom:1rem;
}
.mb-6 {
	margin-bottom:1.5rem;
}
.mb-8 {
	margin-bottom:2rem;
}
.mb-12 {
	margin-bottom:3rem;
}
.max-w-3xl {
	max-width:48rem;
	margin-left:auto;
	margin-right:auto;
}
/* 分类导航样式 */
  .category-container {
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:1rem;
	margin-bottom:3rem;
}
@media (min-width:768px) {
	.category-container {
	grid-template-columns:repeat(3,1fr);
}
}@media (min-width:1024px) {
	.category-container {
	grid-template-columns:repeat(7,1fr);
	
}
}
.category {
	background-color: #f8f8f8; /* 替换原白色为#f8f8f8，统一基础底色 */
	border-radius:0.75rem;
	padding:1.5rem;
	text-align:center;
	cursor:pointer;
	border: 1px solid #eeeeee; /* 浅灰边框，与#f8f8f8呼应 */
    box-shadow:0 3px 15px rgba(19, 148, 63, 0.05); /* 阴影融入主色低透明度，弱化边缘 */
	transition:transform 0.3s ease,box-shadow 0.3s ease,background-color 0.3s ease, border-color 0.3s ease;
}
.category:hover {
	transform:scale(1.05);
	box-shadow:0 10px 15px -3px rgba(19, 148, 63, 0.1),0 4px 6px -2px rgba(19, 148, 63, 0.05); /* 主色低透明度阴影 */
	background-color: #f0f0f0; /* 比#f8f8f8略深的灰色，体现悬停反馈 */
	border-color: #d9ead3; /* 主色的极浅色调边框，柔和关联主色 */
}
.category img {
	height:4rem;
	margin-bottom:1rem;
}
 @media (min-width:768px) {
.category p {
	font-weight:300;
	color:#1f2937;
	font-size:1.8rem
}
}
 @media (max-width:767px) {
    .category p {
	font-weight:300;
	color:#1f2937;
	font-size:1.4rem
} 
 }
.category.active {
	background-color: #f8f8f8; /* 保持基础浅灰底色，避免与悬停色混淆 */
	border-color: #13943f; /* 直接使用主色作为边框，强化选中标识 */
	box-shadow:0 3px 15px rgba(19, 148, 63, 0.1); /* 主色阴影加深，突出选中项 */
}
.category.active p {
	color: #13943f; /* 主色文字，与边框形成视觉关联 */
	font-weight: 500; /* 文字加粗，进一步强化选中感 */
}
/* 内容展示区样式 */
  .content-container {
	background-color:white;
	border-radius:0.75rem;
	border: 1px solid #f2f2f2;  /* 使用主色作为边框颜色 */
	padding:1.5rem;
}
.content {
	display:none;
}
.content.active {
	display:block;
}
.content img {
	width:100%;
	height:auto;
	border-radius:0.5rem;
	margin-bottom:1rem;
}
/* 应用场景部分样式 */
        .scenes-container {
	display:grid;
	grid-template-columns:1fr;
	gap:1.5rem;
	margin-bottom:3rem;
}
@media (min-width:768px) {
	.scenes-container {
	grid-template-columns:repeat(2,1fr);
}
}.scene-card {
	background-color:white;
	border-radius:0.75rem;
	overflow:hidden;
	box-shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
}
.scene-card:hover {
	transform:translateY(-0.25rem);
	box-shadow:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);
}
.scene-card img {
	width:100%;
	height:16rem;
	object-fit:cover;
}
.scene-card-content {
	padding:1.5rem;
}
.scene-card h4 {
	margin-bottom:0.5rem;
}
.scene-card a {
	color:#93b3fc;
	font-weight:medium;
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	margin-top:1rem;
}
.scene-card a:hover {
	text-decoration:underline;
}
.scene-card a i {
	margin-left:0.5rem;
	font-size:0.875rem;
}
/* 产品列表样式 */
.products-container {
	display:grid;
	grid-template-columns:1fr;
	gap:1.5rem;
	margin-top:2rem;
}
@media (min-width:768px) {
	.products-container {
	grid-template-columns:repeat(2,1fr);
}
}@media (min-width:1024px) {
	.products-container {
	grid-template-columns:repeat(3,1fr);
}
}
/* 产品卡片样式 */
/* 产品卡片样式 */
.product-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    /* 调整后的边框样式 - 更明显的边框 */
    border: 1px solid #f2f2f2;  /* 使用主色作为边框颜色 */
    box-shadow:0 3px 15px rgba(147,179,252,0.1);
    overflow: hidden;
    transition:transform 0.3s ease,box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 添加悬停效果时边框颜色变化 */
.product-card:hover {
    transform: translateY(-4px);
    box-shadow:0 8px 25px rgba(147,179,252,0.2);
}
.product-card-image {
	height:100%;
	/* 固定图片区域高度 */
    overflow:hidden;
}
.product-card-image img {
	width:100%;
	height:100%;
	object-fit:cover;
	/* 保持图片比例，裁剪超出部分 */
    transition:transform 0.5s ease;
}
.product-card:hover .product-card-image img {
	transform:scale(1.05);
}
.product-card-content {
	padding:1.5rem;
	flex-grow:1;
	/* 让内容区域自动填充剩余空间 */
    display:flex;
	flex-direction:column;
}
.product-card h5 {
	font-size:1.25rem;
	font-weight:600;
	margin-bottom:0.75rem;
}
.product-description {
	flex-grow:1;
	/* 让描述区域自动填充剩余空间 */
    margin-bottom:1rem;
	color:#4b5563;
	line-height:1.5;
	/* 限制描述最多显示3行，超出显示省略号 */
    display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.product-card-footer {
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding-top:1rem;
	border-top:1px solid #e5e7eb;
}
.product-card-footer span {
	font-weight:500;
	color:#6b7280;
}
.btn {
	padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}
.btn-primary {
	padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}
.btn-primary:hover {
	  background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}
/* 查看更多按钮样式 */
.view-more-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 1;
    text-align: center;
    color: #fff;
    background-color: #13943f;
    border: 1px solid #13943f;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 150px;
    /* 居中对齐样式 */
    display: block; /* 变为块级元素 */
    margin-left: auto; /* 左侧自动边距 */
    margin-right: auto; /* 右侧自动边距 */
    margin-top: 40px; /* 可根据需要调整顶部间距 */
    margin-bottom: 20px; /* 可根据需要调整底部间距 */
}
.view-more-btn:hover {
	 background-color: #ffffff;
    border: 1px solid #dddddd;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #333;
}
/* 纯文字文荐列表样式 */
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cases-container {
  max-width: 1600px;
  margin: 0 auto 3rem;
  padding: 0 16px;
}

/* 纯文字文章卡片样式（核心调整） */
.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(147, 179, 252, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* 宽度适配：大屏幕两列，小屏幕单列 */
  width: calc(50% - 15px);
  /* 避免卡片因内容过少而高度不一（可选，根据需求调整） */
  display: flex;
  flex-direction: column;
}

/* 文章内容区域：控制高度核心 */
.article-content {
  padding: 20px 24px; /* 缩减内边距（原30px，减少约30%） */
  flex-grow: 1; /* 内容区域自动填充，但通过子元素限制高度 */
}

/* 标题样式：限制行数，避免过长 */
.article-card h3 {
  font-size: 18px; /* 适中字体大小 */
  line-height: 1.4; /* 紧凑行高，减少纵向占用 */
  font-weight: 600;
  margin: 0 0 12px 0; /* 缩减底部间距 */
  /* 最多显示2行，超出省略（避免标题过长撑高卡片） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 描述文本：控制显示行数，核心控高 */
.article-card .description {
  font-size: 14px; /* 适中字体，增强阅读性 */
  line-height: 1.6; /* 舒适行高（1.5-1.6最佳阅读范围） */
  color: #545b66;
  margin: 0 0 16px 0; /* 缩减间距 */
  /* 最多显示3行（大屏）/2行（小屏），避免文本过长 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 悬停效果保留（增强交互） */
.article-card:hover {
  transform: translateY(-5px); /* 适度上浮（原8px，减少高度变化） */
  box-shadow: 0 8px 25px rgba(147, 179, 252, 0.2);
}

/* 元信息区域（时间、作者等）：紧凑布局 */
.article-meta {
  display: flex;
  justify-content: space-between;
  font-size:14px; /* 缩小字体，减少高度 */
  line-height: 1.5;
  color: #545b66;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  margin: 0; /* 清除默认margin，避免额外高度 */
}

.time {
  font-size:14px;
  line-height: 1.5;
  color: #545b66;
  margin: 0; /* 清除默认margin */
}

/* 响应式适配：不同设备调整显示 */
/* 平板及以下（768px以下） */
@media (max-width: 768px) {
  .article-card {
    width: 100%; /* 单列显示，充分利用宽度 */
  }
  .article-content {
    padding: 16px 20px; /* 进一步缩减内边距 */
  }
  .article-card h3 {
    font-size: 1rem; /* 缩小标题字体 */
    -webkit-line-clamp: 2; /* 保持2行标题 */
  }
  .article-card .description {
    -webkit-line-clamp: 2; /* 小屏显示2行描述，控制高度 */
    font-size:14px;
  }
  .article-meta {
    flex-direction: column; /* 元信息垂直排列，节省宽度 */
    gap: 4px; /* 增加垂直间距，避免拥挤 */
  }
}

/* 大屏（1200px以上） */
@media (min-width: 1200px) {
  .article-card {
    width: calc(50% - 15px); /* 保持两列 */
  }
  /* 可根据需求增加最大宽度，避免卡片过宽影响阅读 */
  .article-card {
    max-width: 800px;
    margin: 0 auto; /* 居中显示，避免两侧过宽 */
  }
}