.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 left,transparent 40%,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:3rem auto ;
	padding:0 16px;
}
.btn {
	display:inline-block;
	padding:0.5rem 1rem;
	border-radius:0.375rem;
	font-weight:500;
	text-decoration:none;
	transition:all 0.2s ease;
	font-size: 1.2rem;
}
.btn-primary {
	background-color:#93b3fc;
	color:white;
}
.btn-primary:hover {
	background-color:#0E42B3;
	color: #fff;
}
.charger-info-wrapper {
width: 40%;
padding: 20px 0px;
margin-left:-4%;
 
 }
.charger-title {
text-align: left; /* 基础左对齐设置 */
color: #fff;
font-weight: 900;
font-size: 3rem;
line-height: 3.8rem;
padding: 0 clamp (1rem, 3vw, 2rem);
margin: 0 0 2rem;
}
.charger-spec {
font-size: 1.6rem;
line-height: 3.5rem;
color: #fff;
font-weight: 600;
padding: 0 clamp (1rem, 3vw, 2rem);
margin: clamp (0.5rem, 2vw, 1.5rem) 0;
text-align: left; /* 基础左对齐设置 */
}
/* 超小屏幕（手机竖屏）优化 */
@media (max-width: 360px) {
.charger-title {
line-height: 1.3;
}
}
/* 平板及小屏设备（≤980px）优化 */
@media (max-width: 980px) {
.charger-info-wrapper {
width: 100%;
left: 0%;
padding: 20px 0px;
margin-left: 0; / 小屏取消左移，避免内容溢出屏幕左侧 */
}
.charger-title {
padding: 250px 0px;
font-size: 2rem;
}
.charger-spec {
display: none;
}
}
/* 大屏设备（电脑端，≥1200px）优化 */
@media (min-width: 1200px) {
.charger-info-wrapper {
margin-left: -4%; / 电脑端保留左移 3%，强化左对齐 /
}
.charger-title {
padding-left: clamp(2rem, 5vw, 4rem); / 增加左侧缩进，与左移配合更协调 /
}
.charger-spec {
padding-left: clamp(2rem, 5vw, 4rem); / 与标题左侧对齐 */
}
}
/* 中等屏幕（981px-1199px，如笔记本电脑）过渡优化 */
@media (min-width: 981px) and (max-width: 1199px) {
.charger-info-wrapper {
margin-left: -3%; / 保持左移 3% 的左对齐设计 /
width: 85%; / 适当加宽，适配笔记本屏幕 /
}
.charger-title {
padding-left: clamp(1.5rem, 4vw, 3rem); / 适中的左侧缩进 /
}
.charger-spec {
padding-left: clamp(1.5rem, 4vw, 3rem); / 与标题对齐 /
display: block; / 恢复显示规格信息 */
}
}
h2 {
	font-size:3rem;
	font-weight:bold;
	margin-bottom:1rem;
}
h3 {
	font-size:3rem;
	font-weight:bold;
	margin-bottom:1rem;
}
h4 {
	font-size:1.6rem;
	font-weight:bold;
	font-weight:bold;
	margin-bottom:0.5rem;
}
p {
	font-size:1.2rem;
	color:#4b5563;
	line-height:1.6;
}
@media(max-width:767px){
h3 {
    font-size: 1.8rem;
    font-weight: bold;
    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;
}
/* 头部筛选区域样式 */
    .filter-header {
	display:flex;
	flex-direction:column;
	/* 垂直排列筛选项 */
    gap:20px;
	/* 筛选项之间的间距 */
    padding:20px 0;
	background-color:#fff;
	box-shadow:0 2px 5px rgba(0,0,0,0.1);
	margin-bottom:3rem;
}
.filter-item {
	display:flex;
	flex-wrap:wrap;
	/* 允许筛选选项换行 */
            align-items:center;
	gap:10px;
	/* 筛选标签与选项之间的间距 */
            padding:0px 20px;
}
.filter-label {
	font-weight:bold;
	color:#333;
	min-width:80px;
	/* 确保标签宽度一致 */
            font-size:1.2rem;
}
.filter-option {
	padding:8px 15px;
	border-radius:4px;
	border:1px solid #ddd;
	background-color:#fff;
	cursor:pointer;
	transition:all 0.3s ease;
}
.filter-option.active {
	background-color:#8BC34A;
	color:white;
	border-color:#8BC34A;
}
.filter-option:hover:not(.active) {
	background-color:#f9f9f9;
}
/* 主标题样式 */
  .page-title {
	text-align:center;
	padding:20px 0;
	font-size:28px;
	font-weight:bold;
	position:relative;
	margin-bottom:30px;
}
.page-title:after {
	content:"";
	position:absolute;
	bottom:-10px;
	left:50%;
	transform:translateX(-50%);
	width:60px;
	height:3px;
	background-color:#8BC34A;
}
/* 产品网格布局 */
/* 产品网格布局 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 22vw, 350px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

/* 产品卡片样式 */
.product-card {
  background-color: #ffffff;
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  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-image-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center; /* 水平居中图片 */
    align-items: center; /* 垂直居中图片 */
    cursor: pointer;
    aspect-ratio: 4/3; /* 设置容器宽高比为4:3，可根据需要调整 */
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 覆盖容器，可能会裁剪图片 */
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* 产品信息区域 */
.product-info {
  padding: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  color: #333;
}

.product-power {
  color: #666;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.product-features {
  color: #666;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  flex-grow: 1;
}

/* 产品列表样式 */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(280px, 45vw, 500px), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.product-card-image {
  aspect-ratio: 16 / 9;
  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: clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.product-description {
  flex-grow: 1;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid #e5e7eb;
}

.product-card-footer span {
  font-weight: 500;
  color: #6b7280;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.btn-primary {
  background-color: #93b3fc;
  color: white;
}

.btn-primary:hover {
  background-color: #0E42B3;
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
  .product-grid,
  .products-container {
    grid-template-columns: 1fr;
  }
}
/* 特性列表样式 */
       .features-container {
	display:grid;
	grid-template-columns:1fr;
	gap:1rem;
	margin-bottom:2rem;
}
@media (min-width:768px) {
	.features-container {
	grid-template-columns:repeat(3,1fr);
}
}.feature-item {
	background-color:#f3f4f6;
	border-radius:0.5rem;
	padding:1rem;
	display:flex;
	align-items:center;
}
.feature-item i {
	color:#93b3fc;
	font-size:1.5rem;
	margin-right:1rem;
}
.feature-item h4 {
	font-size:1rem;
	margin-bottom:0.25rem;
}
.feature-item p {
	font-size:0.875rem;
	color:#4b5563;
}
/* 查看更多按钮样式 */
      .view-more-btn {
	display:block;
	width:100%;
	max-width:160px;
	margin:2rem auto 0;
	padding:1.5rem 1.5rem;
	background-color:#93b3fc;
	color:white;
	border:none;
	border-radius:0.5rem;
	font-size:1.2rem;
	font-weight:medium;
	cursor:pointer;
	text-align:center;
	transition:background-color 0.3s ease;
}
.view-more-btn:hover {
	background-color:#2563eb;
	color:#fff;
}
/* 纯文字文荐列表样式 */
    .news-container {
	display:flex;
	flex-wrap:wrap;
	gap:30px;
}
.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);
}
.article-card:hover {
	transform:translateY(-8px);
	box-shadow:0 8px 25px rgba(147,179,252,0.2);
}
/* 文章内容样式 */
     .article-content {
	padding:30px;
}
.article-title {
	font-size:20px;
	font-weight:bold;
	margin-bottom:15px;
	color:#333;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}
.article-meta {
	display:flex;
	justify-content:space-between;
	color:#999;
	font-size:14px;
	padding-top:15px;
	border-top:1px solid #f0f0f0;
}
.time {
	color:#93b3fc;
	/* 时间使用主色 */
            font-size:16px;
}
/* 响应式调整 */
 @media (max-width:1200px) {
	.article-card {
	width:100%;
}
.article-meta {
        flex-direction: column; /* 垂直排列元素 */
        font-size: 12px;        /* 减小字体大小 */
        padding-top: 10px;      /* 减小顶部内边距 */
    }
    .time{
        margin-bottom: 1rem;
    }
}