/* 文章整体容器 */
 .article_info {
     padding-top: 160px;
     max-width: 800px; /* 限制最大宽度，避免过宽 */
     margin: 0 auto; /* 居中显示 */
     font-family: '微软雅黑', sans-serif;
     color: #333;
     line-height: 1.6; /* 行高 */
 }

 /* 文章头部 */
 .article_header {
     margin-bottom: 20px; /* 与内容部分的间距 */
     border-bottom: 1px solid #ddd; /* 添加底部边框 */
     padding-bottom: 10px; /* 边框与内容的间距 */
 }

 /* 标题 */
 .article_title {
     font-size: 28px; /* 标题字体大小 */
     font-weight: bold; /* 加粗 */
  	 color: #666; /* 浅灰色 */
     margin: 0 0 10px; /* 上下间距 */
 }

 /* 元数据（作者、时间、来源） */
 .article_meta {
     font-size: 14px; /* 字体大小 */
     color: #666; /* 浅灰色 */
 }

 .article_meta span {
     margin-right: 10px; /* 每个信息之间的间距 */
 }

 .article_meta span::after {
     content: '|'; /* 添加分隔符 */
     margin-left: 10px; /* 分隔符与文字的间距 */
     color: #ccc;
 }

 .article_meta span:last-child::after {
     content: ''; /* 去掉最后一个分隔符 */
 }

 /* 文章内容 */
 .article_content {
     font-size: 16px; /* 正文字体大小 */
     color: #333; /* 正文颜色 */
     margin-top: 20px; /* 与头部的间距 */
 }

 .article_content p {
     text-indent: 2em; /* 首行缩进 */
     margin-bottom: 15px; /* 段落之间的间距 */
 }