/* 顶部容器 */
.top-bar {
	height: 85px;
	font-size: 16px;
	background-color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* search 容器：水平排列并使用 flex 对齐 */
.search {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	line-height: 60px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 15px;          /* 控件之间的间距 */
	height: 100%;       /* 继承父容器高度，使 line-height 生效或 flex 垂直居中 */
}

/* 筛选文字样式 */
.filter-label {
	font-weight: 500;
	color: #333;
	white-space: nowrap;
}

/* select 控件统一样式 */
select {
	padding: 8px 12px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s;
	width: 256px;
}

select:hover {
	border-color: #aaa;
}

select:focus {
	border-color: #007bff;
}

.article-list-area {
	width: 100%;
	background-color: #FFF;
}

.article-list-outer {
	width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.article-list-content {
	width: 1300px;
	margin-left: 100px;
	text-align: left;
	border: 1px solid #FFF;
	padding-bottom: 40px;  /* 底部留白 */
}

.article-list-content h1 {
	margin-top: 70px;
}

.article-list-content hr {
	margin-top: 30px;
	width: 1200px;
	border: none;
	border-top: 1px solid #e0e0e0;
}

/* ========== article-info 样式 ========== */
.article-info {
	margin-top: 40px;
	display: flex;
	gap: 40px;           /* 图片与文字间距 */
	align-items: flex-start;  /* 顶部对齐 */
}

/* 左侧图片容器 */
.article-image {
	flex-shrink: 0;      /* 防止被压缩 */
	width: 400px;
	height: 260px;
	overflow: hidden;
	border-radius: 8px;
	background-color: #f0f0f0;
}

.article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;    /* 图片裁剪填充，保持比例 */
	display: block;
}

/* 右侧文字块 */
.article-text {
	flex: 1;              /* 占据剩余空间 */
	display: flex;
	flex-direction: column;
	gap: 16px;           /* 标题与内容间距 */
}

.article-title {
	font-size: 32px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
	margin-top: 85px;
}

.article-title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s;
}

.article-title a:hover {
	color: #007bff;
}

.article-description {
	font-size: 22px;
	line-height: 1.6;
	color: #475569;
	margin: 0;
}

/* ========== 分页样式 ========== */
.pagination {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 14px;
	color: #555;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
}

.pagination a:hover {
	background-color: #ff6700;
	border-color: #ff6700;
	color: #fff;
}

.pagination .active {
	background-color: #ff6700;
	border-color: #ff6700;
	color: #fff;
	cursor: default;
}

.pagination .disabled {
	color: #ccc;
	cursor: not-allowed;
	pointer-events: none;
}

.pagination .ellipsis {
	border: none;
	cursor: default;
}


/* 可选：响应式，当屏幕宽度小于1200px时让search宽度自适应 */
@media (max-width: 1200px) {
	.search {
		width: 100%;
		padding: 0 20px;
	}
}

/* 可选：响应式适配 */
@media (max-width: 1400px) {
	.article-list-outer {
		width: 100%;
		padding: 0 20px;
	}
	.article-list-content {
		width: 100%;
		margin-left: 0;
	}
	.article-list-content hr {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.article-info {
		flex-direction: column;
	}
	.article-image {
		width: 100%;
		height: auto;
	}
	.article-image img {
		height: auto;
	}
}