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-detail-page {
	max-width: 100%;
}

.header {
	display: flex;
	align-items: center;
	justify-content: center;
	/* 箭头靠左，标题居中 */
	margin-bottom: 15px;
	position: relative;
}

.back-link {
	width: 22px;
	height: 22px;
	margin-right: auto;
	position: absolute;
	left: 0;
}

.page-title {
	font-size: 1.4rem;
	margin: 0;
	text-align: center;
	max-width: 80%;
	/* position: absolute;
			left: 50%;
			transform: translateX(-50%);
		
			white-space: nowrap; */
}

.page-subtitle {
	font-size: 1.1rem;
	margin: 0 0 15px;
	text-align: center;
	color: #b0b8d1;
}

.cover-image {
	width: 100%;
	max-width: 360px;
	height: auto;
	max-height: 180px;
	object-fit: cover;
	border-radius: 8px;
}

.publish-time {
	font-size: 0.8rem;
	margin-bottom: 20px;
	text-align: center;
	color: #b0b8d1;
}

.paragraphs {
	margin-bottom: 20px;
}

.paragraph-item {
	margin-bottom: 12px;
	padding: 10px;
	border-radius: 4px;
}

.paragraph-item p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	text-indent: 4ch;
	/* 段落缩进 2 个字符 */
}

.images {
	margin-bottom: 20px;
	text-align: center;
	/* 图片和简介容器居中 */
}

.image-item {
	margin-bottom: 15px;
	display: inline-block;
	/* 确保居中效果 */
	text-align: center;
	/* 图片和简介居中 */
	width: 100%;
	/* 确保图片项占满可用宽度 */
}

.image-title {
	font-size: 0.9rem;
	color: #ffffff;
	margin: 0 0 5px;
	text-indent: 4ch;
	/* 图片标题缩进 2 个字符 */
	text-align: left;
	/* 图片标题左对齐 */
	display: block;
	/* 确保作为块级元素 */
}

.content-image {
	width: 100%;
	max-width: 320px;
	height: auto;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 5px;
}

.image-caption {
	font-size: 0.8rem;
	color: #b0b8d1;
	margin: 0;
	display: block;
	/* 确保简介作为块级元素居中 */
	text-align: center;
	/* 保持居中 */
	line-height: 1.5;
	/* 提高可读性 */
}

/* 手机端优化 */
@media (max-width: 480px) {
	body {
		padding: 10px;
	}

	.page-title {
		font-size: 1.2rem;
	}

	.page-subtitle {
		font-size: 0.95rem;
	}

	.publish-time {
		font-size: 0.75rem;
	}

	.paragraph-item p {
		font-size: 0.9rem;
	}

	.image-title {
		font-size: 0.85rem;
	}

	.content-image {
		max-width: 100%;
	}

	.image-caption {
		font-size: 0.75rem;
	}
}
