/* 主容器样式 */
.container
{
	max-width: 980px;
	margin: 0 auto 10px;
	background: white;
	/*border-radius: 12px;*/
	border-radius: 0 0 12px 12px !important; /* 只保留底部圆角: 左下、右下 */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
}

/* 标题样式 */
.title
{
	/*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	background: linear-gradient(135deg, #889cf3 0%, #a07bc5 100%);
	color: white;
	padding: 20px 20px;
	text-align: center;
	font-size: 2.2em;
	font-weight: 600;
	letter-spacing: 1px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
}


.title::before
{
	content: '';
	position: absolute;
	/*top: 0;*/
	bottom: 0; /* 将动画效果移到底部 */
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
	background-size: 400% 400%;
	animation: gradientShift 3s ease infinite;
}

/* 时间样式 */
.shijian
{
	display: block;
	text-align: center;
	color: #666;
	font-size: 0.9em;
	margin: 10px 0 20px 0;
	font-style: italic;
	padding: 8px;
	background-color: #f8f9fa;
	border-radius: 0; /* 移除圆角 */
}

@keyframes gradientShift
{
	0%
	{ background-position: 0% 50%; }
	50%
	{ background-position: 100% 50%; }
	100%
	{ background-position: 0% 50%; }
}

/* 分隔线样式 */
hr
{
	border: none;
	height: 2px;
	background: linear-gradient(to right, transparent, #e0e0e0, transparent);
	margin: 0;
}

/* 内容区域样式 */
.content
{
	padding: 0 40px 40px;
	line-height: 1.8;
	font-size: 16px;
	color: #444;
	background: white;
	min-height: 400px;
	text-align: left; /* 添加这行来确保内容左对齐 */
}

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6
{
	color: #2c3e50;
	margin: 20px 0 15px 0;
	font-weight: 600;
}

.content h1
{
	font-size: 1.8em;
	border-bottom: 3px solid #667eea;
	padding-bottom: 10px;
}

.content h2
{
	font-size: 1.6em;
	border-bottom: 2px solid #764ba2;
	padding-bottom: 8px;
}

.content h3
{
	font-size: 1.4em;
}

.content p
{
	margin: 15px 0;
	text-indent: 2em;
}

.content img
{
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin: 15px auto; /* 修改：左右自动居中 */
	display: block; /* 添加：使图片成为块级元素 */
}

.content ul, .content ol
{
	padding-left: 30px;
	margin: 15px 0;
}

.content li
{
	margin: 8px 0;
	line-height: 1.6;
}

.content table
{
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.content th, .content td
{
	padding: 12px 15px;
	text-align: left;
	border: 1px solid #e0e0e0;
}

.content th
{
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	font-weight: 600;
}

.content tr:nth-child(even)
{
	background-color: #f8f9fa;
}

.content tr:hover
{
	background-color: #e3f2fd;
}

.content a
{
	color: #667eea;
	text-decoration: none;
	transition: all 0.3s ease;
}

.content a:hover
{
	color: #764ba2;
	text-decoration: underline;
}

.content strong
{
	font-weight: 600;
	color: #2c3e50;
}

.content em
{
	font-style: italic;
	color: #666;
}

.content blockquote
{
	border-left: 5px solid #667eea;
	background-color: #f8f9ff;
	padding: 15px 20px;
	margin: 20px 0;
	font-style: italic;
	color: #555;
}

/* 响应式设计 */
@media (max-width: 768px)
{
	.container
	{
		margin: 10px;
		border-radius: 0;
	}
	
	.title
	{
		padding: 20px;
		font-size: 1.8em;
	}
	
	.content
	{
		padding: 20px;
		font-size: 14px;
	}
}

/* 动画效果 */
.content
{
	animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp
{
	from
	{
		opacity: 0;
		transform: translateY(30px);
	}
	to
	{
		opacity: 1;
		transform: translateY(0);
	}
}

/* 滚动条样式 */
::-webkit-scrollbar
{
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track
{
	background: #f1f1f1;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb
{
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover
{
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
