/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #fbf9fe;
	max-width: 900px;
	margin: 0 auto;
	color: #333;
	line-height: 1.6;
}

/* 顶部导航栏 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 900px;
	margin: 0 auto;
	height: 44px;
	background: #1d40f3;
	display: flex;
	align-items: center;
	padding: 0 15px;
	z-index: 100;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.back-btn {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}
.back-btn img {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
.header-title {
	flex: 1;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
}

/* 文章列表 */
.article-list {
	margin-top: 44px;
	margin-bottom: 60px;
	padding: 15px;
}
.article-item {
	margin-bottom: 15px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.article-link {
	display: flex;
	text-decoration: none;
	color: inherit;
	padding: 12px;
}
.article-image {
	width: 120px;
	height: 90px;
	border-radius: 6px;
	object-fit: cover;
	border: 1px solid #eee;
	flex-shrink: 0;
}
.article-content {
	flex: 1;
	margin-left: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.article-title {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-meta {
	font-size: 13px;
	color: #999;
}
.article-author {
	margin-bottom: 5px;
}

/* 分页样式 */
.pagination-container {
	margin: 20px 15px;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.pager-summary {
	font-size: 14px;
	color: #666;
}
.pager-summary em {
	font-style: normal;
	color: #1d40f3;
	font-weight: bold;
}
.pagination {
	display: flex;
	list-style: none;
	gap: 5px;
}
.pagination li a {
	display: block;
	padding: 5px 10px;
	background: #f5f5f5;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
}
.pagination li.active  a,
.pagination li a:hover {
	background: #1d40f3;
	color: white;
}

/* 底部导航 - 保持与前面页面一致 */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	max-width: 900px;
	margin: 0 auto;
	z-index: 100;
	padding: 5px 0;
}
.nav-list {
	display: flex;
	justify-content: space-around;
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #666;
	width: 100%;
}
.nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	width: 100%;
}
.nav-icon {
	width: 24px;
	height: 24px;
	margin-bottom: 3px;
}
.nav-text {
	font-size: 12px;
	line-height: 1.2;
}
.nav-item.active  a {
	color: #02c88d;
}

/* 响应式调整 */
@media (max-width: 375px) {
	.article-image {
		width: 100px;
		height: 75px;
	}
	.article-title {
		font-size: 15px;
	}
	.pagination-container {
		flex-direction: column;
		gap: 10px;
	}
}