/* 文章模块样式 */

.article-meta {
	padding: 15px 0;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 20px;
	color: #666;
	font-size: 14px;
}

.article-meta span {
	margin-right: 20px;
}

.article-content {
	line-height: 1.8;
	color: #333;
	font-size: 16px;
}

.article-content p {
	margin-bottom: 15px;
}

.article-content img {
	max-width: 100%;
	height: auto;
	margin: 15px 0;
	border-radius: 4px;
}

.article-content h1,
.article-content h2,
.article-content h3 {
	margin: 20px 0 15px 0;
	color: #333;
}

.article-content ul,
.article-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.article-content li {
	margin-bottom: 8px;
}

/* 评论样式 */
.comment-section {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e8e8e8;
}

.comment-list {
	margin-bottom: 30px;
}

.comment-item {
	padding: 15px;
	margin-bottom: 15px;
	background: #f5f5f5;
	border-radius: 8px;
}

.comment-item .comment-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.comment-item .comment-author {
	font-weight: 600;
	color: #333;
}

.comment-item .comment-time {
	color: #999;
	font-size: 12px;
}

.comment-item .comment-content {
	color: #666;
	line-height: 1.6;
}

.comment-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	resize: vertical;
	font-size: 14px;
}

.form-actions {
	margin-top: 10px;
}

/* 工具条 */
.tool-bar {
	display: flex;
	gap: 15px;
	padding: 15px 0;
	border-top: 1px solid #e8e8e8;
	margin-top: 30px;
}

.tool-item a {
	padding: 8px 20px;
	background: #f5f5f5;
	border-radius: 4px;
	color: #666;
	transition: all 0.3s;
}

.tool-item a:hover {
	background: #1890ff;
	color: #fff;
}

