   /* 容器样式 */
    .list-container {
       /* width: 300px;*/
      padding: 20px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* 标题样式 */
    .list-title {
      font-size: 24px;
      font-weight: bold;
      color: #333;
      margin-bottom: 15px;
      text-align: center;
    }

    /* 列表样式 */
    .custom-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* 列表项样式 */
    .custom-list li {
      background-color: #f9fafb;
      padding: 12px;
      margin-bottom: 10px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    /* 图标样式 */
    .custom-list li::before {
      content: "✔️";
      margin-right: 10px;
      color: #10b981;
      font-size: 18px;
    }

    /* 悬停效果 */
    .custom-list li:hover {
      background-color: #e0f2fe;
      transform: translateY(-3px);
    }
 /* 文章整体容器 */
    .article-container {
      max-width: 880px;
      padding: 30px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* 标题样式 */
    .article-title {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      margin: 0;
      line-height: 1.4;
      text-align: center;
    }

    /* 元信息容器样式 */
    .article-meta {
      margin-top: 12px;
      color: #6b7280;
      font-size: 14px;
      text-align: center;
    }

    /* 发布日期和作者信息样式 */
    .article-date {
      margin-right: 15px;
      color: #3b82f6;
    }
    .article-author {
      color: #10b981;
    }

    /* 文章内容样式 */
    .article-content {
      margin-top: 20px;
      font-size: 16px;
      color: #4b5563;
      line-height: 1.8;
      text-align: justify;
    }

    /* 段落间距 */
    .article-content p {
      margin-bottom: 15px;
    }
    
    
      /* 导航条容器样式 */
    .breadcrumb {
        max-width: 880px;
      font-size: 16px;
      background-color: #ffffff;
      padding: 12px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* 链接样式 */
    .breadcrumb a {
      text-decoration: none;
      color: #3b82f6;
      font-weight: bold;
      transition: color 0.3s;
    }

    /* 悬停样式 */
    .breadcrumb a:hover {
      color: #2563eb;
    }

    /* 分隔符样式 */
    .breadcrumb span {
      margin: 0 8px;
      color: #9ca3af;
    }
    
     .spacer {
            height: 20px; /* 设置高度，产生空白区域 */
            
      
  