/* 面包屑容器 */
.breadcrumb-box {
	margin: 15px auto 0px;
	max-width: 1200px;
}
.layui-breadcrumb a{
	font-size: 16px;
	text-decoration: none;
}

.layui-breadcrumb a:hover{
	color: #2373c8 !important;
}
/* 内容容器 - 白色背景区分 */
.content-container {
	width: 90%;
	max-width: 1200px;
	margin: 20px auto;
	padding: 20px 3%; /* 响应式内边距 */
	background-color: #ffffff; /* 内容区域白色背景（与body浅灰区分） */
	border-radius: 4px; /* 轻微圆角更美观 */
	box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* 轻微阴影增强层次感 */
	box-sizing: border-box; /* 保证padding不超出宽度 */
}
/* 标题样式 */
.article-title {
	text-align: center;
	font-weight: bold;
	margin: 10px 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee; /* 标题下方分隔线 */
	width: 100%;
}

.article-title h2{
	margin-bottom: 10px;
}

.article-time {
	font-size: 14px;
	color: #9b9b9b;
	text-align: right;
}

/* ========== 响应式适配 ========== */
@media (max-width: 750px) {
	.breadcrumb-box {
		display: none;
	}
	.content-container {
		margin-top: 20%;
		padding: 10px 8%;
	}
}