body {
	margin: 0;
	padding: 15px;
	background: #070c2a;
	color: #ffffff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	min-height: 100vh;
	box-sizing: border-box;
}

.news-list-page {
	max-width: 100%;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* 箭头靠左，标题居中 */
	margin-bottom: 15px;
	position: relative;
}

.back-link {
	width: 22px;
	height: 22px;
	margin-right: auto;
}

.page-title {
	font-size: 1.4rem;
	margin: 0;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	/* 居中标题 */
	white-space: nowrap;
	/* 防止标题换行 */
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-item {
	display: flex;
	gap: 10px;
	padding: 10px;
	background: #4a4e69;
	border-radius: 8px;
	align-items: center;
	min-height: 100px;
}

.cover-image {
	/* width: 90px;
			height: 54px; */
	width: 130px;
	height: 90px;
	background: #6d727f;
	border-radius: 4px;
	flex-shrink: 0;
}

.news-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: space-between;
	height: 90px;
}

.news-title {
	font-size: 1rem;
	margin: 0;
	color: #ffffff;
	line-height: 1.4;
	text-align: left;
	/* 标题左对齐，与箭头同级 */

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.publish-time {
	font-size: 0.8rem;
	color: #b0b8d1;
	margin: 0;
}

/* 手机端优化 */
@media (max-width: 480px) {
	body {
		padding: 10px;
	}

	.page-title {
		font-size: 1.2rem;
	}

	.news-item {
		padding: 8px;
		min-height: 90px;
		/* 手机端最小高度调整为 90px */
	}

	.cover-image {
		/* width: 80px;
				height: 48px; */
		width: 130px;
		height: 90px;
	}

	.news-title {
		font-size: 1rem;
	}

	.publish-time {
		font-size: 0.75rem;
	}
}
