/* 极简主义风格 */
:root {
    --primary: #333333;
    --secondary: #767676;
    --light-bg: #ffffff;
    --border-color: #e0e0e0;
    --highlight: #f5f5f5;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
  
  body {
    background-color: var(--light-bg);
    color: var(--primary);
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* 极简头部 */
  .minimal-header {
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  /* 极简导航 */
  .minimal-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .minimal-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .minimal-nav a:hover {
    color: var(--secondary);
  }
  
  /* 极简内容区 */
  .main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
  }
  
  /* 极简网格布局 */
  .minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  /* 极简卡片 */
  .minimal-card {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .minimal-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .card-image {
    height: 200px;
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .minimal-card:hover .card-image img {
    transform: scale(1.02);
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
  }
  
  .card-desc {
    color: var(--secondary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .card-footer {
    display: flex;
    justify-content: space-between;
    color: var(--secondary);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
  }
  
  /* 极简分类标题 */
  .section-heading {
    margin: 4rem 0 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
  }
  
  /* 极简分页 */
  .minimal-pagination {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    gap: 0.8rem;
  }
  
  .minimal-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .minimal-pagination a:hover {
    background-color: var(--highlight);
  }
  
  /* 极简文章详情 */
  .minimal-article {
    margin: 3rem 0;
  }
  
  .article-header {
    margin-bottom: 2.5rem;
  }
  
  .article-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 400;
  }
  
  .article-subtitle {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
  }
  
  .article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .article-image {
    margin: 2rem 0;
  }
  
  .article-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .article-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .article-body img {
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    display: block;
  }
  
  .article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 3rem auto 0;
  }
  
  .article-navigation a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
  }
  
  .article-navigation a:hover {
    color: var(--secondary);
  }
  
  /* 极简友情链接 */
  .minimal-links {
    margin: 3rem 0;
    max-width: 800px;
    margin: 3rem auto;
  }
  
  .links-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
  }
  
  .links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .links-list a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
  }
  
  .links-list a:hover {
    background-color: var(--highlight);
  }
  
  /* 极简页脚 */
  .minimal-footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
  }
  
  .copyright {
    margin-top: 2rem;
    color: var(--secondary);
    font-size: 0.9rem;
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .minimal-nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .main-container {
      padding: 0 1.5rem;
    }
    
    .minimal-grid {
      grid-template-columns: 1fr;
    }
    
    .article-title {
      font-size: 1.8rem;
    }
    
    .article-meta {
      flex-direction: column;
      gap: 1rem;
    }
  }