body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
        }
        .highlight {
            color: #f97316;
            font-weight: 600;
        }
        .sidebar {
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 #f1f5f9;
        }
        .sidebar::-webkit-scrollbar {
            width: 6px;
        }
        .sidebar::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background-color: #cbd5e1;
            border-radius: 3px;
        }
        .back-to-top {
            transition: all 0.3s ease;
        }
        .back-to-top:hover {
            transform: translateY(-3px);
        }
        .mobile-menu {
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
        }
        .mobile-menu.active {
            max-height: 500px;
        }
/* 修改后 */
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px; /* 增加内边距 */
}

.main-content {
  width: 100%; /* 强制占满容器宽度 */
  max-width: none; /* 移除最大宽度限制 */
  margin: 0; /* 清除默认外边距 */
  padding: 30px 0; /* 保持纵向间距 */
}

/* 文章内容区域全宽 */
#articleListMode {
  width: 95%;
  max-width: 1200px; /* 与容器同宽 */
  margin: 0 auto; /* 保持居中 */
}

#articleContent {
  width: 95%;
  max-width: 1200px; /* 与列表区同宽 */
  margin: 0 auto;
}
/* 面包屑导航 */
.breadcrumb-nav {
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb-nav a {
  color: #2a6cce;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  color: #1a4c9e;
}

.separator {
  margin: 0 8px;
  color: #999;
}

.article-list-mode,
.article-detail-mode {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 30px;
}

/* 列表模式 */
.page-title {
  font-size: 24px;
  color: #333;
  margin: 0 0 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #2a6cce;
}

.article-item {
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s;
}

.article-item:hover {
  border-left-color: #2a6cce;
  background: #f8faff;
}

.article-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}


.article-item h3 a {
  color: #333;
  text-decoration: none;
}
.article-item {
  padding: 25px 30px; /* 增加内边距 */
  margin-bottom: 25px;
  transition: transform 0.3s; /* 增加悬停动画 */
}

.article-item:hover {
  transform: translateX(10px);
}

.article-item h3 {
  font-size: 1.4rem;  /* 加大标题字号 */
  margin-bottom: 12px;
}

.article-item .meta {
  color: #666;
  font-size: 13px;
  margin-bottom: 10px;
}

.article-item .meta span:not(:last-child)::after {
  content: "•";
  margin: 0 8px;
  color: #ccc;
}

/* 详情模式 */
.article-detail-mode {
  display: none;
  animation: fadeIn 0.3s;
}

.back-button {
  background: #2a6cce;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 25px;
  transition: background 0.3s;
}

.back-button:hover {
  background: #1a4c9e;
}

.article-content img {
  max-width: 100%;  /* 允许图片按原始宽度显示 */
  height: auto;     /* 保持比例 */
  display: block;   /* 避免行内间隙 */
  margin: 25px auto;
}
/* 分页 */
.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination button {
  margin: 0 4px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination button.active,
.pagination button:hover {
  background: #2a6cce;
  color: white;
  border-color: #2a6cce;
}

/* 响应式 */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .article-list-mode,
  .article-detail-mode {
    padding: 20px;
  }

  .page-title {
    font-size: 20px;
  }

  .article-item {
    padding: 15px;
  }
}
/* 分页容器 */
.pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* 分页按钮 */
.pagination button {
  min-width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: #666;
  transition: all 0.3s;
}

/* 当前页样式 */
.pagination button.active {
  background: #2a6cce;
  color: white;
  border-color: #2a6cce;
  transform: scale(1.1);
}

/* 悬停效果 */
.pagination button:hover:not(.active) {
  background: #f5f5f5;
  border-color: #2a6cce;
  color: #2a6cce;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .pagination button {
    min-width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}/* 分页容器 */
.pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* 分页按钮 */
.pagination button {
  min-width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination button.active {
  background: #2a6cce;
  color: white;
  border-color: #2a6cce;
}

.pagination button:hover:not(.active) {
  background: #f5f5f5;
}

.pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.container { width: 100%; margin-right: auto; margin-left: auto; padding-right: 1rem; padding-left: 1rem; }
        @media (min-width: 640px) { .container { max-width: 640px; } }
        @media (min-width: 768px) { .container { max-width: 768px; } }
        @media (min-width: 1024px) { .container { max-width: 1024px; } }
        .flex { display: flex; }
        .grid { display: grid; }
        .hidden { display: none; }
        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .my-4 { margin-top: 1rem; margin-bottom: 1rem; }
        .my-8 { margin-top: 2rem; margin-bottom: 2rem; }
        .my-12 { margin-top: 3rem; margin-bottom: 3rem; }
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-full { border-radius: 9999px; }
        .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        .bg-white { background-color: #fff; }
        .bg-blue-50 { background-color: #eff6ff; }
        .text-gray-500 { color: #6b7280; }
        .text-gray-600 { color: #4b5563; }
        .text-gray-700 { color: #374151; }
        .text-gray-800 { color: #1f2937; }
        .text-blue-500 { color: #3b82f6; }
        .text-blue-600 { color: #2563eb; }
        .text-blue-700 { color: #1d4ed8; }
        .font-bold { font-weight: 700; }
        .font-semibold { font-weight: 600; }
        .font-medium { font-weight: 500; }
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .hover\:bg-blue-100:hover { background-color: #dbeafe; }
        .hover\:text-blue-600:hover { color: #2563eb; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .space-x-2 > * + * { margin-left: 0.5rem; }
        .space-x-3 > * + * { margin-left: 0.75rem; }
        .space-x-6 > * + * { margin-left: 1.5rem; }
        .space-y-2 > * + * { margin-top: 0.5rem; }
        .space-y-4 > * + * { margin-top: 1rem; }
        .space-y-6 > * + * { margin-top: 1.5rem; }
        .max-w-3xl { max-width: 48rem; }
        .min-h-screen { min-height: 100vh; }
        .list-disc { list-style-type: disc; }
        .pl-5 { padding-left: 1.25rem; }
        .sticky { position: sticky; }
        .top-0 { top: 0; }
        .z-50 { z-index: 50; }
        .md\:flex { display: flex; }
        .md\:hidden { display: none; }
        .md\:grid { display: grid; }
        .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        .md\:text-4xl { font-size: 2.25rem; }
        .transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
        .transition-max-height { transition-property: max-height; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
        .transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
        .max-h-0 { max-height: 0; }
        .overflow-hidden { overflow: hidden; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        .max-w-full { max-width: 100%; }
        .h-auto { height: auto; }
        .object-cover { object-fit: cover; }
        .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
        .hover\:scale-102:hover { --tw-scale-x: 1.02; --tw-scale-y: 1.02; }
        
        /* 自定义样式 */
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8fafc;
            color: #334155;
            line-height: 1.6;
        }
        
        .glassmorphism {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .highlight-box {
            background-color: rgba(59, 130, 246, 0.1);
            border-left: 4px solid #3b82f6;
            padding: 1rem;
            border-radius: 0 8px 8px 0;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-menu.active {
            max-height: 300px;
        }
        
        .image-container {
            transition: transform 0.3s ease;
        }
        
        .image-container:hover {
            transform: scale(1.02);
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #3b82f6;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .highlight-box {
            background-color: #eff6ff;
            border-left: 4px solid #3b82f6;
        }
        
        table {
            border-collapse: collapse;
            width: 100%;
        }
        
        th, td {
            border: 1px solid #e2e8f0;
            padding: 12px;
            text-align: left;
        }
        
        th {
            background-color: #f1f5f9;
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            
            .mobile-menu.active {
                transform: translateX(0);
            }
        }