/* 产品中心Banner */
.products-banner {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.products-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.products-banner .banner-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 3rem;
	font-weight: bold;
	text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
	text-align: center;
	width: 100%;
	padding: 0 20px;
	letter-spacing: 2px;
}

.banner-subtitle {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	text-align: center;
	width: 100%;
	padding: 0 20px;
	margin-top: 20px;
	font-weight: 300;
}

/* 面包屑导航 */
.breadcrumb {
	background: #f8f9fa;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

.breadcrumb .w1 {
	display: flex;
	align-items: center;
	font-size: 0.95rem;
	color: var(--light-text);
}

.breadcrumb a {
	color: var(--light-text);
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: var(--primary-color);
}

.breadcrumb .separator {
	margin: 0 10px;
	color: #ccc;
}

.breadcrumb .current {
	color: var(--primary-color);
	font-weight: 600;
}



/* 响应式设计 - 更新Banner部分 */
@media (max-width: 1200px) {
	.products-banner {
		height: 300px;
	}

	.products-banner .banner-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 992px) {
	.products-banner {
		height: 250px;
	}

	.products-banner .banner-title {
		font-size: 2.2rem;
	}

	.banner-subtitle {
		font-size: 1rem;
		margin-top: 15px;
	}
}

@media (max-width: 768px) {
	.products-banner {
		height: 200px;
	}

	.products-banner .banner-title {
		font-size: 1.8rem;
	}

	.banner-subtitle {
		font-size: 0.9rem;
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.products-banner {
		height: 180px;
	}

	.products-banner .banner-title {
		font-size: 1.6rem;
	}

	.banner-subtitle {
		display: none;
	}
}

@media (max-width: 360px) {
	.products-banner .banner-title {
		font-size: 1.4rem;
	}
}