 :root{
      /* 品牌色彩保持不变 */
      --brand-primary: #3b82f6;      /* 主蓝色 */
      --brand-secondary: #8b5cf6;    /* 辅助紫色 */
      --brand-gradient: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
      --accent: #f97316;             /* 亮橙色用于突出按钮和交互元素 */
      --accent-hover: #ea580c;
      --ink: #0f172a;                 /* 深色文字 */
      --muted: #64748b;               /* 次级文字 */
      --light-muted: #94a3b8;         /* 更浅的文字 */
      --bg-dark: #0f172a;             /* 顶部/底部深色 */
      --bg-light: #f8fafc;            /* 浅色背景 */
      --card: #ffffff;                /* 白卡片 */
      --border: #e2e8f0;              /* 边框色 */
      --radius: 12px;
      --shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.05);
      --shadow-hover: 0 20px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
      --maxw: 1600px; /* 进一步增加最大宽度 */
      --transition: all 0.3s ease;
    }
    *{box-sizing:border-box}
    html,body{margin:0;height:100%;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,"Helvetica Neue",Arial,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;color:var(--ink);background:var(--bg-light);scroll-behavior: smooth;}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block;border-radius:var(--radius);}
    .container{max-width:var(--maxw);margin:0 auto;padding:0 20px}

    /* 顶部导航 - 保持不变 */
    header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(12px);border-bottom:1px solid var(--border);transition: var(--transition);}
    header.scrolled {box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);}
    .nav{display:flex;align-items:center;justify-content:space-between;height:72px}
    .logo{display:flex;gap:10px;align-items:center;font-weight:800;letter-spacing:.3px;font-size:1.25rem;color:var(--brand-primary);}
    .logo .dot{width:12px;height:12px;background:var(--brand-gradient);border-radius:50%}
    nav ul{display:flex;gap:32px;list-style:none;margin:0;padding:0}
    nav a{font-size:15px;color:var(--ink);font-weight:500;position:relative;padding:5px 0;transition: var(--transition);}
    nav a:hover{color:var(--brand-primary);}
    nav a:after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--brand-gradient);transition: var(--transition);}
    nav a:hover:after{width:100%;}
    .cta{display:inline-flex;align-items:center;gap:10px;background:var(--accent);color:#fff;padding:10px 20px;border-radius:999px;box-shadow:0 4px 6px -1px rgba(249, 115, 22, 0.2);font-weight:500;transition: var(--transition);}
    .cta:hover{transform:translateY(-2px);background:var(--accent-hover);box-shadow:0 10px 15px -3px rgba(249, 115, 22, 0.2);}

    /* 面包屑导航 - 保持 */
    .breadcrumb {
      padding: 20px 0;
      font-size: 14px;
      color: var(--muted);
      background: var(--bg-light);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb-container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .breadcrumb a {
      color: var(--muted);
      transition: var(--transition);
    }
    .breadcrumb a:hover {
      color: var(--brand-primary);
    }
    .breadcrumb span.separator {
      color: var(--light-muted);
    }
    .breadcrumb span.current {
      color: var(--ink);
      font-weight: 500;
    }

    /* 主要内容区域 */
    .main-content {
      padding: 60px 0;
      background: var(--bg-light);
    }
    .content-wrapper {
      display: block; /* 单列布局 */
    }
    
    /* 文章内容区域 - 加宽处理 */
    .article-content {
      background: var(--card);
      border-radius: var(--radius);
      padding: 50px; /* 增加内边距 */
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      max-width: 1100px; /* 大幅增加内容最大宽度 */
      margin: 0 auto; /* 居中显示 */
    }
    
    .article-header {
      margin-bottom: 30px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 20px;
      text-align: center;
    }
    
    .article-title {
      font-size: 36px; /* 增大标题 */
      line-height: 1.3;
      margin: 0 0 15px;
      color: var(--ink);
    }
    
    .article-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 15px;
      color: var(--light-muted);
      font-size: 14px;
      margin-bottom: 20px;
    }
    
    .article-category {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 500;
      background: #e0e7ff;
      color: #3b82f6;
    }
    
    .article-image {
      margin: 0 auto 30px;
      border-radius: var(--radius);
      overflow: hidden;
      max-width: 1000px; /* 加宽图片最大宽度 */
    }
    
    .article-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    
    .article-body {
      font-size: 17px;
      line-height: 1.8;
      color: var(--ink);
      max-width: 900px; /* 加宽正文宽度 */
      margin: 0 auto;
    }
    
    .article-body p {
      margin: 0 0 25px;
    }
    
    .article-body h3 {
      font-size: 24px;
      margin: 35px 0 15px;
      color: var(--brand-primary);
    }
    
    .article-body ul {
      margin: 0 0 25px;
      padding-left: 25px;
    }
    
    .article-body li {
      margin-bottom: 12px;
    }
    
    /* 作者信息 */
    .author-box {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 20px;
      background: var(--bg-light);
      border-radius: var(--radius);
      margin: 40px auto;
      max-width: 900px; /* 加宽作者信息区域 */
    }
    
    .author-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    
    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .author-info h4 {
      margin: 0 0 5px;
      font-size: 18px;
    }
    
    .author-bio {
      color: var(--muted);
      font-size: 15px;
      margin: 0 0 10px;
      line-height: 1.6;
    }
    
    .author-social {
      display: flex;
      gap: 10px;
    }
    
    .author-social a {
      color: var(--light-muted);
      transition: var(--transition);
      font-size: 16px;
    }
    
    .author-social a:hover {
      color: var(--brand-primary);
    }
    
    /* 相关文章 - 6篇文章，不带缩略图 */
    .related-articles {
      margin: 60px auto 0;
      max-width: 1100px; /* 加宽相关文章区域 */
    }
    
    .related-title {
      font-size: 22px;
      margin: 0 0 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--brand-primary);
      display: inline-block;
    }
    
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* 加宽相关文章卡片 */
      gap: 25px;
    }
    
    .related-item {
      background: var(--card);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid var(--border);
      padding: 25px;
    }
    
    .related-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: transparent;
    }
    
    .related-content {
      padding: 0;
    }
    
    .related-item-category {
      font-size: 12px;
      color: var(--brand-primary);
      margin: 0 0 8px;
      display: inline-block;
    }
    
    .related-item-title {
      font-size: 18px;
      margin: 0 0 10px;
      transition: var(--transition);
    }
    
    .related-item:hover .related-item-title {
      color: var(--brand-primary);
    }
    
    .related-item-date {
      font-size: 13px;
      color: var(--light-muted);
    }
    
    /* 底部 - 保持不变 */
    footer{background:var(--bg-dark);color:#e2e8f0;padding:80px 0 40px;position:relative;}
    footer:before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:8px;
      background:var(--brand-gradient);
    }
    .foot{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:40px;}
    .foot-col h4{margin:0 0 20px;font-size:18px;color:white;position:relative;display:inline-block;}
    .foot-col h4:after{
      content:'';
      position:absolute;
      bottom:-6px;
      left:0;
      width:30px;
      height:2px;
      background:var(--accent);
    }
    .foot-col p{margin:0 0 16px;line-height:1.7;color:#94a3b8;}
    .contact-info{display:flex;align-items:center;gap:12px;margin-bottom:16px;color:#94a3b8;}
    .contact-info i{color:var(--accent);width:20px;text-align:center;}
    .social-links{display:flex;gap:12px;margin-top:20px;}
    .social-links a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:white;transition: var(--transition);}
    .social-links a:hover{background:var(--accent);transform: translateY(-3px);}
    .foot-nav{display:flex;flex-wrap:wrap;gap:10px 20px;}
    .foot-nav a{color:#94a3b8;transition: var(--transition);}
    .foot-nav a:hover{color:white;}
    .copyright{margin-top:40px;border-top:1px solid rgba(255,255,255,.1);padding-top:24px;color:#94a3b8;font-size:14px;text-align:center;}

    /* 响应式调整 */
    @media (max-width: 1200px) {
      .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }
    }
    
    @media (max-width: 768px) {
      nav ul{display:none}
      .article-title {
        font-size: 28px;
      }
      .article-content {
        padding: 25px;
        max-width: 100%;
      }
      .article-body {
        max-width: 100%;
      }
      .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
      }
    }
    
    @media (max-width: 480px) {
      .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
      }
      .article-body {
        font-size: 16px;
      }
      .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }
	
	
	
	/* 标题样式增强 */
