/* ===== 基础样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 现代简约配色方案 */
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #2563eb;
  --secondary: #64748b;
  --accent: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* 中性色 */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* 功能色 */
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-500);
  --text-muted: var(--gray-400);
  --bg-primary: #ffffff;
  --bg-secondary: var(--gray-50);
  --border-color: var(--gray-200);
  
  /* 阴影 */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* 圆角 */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-full: 9999px;
  
  /* 过渡 */
  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* 间距 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 站点头部 ===== */
.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 48px;
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.85);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  position: relative;
  transition: transform var(--transition-fast);
}

.site-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition);
}

.site-title:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.site-title:hover::after {
  width: 100%;
}

.site-nav a {
  color: var(--text-secondary);
  margin-left: 28px;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.site-nav a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

/* ===== 站点主体 ===== */
.site-main {
  min-height: calc(100vh - 280px);
  padding-bottom: 64px;
}

/* ===== 页面布局 ===== */
.page-layout {
  display: flex;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 左侧边栏 */
.sidebar {
  width: 200px;
  flex-shrink: 0;
}

.sidebar-section {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 16px;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-icon {
  font-size: 16px;
}

/* 分类导航 */
.category-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
  font-size: 13px;
  border: 1px solid transparent;
}

.category-item:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--border-color);
  transform: translateX(2px);
}

.category-item.active {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--primary);
  font-weight: 500;
}

.category-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.category-name {
  flex: 1;
}

.category-count {
  font-size: 11px;
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.category-item.active .category-count {
  background: var(--primary-light);
  color: var(--primary);
}

/* 主内容区 */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ===== 文章列表 ===== */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-card {
  padding: 20px 24px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.post-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.post-card:hover::before {
  transform: scaleX(1);
}

.post-card .post-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.post-card .post-title a {
  color: var(--text-primary);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--transition);
}

.post-card .post-title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}

.read-more-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.read-more-link:hover {
  color: var(--primary-dark);
}

.post-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.post-meta time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-meta time::before {
  content: '📅';
  font-size: 12px;
}

.post-meta .separator {
  color: var(--gray-300);
}

.post-tags {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.post-tags .tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.post-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 14px;
}

/* ===== 文章详情 ===== */
.post-full {
  max-width: 800px;
  margin: 0 auto;
}

.post-full .post-header {
  margin-bottom: 48px;
  text-align: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}

.post-full .post-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-full .post-meta {
  justify-content: center;
  font-size: 15px;
}

.post-content {
  line-height: 1.9;
  font-size: 16px;
  color: var(--text-primary);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.post-content h1 {
  font-size: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.post-content h2 {
  font-size: 26px;
  position: relative;
  padding-left: 16px;
}

.post-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.post-content h3 {
  font-size: 22px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin-bottom: 20px;
  padding-left: 28px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content li::marker {
  color: var(--primary);
}

.post-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
  position: relative;
}

.post-content blockquote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 48px;
  color: var(--primary-light);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.post-content code {
  padding: 3px 8px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid var(--gray-200);
}

.post-content pre {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--gray-900);
  border-radius: var(--radius-md);
  overflow-x: auto;
  position: relative;
}

.post-content pre::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--error);
  border-radius: 50%;
  box-shadow: -20px 0 0 var(--warning), -40px 0 0 var(--success);
}

.post-content pre code {
  padding: 0;
  background: none;
  border-radius: 0;
  color: #e2e8f0;
  border: none;
  font-size: 14px;
  line-height: 1.7;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 28px 0;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.post-content img:hover {
  transform: scale(1.01);
}

.post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary-light);
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.post-content a:hover {
  text-decoration-color: var(--primary);
  color: var(--primary-dark);
}

