body {
    font-family: Arial, sans-serif;
    padding: 20px; /* 添加整体内边距 */
    animation: fadeInAnimation 0.5s ease-in; /* 添加页面进入动画 */
  }
  
  @keyframes fadeInAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  header {
    text-align: left; /* 将按钮文本左对齐 */
    margin-bottom: 20px; /* 底部外边距 */
  }
  header a {
    display: inline-block; /* 将链接元素转换为块级元素 */
    padding: 10px 20px; /* 添加内边距 */
    background-color: #f2f2f2; /* 设置背景颜色 */
    color: #333; /* 设置文本颜色 */
    text-decoration: none; /* 去掉下划线 */
    border-radius: 5px; /* 添加圆角边框 */
    transition: background-color 0.3s ease; /* 添加过渡效果 */
  }
  
  header a:hover {
    background-color: #e2e2e2; /* 鼠标悬停时的背景颜色 */
  }
  
  .article {
    border: 1px solid #ccc; /* 设置边框样式 */
    padding: 20px; /* 添加内边距 */
    margin-bottom: 20px; /* 添加底部外边距 */
  }
  .article h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .article .meta {
    color: #666;
    margin-bottom: 10px;
  }
  .article p {
    line-height: 1.6;
  }
  