/* 全局样式重置 */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Microsoft YaHei', sans-serif;
	line-height: 1.8;
	color: #333;
	background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
	min-height: 100vh;
}

/* 导航栏样式 */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #2c3e50;
	color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 15px;
}

.left-nav,
.right-nav {
	display: flex;
	align-items: center;
}

.left-nav a,
.right-nav a {
	color: white;
	text-decoration: none;
	margin: 0 15px;
	transition: color 0.3s;
}

.left-nav a:hover,
.right-nav a:hover {
	color: #3498db;
}

.story-container {
	max-width: 2000px;
	margin: 50px auto;
	padding: 40px;
	background-color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

h1 {
	text-align: center;
	margin-bottom: 50px;
	color: #2c3e50;
	font-size: 36px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.story-card {
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	transition: all 0.3s ease;
	border-radius: 10px;
	padding: 20px;
}

.story-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

h2 {
	color: #3498db;
	margin-bottom: 15px;
	font-size: 24px;
}

p {
	color: #7f8c8d;
	font-size: 16px;
	text-indent: 2em;
	/* 首行缩进 */
}

/* 页脚样式 */
footer {
	background-color: #8b2323;
	color: white;
	text-align: center;
	padding: 1rem 0;
	margin-top: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
	header h1 {
		font-size: 2rem;
	}

	.banner h2 {
		font-size: 1.5rem;
	}

	/* 如果有网格布局的功能区 */
	.features {
		grid-template-columns: 1fr;
	}
}

/* 底部容器 */
.footer-container {
	background-color: #333;
	/* 深色背景，贴合设计 */
	color: #fff;
	padding: 40px 20px;
}

.footer-inner {
	max-width: 1200px;
	/* 限制内容宽度，适配不同屏幕 */
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	/* 屏幕缩小时自动换行 */
	justify-content: space-between;
	gap: 30px;
	/* 列之间的间距 */
}

/* 每一块区域（左侧介绍、快速链接等） */
.footer-section {
	flex: 1;
	min-width: 220px;
	/* 保证缩小时不会太窄 */
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #fff;
	font-weight: 600;
}

/* 左侧logo区域 */
.logo {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background-color: #c72e2e;
	/* 模拟红色圆形背景 */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
}

.logo-text {
	font-size: 22px;
	font-weight: bold;
}

.desc {
	line-height: 1.6;
	color: #ccc;
}

/* 链接列表 */
.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 8px;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: #fff;
}

/* 订阅表单 */
.subscribe-form {
	display: flex;
	margin-top: 10px;
}

.subscribe-form input {
	flex: 1;
	padding: 8px 12px;
	border: none;
	outline: none;
	font-size: 14px;
}

.subscribe-form button {
	padding: 0 18px;
	background-color: #c72e2e;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

.subscribe-form button:hover {
	background-color: #a52525;
}

/* 底部版权 & 政策区域 */
.footer-bottom {
	max-width: 1200px;
	margin: 20px auto 0;
	padding-top: 20px;
	border-top: 1px solid #555;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: #999;
}

.policy-links a {
	color: #999;
	text-decoration: none;
	margin-left: 15px;
	transition: color 0.3s;
}

.policy-links a:hover {
	color: #fff;
}