.post-content hr {
  margin: 48px 0;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.post-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.post-content th {
  background: var(--gray-50);
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.post-content tr:last-child td {
  border-bottom: none;
}

.post-content tr:hover td {
  background: var(--gray-50);
}

.post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  transition: all var(--transition-fast);
}

.back-link::before {
  content: '←';
  transition: transform var(--transition-fast);
}

.back-link:hover {
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(-4px);
}

.back-link:hover::before {
  transform: translateX(-4px);
}

/* ===== 标签页面 ===== */
.page-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.page-description {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ===== 分页 ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.pagination .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  background: var(--bg-primary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pagination .btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pagination .btn-prev::before {
  content: '←';
}

.pagination .btn-next::after {
  content: '→';
}

.page-info {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
}

.page-current {
  font-weight: 700;
  color: var(--primary);
}

.page-separator {
  color: var(--gray-400);
  margin: 0 var(--space-1);
}

.page-total {
  color: var(--text-muted);
}

/* ===== 站点底部 ===== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--bg-secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-divider {
  color: var(--gray-300);
  margin: 0 8px;
}

.icp-link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.icp-link:hover {
  color: var(--primary);
}

.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.rss-link:hover {
  color: var(--primary);
}

/* ===== 错误页面 ===== */
.error-page {
  text-align: center;
  padding: 80px 24px;
  animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.error-code {
  font-size: 140px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -8px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
 0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.error-page h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.error-page p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 16px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.btn:active::before {
  width: 200px;
  height: 200px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

/* ===== 空状态 ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-color);
}

.empty-state p {
  font-size: 16px;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.empty-state-text {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.25s ease-out forwards;
}

.animate-slideIn {
  animation: slideIn 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 交错动画 */
.post-list .post-card:nth-child(1) { animation-delay: 0.03s; }
.post-list .post-card:nth-child(2) { animation-delay: 0.06s; }
.post-list .post-card:nth-child(3) { animation-delay: 0.09s; }
.post-list .post-card:nth-child(4) { animation-delay: 0.12s; }
.post-list .post-card:nth-child(5) { animation-delay: 0.15s; }
.post-list .post-card:nth-child(6) { animation-delay: 0.18s; }

.post-card {
  opacity: 0;
  animation: fadeInUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .page-layout {
    flex-direction: column;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
  }

  .sidebar-section {
    position: static;
    padding: 12px;
  }

  .category-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .category-item {
    flex: 0 0 auto;
  }

  .category-item:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 16px;
  }
  
  .site-nav a {
    margin: 0 8px;
  }
  
  .post-full .post-title {
    font-size: 26px;
  }
  
  .post-card .post-title {
    font-size: 20px;
  }
  
  .error-code {
    font-size: 100px;
    letter-spacing: -4px;
  }
  
  .post-card {
    padding: 24px;
  }
  
  .page-header {
    padding: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== 滚动条美化 ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ===== 选中文字样式 ===== */
::selection {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-dark);
}

/* ===== 覆盖 animate.css 默认动画时长 ===== */
.animate__animated {
  animation-duration: 0.3s !important;
  animation-fill-mode: both;
}

.animate__fadeIn,
.animate__fadeInUp,
.animate__fadeInDown,
.animate__fadeInLeft,
.animate__fadeInRight {
  animation-duration: 0.3s !important;
}

.animate__slideInLeft,
.animate__slideInRight {
  animation-duration: 0.25s !important;
}

.animate__bounceIn,
.animate__bounceInUp,
.animate__bounceInDown,
.animate__bounceInLeft,
.animate__bounceInRight {
  animation-duration: 0.4s !important;
}

.animate__zoomIn {
  animation-duration: 0.25s !important;
}

.animate__fadeOutRight {
  animation-duration: 0.2s !important;
}

.animate__shakeX {
  animation-duration: 0.4s !important;
}

.animate__pulse {
  animation-duration: 1s !important;
}

.animate__rubberBand {
  animation-duration: 0.5s !important;
}

/* 缩短所有 animation-delay（交错动画延迟） */
[class*="animate__fadeIn"][style*="animation-delay"],
[class*="animate__bounce"][style*="animation-delay"] {
  animation-delay: calc(var(--delay, 0) * 0.5s) !important;
}

/* 覆盖漂浮动画时间 */
@keyframes float {
 0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}

/* 覆盖 spin 动画时间 */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
 0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 辅助类 */
.mt-6 {
  margin-top: 24px;
}

/* 插件 Hook 容器样式 */
.plugin-hook-container {
  display: contents;
}

.plugin-hook-container[data-empty="true"] {
  display: none;
}
