/* ========================================
   深空星辰主题 (Space Dark Theme)
   完整覆盖所有页面和组件
   使用 body.theme-space-dark 确保能覆盖到挂载在 body 下的组件（如 Modal、Dropdown 等）
   ======================================== */

/* === 主题变量 === */
body.theme-space-dark {
  --space-dark: #0A0E17;
  --space-blue: #0F1629;
  --nebula-purple: #6366F1;
  --nebula-pink: #EC4899;
  --star-cyan: #22D3EE;
  --star-white: #F1F5F9;
  --text-dim: #94A3B8;  /* 提亮次要文字颜色 */
  --text-muted: #CBD5E1; /* 新增：更亮的弱化文字 */
  --card-bg: rgba(15, 22, 41, 0.8);
  --border-glow: rgba(99, 102, 241, 0.3);
}

/* === 基础样式 === */
body.theme-space-dark,
body.theme-space-dark .app-container,
body.theme-space-dark .ant-layout {
  background: var(--space-dark) !important;
  color: var(--star-white) !important;
  font-family: 'Noto Sans SC', sans-serif !important;
  min-height: 100vh;
}

/* === 星空背景效果 === */
body.theme-space-dark::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* 星星动画 */
body.theme-space-dark .stars-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.theme-space-dark .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* === 导航栏 === */
body.theme-space-dark .ant-layout-header,
body.theme-space-dark header {
  background: rgba(10, 14, 23, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-glow) !important;
  box-shadow: 0 4px 30px rgba(99, 102, 241, 0.1) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

body.theme-space-dark .ant-layout-header .logo,
body.theme-space-dark header a[href="/"] {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* 导航菜单 */
body.theme-space-dark .ant-menu {
  background: transparent !important;
  border: none !important;
}

body.theme-space-dark .ant-menu-horizontal > .ant-menu-item,
body.theme-space-dark .ant-menu-horizontal > .ant-menu-submenu {
  color: var(--text-dim) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-menu-horizontal > .ant-menu-item:hover,
body.theme-space-dark .ant-menu-horizontal > .ant-menu-item-selected,
body.theme-space-dark .ant-menu-horizontal > .ant-menu-submenu:hover {
  color: var(--star-cyan) !important;
  text-shadow: 0 0 20px var(--star-cyan) !important;
}

body.theme-space-dark .ant-menu-horizontal > .ant-menu-item::after,
body.theme-space-dark .ant-menu-horizontal > .ant-menu-submenu::after {
  border-bottom-color: var(--star-cyan) !important;
}

/* === 按钮样式 === */
body.theme-space-dark .ant-btn-primary {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-btn-primary::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
  transition: left 0.5s !important;
}

body.theme-space-dark .ant-btn-primary:hover::before {
  left: 100% !important;
}

body.theme-space-dark .ant-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4) !important;
}

body.theme-space-dark .ant-btn-default {
  background: transparent !important;
  color: var(--star-white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-btn-default:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--star-cyan) !important;
  color: var(--star-cyan) !important;
}

/* === 卡片样式 === */
body.theme-space-dark .ant-card {
  background: var(--card-bg) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 16px !important;
  transition: all 0.4s ease !important;
  overflow: hidden !important;
}

body.theme-space-dark .ant-card:hover {
  transform: translateY(-5px) !important;
  border-color: var(--star-cyan) !important;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2) !important;
}

body.theme-space-dark .ant-card-head {
  background: transparent !important;
  border-bottom: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-card-head-title {
  color: var(--star-white) !important;
  font-weight: 600 !important;
}

body.theme-space-dark .ant-card-body {
  color: var(--star-white) !important;
}

/* === 表格样式 === */
body.theme-space-dark .ant-table {
  background: transparent !important;
}

body.theme-space-dark .ant-table-thead > tr > th {
  background: var(--space-blue) !important;
  color: var(--star-white) !important;
  border-bottom: 1px solid var(--border-glow) !important;
  font-weight: 600 !important;
}

body.theme-space-dark .ant-table-tbody > tr > td {
  background: transparent !important;
  color: var(--star-white) !important;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1) !important;
}

body.theme-space-dark .ant-table-tbody > tr:hover > td {
  background: rgba(99, 102, 241, 0.1) !important;
}

/* === 输入框样式 === */
body.theme-space-dark .ant-input,
body.theme-space-dark .ant-input-affix-wrapper,
body.theme-space-dark .ant-select-selector,
body.theme-space-dark .ant-picker {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-input:focus,
body.theme-space-dark .ant-input-affix-wrapper:focus,
body.theme-space-dark .ant-input-affix-wrapper-focused,
body.theme-space-dark .ant-select-focused .ant-select-selector {
  border-color: var(--star-cyan) !important;
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2) !important;
}

body.theme-space-dark .ant-input::placeholder {
  color: var(--text-dim) !important;
}

/* === 模态框样式 === */
body.theme-space-dark .ant-modal-content {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5) !important;
}