.article-body h2 {
  font-size: 28px;
  margin: 45px 0 20px;
  color: var(--ink);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand-primary);
}

.article-body h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.article-body h3 {
  font-size: 24px;
  margin: 35px 0 15px;
  color: var(--brand-primary);
  position: relative;
  padding-left: 16px;
}

.article-body h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* 简化的列表样式 - 保持简洁简洁专业感 */
.article-body ul {
  margin: 0 0 25px;
  padding-left: 24px; /* 稍减内边距 */
}

.article-body ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
  transition: color 0.2s ease; /* 仅保留简单过渡 */
}

.article-body ul li:before {
  content: '•'; /* 使用简洁圆点的圆点 */
  position: absolute;
  left: -16px;
  color: var(--brand-primary); /* 保持品牌色一致性 */
  font-size: 16px;
  line-height: 1; /* 垂直居中对齐 */
}

.article-body ol {
  margin: 0 0 25px;
  padding-left: 28px;
  counter-reset: item;
}

.article-body ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 8px;
}

.article-body ol li:before {
  content: counter(item);
  position: absolute;
  left: -28px;
  color: var(--brand-primary); /* 改为品牌色文字 */
  background: transparent; /* 移除背景色 */
  width: auto; /* 自动宽度 */
  height: auto;
  border-radius: 0; /* 移除圆角 */
  font-size: 14px;
  font-weight: 500; /* 稍加粗 */
  display: inline; /* 改为行内显示 */
  align-items: normal;
  justify-content: normal;
}

/* 悬停效果保持简洁 */
.article-body ul li:hover,
.article-body ol li:hover {
  color: var(--brand-primary);
}

}

/* 表格样式 */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.article-body th,
.article-body td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.article-body th {
  background: var(--brand-gradient);
  color: white;
  font-weight: 600;
}

.article-body tr:last-child td {
  border-bottom: none;
}

.article-body tr:nth-child(even) {
  background: var(--bg-light);
}

.article-body tr:hover {
  background: rgba(59, 130, 246, 0.03);
  transition: background 0.3s ease;
}

/* 响应式表格处理 */
@media (max-width: 768px) {
  .article-body table {
    display: block;
    overflow-x: auto;
  }
  
  .article-body h2 {
    font-size: 24px;
  }
  
  .article-body h3 {
    font-size: 20px;
  }
}


.article-body img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}


