/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, "Microsoft YaHei", sans-serif;
}

/* 页面基础样式 - 高级浅蓝背景 */
body {
	background-color: #eef2ff; /* 极浅蓝背景，柔和不刺眼 */
	color: #333;
	line-height: 1.6;
	padding: 20px;
}

/* 容器 - 1200px宽度 + 居中 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px; /* 圆角更圆润，提升质感 */
	box-shadow: 0 4px 20px rgba(96, 165, 250, 0.08); /* 柔和蓝阴影，更自然 */
	padding: 45px 60px; /* 内边距加大，单列更舒展 */
}

/* 返回按钮样式 - 同步替换为柔和蓝 */
.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background-color: #60a5fa; /* 柔和浅蓝主色 */
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 30px; /* 与标题间距 */
}

.back-btn:hover {
	background-color: #3b82f6; /* 稍深的柔和蓝hover色 */
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(96, 165, 250, 0.2);
}

.back-btn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* 标题样式 - 柔和蓝 */
.title {
	text-align: center;
	color: #4f94cd; /* 柔和钢蓝色 */
	margin-bottom: 45px;
	padding-bottom: 20px;
	border-bottom: 2px solid #dbeafe; /* 浅蓝分割线 */
}

.title h1 {
	font-size: 2.1rem;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

/* 列表容器 - 单列 + 居中限制宽度 */
.product-list {
	list-style: none;
	max-width: 800px;
	margin: 0 auto;
}

/* 通用列表项样式 - 柔和蓝 */
.product-item {
	display: flex;
	align-items: flex-start;
	padding: 22px 20px;
	margin-bottom: 20px;
	background: #f0f7ff; /* 浅蓝底 */
	border-radius: 10px;
	border-left: 5px solid #93c5fd; /* 柔和浅蓝侧边条 */
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 通用列表项hover */
.product-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(96, 165, 250, 0.15);
	background: #dbeafe;
	border-left-color: #60a5fa;
}

/* 列表项 - 灰色系单独样式 */
.product-item.item-5 {
	background: #f5f5f5; /* 浅灰底 */
	border-left: 5px solid #9ca3af; /* 中灰侧边条 */
}

/*列表项hover */
.product-item.item-5:hover {
	background: #e5e7eb; /* 深一点的浅灰 */
	border-left-color: #6b7280; /* 深灰侧边条 */
	box-shadow: 0 6px 15px rgba(107, 114, 128, 0.15); /* 灰色阴影 */
}

/* 通用序号样式 - 柔和蓝 */
.item-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: #60a5fa; /* 柔和浅蓝 */
	color: #ffffff;
	border-radius: 50%;
	font-size: 1.05rem;
	font-weight: 500;
	margin-right: 22px;
	flex-shrink: 0;
}

/*序号 - 灰色系 */
.item-5 .item-number {
	background: #9ca3af; /* 中灰底色 */
}

/* 序号hover */
.product-item.item-5:hover .item-number {
	background: #6b7280; /* 深灰底色 */
}

/* 通用产品名称样式 - 柔和深蓝 */
.item-content {
	flex: 1;
}

.item-content .product-name {
	font-weight: 600;
	color: #4b72b8; /* 柔和藏青蓝 */
	font-size: 1.08rem;
	line-height: 1.7;
}
.item-content .product-name a{
  text-decoration: none;
}

/* 编号5产品名称 - 灰色系 */
.item-5 .product-name {
	color: #4b5563; /* 深灰文字 */
}
/* 20260313 */
.item-5 .product-name a {
	color: #4b5563; /* 深灰文字 */
}

/* 手机端适配 */
@media (max-width: 480px) {
	.container {
		max-width: 100%;
		padding: 25px 18px;
		border-radius: 12px;
	}

	.back-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.title h1 {
		font-size: 1.6rem;
	}

	.product-list {
		max-width: 100%;
	}

	.product-item {
		padding: 15px 12px;
		margin-bottom: 12px;
	}

	.item-number {
		width: 28px;
		height: 28px;
		font-size: 0.9rem;
		margin-right: 18px;
	}

	.item-content .product-name {
		font-size: 0.95rem;
	}
}
