 /* 全局样式重置 */
 * {
 	margin: 0;
 	padding: 0;
 	box-sizing: border-box;
 	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
 }

 body {
 	background-color: #fff;
 	color: #333;
 	line-height: 1.6;
 }

 .cpzximg {
 	height: 400px;
 }

 .cpzximg img {
 	height: 100%;
 	width: 100%;
 }

 /* 面包屑导航 */
 .canp-breadcrumb {
 	padding: 12px 20px;
 	font-size: 14px;
 	color: #666;
 	max-width: 1200px;
 	margin: 0 auto;
 }

 .canp-breadcrumb a {
 	color: #666;
 	text-decoration: none;
 }

 .canp-breadcrumb a:hover {
 	color: #d9232e;
 }

 .canp-breadcrumb span {
 	margin: 0 4px;
 }

 /* 产品分类导航 */
 .canp-category-nav {
 	max-width: 1200px;
 	margin: 0 auto 30px;
 	display: flex;
 	flex-wrap: wrap;
 	gap: 8px;
 	padding: 0 20px;
 }

 .canp-category-item {
 	padding: 8px 16px;

 	border-radius: 4px;
 	font-size: 14px;
 	color: #666;
 	cursor: pointer;
 	transition: all 0.3s ease;
 }

 .canp-category-item.active {
 	background-color: #d9232e;
 	color: #fff;
 	border-color: #d9232e;
 }

 .canp-category-item:hover:not(.active) {
 	border-color: #d9232e;
 	color: #d9232e;
 }

 /* 产品列表容器 */
 .canp-product-list {
 	max-width: 1400px;
 	margin: 0 auto;
 	padding: 0 20px 60px;
 	display: grid;
 	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
 	gap: 91px;
 }

 /* 产品卡片 */
 .canp-product-card {
 	background-color: #f9f9f9;
 	border-radius: 8px;
 	overflow: hidden;
 	transition: transform 0.3s ease, box-shadow 0.3s ease;
 	display: none;
 	/* 默认隐藏，筛选后显示符合条件的 */
 }

 /* 显示符合条件的产品卡片 */
 .canp-product-card.show {
 	display: block;
 }

 .canp-product-card:hover {
 	transform: translateY(-5px);
 	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .canp-product-img {
 	width: 100%;

 	object-fit: contain;

 	background-color: #fff;
 }

 .canp-product-info {
 	border-top: 1px solid #eee;
 	padding: 16px;
 	position: relative;
 }

 .canp-product-name {
 	font-weight: 700;
 	font-size: 14px;
 	color: #333;
 	margin-bottom: 12px;
 	line-height: 1.4;
 }

 .canp-product-action {
 	position: absolute;
 	right: 16px;
 	bottom: 16px;
 	width: 24px;
 	height: 24px;
 	border-radius: 50%;
 	border: 1px solid #d9232e;

 	color: #fff;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-size: 12px;
 	cursor: pointer;
 	transition: background-color 0.3s ease;
 }

 .canp-product-action:hover {
 	background-color: #b81e27;
 }

 /* 无数据提示 */
 .canp-empty-tip {
 	grid-column: 1 / -1;
 	/* 占满整行 */
 	text-align: center;
 	padding: 60px 0;
 	color: #999;
 	font-size: 16px;
 	display: none;
 }

 .canp-empty-tip.show {
 	display: block;
 }
 @media (max-width: 768px) {
     .fwzc-banner {
        margin-top: 94px;
    }
}

@media (max-width: 480px) {
    .fwzc-banner {
        margin-top: 94px;
    }
    .product-banner-img {
    }
}