body.theme-space-dark .ant-modal-header {
  background: transparent !important;
  border-bottom: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-modal-title {
  color: var(--star-white) !important;
  font-weight: 600 !important;
}

body.theme-space-dark .ant-modal-close-x {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-modal-close:hover {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-modal-body {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-modal-footer {
  border-top: 1px solid var(--border-glow) !important;
  background: transparent !important;
}

/* === 抽屉样式 === */
body.theme-space-dark .ant-drawer-content {
  background: var(--space-blue) !important;
}

body.theme-space-dark .ant-drawer-header {
  background: var(--space-dark) !important;
  border-bottom: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-drawer-title {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-drawer-body {
  color: var(--star-white) !important;
}

/* === 下拉菜单样式 === */
body.theme-space-dark .ant-dropdown-menu {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

body.theme-space-dark .ant-dropdown-menu-item {
  color: var(--star-white) !important;
  transition: all 0.2s ease !important;
}

body.theme-space-dark .ant-dropdown-menu-item:hover {
  background: rgba(99, 102, 241, 0.2) !important;
  color: var(--star-cyan) !important;
}

/* === 标签样式 === */
body.theme-space-dark .ant-tag {
  background: rgba(99, 102, 241, 0.2) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--nebula-purple) !important;
  border-radius: 6px !important;
}

body.theme-space-dark .ant-tag-blue {
  background: rgba(34, 211, 238, 0.2) !important;
  border-color: rgba(34, 211, 238, 0.4) !important;
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-tag-green {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  color: #10B981 !important;
}

body.theme-space-dark .ant-tag-red,
body.theme-space-dark .ant-tag-pink {
  background: rgba(236, 72, 153, 0.2) !important;
  border-color: rgba(236, 72, 153, 0.4) !important;
  color: var(--nebula-pink) !important;
}

/* === 进度条样式 === */
body.theme-space-dark .ant-progress-bg {
  background: linear-gradient(90deg, var(--nebula-purple), var(--star-cyan)) !important;
}

body.theme-space-dark .ant-progress-inner {
  background: var(--space-blue) !important;
}

/* === 选项卡样式 === */
body.theme-space-dark .ant-tabs-tab {
  color: var(--text-dim) !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-tabs-tab:hover {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: var(--star-cyan) !important;
  text-shadow: 0 0 10px var(--star-cyan) !important;
}

body.theme-space-dark .ant-tabs-ink-bar {
  background: linear-gradient(90deg, var(--nebula-purple), var(--star-cyan)) !important;
}

/* === 列表样式 === */
body.theme-space-dark .ant-list-item {
  border-bottom: 1px solid rgba(99, 102, 241, 0.1) !important;
  color: var(--star-white) !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-list-item:hover {
  background: rgba(99, 102, 241, 0.1) !important;
}

/* === 消息提示样式 === */
body.theme-space-dark .ant-message-notice-content {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
  color: var(--star-white) !important;
  backdrop-filter: blur(20px) !important;
}

/* === 通知样式 === */
body.theme-space-dark .ant-notification-notice {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(20px) !important;
}

body.theme-space-dark .ant-notification-notice-message {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-notification-notice-description {
  color: var(--text-dim) !important;
}

/* === 分页样式 === */
body.theme-space-dark .ant-pagination-item {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 8px !important;
}

body.theme-space-dark .ant-pagination-item a {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-pagination-item-active {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border: none !important;
}

body.theme-space-dark .ant-pagination-item-active a {
  color: white !important;
}

body.theme-space-dark .ant-pagination-prev .ant-pagination-item-link,
body.theme-space-dark .ant-pagination-next .ant-pagination-item-link {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
}

/* === 面包屑样式 === */
body.theme-space-dark .ant-breadcrumb {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-breadcrumb a {
  color: var(--text-dim) !important;
  transition: all 0.3s ease !important;
}

body.theme-space-dark .ant-breadcrumb a:hover {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-breadcrumb-separator {
  color: var(--text-dim) !important;
}

/* === 徽章样式 === */
body.theme-space-dark .ant-badge-count {
  background: linear-gradient(135deg, var(--nebula-pink), var(--nebula-purple)) !important;
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.4) !important;
}

/* === 头像样式 === */
body.theme-space-dark .ant-avatar {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border: 2px solid var(--border-glow) !important;
}

/* === 复选框和单选框样式 === */
body.theme-space-dark .ant-checkbox-inner {
  background: var(--space-blue) !important;
  border-color: var(--border-glow) !important;
}

body.theme-space-dark .ant-checkbox-checked .ant-checkbox-inner {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border-color: var(--nebula-purple) !important;
}

body.theme-space-dark .ant-radio-inner {
  background: var(--space-blue) !important;
  border-color: var(--border-glow) !important;
}

body.theme-space-dark .ant-radio-checked .ant-radio-inner {
  border-color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-radio-checked .ant-radio-inner::after {
  background: var(--star-cyan) !important;
}

/* === 开关样式 === */
body.theme-space-dark .ant-switch {
  background: var(--space-blue) !important;
}

body.theme-space-dark .ant-switch-checked {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
}

/* === 滑块样式 === */
body.theme-space-dark .ant-slider-track {
  background: linear-gradient(90deg, var(--nebula-purple), var(--star-cyan)) !important;
}

body.theme-space-dark .ant-slider-handle {
  border-color: var(--star-cyan) !important;
  background: var(--space-dark) !important;
}

body.theme-space-dark .ant-slider-rail {
  background: var(--space-blue) !important;
}

/* === 警告框样式 === */
body.theme-space-dark .ant-alert {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
}

body.theme-space-dark .ant-alert-message {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-alert-description {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-alert-info {
  border-color: rgba(34, 211, 238, 0.4) !important;
}

body.theme-space-dark .ant-alert-success {
  border-color: rgba(16, 185, 129, 0.4) !important;
}

body.theme-space-dark .ant-alert-warning {
  border-color: rgba(251, 191, 36, 0.4) !important;
}

body.theme-space-dark .ant-alert-error {
  border-color: rgba(239, 68, 68, 0.4) !important;
}

/* === 时间线样式 === */
body.theme-space-dark .ant-timeline-item-tail {
  border-left: 2px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-timeline-item-head {
  background: var(--space-dark) !important;
  border-color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-timeline-item-content {
  color: var(--star-white) !important;
}

/* === 折叠面板样式 === */
body.theme-space-dark .ant-collapse {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
}

body.theme-space-dark .ant-collapse-header {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-collapse-content {
  background: transparent !important;
  border-top: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-collapse-content-box {
  color: var(--text-dim) !important;
}

/* === 空状态样式 === */
body.theme-space-dark .ant-empty-description {
  color: var(--text-dim) !important;
}

/* === 加载样式 === */
body.theme-space-dark .ant-spin-dot-item {
  background: var(--star-cyan) !important;
}

body.theme-space-dark .ant-spin-text {
  color: var(--text-dim) !important;
}

/* === 骨架屏样式 === */
body.theme-space-dark .ant-skeleton-content .ant-skeleton-title,
body.theme-space-dark .ant-skeleton-content .ant-skeleton-paragraph > li {
  background: linear-gradient(90deg, var(--space-blue) 25%, rgba(99, 102, 241, 0.2) 50%, var(--space-blue) 75%) !important;
  background-size: 200% 100% !important;
  animation: skeleton-loading 1.5s infinite !important;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === 统计数字样式 === */
body.theme-space-dark .ant-statistic-title {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-statistic-content {
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif !important;
  background: linear-gradient(135deg, var(--star-cyan), var(--nebula-purple)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* === 步骤条样式 === */
body.theme-space-dark .ant-steps-item-finish .ant-steps-item-icon {
  background: transparent !important;
  border-color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-steps-item-process .ant-steps-item-icon {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border: none !important;
}

body.theme-space-dark .ant-steps-item-wait .ant-steps-item-icon {
  background: var(--space-blue) !important;
  border-color: var(--border-glow) !important;
}

body.theme-space-dark .ant-steps-item-title {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-steps-item-description {
  color: var(--text-dim) !important;
}

/* === 日历样式 === */
body.theme-space-dark .ant-picker-calendar {
  background: var(--space-blue) !important;
}

body.theme-space-dark .ant-picker-calendar-header {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-picker-cell {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-picker-cell-selected .ant-picker-cell-inner {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
}

/* === 评分样式 === */
body.theme-space-dark .ant-rate-star-full .anticon {
  color: var(--star-cyan) !important;
}

/* === 工具提示样式 === */
body.theme-space-dark .ant-tooltip-inner {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-tooltip-arrow-content {
  background: var(--space-blue) !important;
}

/* === 弹出确认框样式 === */
body.theme-space-dark .ant-popconfirm-inner-content {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-popconfirm-message-title {
  color: var(--star-white) !important;
}

/* === 文字排版样式 === */
body.theme-space-dark .ant-typography {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-typography.ant-typography-secondary {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-typography h1,
body.theme-space-dark .ant-typography h2,
body.theme-space-dark .ant-typography h3,
body.theme-space-dark .ant-typography h4 {
  color: var(--star-white) !important;
}

/* === 分割线样式 === */
body.theme-space-dark .ant-divider {
  border-color: var(--border-glow) !important;
}

body.theme-space-dark .ant-divider-inner-text {
  color: var(--text-dim) !important;
}

/* === 页脚样式 === */
body.theme-space-dark footer,
body.theme-space-dark .ant-layout-footer {
  background: var(--space-dark) !important;
  border-top: 1px solid var(--border-glow) !important;
  color: var(--text-dim) !important;
}

/* === 滚动条样式 === */
body.theme-space-dark ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.theme-space-dark ::-webkit-scrollbar-track {
  background: var(--space-dark);
}

body.theme-space-dark ::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--nebula-purple), var(--star-cyan));
  border-radius: 4px;
}

body.theme-space-dark ::-webkit-scrollbar-thumb:hover {
  background: var(--star-cyan);
}

/* === 选中文字样式 === */
body.theme-space-dark ::selection {
  background: rgba(99, 102, 241, 0.4);
  color: var(--star-white);
}

/* === 表单项标签样式 === */
body.theme-space-dark .ant-form-item-label > label {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-form-item-explain-error {
  color: var(--nebula-pink) !important;
}

/* === 树形控件样式 === */
body.theme-space-dark .ant-tree {
  background: transparent !important;
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-tree-node-selected {
  background: rgba(99, 102, 241, 0.2) !important;
}

body.theme-space-dark .ant-tree-node-content-wrapper:hover {
  background: rgba(99, 102, 241, 0.1) !important;
}

/* === 上传组件样式 === */
body.theme-space-dark .ant-upload-drag {
  background: var(--space-blue) !important;
  border: 2px dashed var(--border-glow) !important;
  border-radius: 12px !important;
}

body.theme-space-dark .ant-upload-drag:hover {
  border-color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-upload-drag-icon .anticon {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-upload-text {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-upload-hint {
  color: var(--text-dim) !important;
}

/* === 穿梭框样式 === */
body.theme-space-dark .ant-transfer-list {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-transfer-list-header {
  background: var(--space-dark) !important;
  border-bottom: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
}

/* === 提及组件样式 === */
body.theme-space-dark .ant-mentions {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  color: var(--star-white) !important;
}

/* === 级联选择器样式 === */
body.theme-space-dark .ant-cascader-menus {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-cascader-menu-item {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-cascader-menu-item:hover {
  background: rgba(99, 102, 241, 0.2) !important;
}

/* === 自动完成样式 === */
body.theme-space-dark .ant-select-dropdown {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
}

body.theme-space-dark .ant-select-item {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-select-item-option-active {
  background: rgba(99, 102, 241, 0.2) !important;
}

body.theme-space-dark .ant-select-item-option-selected {
  background: rgba(34, 211, 238, 0.2) !important;
  color: var(--star-cyan) !important;
}

/* === 日期选择器下拉样式 === */
body.theme-space-dark .ant-picker-dropdown {
  background: var(--space-blue) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 12px !important;
}

body.theme-space-dark .ant-picker-panel {
  background: transparent !important;
}

body.theme-space-dark .ant-picker-header {
  color: var(--star-white) !important;
  border-bottom: 1px solid var(--border-glow) !important;
}

body.theme-space-dark .ant-picker-header button {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-picker-header button:hover {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-picker-content th {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-picker-cell-in-view {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-picker-cell-selected .ant-picker-cell-inner {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
}

body.theme-space-dark .ant-picker-today-btn {
  color: var(--star-cyan) !important;
}

/* === 锚点样式 === */
body.theme-space-dark .ant-anchor-link-title {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-anchor-link-title-active {
  color: var(--star-cyan) !important;
}

body.theme-space-dark .ant-anchor-ink-ball {
  border-color: var(--star-cyan) !important;
}

/* === 回到顶部按钮样式 === */
body.theme-space-dark .ant-back-top {
  background: linear-gradient(135deg, var(--nebula-purple), var(--star-cyan)) !important;
  border-radius: 50% !important;
}

/* === 结果页样式 === */
body.theme-space-dark .ant-result-title {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-result-subtitle {
  color: var(--text-dim) !important;
}

/* === 图片预览样式 === */
body.theme-space-dark .ant-image-preview-operations {
  background: rgba(10, 14, 23, 0.9) !important;
}

/* === 描述列表样式 === */
body.theme-space-dark .ant-descriptions-item-label {
  color: var(--text-dim) !important;
}

body.theme-space-dark .ant-descriptions-item-content {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-descriptions-bordered .ant-descriptions-item-label {
  background: var(--space-blue) !important;
}

/* === 资料下载/卡片内容文字提亮 === */
body.theme-space-dark p,
body.theme-space-dark span:not(.anticon):not([class*="ant-"]),
body.theme-space-dark .ant-card-meta-description {
  color: var(--text-muted) !important;
}

body.theme-space-dark h1,
body.theme-space-dark h2,
body.theme-space-dark h3,
body.theme-space-dark h4,
body.theme-space-dark h5,
body.theme-space-dark h6,
body.theme-space-dark .ant-card-meta-title,
body.theme-space-dark .ant-list-item-meta-title {
  color: var(--star-white) !important;
}

/* 文件信息、大小、下载次数等 */
body.theme-space-dark .file-info,
body.theme-space-dark .file-size,
body.theme-space-dark .download-count,
body.theme-space-dark [class*="info"],
body.theme-space-dark [class*="desc"],
body.theme-space-dark [class*="meta"] {
  color: var(--text-muted) !important;
}

/* 更亮的链接和强调文字 */
body.theme-space-dark a:not(.ant-btn) {
  color: var(--star-cyan) !important;
}

body.theme-space-dark a:not(.ant-btn):hover {
  color: var(--nebula-purple) !important;
  text-shadow: 0 0 10px var(--nebula-purple) !important;
}

/* 列表项文字 */
body.theme-space-dark .ant-list-item {
  color: var(--star-white) !important;
}

body.theme-space-dark .ant-list-item-meta-description {
  color: var(--text-muted) !important;
}

/* 表单标签 */
body.theme-space-dark label {
  color: var(--star-white) !important;
}

/* 小字说明 */
body.theme-space-dark small,
body.theme-space-dark .ant-form-item-extra,
body.theme-space-dark .ant-form-item-explain {
  color: var(--text-dim) !important;
}

/* 资料卡片特定样式 */
body.theme-space-dark .resource-card,
body.theme-space-dark .material-card,
body.theme-space-dark .download-card {
  color: var(--star-white) !important;
}

body.theme-space-dark .resource-card p,
body.theme-space-dark .material-card p,
body.theme-space-dark .download-card p {
  color: var(--text-muted) !important;
}
/* DuckEdu 全局主题样式 */
/* 所有组件使用CSS变量，确保主题一致性 */

/* === 独立页面 - 招生页面有自己的完整样式系统 === */
/* 不需要在这里覆盖，它们在 App.tsx 中已经独立于 ThemeProvider */

/* === 基础重置 === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* === 全局链接样式 === */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

/* === 选中文字样式 === */
::selection {
  background: var(--color-primary-light);
  color: var(--text-primary);
}

/* === 通用卡片样式 === */
.theme-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.theme-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

/* === 标题样式 === */
.theme-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
}

.theme-title-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === 按钮样式覆盖 === */
.theme-btn-primary {
  background: var(--gradient) !important;
  border: none !important;
  color: var(--text-inverse) !important;
  font-weight: 500;
  transition: all 0.3s ease !important;
}

.theme-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover) !important;
}

.theme-btn-secondary {
  background: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.theme-btn-secondary:hover {
  background: var(--color-primary-light) !important;
}

/* === 输入框样式覆盖 === */
.theme-input {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}

.theme-input:focus,
.theme-input:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 2px var(--color-primary-light) !important;
}

.theme-input::placeholder {
  color: var(--text-muted) !important;
}

/* === 表格样式覆盖 === */
.theme-table .ant-table {
  background: var(--bg-card);
  color: var(--text-primary);
}

.theme-table .ant-table-thead > tr > th {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.theme-table .ant-table-tbody > tr > td {
  border-bottom: 1px solid var(--border-light) !important;
}

.theme-table .ant-table-tbody > tr:hover > td {
  background: var(--bg-hover) !important;
}

/* === 菜单样式覆盖 === */
.theme-menu {
  background: var(--bg-secondary) !important;
  border: none !important;
}

.theme-menu .ant-menu-item {
  color: var(--text-secondary) !important;
  margin: 4px 8px !important;
  border-radius: 8px !important;
}

.theme-menu .ant-menu-item:hover {
  background: var(--bg-hover) !important;
  color: var(--color-primary) !important;
}

.theme-menu .ant-menu-item-selected {
  background: var(--color-primary-light) !important;
  color: var(--color-primary) !important;
}

/* === 模态框样式覆盖 === */
.theme-modal .ant-modal-content {
  background: var(--bg-modal) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-hover) !important;
}

.theme-modal .ant-modal-header {
  background: var(--bg-modal) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.theme-modal .ant-modal-title {
  color: var(--text-primary) !important;
}

.theme-modal .ant-modal-close-x {
  color: var(--text-secondary) !important;
}

/* === 警告/消息样式 === */
.theme-alert {
  border-radius: 8px !important;
}

/* === 标签样式 === */
.theme-tag {
  border-radius: 20px !important;
  padding: 4px 12px !important;
}

.theme-tag-primary {
  background: var(--color-primary-light) !important;
  color: var(--color-primary) !important;
  border: none !important;
}

/* === 进度条样式 === */
.theme-progress .ant-progress-bg {
  background: var(--gradient) !important;
}

/* === 头部导航样式 === */
.theme-header {
  background: var(--bg-card) !important;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.theme-header .logo {
  color: var(--text-primary);
  font-family: var(--font-heading);
}

/* === 侧边栏样式 === */
.theme-sider {
  background: var(--bg-secondary) !important;
  border-right: 1px solid var(--border-light);
}

/* === 面包屑样式 === */
.theme-breadcrumb {
  color: var(--text-muted);
}

.theme-breadcrumb a {
  color: var(--text-secondary) !important;
}

.theme-breadcrumb a:hover {
  color: var(--color-primary) !important;
}

/* === 统计数字样式 === */
.theme-statistic .ant-statistic-title {
  color: var(--text-secondary) !important;
}

.theme-statistic .ant-statistic-content {
  color: var(--text-primary) !important;
}

/* === 分割线样式 === */
.ant-divider {
  border-color: var(--border-light) !important;
}

/* === 下拉菜单样式 === */
.ant-dropdown-menu {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow) !important;
}

.ant-dropdown-menu-item {
  color: var(--text-primary) !important;
}

.ant-dropdown-menu-item:hover {
  background: var(--bg-hover) !important;
}

/* === 工具提示样式 === */
.ant-tooltip-inner {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

/* === 骨架屏样式 === */
.ant-skeleton-content .ant-skeleton-title,
.ant-skeleton-content .ant-skeleton-paragraph > li {
  background: var(--bg-hover) !important;
}

/* === 空状态样式 === */
.ant-empty-description {
  color: var(--text-muted) !important;
}

/* === 分页样式 === */
.ant-pagination-item {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
}

.ant-pagination-item a {
  color: var(--text-primary) !important;
}

.ant-pagination-item-active {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.ant-pagination-item-active a {
  color: var(--text-inverse) !important;
}

/* === 步骤条样式 === */
.ant-steps-item-finish .ant-steps-item-icon {
  background: var(--color-primary-light) !important;
  border-color: var(--color-primary) !important;
}

.ant-steps-item-process .ant-steps-item-icon {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

/* === 切换器样式 === */
.ant-switch-checked {
  background: var(--color-primary) !important;
}

/* === 复选框样式 === */
.ant-checkbox-checked .ant-checkbox-inner {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

/* === 单选框样式 === */
.ant-radio-checked .ant-radio-inner {
  border-color: var(--color-primary) !important;
}

.ant-radio-checked .ant-radio-inner::after {
  background: var(--color-primary) !important;
}

/* === 日期选择器样式 === */
.ant-picker {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
}

.ant-picker-focused {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 2px var(--color-primary-light) !important;
}

/* === 标签页样式 === */
.ant-tabs-tab {
  color: var(--text-secondary) !important;
}

.ant-tabs-tab-active {
  color: var(--color-primary) !important;
}

.ant-tabs-ink-bar {
  background: var(--color-primary) !important;
}

/* === 徽章样式 === */
.ant-badge-count {
  background: var(--color-error) !important;
}

/* === 头像样式 === */
.ant-avatar {
  background: var(--color-primary-light) !important;
  color: var(--color-primary) !important;
}

/* === 评分样式 === */
.ant-rate-star-full .anticon {
  color: var(--color-warning) !important;
}

/* === 时间线样式 === */
.ant-timeline-item-head {
  background: var(--bg-card) !important;
  border-color: var(--color-primary) !important;
}

.ant-timeline-item-tail {
  border-color: var(--border-color) !important;
}

/* === 折叠面板样式 === */
.ant-collapse {
  background: var(--bg-card) !important;
  border-color: var(--border-color) !important;
}

.ant-collapse-header {
  color: var(--text-primary) !important;
}

/* === 抽屉样式 === */
.ant-drawer-content {
  background: var(--bg-modal) !important;
}

.ant-drawer-header {
  background: var(--bg-modal) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

.ant-drawer-title {
  color: var(--text-primary) !important;
}

/* === 深色主题特殊调整 === */
.theme-dark .ant-card {
  background: var(--bg-card);
}

.theme-dark .ant-input,
.theme-dark .ant-select-selector,
.theme-dark .ant-picker {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
}

.theme-dark .ant-table-cell {
  background: transparent !important;
}

.theme-dark .ant-form-item-label > label {
  color: var(--text-secondary) !important;
}

/* === 动画效果 === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-fade-in {
  animation: fadeIn 0.3s ease-out;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.theme-shimmer {
  background: linear-gradient(
    90deg,
    var(--bg-secondary) 25%,
    var(--bg-hover) 50%,
    var(--bg-secondary) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* === 响应式调整 === */
@media (max-width: 768px) {
  .theme-card {
    border-radius: 8px;
  }
  
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
}
/* 深空星辰主题 - 首页样式 */

.space-dark-home {
  min-height: 100vh;
  background: #0A0E17;
  color: #F1F5F9;
  font-family: 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* === 星空背景 === */
.space-dark-home .stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.space-dark-home .star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* === 光晕效果 === */
.space-dark-home .glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.space-dark-home .glow-orb.purple {
  width: 500px;
  height: 500px;
  background: #6366F1;
  top: 10%;
  left: -10%;
}

.space-dark-home .glow-orb.cyan {
  width: 400px;
  height: 400px;
  background: #22D3EE;
  bottom: 20%;
  right: 10%;
}

.space-dark-home .glow-orb.pink {
  width: 300px;
  height: 300px;
  background: #EC4899;
  top: 40%;
  right: 30%;
}

/* === 主视觉区 === */
.space-dark-home .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  z-index: 1;
}

.space-dark-home .hero-content {
  max-width: 650px;
  z-index: 1;
}

.space-dark-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 30px;
  color: #6366F1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 35px;
}

.space-dark-home .hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22D3EE;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.space-dark-home .hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #F1F5F9;
}

.space-dark-home .hero h1 .gradient {
  background: linear-gradient(135deg, #22D3EE, #6366F1, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.space-dark-home .hero p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 45px;
  max-width: 500px;
  line-height: 1.8;
}

/* === 按钮样式 === */
.space-dark-home .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.space-dark-home .btn-primary-space {
  padding: 16px 35px !important;
  height: auto !important;
  background: linear-gradient(135deg, #6366F1, #22D3EE) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.space-dark-home .btn-primary-space::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.space-dark-home .btn-primary-space:hover::before {
  left: 100%;
}

.space-dark-home .btn-primary-space:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4) !important;
}

.space-dark-home .btn-secondary-space {
  padding: 16px 35px !important;
  height: auto !important;
  background: transparent !important;
  color: #F1F5F9 !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.space-dark-home .btn-secondary-space:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #22D3EE !important;
  color: #22D3EE !important;
}

.space-dark-home .btn-large {
  padding: 18px 45px !important;
  font-size: 16px !important;
}

/* === 统计区 === */
.space-dark-home .stats {
  display: flex;
  gap: 60px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  flex-wrap: wrap;
}

.space-dark-home .stat-item {
  text-align: left;
}

.space-dark-home .stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #22D3EE, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.space-dark-home .stat-label {
  font-size: 13px;
  color: #64748B;
}

/* === 右侧卡片区 === */
.space-dark-home .hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.space-dark-home .floating-cards {
  position: relative;
  width: 450px;
  height: 400px;
}

.space-dark-home .course-card {
  position: absolute;
  background: rgba(15, 22, 41, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 16px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.space-dark-home .course-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #22D3EE;
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
}

.space-dark-home .course-card.card-1 {
  top: 0;
  left: 0;
  width: 280px;
  animation: float 6s ease-in-out infinite;
}

.space-dark-home .course-card.card-2 {
  bottom: 0;
  right: 0;
  width: 300px;
  animation: float 6s ease-in-out infinite 1s;
}

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

.space-dark-home .card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, #EC4899, #6366F1);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 15px;
}

.space-dark-home .card-year {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #22D3EE, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.space-dark-home .card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F1F5F9;
}

.space-dark-home .card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22D3EE;
  font-size: 13px;
}

.space-dark-home .status-dot {
  width: 6px;
  height: 6px;
  background: #22D3EE;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* === 特色区 === */
.space-dark-home .features {
  padding: 120px 60px;
  position: relative;
  z-index: 1;
}

.space-dark-home .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.space-dark-home .section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #F1F5F9;
}

.space-dark-home .section-header p {
  color: #64748B;
}

.space-dark-home .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.space-dark-home .feature-card {
  background: rgba(15, 22, 41, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
}

.space-dark-home .feature-card:hover {
  border-color: #22D3EE;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.15);
}

.space-dark-home .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.space-dark-home .feature-icon svg {
  width: 28px;
  height: 28px;
}

.space-dark-home .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #F1F5F9;
}

.space-dark-home .feature-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.7;
}

/* === 招生信息区 === */
.space-dark-home .enrollment {
  padding: 120px 60px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05));
}

.space-dark-home .enrollment-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.space-dark-home .enrollment-text {
  flex: 1;
  max-width: 550px;
}

.space-dark-home .enrollment-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #F1F5F9;
}

.space-dark-home .enrollment-text > p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 35px;
}

.space-dark-home .enrollment-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.space-dark-home .enrollment-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #F1F5F9;
  font-size: 15px;
}

.space-dark-home .check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6366F1, #22D3EE);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

/* === 轨道动画 === */
.space-dark-home .enrollment-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.space-dark-home .orbit-container {
  position: relative;
  width: 350px;
  height: 350px;
}

.space-dark-home .orbit {
  position: absolute;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.space-dark-home .orbit-1 {
  width: 200px;
  height: 200px;
  animation: rotate 20s linear infinite;
}

.space-dark-home .orbit-2 {
  width: 280px;
  height: 280px;
  animation: rotate 30s linear infinite reverse;
}

.space-dark-home .orbit-3 {
  width: 350px;
  height: 350px;
  animation: rotate 40s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.space-dark-home .orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #6366F1, #22D3EE);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.space-dark-home .center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(15, 22, 41, 0.9);
  border: 2px solid rgba(99, 102, 241, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.space-dark-home .big-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #22D3EE, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.space-dark-home .badge-text {
  font-size: 12px;
  color: #64748B;
  letter-spacing: 2px;
}

/* === 页脚 === */
.space-dark-home .space-footer {
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  position: relative;
  z-index: 1;
}

.space-dark-home .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.space-dark-home .footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.space-dark-home .logo-text {
  background: linear-gradient(135deg, #6366F1, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.space-dark-home .footer-desc {
  color: #64748B;
  font-size: 14px;
  margin-bottom: 20px;
}

.space-dark-home .footer-links {
  margin-bottom: 20px;
}

.space-dark-home .footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.space-dark-home .footer-links a:hover {
  color: #22D3EE;
}

.space-dark-home .footer-links .divider {
  margin: 0 15px;
  color: rgba(99, 102, 241, 0.3);
}

.space-dark-home .copyright {
  color: #4a5568;
  font-size: 12px;
}

/* === 响应式设计 === */
@media (max-width: 1200px) {
  .space-dark-home .hero-visual {
    display: none;
  }
  
  .space-dark-home .hero {
    justify-content: center;
  }
  
  .space-dark-home .hero-content {
    text-align: center;
  }
  
  .space-dark-home .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .space-dark-home .hero-buttons {
    justify-content: center;
  }
  
  .space-dark-home .stats {
    justify-content: center;
  }
  
  .space-dark-home .enrollment-content {
    flex-direction: column;
    text-align: center;
  }
  
  .space-dark-home .enrollment-text {
    max-width: 100%;
  }
  
  .space-dark-home .enrollment-features {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .space-dark-home .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .space-dark-home .hero {
    padding: 100px 30px 60px;
  }
  
  .space-dark-home .hero h1 {
    font-size: 36px;
  }
  
  .space-dark-home .features {
    padding: 80px 30px;
  }
  
  .space-dark-home .features-grid {
    grid-template-columns: 1fr;
  }
  
  .space-dark-home .enrollment {
    padding: 80px 30px;
  }
  
  .space-dark-home .enrollment-text h2 {
    font-size: 32px;
  }
  
  .space-dark-home .stats {
    gap: 40px;
  }
  
  .space-dark-home .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .space-dark-home .hero h1 {
    font-size: 28px;
  }
  
  .space-dark-home .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .space-dark-home .btn-primary-space,
  .space-dark-home .btn-secondary-space {
    width: 100%;
  }
}
.danmu-container {
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.danmu-item {
  cursor: default;
  user-select: none;
  text-stroke: 1px black;
  -webkit-text-stroke: 1px black;
}

.danmu-controls {
  transition: opacity 0.3s ease;
}

.danmu-controls:hover {
  background: rgba(0,0,0,0.9) !important;
}

/* 弹幕轨道优化 */
.danmu-track {
  position: absolute;
  width: 100%;
  height: 30px;
  overflow: hidden;
}

/* 弹幕滚动动画 */
@keyframes danmu-scroll {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

.danmu-scroll {
  animation: danmu-scroll 8s linear;
}

/* 弹幕颜色预设 */
.danmu-color-white { color: #FFFFFF; }
.danmu-color-red { color: #FF0000; }
.danmu-color-yellow { color: #FFFF00; }
.danmu-color-green { color: #00FF00; }
.danmu-color-cyan { color: #00FFFF; }
.danmu-color-blue { color: #0000FF; }
.danmu-color-purple { color: #FF00FF; }

/* 响应式调整 */
@media (max-width: 768px) {
  .danmu-controls {
    padding: 4px 8px;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .danmu-item {
    font-size: 12px !important;
  }
}
@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(/assets/KaTeX_AMS-Regular-BQhdFMY1.woff2) format("woff2"),url(/assets/KaTeX_AMS-Regular-DMm9YOAa.woff) format("woff"),url(/assets/KaTeX_AMS-Regular-DRggAlZN.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Bold-BEiXGLvX.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Bold-ATXxdsX0.ttf) format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Caligraphic-Regular-Di6jR-x-.woff2) format("woff2"),url(/assets/KaTeX_Caligraphic-Regular-CTRA-rTL.woff) format("woff"),url(/assets/KaTeX_Caligraphic-Regular-wX97UBjC.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Fraktur-Bold-CL6g_b3V.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Bold-BsDP51OF.woff) format("woff"),url(/assets/KaTeX_Fraktur-Bold-BdnERNNW.ttf) format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Fraktur-Regular-CTYiF6lA.woff2) format("woff2"),url(/assets/KaTeX_Fraktur-Regular-Dxdc4cR9.woff) format("woff"),url(/assets/KaTeX_Fraktur-Regular-CB_wures.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(/assets/KaTeX_Main-Bold-Cx986IdX.woff2) format("woff2"),url(/assets/KaTeX_Main-Bold-Jm3AIy58.woff) format("woff"),url(/assets/KaTeX_Main-Bold-waoOVXN0.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Main-BoldItalic-DxDJ3AOS.woff2) format("woff2"),url(/assets/KaTeX_Main-BoldItalic-SpSLRI95.woff) format("woff"),url(/assets/KaTeX_Main-BoldItalic-DzxPMmG6.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Main-Italic-NWA7e6Wa.woff2) format("woff2"),url(/assets/KaTeX_Main-Italic-BMLOBm91.woff) format("woff"),url(/assets/KaTeX_Main-Italic-3WenGoN9.ttf) format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Main-Regular-B22Nviop.woff2) format("woff2"),url(/assets/KaTeX_Main-Regular-Dr94JaBh.woff) format("woff"),url(/assets/KaTeX_Main-Regular-ypZvNtVU.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(/assets/KaTeX_Math-BoldItalic-CZnvNsCZ.woff2) format("woff2"),url(/assets/KaTeX_Math-BoldItalic-iY-2wyZ7.woff) format("woff"),url(/assets/KaTeX_Math-BoldItalic-B3XSjfu4.ttf) format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(/assets/KaTeX_Math-Italic-t53AETM-.woff2) format("woff2"),url(/assets/KaTeX_Math-Italic-DA0__PXp.woff) format("woff"),url(/assets/KaTeX_Math-Italic-flOr_0UB.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url(/assets/KaTeX_SansSerif-Bold-D1sUS0GD.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Bold-DbIhKOiC.woff) format("woff"),url(/assets/KaTeX_SansSerif-Bold-CFMepnvq.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url(/assets/KaTeX_SansSerif-Italic-C3H0VqGB.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Italic-DN2j7dab.woff) format("woff"),url(/assets/KaTeX_SansSerif-Italic-YYjJ1zSn.ttf) format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url(/assets/KaTeX_SansSerif-Regular-DDBCnlJ7.woff2) format("woff2"),url(/assets/KaTeX_SansSerif-Regular-CS6fqUqJ.woff) format("woff"),url(/assets/KaTeX_SansSerif-Regular-BNo7hRIc.ttf) format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Script-Regular-D3wIWfF6.woff2) format("woff2"),url(/assets/KaTeX_Script-Regular-D5yQViql.woff) format("woff"),url(/assets/KaTeX_Script-Regular-C5JkGWo-.ttf) format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size1-Regular-mCD8mA8B.woff2) format("woff2"),url(/assets/KaTeX_Size1-Regular-C195tn64.woff) format("woff"),url(/assets/KaTeX_Size1-Regular-Dbsnue_I.ttf) format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size2-Regular-Dy4dx90m.woff2) format("woff2"),url(/assets/KaTeX_Size2-Regular-oD1tc_U0.woff) format("woff"),url(/assets/KaTeX_Size2-Regular-B7gKUWhC.ttf) format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url(data:font/woff2;base64,d09GMgABAAAAAA4oAA4AAAAAHbQAAA3TAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAgRQIDgmcDBEICo1oijYBNgIkA14LMgAEIAWJAAeBHAyBHBvbGiMRdnO0IkRRkiYDgr9KsJ1NUAf2kILNxgUmgqIgq1P89vcbIcmsQbRps3vCcXdYOKSWEPEKgZgQkprQQsxIXUgq0DqpGKmIvrgkeVGtEQD9DzAO29fM9jYhxZEsL2FeURH2JN4MIcTdO049NCVdxQ/w9NrSYFEBKTDKpLKfNkCGDc1RwjZLQcm3vqJ2UW9Xfa3tgAHz6ivp6vgC2yD4/6352ndnN0X0TL7seypkjZlMsjmZnf0Mm5Q+JykRWQBKCVCVPbARPXWyQtb5VgLB6Biq7/Uixcj2WGqdI8tGSgkuRG+t910GKP2D7AQH0DB9FMDW/obJZ8giFI3Wg8Cvevz0M+5m0rTh7XDBlvo9Y4vm13EXmfttwI4mBo1EG15fxJhUiCLbiiyCf/ZA6MFAhg3pGIZGdGIVjtPn6UcMk9A/UUr9PhoNsCENw1APAq0gpH73e+M+0ueyHbabc3vkbcdtzcf/fiy+NxQEjf9ud/ELBHAXJ0nk4z+MXH2Ev/kWyV4k7SkvpPc9Qr38F6RPWnM9cN6DJ0AdD1BhtgABtmoRoFCvPsBAumNm6soZG2Gk5GyVTo2sJncSyp0jQTYoR6WDvTwaaEcHsxHfvuWhHA3a6bN7twRKtcGok6NsCi7jYRrM2jExsUFMxMQYuJbMhuWNOumEJy9hi29Dmg5zMp/A5+hhPG19j1vBrq8JTLr8ki5VLPmG/PynJHVul440bxg5xuymHUFPBshC+nA9I1FmwbRBTNHAcik3Oae0cxKoI3MOriM42UrPe51nsaGxJ+WfXubAsP84aabUlQSJ1IiE0iPETLUU4CATgfXSCSpuRFRmCGbO+wSpAnzaeaCYW1VNEysRtuXCEL1kUFUbbtMv3Tilt/1c11jt3Q5bbMa84cpWipp8Elw3MZhOHsOlwwVUQM3lAR35JiFQbaYCRnMF2lxAWoOg2gyoIV4PouX8HytNIfLhqpJtXB4vjiViUI8IJ7bkC4ikkQvKksnOTKICwnqWSZ9YS5f0WCxmpgjbIq7EJcM4aI2nmhLNY2JIUgOjXZFWBHb+x5oh6cwb0Tv1ackHdKi0I9OO2wE9aogIOn540CCCziyhN+IaejtgAONKznHlHyutPrHGwCx9S6B8kfS4Mfi4Eyv7OU730bT1SCBjt834cXsf43zVjPUqqJjgrjeGnBxSG4aYAKFuVbeCfkDIjAqMb6yLNIbCuvXhMH2/+k2vkNpkORhR59N1CkzoOENvneIosjYmuTxlhUzaGEJQ/iWqx4dmwpmKjrwTiTGTCVozNAYqk/zXOndWxuWSmJkQpJw3pK5KX6QrLt5LATMqpmPAQhkhK6PUjzHUn7E0gHE0kPE0iKkolgkUx9SZmVAdDgpffdyJKg3k7VmzYGCwVXGz/tXmkOIp+vcWs+EMuhhvN0h9uhfzWJziBQmCREGSIFmQIkgVpAnSBRmC//6hkLZwaVhwxlrJSOdqlFtOYxlau9F2QN5Y98xmIAsiM1HVp2VFX+DHHGg6Ecjh3vmqtidX3qHI2qycTk/iwxSt5UzTmEP92ZBnEWTk4Mx8Mpl78ZDokxg/KWb+Q0QkvdKVmq3TMW+RXEgrsziSAfNXFMhDc60N5N9jQzjfO0kBKpUZl0ZmwJ41j/B9Hz6wmRaJB84niNmQrzp9eSlQCDDzazGDdVi3P36VZQ+Jy4f9UBNp+3zTjqI4abaFAm+GShVaXlsGdF3FYzZcDI6cori4kMxUECl9IjJZpzkvitAoxKue+90pDMvcKRxLl53TmOKCmV/xRolNKSqqUxc6LStOETmFOiLZZptlZepcKiAzteG8PEdpnQpbOMNcMsR4RR2Bs0cKFEvSmIjAFcnarqwUL4lDhHmnVkwu1IwshbiCcgvOheZuYyOteufZZwlcTlLgnZ3o/WcYdzZHW/WGaqaVfmTZ1aWCceJjkbZqsfbkOtcFlUZM/jy+hXHDbaUobWqqXaeWobbLO99yG5N3U4wxco0rQGGcOLASFMXeJoham8M+/x6O2WywK2l4HGbq1CoUyC/IZikQhdq3SiuNrvAEj0AVu9x2x3lp/xWzahaxidezFVtdcb5uEnzyl0ZmYiuKI0exvCd4Xc9CV1KB0db00z92wDPde0kukbvZIWN6jUWFTmPIC/Y4UPCm8UfDTFZpZNon1qLFTkBhxzB+FjQRA2Q/YRJT8pQigslMaUpFyAG8TMlXigiqmAZX4xgijKjRlGpLE0GdplRfCaJo0JQaSxNBk6ZmMzcya0FmrcisDdn0Q3HI2sWSppYigmlM1XT/kLQZSNpMJG0WkjYbSZuDpM1F0uYhFc1HxU4m1QJjDK6iL0S5uSj5rgXc3RejEigtcRBtqYPQsiTskmO5vosV+q4VGIKbOkDg0jtRrq+Em1YloaTFar3EGr1EUC8R0kus1Uus00usL97ABr2BjXoDm/QGNhuWtMVBKOwg/i78lT7hBsAvDmwHc/ao3vmUbBmhjeYySZNWvGkfZAgISDSaDo1SVpzGDsAEkF8B+gEapViUoZgUWXcRIGFZNm6gWbAKk0bp0k1MHG9fLYtV4iS2SmLEQFARzRcnf9PUS0LVn05/J9MiRRBU3v2IrvW974v4N00L7ZMk0wXP1409CHo/an8zTRHD3eSJ6m8D4YMkZNl3M79sqeuAsr/m3f+8/yl7A50aiAEJgeBeMWzu7ui9UfUBCe2TIqZIoOd/3/udRBOQidQZUERzb2/VwZN1H/Sju82ew2H2Wfr6qvfVf3hqwDvAIpkQVFy4B9Pe9e4/XvPeceu7h3dvO56iJPf0+A6cqA2ip18ER+iFgggiuOkvj24bby0N9j2UHIkgqIt+sVgfodC4YghLSMjSZbH0VR/6dMDrYJeKHilKTemt6v6kvzvn3/RrdWtr0GoN/xL+Sex/cPYLUpepx9cz/D46UPU5KXgAQa+NDps1v6J3xP1i2HtaDB0M9aX2deA7SYff//+gUCovMmIK/qfsFcOk+4Y5ZN97XlG6zebqtMbKgeRFi51vnxTQYBUik2rS/Cn6PC8ADR8FGxsRPB82dzfND90gIcshOcYUkfjherBz53odpm6TP8txlwOZ71xmfHHOvq053qFF/MRlS3jP0ELudrf2OeN8DHvp6ZceLe8qKYvWz/7yp0u4dKPfli3CYq0O13Ih71mylJ80tOi10On8wi+F4+LWgDPeJ30msSQt9/vkmHq9/Lvo2b461mP801v3W4xTcs6CbvF9UDdrSt+A8OUbpSh55qAUFXWznBBfdeJ8a4d7ugT5tvxUza3h9m4H7ptTqiG4z0g5dc0X29OcGlhpGFMpQo9ytTS+NViZpNdvU4kWx+LKxNY10kQ1yqGXrhe4/1nvP7E+nd5A92TtaRplbHSqoIdOqtRWti+fkB5/n1+/VvCmz12pG1kpQWsfi1ftlBobm0bpngs16CHkbIwdLnParxtTV3QYRlfJ0KFskH7pdN/YDn+yRuSd7sNH3aO0DYPggk6uWuXrfOc+fa3VTxFVvKaNxHsiHmsXyCLIE5yuOeN3/Jdf8HBL/5M6shjyhxHx9BjB1O0+4NLOnjLLSxwO7ukN4jMbOIcD879KLSi6Pk61Oqm2377n8079PXEEQ7cy7OKEC9nbpet118fxweTafpt69x/Bt8UqGzNQt7aelpc44dn5cqhwf71+qKp/Zf/+a0zcizOUWpl/iBcSXip0pplkatCchoH5c5aUM8I7/dWxAej8WicPL1URFZ9BDJelUwEwTkGqUhgSlydVes95YdXvhh9Gfz/aeFWvgVb4tuLbcv4+wLdutVZv/cUonwBD/6eDlE0aSiKK/uoH3+J1wDE/jMVqY2ysGufN84oIXB0sPzy8ollX/LegY74DgJXJR57sn+VGza0x3DnuIgABFM15LmajjjsNlYj+JEZGbuRYcAMOWxFkPN2w6Wd46xo4gVWQR/X4lyI/R6K/YK0110GzudPRW7Y+UOBGTfNNzHeYT0fiH0taunBpq9HEW8OKSaBGj21L0MqenEmNRWBAWDWAk4CpNoEZJ2tTaPFgbQYj8HxtFilErs3BTRwT8uO1NXQaWfIotchmPkAF5mMBAliEmZiOGVgCG9LgRzpscMAOOwowlT3JhusdazXGSC/hxR3UlmWVwWHpOIKheqONvjyhSiTHIkVUco5bnji8m//zL7PKaT1Vl5I6UE609f+gkr6MZKVyKc7zJRmCahLsdlyA5fdQkRSan9LgnnLEyGSkaKJCJog0wAgvepWBt80+1yKln1bMVtCljfNWDueKLsWwaEbBSfSPTEmVRsUcYYMnEjcjeyCZzBXK9E9BYBXLKjOSpUDR+nEV3TFSUdQaz+ot98QxgXwx0GQ+EEUAKB2qZPkQQ0GqFD8UPFMqyaCHM24BZmSGic9EYMagKizOw9Hz50DMrDLrqqLkTAhplMictiCAx5S3BIUQdeJeLnBy2CNtMfz6cV4u8XKoFZQesbf9YZiIERiHjaNodDW6LgcirX/mPnJIkBGDUpTBhSa0EIr38D5hCIszhCM8URGBqImoWjpvpt1ebu/v3Gl3qJfMnNM+9V+kiRFyROTPHQWOcs1dNW94/ukKMPZBvDi55i5CttdeJz84DLngLqjcdwEZ87bFFR8CIG35OAkDVN6VRDZ7aq67NteYqZ2lpT8oYB2CytoBd6VuAx4WgiAsnuj3WohG+LugzXiQRDeM3XYXlULv4dp5VFYC) format("woff2"),url(/assets/KaTeX_Size3-Regular-CTq5MqoE.woff) format("woff"),url(/assets/KaTeX_Size3-Regular-DgpXs0kz.ttf) format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Size4-Regular-Dl5lxZxV.woff2) format("woff2"),url(/assets/KaTeX_Size4-Regular-BF-4gkZK.woff) format("woff"),url(/assets/KaTeX_Size4-Regular-DWFBv043.ttf) format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(/assets/KaTeX_Typewriter-Regular-CO6r4hn1.woff2) format("woff2"),url(/assets/KaTeX_Typewriter-Regular-C0xS9mPB.woff) format("woff"),url(/assets/KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf) format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.22"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:-webkit-min-content;width:-moz-min-content;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .mathsfit,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
@media (prefers-color-scheme: dark) {
  .wmde-markdown,
  .wmde-markdown-var {
    color-scheme: dark;
    --color-prettylights-syntax-comment: #8b949e;
    --color-prettylights-syntax-constant: #79c0ff;
    --color-prettylights-syntax-entity: #d2a8ff;
    --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
    --color-prettylights-syntax-entity-tag: #7ee787;
    --color-prettylights-syntax-keyword: #ff7b72;
    --color-prettylights-syntax-string: #a5d6ff;
    --color-prettylights-syntax-variable: #ffa657;
    --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
    --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
    --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
    --color-prettylights-syntax-carriage-return-text: #f0f6fc;
    --color-prettylights-syntax-carriage-return-bg: #b62324;
    --color-prettylights-syntax-string-regexp: #7ee787;
    --color-prettylights-syntax-markup-list: #f2cc60;
    --color-prettylights-syntax-markup-heading: #1f6feb;
    --color-prettylights-syntax-markup-italic: #c9d1d9;
    --color-prettylights-syntax-markup-bold: #c9d1d9;
    --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
    --color-prettylights-syntax-markup-deleted-bg: #67060c;
    --color-prettylights-syntax-markup-inserted-text: #aff5b4;
    --color-prettylights-syntax-markup-inserted-bg: #033a16;
    --color-prettylights-syntax-markup-changed-text: #ffdfb6;
    --color-prettylights-syntax-markup-changed-bg: #5a1e02;
    --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
    --color-prettylights-syntax-markup-ignored-bg: #1158c7;
    --color-prettylights-syntax-meta-diff-range: #d2a8ff;
    --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
    --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
    --color-fg-default: #c9d1d9;
    --color-fg-muted: #8b949e;
    --color-fg-subtle: #484f58;
    --color-canvas-default: #0d1117;
    --color-canvas-subtle: #161b22;
    --color-border-default: #30363d;
    --color-border-muted: #21262d;
    --color-neutral-muted: rgba(110, 118, 129, 0.4);
    --color-accent-fg: #58a6ff;
    --color-accent-emphasis: #1f6feb;
    --color-attention-subtle: rgba(187, 128, 9, 0.15);
    --color-danger-fg: #f85149;
    --color-danger-emphasis: #da3633;
    --color-attention-fg: #d29922;
    --color-attention-emphasis: #9e6a03;
    --color-done-fg: #a371f7;
    --color-done-emphasis: #8957e5;
    --color-success-fg: #3fb950;
    --color-success-emphasis: #238636;
    --color-copied-active-bg: #2e9b33;
  }
}
@media (prefers-color-scheme: light) {
  .wmde-markdown,
  .wmde-markdown-var {
    color-scheme: light;
    --color-prettylights-syntax-comment: #6e7781;
    --color-prettylights-syntax-constant: #0550ae;
    --color-prettylights-syntax-entity: #8250df;
    --color-prettylights-syntax-storage-modifier-import: #24292f;
    --color-prettylights-syntax-entity-tag: #116329;
    --color-prettylights-syntax-keyword: #cf222e;
    --color-prettylights-syntax-string: #0a3069;
    --color-prettylights-syntax-variable: #953800;
    --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
    --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
    --color-prettylights-syntax-invalid-illegal-bg: #82071e;
    --color-prettylights-syntax-carriage-return-text: #f6f8fa;
    --color-prettylights-syntax-carriage-return-bg: #cf222e;
    --color-prettylights-syntax-string-regexp: #116329;
    --color-prettylights-syntax-markup-list: #3b2300;
    --color-prettylights-syntax-markup-heading: #0550ae;
    --color-prettylights-syntax-markup-italic: #24292f;
    --color-prettylights-syntax-markup-bold: #24292f;
    --color-prettylights-syntax-markup-deleted-text: #82071e;
    --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
    --color-prettylights-syntax-markup-inserted-text: #116329;
    --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
    --color-prettylights-syntax-markup-changed-text: #953800;
    --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
    --color-prettylights-syntax-markup-ignored-text: #eaeef2;
    --color-prettylights-syntax-markup-ignored-bg: #0550ae;
    --color-prettylights-syntax-meta-diff-range: #8250df;
    --color-prettylights-syntax-brackethighlighter-angle: #57606a;
    --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
    --color-prettylights-syntax-constant-other-reference-link: #0a3069;
    --color-fg-default: #24292f;
    --color-fg-muted: #57606a;
    --color-fg-subtle: #6e7781;
    --color-canvas-default: #ffffff;
    --color-canvas-subtle: #f6f8fa;
    --color-border-default: #d0d7de;
    --color-border-muted: hsl(210, 18%, 87%);
    --color-neutral-muted: rgba(175, 184, 193, 0.2);
    --color-accent-fg: #0969da;
    --color-accent-emphasis: #0969da;
    --color-attention-subtle: #fff8c5;
    --color-danger-fg: #d1242f;
    --color-danger-emphasis: #cf222e;
    --color-attention-fg: #9a6700;
    --color-attention-emphasis: #9a6700;
    --color-done-fg: #8250df;
    --color-done-emphasis: #8250df;
    --color-success-fg: #1a7f37;
    --color-success-emphasis: #1f883d;
    --color-copied-active-bg: #2e9b33;
  }
}
[data-color-mode*='dark'] .wmde-markdown,
[data-color-mode*='dark'] .wmde-markdown-var,
.wmde-markdown-var[data-color-mode*='dark'],
.wmde-markdown[data-color-mode*='dark'],
body[data-color-mode*='dark'] {
  color-scheme: dark;
  --color-prettylights-syntax-comment: #8b949e;
  --color-prettylights-syntax-constant: #79c0ff;
  --color-prettylights-syntax-entity: #d2a8ff;
  --color-prettylights-syntax-storage-modifier-import: #c9d1d9;
  --color-prettylights-syntax-entity-tag: #7ee787;
  --color-prettylights-syntax-keyword: #ff7b72;
  --color-prettylights-syntax-string: #a5d6ff;
  --color-prettylights-syntax-variable: #ffa657;
  --color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
  --color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
  --color-prettylights-syntax-invalid-illegal-bg: #8e1519;
  --color-prettylights-syntax-carriage-return-text: #f0f6fc;
  --color-prettylights-syntax-carriage-return-bg: #b62324;
  --color-prettylights-syntax-string-regexp: #7ee787;
  --color-prettylights-syntax-markup-list: #f2cc60;
  --color-prettylights-syntax-markup-heading: #1f6feb;
  --color-prettylights-syntax-markup-italic: #c9d1d9;
  --color-prettylights-syntax-markup-bold: #c9d1d9;
  --color-prettylights-syntax-markup-deleted-text: #ffdcd7;
  --color-prettylights-syntax-markup-deleted-bg: #67060c;
  --color-prettylights-syntax-markup-inserted-text: #aff5b4;
  --color-prettylights-syntax-markup-inserted-bg: #033a16;
  --color-prettylights-syntax-markup-changed-text: #ffdfb6;
  --color-prettylights-syntax-markup-changed-bg: #5a1e02;
  --color-prettylights-syntax-markup-ignored-text: #c9d1d9;
  --color-prettylights-syntax-markup-ignored-bg: #1158c7;
  --color-prettylights-syntax-meta-diff-range: #d2a8ff;
  --color-prettylights-syntax-brackethighlighter-angle: #8b949e;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
  --color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
  --color-fg-default: #c9d1d9;
  --color-fg-muted: #8b949e;
  --color-fg-subtle: #484f58;
  --color-canvas-default: #0d1117;
  --color-canvas-subtle: #161b22;
  --color-border-default: #30363d;
  --color-border-muted: #21262d;
  --color-neutral-muted: rgba(110, 118, 129, 0.4);
  --color-accent-fg: #58a6ff;
  --color-accent-emphasis: #1f6feb;
  --color-attention-subtle: rgba(187, 128, 9, 0.15);
  --color-danger-fg: #f85149;
}
[data-color-mode*='light'] .wmde-markdown,
[data-color-mode*='light'] .wmde-markdown-var,
.wmde-markdown-var[data-color-mode*='light'],
.wmde-markdown[data-color-mode*='light'],
body[data-color-mode*='light'] {
  color-scheme: light;
  --color-prettylights-syntax-comment: #6e7781;
  --color-prettylights-syntax-constant: #0550ae;
  --color-prettylights-syntax-entity: #8250df;
  --color-prettylights-syntax-storage-modifier-import: #24292f;
  --color-prettylights-syntax-entity-tag: #116329;
  --color-prettylights-syntax-keyword: #cf222e;
  --color-prettylights-syntax-string: #0a3069;
  --color-prettylights-syntax-variable: #953800;
  --color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
  --color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
  --color-prettylights-syntax-invalid-illegal-bg: #82071e;
  --color-prettylights-syntax-carriage-return-text: #f6f8fa;
  --color-prettylights-syntax-carriage-return-bg: #cf222e;
  --color-prettylights-syntax-string-regexp: #116329;
  --color-prettylights-syntax-markup-list: #3b2300;
  --color-prettylights-syntax-markup-heading: #0550ae;
  --color-prettylights-syntax-markup-italic: #24292f;
  --color-prettylights-syntax-markup-bold: #24292f;
  --color-prettylights-syntax-markup-deleted-text: #82071e;
  --color-prettylights-syntax-markup-deleted-bg: #ffebe9;
  --color-prettylights-syntax-markup-inserted-text: #116329;
  --color-prettylights-syntax-markup-inserted-bg: #dafbe1;
  --color-prettylights-syntax-markup-changed-text: #953800;
  --color-prettylights-syntax-markup-changed-bg: #ffd8b5;
  --color-prettylights-syntax-markup-ignored-text: #eaeef2;
  --color-prettylights-syntax-markup-ignored-bg: #0550ae;
  --color-prettylights-syntax-meta-diff-range: #8250df;
  --color-prettylights-syntax-brackethighlighter-angle: #57606a;
  --color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
  --color-prettylights-syntax-constant-other-reference-link: #0a3069;
  --color-fg-default: #24292f;
  --color-fg-muted: #57606a;
  --color-fg-subtle: #6e7781;
  --color-canvas-default: #ffffff;
  --color-canvas-subtle: #f6f8fa;
  --color-border-default: #d0d7de;
  --color-border-muted: hsl(210, 18%, 87%);
  --color-neutral-muted: rgba(175, 184, 193, 0.2);
  --color-accent-fg: #0969da;
  --color-accent-emphasis: #0969da;
  --color-attention-subtle: #fff8c5;
  --color-danger-fg: #cf222e;
}
.wmde-markdown {
  -webkit-text-size-adjust: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
  color: var(--color-fg-default);
  background-color: var(--color-canvas-default);
}
.wmde-markdown details,
.wmde-markdown figcaption,
.wmde-markdown figure {
  display: block;
}
.wmde-markdown summary {
  display: list-item;
}
.wmde-markdown [hidden] {
  display: none !important;
}
.wmde-markdown a {
  background-color: transparent;
  color: var(--color-accent-fg);
  text-decoration: none;
}
.wmde-markdown a:active,
.wmde-markdown a:hover {
  outline-width: 0;
}
.wmde-markdown abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.wmde-markdown b,
.wmde-markdown strong {
  font-weight: 600;
}
.wmde-markdown dfn {
  font-style: italic;
}
.wmde-markdown h1 {
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
  border-bottom: 1px solid var(--color-border-muted);
}
.wmde-markdown mark {
  background-color: var(--color-attention-subtle);
  color: var(--color-text-primary);
}
.wmde-markdown small {
  font-size: 90%;
}
.wmde-markdown sub,
.wmde-markdown sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.wmde-markdown sub {
  bottom: -0.25em;
}
.wmde-markdown sup {
  top: -0.5em;
}
.wmde-markdown img {
  display: inline-block;
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
  background-color: var(--color-canvas-default);
}
.wmde-markdown code,
.wmde-markdown kbd,
.wmde-markdown pre,
.wmde-markdown samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.wmde-markdown figure {
  margin: 1em 40px;
}
.wmde-markdown hr {
  box-sizing: content-box;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border-muted);
  height: 0.25em;
  padding: 0;
  margin: 24px 0;
  background-color: var(--color-border-default);
}
.wmde-markdown input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.wmde-markdown [type='button'],
.wmde-markdown [type='reset'],
.wmde-markdown [type='submit'] {
  -webkit-appearance: button;
}
.wmde-markdown [type='button']::-moz-focus-inner,
.wmde-markdown [type='reset']::-moz-focus-inner,
.wmde-markdown [type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.wmde-markdown [type='button']:-moz-focusring,
.wmde-markdown [type='reset']:-moz-focusring,
.wmde-markdown [type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.wmde-markdown [type='checkbox'],
.wmde-markdown [type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
.wmde-markdown [type='number']::-webkit-inner-spin-button,
.wmde-markdown [type='number']::-webkit-outer-spin-button {
  height: auto;
}
.wmde-markdown [type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.wmde-markdown [type='search']::-webkit-search-cancel-button,
.wmde-markdown [type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
.wmde-markdown ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
.wmde-markdown ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.wmde-markdown a:hover {
  text-decoration: underline;
}
.wmde-markdown hr::before {
  display: table;
  content: '';
}
.wmde-markdown hr::after {
  display: table;
  clear: both;
  content: '';
}
.wmde-markdown table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: max-content;
  max-width: 100%;
}
.wmde-markdown td,
.wmde-markdown th {
  padding: 0;
}
.wmde-markdown details summary {
  cursor: pointer;
}
.wmde-markdown details:not([open]) > *:not(summary) {
  display: none !important;
}
.wmde-markdown kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}
.wmde-markdown h1,
.wmde-markdown h2,
.wmde-markdown h3,
.wmde-markdown h4,
.wmde-markdown h5,
.wmde-markdown h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.wmde-markdown td,
.wmde-markdown th {
  padding: 0;
}
.wmde-markdown details summary {
  cursor: pointer;
}
.wmde-markdown details:not([open]) > *:not(summary) {
  display: none !important;
}
.wmde-markdown kbd {
  display: inline-block;
  padding: 3px 5px;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--color-fg-default);
  vertical-align: middle;
  background-color: var(--color-canvas-subtle);
  border: solid 1px var(--color-neutral-muted);
  border-bottom-color: var(--color-neutral-muted);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
}
.wmde-markdown h1,
.wmde-markdown h2,
.wmde-markdown h3,
.wmde-markdown h4,
.wmde-markdown h5,
.wmde-markdown h6 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.25;
}
.wmde-markdown h2 {
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid var(--color-border-muted);
}
.wmde-markdown h3 {
  font-weight: 600;
  font-size: 1.25em;
}
.wmde-markdown h4 {
  font-weight: 600;
  font-size: 1em;
}
.wmde-markdown h5 {
  font-weight: 600;
  font-size: 0.875em;
}
.wmde-markdown h6 {
  font-weight: 600;
  font-size: 0.85em;
  color: var(--color-fg-muted);
}
.wmde-markdown p {
  margin-top: 0;
  margin-bottom: 10px;
}
.wmde-markdown blockquote {
  margin: 0;
  padding: 0 1em;
  color: var(--color-fg-muted);
  border-left: 0.25em solid var(--color-border-default);
}
.wmde-markdown ul,
.wmde-markdown ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}
.wmde-markdown ol ol,
.wmde-markdown ul ol {
  list-style-type: lower-roman;
}
.wmde-markdown ul ul ol,
.wmde-markdown ul ol ol,
.wmde-markdown ol ul ol,
.wmde-markdown ol ol ol {
  list-style-type: lower-alpha;
}
.wmde-markdown dd {
  margin-left: 0;
}
.wmde-markdown tt,
.wmde-markdown code {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}
.wmde-markdown pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
  word-wrap: normal;
}
.wmde-markdown .octicon {
  display: inline-block;
  overflow: visible !important;
  vertical-align: text-bottom;
  fill: currentColor;
}
.wmde-markdown ::placeholder {
  color: var(--color-fg-subtle);
  opacity: 1;
}
.wmde-markdown input::-webkit-outer-spin-button,
.wmde-markdown input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
.wmde-markdown [data-catalyst] {
  display: block;
}
.wmde-markdown::before {
  display: table;
  content: '';
}
.wmde-markdown::after {
  display: table;
  clear: both;
  content: '';
}
.wmde-markdown > *:first-child {
  margin-top: 0 !important;
}
.wmde-markdown > *:last-child {
  margin-bottom: 0 !important;
}
.wmde-markdown a:not([href]) {
  color: inherit;
  text-decoration: none;
}
.wmde-markdown .absent {
  color: var(--color-danger-fg);
}
.wmde-markdown a.anchor {
  float: left;
  padding-right: 4px;
  margin-left: -20px;
  line-height: 1;
}
.wmde-markdown .anchor:focus {
  outline: none;
}
.wmde-markdown p,
.wmde-markdown blockquote,
.wmde-markdown ul,
.wmde-markdown ol,
.wmde-markdown dl,
.wmde-markdown table,
.wmde-markdown pre,
.wmde-markdown details {
  margin-top: 0;
  margin-bottom: 16px;
}
.wmde-markdown blockquote > :first-child {
  margin-top: 0;
}
.wmde-markdown blockquote > :last-child {
  margin-bottom: 0;
}
.wmde-markdown sup > a::before {
  content: '[';
}
.wmde-markdown sup > a::after {
  content: ']';
}
.wmde-markdown h1 .octicon-link,
.wmde-markdown h2 .octicon-link,
.wmde-markdown h3 .octicon-link,
.wmde-markdown h4 .octicon-link,
.wmde-markdown h5 .octicon-link,
.wmde-markdown h6 .octicon-link {
  color: var(--color-fg-default);
  vertical-align: middle;
  visibility: hidden;
}
.wmde-markdown h1:hover .anchor,
.wmde-markdown h2:hover .anchor,
.wmde-markdown h3:hover .anchor,
.wmde-markdown h4:hover .anchor,
.wmde-markdown h5:hover .anchor,
.wmde-markdown h6:hover .anchor {
  text-decoration: none;
}
.wmde-markdown h1:hover .anchor .octicon-link,
.wmde-markdown h2:hover .anchor .octicon-link,
.wmde-markdown h3:hover .anchor .octicon-link,
.wmde-markdown h4:hover .anchor .octicon-link,
.wmde-markdown h5:hover .anchor .octicon-link,
.wmde-markdown h6:hover .anchor .octicon-link {
  visibility: visible;
}
.wmde-markdown h1 tt,
.wmde-markdown h1 code,
.wmde-markdown h2 tt,
.wmde-markdown h2 code,
.wmde-markdown h3 tt,
.wmde-markdown h3 code,
.wmde-markdown h4 tt,
.wmde-markdown h4 code,
.wmde-markdown h5 tt,
.wmde-markdown h5 code,
.wmde-markdown h6 tt,
.wmde-markdown h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
.wmde-markdown ul.no-list,
.wmde-markdown ol.no-list {
  padding: 0;
  list-style-type: none;
}
.wmde-markdown ol[type='1'] {
  list-style-type: decimal;
}
.wmde-markdown ol[type='a'] {
  list-style-type: lower-alpha;
}
.wmde-markdown ol[type='i'] {
  list-style-type: lower-roman;
}
.wmde-markdown div > ol:not([type]) {
  list-style-type: decimal;
}
.wmde-markdown ul ul,
.wmde-markdown ul ol,
.wmde-markdown ol ol,
.wmde-markdown ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
.wmde-markdown li > p {
  margin-top: 16px;
}
.wmde-markdown li + li {
  margin-top: 0.25em;
}
.wmde-markdown dl {
  padding: 0;
}
.wmde-markdown dl dt {
  padding: 0;
  margin-top: 16px;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
.wmde-markdown dl dd {
  padding: 0 16px;
  margin-bottom: 16px;
}
.wmde-markdown table th {
  font-weight: 600;
}
.wmde-markdown table th,
.wmde-markdown table td {
  padding: 6px 13px;
  border: 1px solid var(--color-border-default);
}
.wmde-markdown table tr {
  background-color: var(--color-canvas-default);
  border-top: 1px solid var(--color-border-muted);
}
.wmde-markdown table tr:nth-child(2n) {
  background-color: var(--color-canvas-subtle);
}
.wmde-markdown table img {
  background-color: transparent;
}
.wmde-markdown img[align='right'] {
  padding-left: 20px;
}
.wmde-markdown img[align='left'] {
  padding-right: 20px;
}
.wmde-markdown .emoji {
  max-width: none;
  vertical-align: text-top;
  background-color: transparent;
}
.wmde-markdown span.frame {
  display: block;
  overflow: hidden;
}
.wmde-markdown span.frame > span {
  display: block;
  float: left;
  width: auto;
  padding: 7px;
  margin: 13px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border-default);
}
.wmde-markdown span.frame span img {
  display: block;
  float: left;
}
.wmde-markdown span.frame span span {
  display: block;
  padding: 5px 0 0;
  clear: both;
  color: var(--color-fg-default);
}
.wmde-markdown span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.wmde-markdown span.align-center > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: center;
}
.wmde-markdown span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.wmde-markdown span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.wmde-markdown span.align-right > span {
  display: block;
  margin: 13px 0 0;
  overflow: hidden;
  text-align: right;
}
.wmde-markdown span.align-right span img {
  margin: 0;
  text-align: right;
}
.wmde-markdown span.float-left {
  display: block;
  float: left;
  margin-right: 13px;
  overflow: hidden;
}
.wmde-markdown span.float-left span {
  margin: 13px 0 0;
}
.wmde-markdown span.float-right {
  display: block;
  float: right;
  margin-left: 13px;
  overflow: hidden;
}
.wmde-markdown span.float-right > span {
  display: block;
  margin: 13px auto 0;
  overflow: hidden;
  text-align: right;
}
.wmde-markdown code,
.wmde-markdown tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  background-color: var(--color-neutral-muted);
  border-radius: 6px;
}
.wmde-markdown code br,
.wmde-markdown tt br {
  display: none;
}
.wmde-markdown del code {
  text-decoration: inherit;
}
.wmde-markdown pre code {
  font-size: 100%;
}
.wmde-markdown pre > code {
  padding: 0;
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
.wmde-markdown pre {
  font-size: 85%;
  line-height: 1.45;
  background-color: var(--color-canvas-subtle);
  border-radius: 6px;
}
.wmde-markdown pre code,
.wmde-markdown pre tt {
  display: inline;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}
.wmde-markdown pre > code {
  padding: 16px;
  overflow: auto;
  display: block;
}
.wmde-markdown pre > code::-webkit-scrollbar {
  background: transparent;
  width: 8px;
  height: 8px;
}
.wmde-markdown pre > code::-webkit-scrollbar-thumb {
  background: var(--color-fg-muted);
  border-radius: 10px;
}
.wmde-markdown .csv-data td,
.wmde-markdown .csv-data th {
  padding: 5px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}
.wmde-markdown .csv-data .blob-num {
  padding: 10px 8px 9px;
  text-align: right;
  background: var(--color-canvas-default);
  border: 0;
}
.wmde-markdown .csv-data tr {
  border-top: 0;
}
.wmde-markdown .csv-data th {
  font-weight: 600;
  background: var(--color-canvas-subtle);
  border-top: 0;
}
.wmde-markdown .footnotes {
  font-size: 12px;
  color: var(--color-fg-muted);
  border-top: 1px solid var(--color-border-default);
}
.wmde-markdown .footnotes ol {
  padding-left: 16px;
}
.wmde-markdown .footnotes li {
  position: relative;
}
.wmde-markdown .footnotes li:target::before {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -24px;
  pointer-events: none;
  content: '';
  border: 2px solid var(--color-accent-emphasis);
  border-radius: 6px;
}
.wmde-markdown .footnotes li:target {
  color: var(--color-fg-default);
}
.wmde-markdown .footnotes .data-footnote-backref g-emoji {
  font-family: monospace;
}
.wmde-markdown .task-list-item {
  list-style-type: none;
}
.wmde-markdown .task-list-item label {
  font-weight: 400;
}
.wmde-markdown .task-list-item.enabled label {
  cursor: pointer;
}
.wmde-markdown .task-list-item + .wmde-markdown .task-list-item {
  margin-top: 3px;
}
.wmde-markdown .task-list-item .handle {
  display: none;
}
.wmde-markdown .task-list-item-checkbox,
.wmde-markdown .contains-task-list input[type='checkbox'] {
  margin: 0 0.2em 0.25em -1.6em;
  vertical-align: middle;
}
.wmde-markdown .contains-task-list:dir(rtl) .task-list-item-checkbox,
.wmde-markdown .contains-task-list:dir(rtl) input[type='checkbox'] {
  margin: 0 -1.6em 0.25em 0.2em;
}
.wmde-markdown ::-webkit-calendar-picker-indicator {
  filter: invert(50%);
}
.wmde-markdown pre {
  position: relative;
}
.wmde-markdown pre .copied {
  visibility: hidden;
  display: flex;
  position: absolute;
  cursor: pointer;
  color: var(--color-fg-default);
  top: 6px;
  right: 6px;
  border-radius: 5px;
  background: var(--color-border-default);
  padding: 6px;
  font-size: 12px;
  transition: all 0.3s;
}
.wmde-markdown pre .copied .octicon-copy {
  display: block;
}
.wmde-markdown pre .copied .octicon-check {
  display: none;
}
.wmde-markdown pre:hover .copied {
  visibility: visible;
}
.wmde-markdown pre:hover .copied:hover {
  background: var(--color-prettylights-syntax-entity-tag);
  color: var(--color-canvas-default);
}
.wmde-markdown pre:hover .copied:active,
.wmde-markdown pre .copied.active {
  background: var(--color-copied-active-bg);
  color: var(--color-canvas-default);
}
.wmde-markdown pre .active .octicon-copy {
  display: none;
}
.wmde-markdown pre .active .octicon-check {
  display: block;
}
.wmde-markdown .markdown-alert {
  padding: 0.5rem 1em;
  color: inherit;
  margin-bottom: 16px;
  border-left: 0.25em solid var(--borderColor-default, var(--color-border-default));
}
.wmde-markdown .markdown-alert > :last-child {
  margin-bottom: 0 !important;
}
.wmde-markdown .markdown-alert .markdown-alert-title {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
}
.wmde-markdown .markdown-alert .markdown-alert-title svg.octicon {
  margin-right: var(--base-size-8, 8px) !important;
}
.wmde-markdown .markdown-alert.markdown-alert-note {
  border-left-color: var(--borderColor-accent-emphasis, var(--color-accent-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-note .markdown-alert-title {
  color: var(--fgColor-accent, var(--color-accent-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-tip {
  border-left-color: var(--borderColor-success-emphasis, var(--color-success-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-tip .markdown-alert-title {
  color: var(--fgColor-success, var(--color-success-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-important {
  border-left-color: var(--borderColor-done-emphasis, var(--color-done-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-important .markdown-alert-title {
  color: var(--fgColor-done, var(--color-done-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-warning {
  border-left-color: var(--borderColor-attention-emphasis, var(--color-attention-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-warning .markdown-alert-title {
  color: var(--fgColor-attention, var(--color-attention-fg));
}
.wmde-markdown .markdown-alert.markdown-alert-caution {
  border-left-color: var(--borderColor-danger-emphasis, var(--color-danger-emphasis));
}
.wmde-markdown .markdown-alert.markdown-alert-caution .markdown-alert-title {
  color: var(--fgColor-danger, var(--color-danger-fg));
}
.wmde-markdown .highlight-line {
  background-color: var(--color-neutral-muted);
}
.wmde-markdown .code-line.line-number::before {
  display: inline-block;
  width: 1rem;
  text-align: right;
  margin-right: 16px;
  color: var(--color-fg-subtle);
  content: attr(line);
  white-space: nowrap;
}
.wmde-markdown .token.comment,
.wmde-markdown .token.prolog,
.wmde-markdown .token.doctype,
.wmde-markdown .token.cdata {
  color: var(--color-prettylights-syntax-comment);
}
.wmde-markdown .token.namespace {
  opacity: 0.7;
}
.wmde-markdown .token.property,
.wmde-markdown .token.tag,
.wmde-markdown .token.selector,
.wmde-markdown .token.constant,
.wmde-markdown .token.symbol,
.wmde-markdown .token.deleted {
  color: var(--color-prettylights-syntax-entity-tag);
}
.wmde-markdown .token.maybe-class-name {
  color: var(--color-prettylights-syntax-variable);
}
.wmde-markdown .token.property-access,
.wmde-markdown .token.operator,
.wmde-markdown .token.boolean,
.wmde-markdown .token.number,
.wmde-markdown .token.selector .token.class,
.wmde-markdown .token.attr-name,
.wmde-markdown .token.string,
.wmde-markdown .token.char,
.wmde-markdown .token.builtin {
  color: var(--color-prettylights-syntax-constant);
}
.wmde-markdown .token.deleted {
  color: var(--color-prettylights-syntax-markup-deleted-text);
}
.wmde-markdown .code-line .token.deleted {
  background-color: var(--color-prettylights-syntax-markup-deleted-bg);
}
.wmde-markdown .token.inserted {
  color: var(--color-prettylights-syntax-markup-inserted-text);
}
.wmde-markdown .code-line .token.inserted {
  background-color: var(--color-prettylights-syntax-markup-inserted-bg);
}
.wmde-markdown .token.variable {
  color: var(--color-prettylights-syntax-constant);
}
.wmde-markdown .token.entity,
.wmde-markdown .token.url,
.wmde-markdown .language-css .token.string,
.wmde-markdown .style .token.string {
  color: var(--color-prettylights-syntax-string);
}
.wmde-markdown .token.color,
.wmde-markdown .token.atrule,
.wmde-markdown .token.attr-value,
.wmde-markdown .token.function,
.wmde-markdown .token.class-name {
  color: var(--color-prettylights-syntax-string);
}
.wmde-markdown .token.rule,
.wmde-markdown .token.regex,
.wmde-markdown .token.important,
.wmde-markdown .token.keyword {
  color: var(--color-prettylights-syntax-keyword);
}
.wmde-markdown .token.coord {
  color: var(--color-prettylights-syntax-meta-diff-range);
}
.wmde-markdown .token.important,
.wmde-markdown .token.bold {
  font-weight: bold;
}
.wmde-markdown .token.italic {
  font-style: italic;
}
.wmde-markdown .token.entity {
  cursor: help;
}
.w-md-editor-toolbar-child {
  position: absolute;
  border-radius: 3px;
  box-shadow: 0 0 0 1px var(--md-editor-box-shadow-color), 0 0 0 var(--md-editor-box-shadow-color), 0 1px 1px var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  z-index: 1;
  display: none;
}
.w-md-editor-toolbar-child.active {
  display: block;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar {
  border-bottom: 0;
  padding: 3px;
  border-radius: 3px;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar ul > li {
  display: block;
}
.w-md-editor-toolbar-child .w-md-editor-toolbar ul > li button {
  width: -webkit-fill-available;
  height: initial;
  box-sizing: border-box;
  padding: 3px 4px 2px 4px;
  margin: 0;
}
.w-md-editor-toolbar {
  border-bottom: 1px solid var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  padding: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px 3px 0 0;
  -webkit-user-select: none;
          user-select: none;
  flex-wrap: wrap;
}
.w-md-editor-toolbar.bottom {
  border-bottom: 0px;
  border-top: 1px solid var(--md-editor-box-shadow-color);
  border-radius: 0 0 3px 3px;
}
.w-md-editor-toolbar ul,
.w-md-editor-toolbar li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: initial;
}
.w-md-editor-toolbar li {
  display: inline-block;
  font-size: 14px;
}
.w-md-editor-toolbar li + li {
  margin: 0;
}
.w-md-editor-toolbar li > button {
  border: none;
  height: 20px;
  line-height: 14px;
  background: none;
  padding: 4px;
  margin: 0 1px;
  border-radius: 2px;
  text-transform: none;
  font-weight: normal;
  overflow: visible;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  color: var(--color-fg-default);
}
.w-md-editor-toolbar li > button:hover,
.w-md-editor-toolbar li > button:focus {
  background-color: var(--color-neutral-muted);
  color: var(--color-accent-fg);
}
.w-md-editor-toolbar li > button:active {
  background-color: var(--color-neutral-muted);
  color: var(--color-danger-fg);
}
.w-md-editor-toolbar li > button:disabled {
  color: var(--md-editor-box-shadow-color);
  cursor: not-allowed;
}
.w-md-editor-toolbar li > button:disabled:hover {
  background-color: transparent;
  color: var(--md-editor-box-shadow-color);
}
.w-md-editor-toolbar li.active > button {
  color: var(--color-accent-fg);
  background-color: var(--color-neutral-muted);
}
.w-md-editor-toolbar-divider {
  height: 14px;
  width: 1px;
  margin: -3px 3px 0 3px !important;
  vertical-align: middle;
  background-color: var(--md-editor-box-shadow-color);
}
.w-md-editor-area {
  overflow: auto;
  border-radius: 5px;
}
.w-md-editor-text {
  min-height: 100%;
  position: relative;
  text-align: left;
  white-space: pre-wrap;
  word-break: keep-all;
  overflow-wrap: break-word;
  box-sizing: border-box;
  padding: 10px;
  margin: 0;
  font-size: 14px !important;
  line-height: 18px !important;
  font-variant-ligatures: common-ligatures;
}
.w-md-editor-text-pre,
.w-md-editor-text-input,
.w-md-editor-text > .w-md-editor-text-pre {
  margin: 0;
  border: 0;
  background: none;
  box-sizing: inherit;
  display: inherit;
  font-family: inherit;
  font-family: var(--md-editor-font-family) !important;
  font-size: inherit;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  tab-size: inherit;
  text-indent: inherit;
  text-rendering: inherit;
  text-transform: inherit;
  white-space: inherit;
  overflow-wrap: inherit;
  word-break: inherit;
  word-break: normal;
  padding: 0;
}
.w-md-editor-text-pre {
  position: relative;
  margin: 0px !important;
  pointer-events: none;
  background-color: transparent !important;
}
.w-md-editor-text-pre > code {
  padding: 0 !important;
  font-family: var(--md-editor-font-family) !important;
  font-size: 14px !important;
  line-height: 18px !important;
}
.w-md-editor-text-input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  resize: none;
  color: inherit;
  overflow: hidden;
  outline: 0;
  padding: inherit;
  -webkit-font-smoothing: antialiased;
  -webkit-text-fill-color: transparent;
}
.w-md-editor-text-input:empty {
  -webkit-text-fill-color: inherit !important;
}
.w-md-editor-text-pre,
.w-md-editor-text-input {
  word-wrap: pre;
  word-break: break-word;
  white-space: pre-wrap;
}
/**
 * Hack to apply on some CSS on IE10 and IE11
 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /**
    * IE doesn't support '-webkit-text-fill-color'
    * So we use 'color: transparent' to make the text transparent on IE
    * Unlike other browsers, it doesn't affect caret color in IE
    */
  .w-md-editor-text-input {
    color: transparent !important;
  }
  .w-md-editor-text-input::selection {
    background-color: #accef7 !important;
    color: transparent !important;
  }
}
.w-md-editor-text-pre .punctuation {
  color: var(--color-prettylights-syntax-comment, #8b949e) !important;
}
.w-md-editor-text-pre .token.url,
.w-md-editor-text-pre .token.content {
  color: var(--color-prettylights-syntax-constant, #0550ae) !important;
}
.w-md-editor-text-pre .token.title.important {
  color: var(--color-prettylights-syntax-markup-bold, #24292f);
}
.w-md-editor-text-pre .token.code-block .function {
  color: var(--color-prettylights-syntax-entity, #8250df);
}
.w-md-editor-text-pre .token.bold {
  font-weight: unset !important;
}
.w-md-editor-text-pre .token.title {
  line-height: unset !important;
  font-size: unset !important;
  font-weight: unset !important;
}
.w-md-editor-text-pre .token.code.keyword {
  color: var(--color-prettylights-syntax-constant, #0550ae) !important;
}
.w-md-editor-text-pre .token.strike,
.w-md-editor-text-pre .token.strike .content {
  color: var(--color-prettylights-syntax-markup-deleted-text, #82071e) !important;
}
.w-md-editor-bar {
  position: absolute;
  cursor: s-resize;
  right: 0;
  bottom: 0;
  margin-top: -11px;
  margin-right: 0;
  width: 14px;
  z-index: 3;
  height: 10px;
  border-radius: 0 0 3px 0;
  -webkit-user-select: none;
          user-select: none;
}
.w-md-editor-bar svg {
  display: block;
  margin: 0 auto;
}
.w-md-editor {
  text-align: left;
  border-radius: 3px;
  padding-bottom: 1px;
  position: relative;
  color: var(--color-fg-default);
  --md-editor-font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --md-editor-background-color: var(--color-canvas-default, #ffffff);
  --md-editor-box-shadow-color: var(--color-border-default, #d0d7de);
  box-shadow: 0 0 0 1px var(--md-editor-box-shadow-color), 0 0 0 var(--md-editor-box-shadow-color), 0 1px 1px var(--md-editor-box-shadow-color);
  background-color: var(--md-editor-background-color);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}
.w-md-editor.w-md-editor-rtl {
  direction: rtl !important;
  text-align: right !important;
}
.w-md-editor.w-md-editor-rtl .w-md-editor-preview {
  right: unset !important;
  left: 0;
  text-align: right !important;
  box-shadow: inset -1px 0 0 0 var(--md-editor-box-shadow-color);
}
.w-md-editor.w-md-editor-rtl .w-md-editor-text {
  text-align: right !important;
}
.w-md-editor-toolbar {
  height: fit-content;
}
.w-md-editor-content {
  height: 100%;
  overflow: auto;
  position: relative;
  border-radius: 0 0 3px 0;
}
.w-md-editor .copied {
  display: none !important;
}
.w-md-editor-input {
  width: 50%;
  height: 100%;
}
.w-md-editor-text-pre > code {
  word-break: break-word !important;
  white-space: pre-wrap !important;
}
.w-md-editor-preview {
  width: 50%;
  box-sizing: border-box;
  box-shadow: inset 1px 0 0 0 var(--md-editor-box-shadow-color);
  position: absolute;
  padding: 10px 20px;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 0 0 5px 0;
  display: flex;
  flex-direction: column;
}
.w-md-editor-preview .anchor {
  display: none;
}
.w-md-editor-preview .contains-task-list li.task-list-item {
  list-style: none;
}
.w-md-editor-show-preview .w-md-editor-input {
  width: 0%;
  overflow: hidden;
  background-color: var(--md-editor-background-color);
}
.w-md-editor-show-preview .w-md-editor-preview {
  width: 100%;
  box-shadow: inset 0 0 0 0;
}
.w-md-editor-show-edit .w-md-editor-input {
  width: 100%;
}
.w-md-editor-show-edit .w-md-editor-preview {
  width: 0%;
  padding: 0;
}
.w-md-editor-fullscreen {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100% !important;
}
.w-md-editor-fullscreen .w-md-editor-content {
  height: 100%;
}
/* 弹幕动画 */
@keyframes danmaku-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200vw);
  }
}

.live-danmaku-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.danmaku-item {
  position: absolute;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  animation: danmaku-scroll 10s linear forwards;
}

.danmaku-admin {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.study-plan-container {
  padding: 24px;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.study-plan-container .ant-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

.study-plan-container .ant-card-head {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px 12px 0 0;
}

.study-plan-container .ant-card-head-title {
  color: white;
}

.study-plan-container .ant-card-extra {
  color: white;
}

.study-plan-container .ant-table {
  font-size: 14px;
}

.study-plan-container .ant-table-thead > tr > th {
  background: #f0f2f5;
  font-weight: 600;
  font-size: 15px;
}

.study-plan-container .ant-table-tbody > tr {
  transition: all 0.3s ease;
}

.study-plan-container .ant-table-tbody > tr:hover {
  background: #e6f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.study-plan-container .completed-row {
  background: #f6ffed;
}

.study-plan-container .completed-row:hover {
  background: #d9f7be !important;
}

.study-plan-container .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #52c41a;
  border-color: #52c41a;
}

.study-plan-container .ant-progress-circle .ant-progress-text {
  font-size: 16px;
  font-weight: bold;
}


/* 引入主题变量 */
/* ==========================================================================
   DuckEdu 主题系统 - Theme System
   支持白色模式(light/默认)和暖色学术主题(warm)
   ========================================================================== */
/* --------------------------------------------------------------------------
   白色模式 (默认) - 高级简洁风格
   -------------------------------------------------------------------------- */
:root,
:root[data-theme="light"] {
    /* 字体系统 */
    --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-code: 'JetBrains Mono', Consolas, Monaco, monospace;
    
    /* 背景色系 - 鸭子暖白 */
    --bg-base: #faf7f0;
    --bg-paper: #ffffff;
    --bg-sidebar: #f5f0e6;
    --bg-hover: #f5f0e6;
    --bg-code: #faf8f3;
    --bg-tooltip: #2c1810;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    
    /* 强调色系 - 鸭子橘黄 */
    --accent-primary: #FFB800;
    --accent-secondary: #3d5a3e;
    --accent-tertiary: #FF9500;
    --accent-light: rgba(255, 184, 0, 0.1);
    --accent-gradient: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
    
    /* 文字色系 - 暖棕 */
    --text-primary: #2c1810;
    --text-secondary: #6b5e54;
    --text-muted: #9a8e82;
    --text-inverse: #ffffff;
    
    /* 边框 - 暖色 */
    --border: #e8dcc8;
    --border-strong: #d4c4a8;
    --border-light: rgba(44, 24, 16, 0.06);
    
    /* 阴影 - 温暖 */
    --shadow-sm: 0 1px 2px rgba(44, 24, 16, 0.04);
    --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.06);
    --shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.08);
    --shadow-card: 0 1px 3px rgba(44, 24, 16, 0.04), 0 4px 12px rgba(44, 24, 16, 0.02);
    
    /* 状态色 */
    --success: #3d5a3e;
    --warning: #FFB800;
    --error: #d4543a;
    --info: #c5a55a;
    
    /* 滚动条 */
    --scrollbar-track: transparent;
    --scrollbar-thumb: rgba(0, 0, 0, 0.12);
    --scrollbar-thumb-hover: rgba(0, 0, 0, 0.2);
}
/* --------------------------------------------------------------------------
   暖色学术主题 - 黄色纸张风格
   -------------------------------------------------------------------------- */
:root[data-theme="warm"] {
    /* 字体系统 - 衬线字体更有学术感 */
    --font-body: 'Noto Serif SC', 'Crimson Pro', Georgia, serif;
    --font-code: 'JetBrains Mono', Consolas, Monaco, monospace;
    
    /* 背景色系 - 温暖米黄 */
    --bg-base: #faf8f3;
    --bg-paper: #fffdf8;
    --bg-sidebar: #f5f2eb;
    --bg-hover: #f0ede6;
    --bg-code: #f8f6f1;
    --bg-tooltip: #3d4a3a;
    --bg-card: #fffdf8;
    --bg-input: #fffdf8;
    
    /* 强调色系 - 保持蓝色统一 */
    --accent-primary: #2563eb;
    --accent-secondary: #10b981;
    --accent-tertiary: #f59e0b;
    --accent-light: rgba(37, 99, 235, 0.08);
    --accent-gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    
    /* 文字色系 */
    --text-primary: #2c3e1f;
    --text-secondary: #5a6a50;
    --text-muted: #8a9a80;
    --text-inverse: #fffdf8;
    
    /* 边框 */
    --border: #e5e0d5;
    --border-strong: #d5d0c5;
    --border-light: rgba(139, 115, 85, 0.1);
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px rgba(44, 62, 31, 0.06);
    --shadow-md: 0 4px 12px rgba(44, 62, 31, 0.08);
    --shadow-lg: 0 8px 24px rgba(44, 62, 31, 0.1);
    --shadow-card: 0 1px 3px rgba(44, 62, 31, 0.04), 0 4px 12px rgba(44, 62, 31, 0.03);
    
    /* 状态色 */
    --success: #4a6741;
    --warning: #b8860b;
    --error: #9e5a4a;
    --info: #5a7a8a;
    
    /* 滚动条 */
    --scrollbar-track: transparent;
    --scrollbar-thumb: rgba(44, 62, 31, 0.12);
    --scrollbar-thumb-hover: rgba(44, 62, 31, 0.2);
}
/* --------------------------------------------------------------------------
   主题过渡动画
   -------------------------------------------------------------------------- */
html {
    transition: background-color 0.3s ease, color 0.3s ease;
}
body,
.ant-layout,
.ant-card,
.ant-modal-content,
.ant-drawer-content,
.ant-menu,
.ant-table {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
* {
  box-sizing: border-box;
}
/* 允许正常滚动 */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
}
body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 15px;
}
code {
  font-family: var(--font-code);
}
/* 自定义滚动条 - 主题感知 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}
/* 全局布局容器 */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-base);
}
/* 导航栏优化 - 高级磨砂玻璃质感 */
.ant-layout-header {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(0, 0, 0, 0.03) !important;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  line-height: 64px;
  padding: 0 24px !important;
  transition: all 0.3s ease;
}
/* 暖色主题下的导航栏 */
:root[data-theme="warm"] .ant-layout-header {
  background: rgba(255, 252, 245, 0.78) !important;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1) !important;
}
/* 导航栏 Logo 和品牌区域 */
.ant-layout-header a {
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* DuckEdu Logo 保持蓝色 */
.ant-layout-header a[href="/"] {
  color: #2563eb !important;
}
:root[data-theme="warm"] .ant-layout-header a[href="/"] {
  color: #2563eb !important;
}
/* 导航栏菜单项优化 */
.ant-layout-header .ant-menu-horizontal {
  background: transparent !important;
  border-bottom: none !important;
}
.ant-layout-header .ant-menu-item {
  color: #4b5563 !important;
  font-weight: 500;
  font-size: 14px;
  padding: 0 14px !important;
  margin: 0 2px !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}
:root[data-theme="warm"] .ant-layout-header .ant-menu-item {
  color: #5a6a50 !important;
}
.ant-layout-header .ant-menu-item:hover {
  color: #111827 !important;
  background: rgba(0, 0, 0, 0.04) !important;
}
:root[data-theme="warm"] .ant-layout-header .ant-menu-item:hover {
  color: #111827 !important;
  background: rgba(0, 0, 0, 0.04) !important;
}
.ant-layout-header .ant-menu-item-selected {
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.08) !important;
  font-weight: 600;
}
:root[data-theme="warm"] .ant-layout-header .ant-menu-item-selected {
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.08) !important;
}
.ant-layout-header .ant-menu-item-selected::after {
  border-bottom: 2px solid #2563eb !important;
  bottom: 0;
}
:root[data-theme="warm"] .ant-layout-header .ant-menu-item-selected::after {
  border-bottom: 2px solid #FFB800 !important;
}
/* 导航栏鸭子品牌色 */
.ant-layout-header .ant-btn {
  color: #2c1810 !important;
  border-color: #e8dcc8 !important;
}
.ant-layout-header .ant-btn-primary {
  background: #FFB800 !important;
  border-color: #FFB800 !important;
  color: #fff !important;
}
:root[data-theme="warm"] .ant-layout-header .ant-btn-primary {
  background: #FFB800 !important;
  border-color: #FFB800 !important;
}
.ant-layout-header .ant-btn-primary:hover {
  opacity: 0.9;
}
.ant-layout-header .ant-menu-horizontal .ant-menu-item-selected {
  color: #FFB800 !important;
}
.ant-layout-header .ant-menu-horizontal .ant-menu-item:hover {
  color: #FFB800 !important;
}
.main-content {
  flex: 1;
  padding: 32px 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
/* ==========================================================================
   组件重构 (Component Overhaul)
   ========================================================================== */
/* 1. 卡片 (Card) - 主题感知 */
.ant-card {
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-card) !important;
  background: var(--bg-card) !important;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.ant-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary) !important;
  box-shadow: var(--shadow-lg) !important;
}
.ant-card-body {
  padding: 20px !important;
}
.ant-card-meta-title {
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 8px !important;
  color: var(--text-primary) !important;
}
.ant-card-meta-description {
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  line-height: 1.5;
}
/* 2. 按钮 (Button) - 主题感知 */
.ant-btn {
  border-radius: 8px !important;
  font-weight: 500;
  font-family: var(--font-body);
  height: auto;
  padding: 6px 16px;
  box-shadow: none !important;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
.ant-btn-primary {
  background: linear-gradient(135deg, #FFB800, #FF9500) !important;
  border-color: #FFB800 !important;
  color: #fff !important;
  font-weight: 600;
}
.ant-btn-primary:hover {
  background: linear-gradient(135deg, #FF9500, #e88600) !important;
  border-color: #FF9500 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,184,0,0.3) !important;
}
.ant-btn-link {
  color: var(--text-secondary) !important;
  border: none !important;
  background: transparent !important;
}
.ant-btn-link:hover {
  color: var(--accent-primary) !important;
  background: var(--accent-light) !important;
}
/* 3. 标签 (Tag) - 主题感知 */
.ant-tag {
  border-radius: 12px !important;
  border: none !important;
  padding: 3px 10px !important;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  background: var(--accent-light) !important;
  color: var(--accent-primary) !important;
}
/* 4. 特殊修复：Featured Course Card */
/* 防止全局 Card 样式破坏这个特殊组件的深色背景 */
.featured-course-main {
  background: linear-gradient(135deg, #FFB800 0%, #e89500 100%) !important; /* 鸭子橘黄渐变 */
  color: white !important;
}
.featured-course-main .ant-typography,
.featured-course-main h1,
.featured-course-main h2,
.featured-course-main h3,
.featured-course-main h4,
.featured-course-main h5,
.featured-course-main .ant-typography-secondary {
  color: white !important; /* 强制白色文字 */
}
/* 视频播放器容器 */
.video-player {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
/* 每日好题卡片 */
.daily-questions-card .ant-card-head {
  background: white !important;
  border-bottom: 1px solid #f3f4f6 !important;
}
.daily-questions-card .ant-card-head-title {
  color: #111827 !important;
  font-size: 18px !important;
}
/* 课程封面图容器 */
.course-cover-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.course-cover-wrapper img {
  transition: transform 0.5s ease;
}
.ant-card:hover .course-cover-wrapper img {
  transform: scale(1.05);
}
/* 加载动画 */
.ant-spin-dot-item {
  background-color: #2563eb !important;
}
/* 5. Modal 弹窗 - 主题感知 */
.ant-modal-content {
  background: var(--bg-paper) !important;
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid var(--border) !important;
}
.ant-modal-body {
  padding: 24px !important;
  background: var(--bg-paper) !important;
  color: var(--text-primary) !important;
}
.ant-modal-header {
  background: var(--bg-paper) !important;
  border-bottom: 1px solid var(--border) !important;
}
.ant-modal-title {
  color: var(--text-primary) !important;
}
/* 确保 Modal 内的文字可见 */
.ant-modal-content,
.ant-modal-body,
.ant-modal-content * {
  color: inherit;
}
/* Wiki 链接悬浮提示 */
.wiki-link-container {
  position: relative;
  display: inline-block;
}
/* Tooltip 默认隐藏 - 必须用 CSS 类而非内联样式 */
.wiki-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 14px;
  background: #1e293b;
  color: #f8fafc;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 99999;
  min-width: 200px;
  max-width: 280px;
  white-space: normal;
  font-size: 13px;
  line-height: 1.5;
  pointer-events: none;
  /* 默认隐藏 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
/* 防止左侧溢出 */
.wiki-link-container:first-child .wiki-tooltip,
.wiki-link-container:nth-child(-n+3) .wiki-tooltip {
  left: 0;
  transform: translateX(0);
}
.wiki-link-container:first-child .wiki-tooltip-arrow,
.wiki-link-container:nth-child(-n+3) .wiki-tooltip-arrow {
  left: 20px;
  transform: translateX(0);
}
/* Tooltip 箭头 */
.wiki-tooltip-arrow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1e293b;
}
/* Hover 时显示 */
.wiki-link-container:hover .wiki-tooltip {
  opacity: 1;
  visibility: visible;
}
.wiki-link-text:hover {
  color: #4338ca !important;
  border-bottom-color: #4338ca !important;
}
/* ========== Wiki 内容样式 ========== */
/* Wiki 代码块美化 - 白底浅色系 */
.wiki-content pre {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  overflow-x: auto;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.wiki-content pre code {
  font-family: "JetBrains Mono", "Fira Code", "SF Mono", Menlo, Monaco, Consolas, monospace !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  background: transparent !important;
}
/* ASCII 图形特殊样式 - 用于包含方框字符的代码块 */
.wiki-content pre:has(code:contains('┌')),
.wiki-content pre:has(code:contains('│')),
.wiki-content pre:has(code:contains('├')) {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}
/* Wiki 表格美化 */
.wiki-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
.wiki-content table thead {
  background: #f1f5f9 !important;
}
.wiki-content table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: #1e293b !important;
  font-size: 14px;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #e2e8f0;
}
.wiki-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 14px;
}
.wiki-content table tbody tr {
  background: white;
  transition: background-color 0.2s;
}
.wiki-content table tbody tr:hover {
  background: #f8fafc;
}
.wiki-content table tbody tr:last-child td {
  border-bottom: none;
}
/* Wiki 引用块美化 */
.wiki-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  color: #92400e;
  font-style: italic;
}
/* Wiki 列表美化 */
.wiki-content ul {
  padding-left: 24px;
  margin: 16px 0;
}
.wiki-content ul li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 8px;
  line-height: 1.7;
}
.wiki-content ul li::marker {
  color: #b8941e;
}
/* Wiki 公式样式 */
.wiki-content .katex-display {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  overflow-x: auto;
}
/* Wiki 强调文本 */
.wiki-content strong {
  color: #b8941e;
  font-weight: 600;
}
/* Wiki 警告提示美化 (⚠️ 开头的段落) */
.wiki-content p:has(> span:first-child:contains('⚠️')),
.wiki-content p:first-child:contains('⚠️') {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left: 4px solid #ef4444;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}
/* 优化内联代码样式 */
.wiki-content code:not(pre code) {
  background: #f1f5f9 !important;
  color: #e11d48 !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  font-size: 0.9em !important;
  font-family: "JetBrains Mono", "Fira Code", "SF Mono", monospace !important;
}
/* ASCII 树形图特殊处理 */
.wiki-content pre code {
  white-space: pre !important;
}
/* 美化包含 ASCII 图的代码块 - 白底 */
.ascii-diagram {
  background: #ffffff !important;
  padding: 24px !important;
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  font-family: "JetBrains Mono", "Fira Code", monospace !important;
  color: #334155 !important;
  line-height: 1.5 !important;
  overflow-x: auto;
}
.ascii-diagram .ascii-box-char {
  color: #b8941e;
}
.ascii-diagram .ascii-arrow {
  color: #22c55e;
}
.ascii-diagram .ascii-text {
  color: #0ea5e9;
}
/* ==========================================================================
   主题感知组件样式扩展
   ========================================================================== */
/* Menu 菜单 - 主题感知 */
.ant-menu {
  background: transparent !important;
  color: var(--text-primary) !important;
}
.ant-menu-horizontal {
  border-bottom: none !important;
}
.ant-menu-item,
.ant-menu-submenu-title {
  color: var(--text-secondary) !important;
}
.ant-menu-item:hover,
.ant-menu-submenu-title:hover {
  color: var(--accent-primary) !important;
}
.ant-menu-item-selected,
.ant-menu-item-active {
  color: var(--accent-primary) !important;
}
.ant-menu-item-selected::after {
  border-bottom-color: var(--accent-primary) !important;
}
/* 输入框 - 主题感知 */
.ant-input,
.ant-input-affix-wrapper,
.ant-select-selector,
.ant-picker {
  background: var(--bg-input) !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}
.ant-input:hover,
.ant-input-affix-wrapper:hover,
.ant-select-selector:hover,
.ant-picker:hover {
  border-color: var(--accent-primary) !important;
}
.ant-input:focus,
.ant-input-affix-wrapper-focused,
.ant-select-focused .ant-select-selector,
.ant-picker-focused {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 2px var(--accent-light) !important;
}
.ant-input::placeholder {
  color: var(--text-muted) !important;
}
/* 表格 - 主题感知 */
.ant-table {
  background: var(--bg-paper) !important;
}
.ant-table-thead > tr > th {
  background: var(--bg-sidebar) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border) !important;
}
.ant-table-tbody > tr > td {
  background: var(--bg-paper) !important;
  color: var(--text-primary) !important;
  border-bottom: 1px solid var(--border) !important;
}
.ant-table-tbody > tr:hover > td {
  background: var(--bg-hover) !important;
}
/* Drawer 抽屉 - 主题感知 */
.ant-drawer-content {
  background: var(--bg-paper) !important;
}
.ant-drawer-header {
  background: var(--bg-paper) !important;
  border-bottom: 1px solid var(--border) !important;
}
.ant-drawer-title {
  color: var(--text-primary) !important;
}
.ant-drawer-body {
  color: var(--text-primary) !important;
}
/* Dropdown 下拉菜单 - 主题感知 */
.ant-dropdown-menu {
  background: var(--bg-paper) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-lg) !important;
}
.ant-dropdown-menu-item {
  color: var(--text-primary) !important;
}
.ant-dropdown-menu-item:hover {
  background: var(--bg-hover) !important;
}
/* Tabs 标签页 - 主题感知 */
.ant-tabs-tab {
  color: var(--text-secondary) !important;
}
.ant-tabs-tab:hover {
  color: var(--accent-primary) !important;
}
.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: var(--accent-primary) !important;
}
.ant-tabs-ink-bar {
  background: var(--accent-primary) !important;
}
/* 分页器 - 主题感知 */
.ant-pagination-item {
  background: var(--bg-paper) !important;
  border-color: var(--border) !important;
}
.ant-pagination-item a {
  color: var(--text-primary) !important;
}
.ant-pagination-item:hover {
  border-color: var(--accent-primary) !important;
}
.ant-pagination-item:hover a {
  color: var(--accent-primary) !important;
}
.ant-pagination-item-active {
  background: var(--accent-primary) !important;
  border-color: var(--accent-primary) !important;
}
.ant-pagination-item-active a {
  color: var(--text-inverse) !important;
}
/* 主题切换按钮样式 */
.theme-toggle-btn:hover {
  background: var(--bg-hover) !important;
  color: var(--accent-primary) !important;
}
/* 链接 - 主题感知 */
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
a:hover {
  color: var(--accent-primary);
  opacity: 0.85;
}
/* 文字排版 - 主题感知 */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
}
p {
  color: var(--text-secondary);
}
/* Typography 组件 - 不使用 !important，允许内联样式覆盖 */
.ant-typography {
  color: var(--text-primary);
}
.ant-typography-secondary {
  color: var(--text-secondary);
}
/* 空状态 - 主题感知 */
.ant-empty-description {
  color: var(--text-muted) !important;
}
/* 加载动画 - 主题感知 */
.ant-spin-dot-item {
  background-color: var(--accent-primary) !important;
}
/* Alert 提示 - 主题感知 */
.ant-alert {
  border-radius: 8px !important;
}
.ant-alert-info {
  background: var(--accent-light) !important;
  border-color: var(--accent-primary) !important;
}
/* 骨架屏 - 主题感知 */
.ant-skeleton-content .ant-skeleton-title,
.ant-skeleton-content .ant-skeleton-paragraph > li {
  background: var(--bg-hover) !important;
}
/* Form 表单 - 主题感知 */
.ant-form-item-label > label {
  color: var(--text-primary) !important;
}
.ant-form-item-explain-error {
  color: var(--error) !important;
}
/* ==========================================================================
   资料下载页面 - 卡片等高对齐（强制每行等高）
   ========================================================================== */
.ant-list-grid .ant-row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}
.ant-list-grid .ant-col {
  display: flex !important;
  max-width: 100% !important;
  flex: none !important;
  width: 100% !important;
}
.ant-list-grid .ant-list-item {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.ant-list-grid .ant-list-item > .ant-card {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
.ant-list-grid .ant-list-item > .ant-card > .ant-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 200px !important;
}
.ant-list-grid .ant-list-item > .ant-card .ant-card-meta {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.ant-list-grid .ant-list-item > .ant-card .ant-card-meta-detail {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.ant-list-grid .ant-list-item > .ant-card .ant-card-meta-description {
  flex: 1 1 auto !important;
}
.ant-list-grid .ant-list-item > .ant-card > .ant-card-actions {
  margin-top: auto !important;
  flex-shrink: 0 !important;
}
/* 确保每列宽度一致 */
@media (min-width: 1200px) {
  .ant-list-grid .ant-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ant-list-grid .ant-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 767px) {
  .ant-list-grid .ant-row {
    grid-template-columns: 1fr !important;
  }
}
/* ==========================================================================
   深色背景页面 - 设置默认颜色，但允许内联样式覆盖
   ========================================================================== */
/* 深色页面的默认文字颜色 - 不使用 !important */
.dark-theme-page {
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
}
.dark-theme-page .ant-typography {
  color: inherit;
}
.dark-theme-page .ant-typography-secondary {
  color: inherit;
}
/* 资料下载页面卡片等高修复 */
.ant-list-grid .ant-col {
  display: flex;
}
.ant-list-grid .ant-list-item {
  display: flex;
  height: 100%;
  margin-bottom: 0 !important;
}
.ant-list-grid .ant-card {
  height: 100%;
}
/* ========================================================================
   DuckEdu 全站鸭子品牌色覆盖
   统一所有 Ant Design 组件为暖色鸭子风格
   ======================================================================== */
/* Tabs 标签页 */
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn { color: #FFB800 !important; font-weight: 600; }
.ant-tabs-ink-bar { background: #FFB800 !important; }
.ant-tabs-tab:hover .ant-tabs-tab-btn { color: #FF9500 !important; }
/* Table 表格 */
.ant-table-thead > tr > th { background: #fff8e8 !important; color: #2c1810 !important; border-bottom: 2px solid #e8dcc8 !important; font-weight: 600; }
.ant-table-tbody > tr:hover > td { background: #fef8ee !important; }
.ant-table-tbody > tr > td { border-bottom: 1px solid #f0e8d8 !important; }
/* Menu 导航菜单 */
.ant-menu-horizontal > .ant-menu-item-selected { color: #FFB800 !important; }
.ant-menu-horizontal > .ant-menu-item-selected::after { border-bottom-color: #FFB800 !important; }
.ant-menu-horizontal > .ant-menu-item:hover { color: #FF9500 !important; }
.ant-menu-horizontal > .ant-menu-item:hover::after { border-bottom-color: #FF9500 !important; }
.ant-menu-light .ant-menu-item-selected { color: #FFB800 !important; background: rgba(255,184,0,0.08) !important; }
/* Tag 标签 */
.ant-tag-blue { color: #b8941e !important; background: #fff8e8 !important; border-color: #e8d9a8 !important; }
.ant-tag-green { color: #3d5a3e !important; background: #eef3ee !important; border-color: #c8dcc4 !important; }
/* Switch 开关 */
.ant-switch-checked { background: #FFB800 !important; }
/* Checkbox / Radio */
.ant-checkbox-checked .ant-checkbox-inner { background-color: #FFB800 !important; border-color: #FFB800 !important; }
.ant-radio-checked .ant-radio-inner { border-color: #FFB800 !important; }
.ant-radio-checked .ant-radio-inner::after { background-color: #FFB800 !important; }
/* Pagination 分页 */
.ant-pagination-item-active { border-color: #FFB800 !important; }
.ant-pagination-item-active a { color: #FFB800 !important; }
/* Steps 步骤条 */
.ant-steps-item-process .ant-steps-item-icon { background: #FFB800 !important; border-color: #FFB800 !important; }
.ant-steps-item-finish .ant-steps-item-icon { border-color: #3d5a3e !important; }
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon { color: #3d5a3e !important; }
/* Progress 进度条 */
.ant-progress-bg { background-color: #FFB800 !important; }
.ant-progress-success-bg { background-color: #3d5a3e !important; }
/* Badge 徽标 */
.ant-badge-count { background: #FF9500 !important; }
/* Statistic 统计 */
.ant-statistic-content-value { color: #2c1810 !important; }
/* Alert 提示 */
.ant-alert-info { background: #fff8e8 !important; border-color: #e8d9a8 !important; }
/* Input focus 输入框聚焦 */
.ant-input:focus, .ant-input-focused, .ant-input:hover { border-color: #FFB800 !important; }
.ant-input-affix-wrapper:focus, .ant-input-affix-wrapper-focused { border-color: #FFB800 !important; box-shadow: 0 0 0 2px rgba(255,184,0,0.15) !important; }
.ant-select-focused .ant-select-selector { border-color: #FFB800 !important; box-shadow: 0 0 0 2px rgba(255,184,0,0.15) !important; }
/* DatePicker 日期选择器 */
.ant-picker-focused { border-color: #FFB800 !important; box-shadow: 0 0 0 2px rgba(255,184,0,0.15) !important; }
.ant-picker-cell-in-view.ant-picker-cell-selected .ant-picker-cell-inner { background: #FFB800 !important; }
/* Spin 加载 */
.ant-spin-dot-item { background-color: #FFB800 !important; }
/* Breadcrumb 面包屑 */
.ant-breadcrumb a:hover { color: #FFB800 !important; }
/* Tooltip */
.ant-tooltip-inner { background: #2c1810 !important; color: #fff !important; }
.ant-tooltip-arrow::before { background: #2c1810 !important; }
/* Modal */
.ant-modal-header { border-bottom: 1px solid #e8dcc8 !important; }
.ant-modal-footer { border-top: 1px solid #e8dcc8 !important; }
/* Dropdown */
.ant-dropdown-menu-item:hover { background: #fff8e8 !important; }
.ant-dropdown-menu-item-selected { background: rgba(255,184,0,0.1) !important; color: #FFB800 !important; }
/* FloatButton */
.ant-float-btn-primary { background: #FFB800 !important; }
/* 全局链接色 */
a { color: #b8941e; }
a:hover { color: #FFB800; }
/* 页面标题统一风格 */
.ant-typography h1, .ant-typography h2, .ant-typography h3, .ant-typography h4 { color: #2c1810 !important; }
