
.token-visualizer[data-v-ba1b2a43] {
  position: relative;
  min-height: calc(100dvh - 210px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(90, 209, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 28px 70px rgba(8, 24, 39, 0.28);
}
.token-visualizer--fullscreen[data-v-ba1b2a43] {
  min-height: calc(100dvh - 156px);
  height: calc(100dvh - 156px);
  border-radius: 34px;
}
.token-visualizer-canvas[data-v-ba1b2a43] {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
.token-visualizer[data-v-ba1b2a43] {
    min-height: calc(100dvh - 236px);
}
}
:root {
  color-scheme: light;
  --bg-top: #eff6f7;
  --bg-bottom: #f7fafb;
  --shell-gutter: 24px;
  --top-bar-top: 40px;
  --top-bar-safe-space: 142px;
  --top-scroll-fade-height: 180px;
  --top-scroll-fade-solid: 78px;
  --sidebar-margin-top: 30px;
  --sidebar-top-padding: 28px;
  --sidebar-left: 20px;
  --sidebar-width: 320px;
  --sidebar-gap: 24px;
  --sidebar-bottom-gap: 20px;
  --sidebar-footprint: calc(
    var(--sidebar-left) + var(--sidebar-width) + var(--sidebar-gap)
  );
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --text: #163243;
  --muted: #5e7485;
  --line: rgba(119, 152, 173, 0.22);
  --accent: #0f8b8d;
  --accent-soft: rgba(15, 139, 141, 0.12);
  --accent-deep: #0f5661;
  --warning: #d97706;
  --shadow: 0 6px 18px rgba(24, 54, 73, 0.04);
  --top-bar-surface: #ffffff;
  --top-bar-border: rgba(119, 152, 173, 0.16);
  --top-bar-shadow:
    0 18px 42px rgba(20, 56, 76, 0.08), 0 8px 18px rgba(20, 56, 76, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-bottom);
  color: var(--text);
  font-family:
    'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
}

body {
  overflow: hidden;
}

html.platform-macos {
  --sidebar-margin-top: 40px;
  --sidebar-top-padding: 18px;
}

html.platform-macos
  :where(button, a, input, textarea, select, summary, [tabindex]):focus,
html.platform-macos
  :where(
    button,
    a,
    input,
    textarea,
    select,
    summary,
    [tabindex]
  ):focus-visible {
  outline: none !important;
  box-shadow: none !important;
  -webkit-focus-ring-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  position: relative;
  isolation: isolate;
  height: 100dvh;
  min-height: 100dvh;
}

.shell-main {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.window-drag-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--top-bar-top) + 12px);
  z-index: 9;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  -webkit-app-region: drag;
}

.shell-scroll-fade {
  position: absolute;
  left: calc(var(--sidebar-footprint));
  right: var(--shell-gutter);
  height: var(--top-scroll-fade-height);
  z-index: 9;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--bg-bottom) 0,
    var(--bg-bottom) var(--top-scroll-fade-solid),
    rgba(247, 250, 251, 0.96) calc(var(--top-scroll-fade-solid) + 12px),
    rgba(247, 250, 251, 0.78) calc(var(--top-scroll-fade-solid) + 36px),
    rgba(247, 250, 251, 0.42) calc(var(--top-scroll-fade-solid) + 64px),
    rgba(247, 250, 251, 0) 100%
  );
}

.shell-content {
  position: absolute;
  inset: 0;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc(var(--top-bar-safe-space) + var(--shell-gutter))
    var(--shell-gutter) 28px
    calc(var(--sidebar-footprint) + var(--shell-gutter));
}

.shell-content--scroll-locked {
  overflow-y: hidden;
  overscroll-behavior-y: none;
}

.shell-route-stage {
  min-width: 0;
  min-height: 100%;
}

.shell-visualizer-stage {
  position: absolute;
  top: calc(var(--top-bar-safe-space) + 10px);
  left: var(--shell-gutter);
  right: var(--shell-gutter);
  bottom: 14px;
  z-index: 8;
}

.app-shell--visualizer .top-bar {
  left: var(--shell-gutter);
}

.app-shell--visualizer .window-drag-strip {
  background: linear-gradient(
    180deg,
    rgba(6, 18, 28, 0.36),
    rgba(6, 18, 28, 0)
  );
}

.glass-panel,
.surface-card,
.hero-panel,
.detail-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.surface-card,
.hero-panel,
.detail-panel {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-sidebar {
  position: absolute;
  top: var(--sidebar-margin-top);
  left: var(--sidebar-left);
  bottom: var(--sidebar-bottom-gap);
  width: var(--sidebar-width);
  z-index: 2;
  margin: 0;
  padding: var(--sidebar-top-padding) 22px 28px;
  display: flex;
  align-items: flex-start;
  isolation: isolate;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  min-height: calc(
    100dvh - var(--sidebar-margin-top) - var(--sidebar-bottom-gap)
  );
}

.nav-sidebar-main {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 28px;
  margin: 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(15, 139, 141, 0.12);
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.nav-list {
  display: grid;
  gap: 12px;
}

.nav-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.nav-card:hover,
.nav-card.active {
  transform: translateY(-1px);
  border-color: rgba(15, 139, 141, 0.28);
  background: linear-gradient(
    180deg,
    rgba(15, 139, 141, 0.11),
    rgba(255, 255, 255, 0.9)
  );
}

.nav-card-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.nav-card-subtitle,
.eyebrow,
.section-copy,
.detail-subtitle,
.task-preview-meta,
.metric-hint,
.paper-meta,
.question-card-meta,
.stored-key-copy,
.preview-subtitle {
  color: var(--muted);
}

/* 项目路径这类长串没有空格可断行，允许在任意字符处折行，避免撑破容器 */
.detail-subtitle {
  overflow-wrap: anywhere;
}

.top-bar {
  position: absolute;
  top: var(--top-bar-top);
  left: calc(var(--sidebar-footprint));
  right: var(--shell-gutter);
  margin: 0;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 10;
  isolation: isolate;
  overflow: visible;
  background: var(--top-bar-surface);
  border: 1px solid var(--top-bar-border);
  border-radius: 24px;
  box-shadow: var(--top-bar-shadow);
  -webkit-app-region: drag;
}

.top-bar > * {
  position: relative;
  z-index: 1;
}

.top-title,
.section-title,
.detail-title {
  margin: 0;
}

.top-title {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-app-region: no-drag;
}

.visualizer-toggle {
  min-height: 42px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(84, 205, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 251, 255, 0.94)
    ),
    linear-gradient(90deg, rgba(255, 97, 97, 0.15), rgba(79, 223, 255, 0.15));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 24px rgba(20, 56, 76, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.visualizer-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 205, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 26px rgba(20, 56, 76, 0.12);
}

.visualizer-toggle:disabled,
.visualizer-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.visualizer-toggle--active {
  background:
    linear-gradient(180deg, rgba(10, 22, 33, 0.95), rgba(14, 31, 44, 0.94)),
    linear-gradient(90deg, rgba(255, 97, 97, 0.18), rgba(79, 223, 255, 0.22));
  color: #eef9ff;
  border-color: rgba(95, 223, 255, 0.28);
}

.visualizer-eye {
  position: relative;
  width: 28px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    90deg,
    #ff7f50,
    #ffd84d 28%,
    #44f3cc 62%,
    #4cc8ff 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.44),
    0 0 18px rgba(76, 200, 255, 0.25);
}

.visualizer-eye::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.visualizer-eye-pupil {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #071520;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.88),
    0 0 10px rgba(255, 255, 255, 0.6);
}

.visualizer-toggle-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.page-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.project-scroll-fab-stack {
  position: fixed;
  left: calc(
    var(--sidebar-footprint) +
      ((100vw - var(--sidebar-footprint) - var(--shell-gutter)) / 2)
  );
  top: calc(var(--top-bar-safe-space) + 10px);
  bottom: 28px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: translateX(-50%);
}

.project-scroll-fab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid rgba(120, 164, 176, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(76, 108, 128, 0.2);
  color: #285768;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.project-scroll-fab:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 146, 166, 0.4);
  background: rgba(241, 251, 253, 0.96);
  box-shadow: 0 18px 44px rgba(63, 121, 140, 0.24);
}

.project-scroll-fab:focus-visible {
  outline: 2px solid rgba(47, 142, 168, 0.34);
  outline-offset: 2px;
}

.project-scroll-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(96, 187, 209, 0.16);
  color: #24839a;
  font-size: 15px;
  line-height: 1;
}

.project-scroll-fab__label {
  white-space: nowrap;
}

.project-scroll-fab--bottom {
  margin-top: auto;
}

.llm-usage-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.llm-usage-stat-card {
  padding: 20px;
}

.llm-usage-stat-label,
.llm-usage-record-label,
.llm-usage-breakdown-copy {
  color: var(--text-secondary);
  font-size: 13px;
}

.llm-usage-stat-value {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.llm-usage-stat-hint {
  margin-top: 8px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.llm-usage-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 20px;
}

.llm-usage-breakdown,
.llm-usage-record-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.llm-usage-breakdown-row,
.llm-usage-record {
  border: 1px solid rgba(63, 122, 224, 0.12);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 16px 18px;
}

.llm-usage-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.llm-usage-breakdown-title,
.llm-usage-record-title {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 700;
}

.llm-usage-breakdown-meta,
.llm-usage-record-cost {
  color: #2457c5;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}

.llm-usage-record-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.llm-usage-record-subtitle {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 13px;
}

.llm-usage-record-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.llm-usage-record-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(244, 247, 255, 0.92);
}

.llm-usage-record-value {
  margin-top: 6px;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
}

.llm-usage-pagination {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

@media (max-width: 1080px) {
  .llm-usage-layout {
    grid-template-columns: 1fr;
  }
}

.hero-panel {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  min-width: 0;
}

.hero-panel > * {
  min-width: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-panel--visualizer {
  align-items: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.draft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

/* 作文结构化批注（教师眉批：波浪线好句/亮点/问题/升格建议） */
.essay-annotations {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
}
.essay-annotation-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 10px; }
.essay-annotation-item {
  padding: 10px 12px;
  border-radius: 10px;
  border-left: 4px solid #64748b;
  background: rgba(241, 245, 249, 0.75);
}
.essay-annotation-item--wave { border-left-color: #0ea5a4; background: rgba(224, 247, 246, 0.6); }
.essay-annotation-item--praise { border-left-color: #16a34a; background: rgba(234, 247, 232, 0.6); }
.essay-annotation-item--problem { border-left-color: #e11d48; background: rgba(253, 236, 240, 0.6); }
.essay-annotation-item--suggestion { border-left-color: #d97706; background: rgba(254, 246, 229, 0.6); }
.essay-annotation-head { display: flex; gap: 10px; align-items: center; }
.essay-annotation-kind { font-weight: 700; font-size: 13px; }
.essay-annotation-paragraph { font-size: 12px; color: var(--muted); }
.essay-annotation-quote { margin-top: 6px; font-size: 13px; color: #334155; }
.essay-annotation-item--wave .essay-annotation-quote {
  text-decoration: underline wavy #0ea5a4 1.5px;
  text-underline-offset: 5px;
}
.essay-annotation-comment { margin-top: 6px; font-size: 13px; color: #1e293b; }

/* 栏内批量操作行（全部删除等） */
.tab-bulk-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

/* 项目文件夹（多层级分组，2026-09-17 新增） */
.folder-section { margin-bottom: 18px; }
.folder-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
}
.folder-toggle {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  padding: 0 4px;
  color: inherit;
}
.folder-name { font-weight: 700; }
.folder-count {
  font-size: 12px;
  color: var(--muted);
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.12);
}
.folder-actions { margin-left: auto; display: flex; gap: 4px; }
.folder-grid { padding-left: 22px; }
.folder-empty-hint {
  color: var(--muted);
  font-size: 13px;
  padding: 12px 4px;
}

.project-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.project-card:hover,
.project-card.active {
  border-color: rgba(15, 139, 141, 0.32);
}

.draft-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}

.draft-card:hover {
  border-color: rgba(15, 139, 141, 0.32);
}

.project-card-head,
.draft-card-head,
.detail-panel-head,
.question-card-head,
.result-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.project-card-head {
  align-items: flex-start;
}

.project-card-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.project-card-head > h3 {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}

.question-card-head {
  align-items: flex-start;
  min-width: 0;
}

.question-card-head > :first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.draft-card-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-actions-primary {
  margin-top: 18px;
  flex-wrap: wrap;
}

.draft-card-title {
  font-size: 18px;
  font-weight: 700;
  min-width: 0;
}

.draft-card-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.draft-card-meta--error {
  color: #b42318;
}

.draft-card-snippet {
  margin-top: 16px;
  color: var(--accent-deep);
  line-height: 1.7;
}

.draft-delete-button {
  border: 1px solid rgba(203, 63, 63, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 38px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #b42318;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.draft-delete-button:hover {
  border-color: rgba(203, 63, 63, 0.34);
  background: rgba(203, 63, 63, 0.06);
}

.draft-delete-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.draft-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.draft-card-actions {
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-self: start;
  flex-shrink: 0;
}

.draft-card-actions--below-title {
  margin-top: 12px;
  justify-content: flex-start;
}

@media (max-width: 760px) {
  .draft-card-head {
    grid-template-columns: 1fr;
  }

  .draft-card-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.project-card h3,
.detail-title {
  font-size: 20px;
}

.project-card h3,
.project-card-footer,
.project-card-metrics {
  margin: 0;
}

.project-card-metrics,
.project-card-footer,
.task-meta-line,
.task-preview-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.task-preview-row {
  align-items: flex-start;
  padding: 14px 0;
}

.task-preview-row + .task-preview-row {
  border-top: 1px solid rgba(120, 145, 173, 0.16);
}

.task-preview-main,
.task-preview-grid {
  display: grid;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.task-preview-topline,
.task-preview-inline-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.task-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.task-preview-item {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.task-preview-item span {
  color: var(--muted);
  font-size: 12px;
}

.task-preview-item strong {
  font-size: 13px;
  word-break: break-word;
}

.project-card-metrics {
  margin: 18px 0 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

.project-card-footer {
  flex-direction: column;
  color: var(--accent-deep);
}

.detail-panel {
  padding: 18px;
  min-width: 0;
  max-width: 100%;
}

.projects-empty-state {
  padding: 42px 28px;
}

.project-detail-head {
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.project-detail-actions {
  width: 100%;
  flex-wrap: wrap;
}

.project-overview-stack,
.project-overview-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.project-overview-stack {
  padding: 4px 8px 12px;
  min-width: 0;
}

.project-overview-section + .project-overview-section {
  margin-top: 8px;
}

.detail-panel :is(.n-tabs, .n-tabs-pane-wrapper, .n-tab-pane) {
  min-width: 0;
}

.detail-panel .n-tabs-nav-scroll-wrapper,
.detail-panel .n-tabs-wrapper {
  min-width: 0;
  max-width: 100%;
}

.project-section-head {
  display: grid;
  gap: 6px;
}

.project-section-title {
  font-size: 20px;
  font-weight: 800;
}

.project-section-copy {
  color: var(--muted);
  min-width: 0;
}

.metrics-grid.project-overview-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  align-items: stretch;
  width: 100%;
}

.project-overview-metrics .metric-card {
  width: 100%;
  max-width: none;
}

.flat-card {
  box-shadow: none;
}

.metrics-grid,
.task-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  min-width: 0;
}

.metric-label {
  color: var(--muted);
  margin-bottom: 8px;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  min-width: 0;
}

.metric-value-text {
  font-size: 20px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.project-overview-metrics .metric-card.metric-card-wide {
  grid-column: span 2;
}

.project-overview-section .surface-card,
.project-overview-section .flat-card,
.project-overview-section .n-card,
.project-overview-section .n-card__content {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  .project-overview-metrics .metric-card.metric-card-wide {
    grid-column: span 1;
  }
}

.two-pane,
.two-col,
.three-col,
.scan-panel,
.generator-layout {
  display: grid;
  gap: 16px;
}

.two-pane,
.generator-layout {
  grid-template-columns: 280px 320px minmax(0, 1fr);
}

.generator-create-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.generator-create-flow {
  display: grid;
  gap: 16px;
}

.answer-detail-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 16px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.paper-grid,
.image-grid,
.history-list,
.task-preview-list,
.question-list,
.stage-stack {
  display: grid;
  gap: 14px;
}

.image-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.image-tile {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.image-tile-media-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.image-tile-media {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.image-tile-media-placeholder {
  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.16) 8%,
      rgba(255, 255, 255, 0.52) 18%,
      rgba(255, 255, 255, 0.16) 33%
    ),
    linear-gradient(180deg, #f8fbff, #edf5ff);
  background-size:
    200% 100%,
    100% 100%;
  animation: image-tile-placeholder-shimmer 1.2s linear infinite;
}

@keyframes image-tile-placeholder-shimmer {
  from {
    background-position:
      200% 0,
      0 0;
  }

  to {
    background-position:
      -200% 0,
      0 0;
  }
}

.image-tile-footer {
  padding: 12px;
}

.image-tile-title {
  font-weight: 700;
}

.image-tile-caption {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  word-break: break-word;
}

.scan-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scan-column-title,
.result-list-head,
.result-section-title,
.stage-card-title {
  font-weight: 700;
}

.result-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 16px;
  min-height: 760px;
}

.result-review-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  height: clamp(720px, calc(100dvh - 230px), 980px);
  min-height: 0;
  max-height: calc(100dvh - 230px);
  align-items: stretch;
  overflow: hidden;
}

.smart-name-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  height: clamp(720px, calc(100dvh - 230px), 980px);
  min-height: 0;
  max-height: calc(100dvh - 230px);
  align-items: stretch;
  overflow: hidden;
}

.smart-name-layout--suggestions {
  height: clamp(760px, calc(100dvh - 150px), 1120px);
  max-height: calc(100dvh - 150px);
}

.smart-name-layout--expanded-logs {
  height: auto;
  max-height: none;
  align-items: start;
  overflow: visible;
}

.smart-name-layout--expanded-logs .smart-name-main,
.smart-name-layout--expanded-logs .result-workspace {
  overflow: visible;
}

.smart-name-layout--expanded-logs .result-workspace {
  height: auto;
  min-height: 0;
}

.smart-name-layout--expanded-logs .result-workspace-scroll {
  overflow: visible;
  contain: none;
  padding-right: 0;
}

.smart-name-layout--expanded-logs .stream-output-box {
  max-height: none;
}

.smart-name-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.result-sidebar,
.result-workspace {
  min-width: 0;
  min-height: 0;
}

.result-sidebar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
}

.result-sidebar-scroll,
.result-workspace-scroll {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  contain: layout paint;
  padding-right: 4px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.result-sidebar-scroll::-webkit-scrollbar,
.result-workspace-scroll::-webkit-scrollbar {
  display: none;
}

.result-sidebar,
.result-workspace,
.result-empty-state {
  display: grid;
  gap: 16px;
  padding: 22px;
  box-sizing: border-box;
}

.result-workspace,
.result-empty-state {
  min-height: 0;
}

.result-workspace {
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.result-workspace--empty {
  height: 100%;
}

.result-sidebar-head,
.result-workspace-head,
.result-panel-head,
.result-paper-summary,
.result-nav-section {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.result-panel-head--with-tools {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.result-workspace-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.result-sidebar-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.result-sidebar-sort {
  display: grid;
  gap: 6px;
}

.result-sidebar-sort-label {
  font-size: 12px;
  color: var(--muted);
}

.result-nav-section + .result-nav-section {
  padding-top: 8px;
}

.result-nav-empty {
  padding: 16px;
  border-radius: 16px;
  background: rgba(241, 245, 249, 0.8);
  color: var(--muted);
  font-size: 13px;
}

.result-row + .result-row {
  margin-top: 10px;
}

.result-list-head {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
}

.result-nav-section .result-list-head {
  margin-bottom: 0;
}

.result-row {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.result-row--pending {
  cursor: default;
}

.result-row:not(.result-row--pending):hover {
  border-color: rgba(15, 139, 141, 0.24);
  transform: translateY(-1px);
}

.result-row.active {
  border-color: rgba(15, 139, 141, 0.34);
  background: rgba(15, 139, 141, 0.1);
}

.result-row-main,
.result-row-topline,
.result-row-student-meta,
.result-version-tags,
.project-settings-stack {
  display: grid;
  gap: 8px;
  min-width: 0;
}

/* 必须显式定列：单列 grid 若不写 minmax(0,1fr)，隐式 auto 轨道会被编辑器等
   大 min-content 子项撑爆，导致整块卡片远超视口宽度（实测 943px / 视口 390px） */
.project-settings-stack {
  grid-template-columns: minmax(0, 1fr);
}

.project-settings-stack > * {
  min-width: 0;
}

.result-row-topline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.result-row-title {
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
}

.result-row-student {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  min-width: 0;
  overflow-wrap: anywhere;
}

.result-row-student-meta {
  grid-auto-flow: column;
  justify-content: flex-start;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  min-width: 0;
}

.result-row-subtitle {
  color: var(--muted);
  font-size: 12px;
}

.result-row-score {
  color: var(--accent-deep);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  min-width: 0;
  text-align: right;
}

.result-paper-summary {
  padding: 16px 18px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top left,
      rgba(94, 234, 212, 0.18),
      transparent 42%
    ),
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.result-paper-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.result-paper-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.result-version-tags {
  grid-auto-flow: column;
  justify-content: flex-start;
}

.preview-overlay-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.preview-overlay-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(100, 116, 139, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.preview-overlay-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 139, 141, 0.3);
}

.preview-overlay-toggle.is-active {
  color: #0f8b8d;
  border-color: rgba(15, 139, 141, 0.34);
  background: rgba(15, 139, 141, 0.1);
  box-shadow: 0 8px 22px rgba(15, 139, 141, 0.08);
}

.preview-overlay-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-workspace-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
  contain: layout;
}

.result-subsection-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background:
    radial-gradient(
      circle at top left,
      rgba(94, 234, 212, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.92)
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.result-version-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 4px 2px 0;
}

.result-version-alert {
  margin: 4px 0 18px;
}

.reference-editor-head {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.reference-editor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.reference-editor-card {
  height: 680px;
  max-height: calc(100vh - 220px);
}

.project-danger-card {
  border-color: rgba(208, 58, 82, 0.18);
}

.project-danger-card .n-card__content {
  display: grid;
  gap: 18px;
}

.project-danger-copy {
  color: var(--muted);
  line-height: 1.7;
}

.question-card,
.stage-card,
.nested,
.task-card-body {
  display: grid;
  gap: 12px;
}

.question-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  contain: layout paint;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.question-card--active {
  border-color: rgba(15, 139, 141, 0.48);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(15, 139, 141, 0.14),
    0 12px 28px rgba(15, 118, 110, 0.04);
}

.question-card--advice {
  padding: 18px;
  gap: 10px;
}

.question-card-actions,
.question-card-expanded,
.question-score-editor {
  display: grid;
  gap: 10px;
}

.question-card-title--markdown {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  min-width: 0;
}

.question-card-title-prefix {
  flex: 0 0 auto;
}

.question-card-title-content {
  flex: 1 1 auto;
  min-width: 0;
}

.question-card-title-content.markdown-preview {
  display: inline;
}

.question-card-title-content.markdown-preview > p {
  display: inline;
  margin: 0;
}

.question-card-title-content.markdown-preview,
.question-card-title-content.markdown-preview :is(p, .katex) {
  font-size: inherit;
  line-height: inherit;
}

.question-card-title-content .katex-display {
  display: inline-block;
  margin: 0;
  max-width: 100%;
}

.question-card-actions {
  justify-items: end;
  align-content: start;
  min-width: 0;
}

.question-score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.08);
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: anywhere;
}

.question-toggle-button {
  justify-self: end;
}

.question-score-editor {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.question-card--advice .detail-subtitle {
  line-height: 1.7;
}

.issues-box {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(217, 119, 6, 0.24);
  background: rgba(245, 158, 11, 0.08);
  contain: layout paint;
}

.issues-box ul {
  margin: 0;
  padding-left: 20px;
}

.issues-box strong + ul {
  margin-top: 8px;
}

.issues-box li + li {
  margin-top: 6px;
}

.score-breakdown-list {
  display: grid;
  gap: 10px;
}

.score-breakdown-list li + li {
  margin-top: 0;
}

.score-breakdown-head {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.7;
}

.score-breakdown-criterion-id {
  font-weight: 700;
  color: var(--text);
}

.score-breakdown-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.score-breakdown-badge--full {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(16, 185, 129, 0.14);
  color: #0f766e;
}

.score-breakdown-badge--partial {
  border-color: rgba(217, 119, 6, 0.18);
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
}

.score-breakdown-badge--zero {
  border-color: rgba(220, 38, 38, 0.18);
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.score-breakdown-text,
.score-breakdown-evidence {
  line-height: 1.7;
}

.score-breakdown-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.score-breakdown-head + .score-breakdown-line {
  margin-top: 8px;
}

.score-breakdown-text {
  margin-top: 6px;
}

.score-breakdown-evidence {
  margin-top: 4px;
}

.score-breakdown-line + .score-breakdown-line {
  margin-top: 6px;
}

.score-breakdown-line .markdown-preview {
  min-width: 0;
}

.score-breakdown-line .markdown-preview > :first-child {
  margin-top: 0;
}

.score-breakdown-line .markdown-preview > :last-child {
  margin-bottom: 0;
}

.score-breakdown-logo {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  padding-top: 1px;
  white-space: nowrap;
}

.score-breakdown-logo--standard {
  color: #155e75;
}

.score-breakdown-logo--evidence {
  color: #9a3412;
}

.paper-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(9, 24, 36, 0.96),
    rgba(12, 29, 43, 0.98)
  );
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.paper-stage-image {
  display: block;
  width: 100%;
}

.paper-stage--thumbnail {
  max-width: 260px;
  border-radius: 20px;
}

.paper-stage--thumbnail .paper-stage-image {
  min-height: 180px;
}

.result-stage-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.result-stage-stack--embedded {
  height: auto;
  overflow: visible;
  padding-right: 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: flex-start;
}

.result-detail-scroll {
  display: grid;
  gap: 16px;
  min-height: 0;
  height: 100%;
  overflow: auto;
  padding-right: 4px;
}

.result-score-grid {
  align-items: end;
}

.result-empty-state {
  min-height: 420px;
  place-items: center;
}

.result-score-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.smart-name-summary-grid,
.smart-name-card-body {
  display: grid;
  gap: 14px;
}

.result-duplicate-check-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  max-height: min(360px, 36vh);
  overflow: auto;
  padding: 22px;
}

.smart-name-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-name-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.smart-name-duplicate-list {
  display: grid;
  gap: 10px;
}

.smart-name-duplicate-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(248, 250, 252, 0.7);
}

.smart-name-duplicate-item--danger {
  border-color: rgba(220, 38, 38, 0.24);
  background: rgba(254, 242, 242, 0.9);
  box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.04);
}

.smart-name-duplicate-item--danger .smart-name-duplicate-item__meta strong {
  color: #b91c1c;
}

.smart-name-duplicate-item__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.smart-name-duplicate-item__meta span {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.question-card--smart-name {
  gap: 14px;
}

.smart-name-save-hint {
  margin-top: 2px;
  color: #b45309;
  font-size: 13px;
  line-height: 1.6;
}

.preview-context-menu {
  position: fixed;
  z-index: 20;
  min-width: 176px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.96);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.preview-context-menu__item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.preview-context-menu__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.preview-context-menu__item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.smart-name-context-menu {
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.16),
    inset 0 0 0 1px rgba(148, 163, 184, 0.16);
}

.smart-name-context-menu .preview-context-menu__item {
  color: #163243;
}

.smart-name-context-menu .preview-context-menu__item:hover {
  background: rgba(15, 139, 141, 0.08);
}

.smart-name-diff-list {
  display: grid;
  gap: 10px;
}

.smart-name-diff-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(248, 250, 252, 0.78);
}

.smart-name-diff-row.is-changed {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(255, 247, 237, 0.96);
}

.smart-name-diff-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.smart-name-diff-values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.smart-name-diff-value {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-name-diff-value--before {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
}

.smart-name-diff-value--after {
  background: rgba(245, 158, 11, 0.14);
  color: #c2410c;
}

.smart-name-diff-value.is-muted {
  background: rgba(148, 163, 184, 0.1);
  color: #516677;
}

.smart-name-diff-arrow {
  color: #c2410c;
  font-weight: 800;
}

.smart-name-diff-arrow.is-hidden {
  color: rgba(148, 163, 184, 0.45);
}

.result-score-summary-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 139, 141, 0.16);
  background: rgba(15, 139, 141, 0.06);
}

.result-score-summary-card span {
  color: var(--muted);
  font-size: 12px;
}

.result-score-summary-card strong {
  color: var(--accent-deep);
  font-size: 28px;
  line-height: 1;
}

.paper-stage-region,
.preview-region {
  position: absolute;
  border: 3px solid #34d399;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(12, 25, 36, 0.35);
}

.paper-stage-region--active,
.preview-region--active {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(154, 52, 18, 0.28);
}

.paper-stage-region--box-hidden,
.preview-region--box-hidden {
  border-color: transparent;
  box-shadow: none;
}

.paper-stage-region {
  pointer-events: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.paper-stage-region span,
.preview-region span {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #34d399;
  color: #09222f;
  font-size: 12px;
  font-weight: 700;
}

.paper-stage-region--active span,
.preview-region--active span {
  background: #f97316;
  color: #431407;
}

.paper-stage-region-score,
.preview-region-score {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 244, 244, 0.9);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.14);
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
}

.status-pill[data-theme='success'] {
  background: rgba(16, 185, 129, 0.14);
  color: #0f766e;
}

.status-pill[data-theme='active'] {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

.status-pill[data-theme='danger'] {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.status-pill[data-theme='muted'] {
  background: rgba(148, 163, 184, 0.18);
  color: #516677;
}

.task-card-body {
  gap: 14px;
}

.task-list-layout {
  display: grid;
  gap: 16px;
}

.task-list-card {
  overflow: hidden;
}

.task-list-card-title {
  font-size: 20px;
  font-weight: 800;
}

.task-list-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.task-list-card-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.task-list-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
}

.rubric-debug-meta-grid {
  display: grid;
  gap: 16px;
}

.rubric-debug-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rubric-debug-stack,
.rubric-debug-panel {
  display: grid;
  gap: 14px;
}

.rubric-debug-panel {
  min-width: 0;
}

.json-tree-shell {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(22, 50, 67, 0.12);
  background: linear-gradient(180deg, #fbfdff, #f4f9fb);
}

.json-tree-shell {
  max-height: 720px;
  overflow: auto;
}

.json-tree-node {
  display: grid;
  gap: 6px;
}

.json-tree-children {
  display: grid;
  gap: 6px;
  margin-left: 18px;
  padding-left: 12px;
  border-left: 1px solid rgba(119, 152, 173, 0.18);
}

.json-tree-row {
  display: grid;
  grid-template-columns: 18px max-content max-content minmax(0, 1fr);
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  line-height: 1.7;
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  font-size: 12px;
}

.json-tree-toggle {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  cursor: pointer;
  line-height: 1;
}

.json-tree-toggle--placeholder {
  cursor: default;
}

.json-tree-key {
  color: #8b3a14;
  font-weight: 700;
  white-space: nowrap;
}

.json-tree-colon {
  color: #89a0af;
  white-space: nowrap;
}

.json-tree-value {
  min-width: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.json-tree-type {
  color: #4b6172;
}

.json-tree-string {
  color: #0f766e;
}

.json-tree-number {
  color: #1d4ed8;
}

.json-tree-boolean {
  color: #7c3aed;
}

.json-tree-null {
  color: #94a3b8;
}

.task-list-meta-item {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(119, 152, 173, 0.16);
  background: rgba(247, 251, 252, 0.86);
}

.task-list-meta-item--wide {
  grid-column: span 2;
}

.task-list-meta-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.task-list-meta-value {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  word-break: break-word;
}

.task-list-progress {
  display: grid;
  gap: 12px;
}

.task-list-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.task-list-card-actions {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  gap: 10px;
  flex-wrap: wrap;
}

.task-summary-panel {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 139, 141, 0.06);
  border: 1px solid rgba(15, 139, 141, 0.12);
}

.task-summary-meta {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 139, 141, 0.1);
}

.task-summary-meta-text {
  color: var(--accent-deep);
  line-height: 1.7;
}

.task-summary,
.preset-copy {
  margin: 0;
  color: var(--accent-deep);
  line-height: 1.8;
}

.task-log-list {
  display: grid;
  gap: 8px;
}

.task-log-list--scrollable {
  max-height: 240px;
  overflow: auto;
  padding-right: 4px;
}

.task-log-list--compact {
  margin-top: 10px;
}

.task-log-line {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 139, 141, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #20576a;
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.task-log-line--error {
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(254, 242, 242, 0.96);
  color: #b91c1c;
}

.history-item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  text-align: left;
  cursor: pointer;
}

.history-item.active {
  border-color: rgba(15, 139, 141, 0.34);
  background: rgba(15, 139, 141, 0.12);
}

.history-title {
  font-weight: 700;
}

.history-meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.stack-gap,
.stack-form {
  display: grid;
  gap: 16px;
}

.create-step-card {
  overflow: hidden;
}

.create-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.field-label {
  font-weight: 700;
}

.field-hint {
  color: var(--muted);
  font-size: 13px;
}

.preset-panel {
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 139, 141, 0.08);
  border: 1px solid rgba(15, 139, 141, 0.12);
  display: grid;
  gap: 10px;
}

.preset-panel-title {
  font-weight: 700;
}

.preset-panel-copy,
.preset-panel-prompt {
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

.preset-panel--secondary {
  background: rgba(22, 50, 67, 0.04);
  border-color: rgba(22, 50, 67, 0.08);
}

.preset-panel--log {
  background: rgba(9, 34, 47, 0.04);
  border-color: rgba(9, 34, 47, 0.08);
}

.preset-panel--stream {
  background: rgba(15, 139, 141, 0.06);
  border-color: rgba(15, 139, 141, 0.12);
}

.preset-panel-copy--log {
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
  font-size: 12px;
}

.stream-output-box {
  max-height: 220px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
  scrollbar-gutter: stable;
}

.collapsible-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.answer-generation-alert {
  border-radius: 22px;
}

.answer-generation-pending {
  display: grid;
  gap: 18px;
  min-height: 100%;
  align-content: start;
}

.answer-generation-pending-copy {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.answer-generation-preview {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-row span {
  color: var(--muted);
}

.summary-row--stacked {
  align-items: flex-start;
}

.summary-row--stacked strong {
  text-align: right;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-form,
.settings-foot,
.settings-actions,
.modal-footer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.create-project-form {
  gap: 12px;
}

.create-project-path-row {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.create-project-path-input {
  flex: 1 1 auto;
  min-width: 0;
}

.create-project-half-input,
.create-project-half-input.n-input-number,
.create-project-half-input.n-base-selection {
  width: 100%;
}

.create-project-settings-grid {
  align-items: end;
}

.create-project-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.create-project-toggle-copy {
  display: grid;
  gap: 4px;
}

.export-scope-group {
  display: grid;
  gap: 12px;
}

.settings-foot,
.detail-panel-head,
.generator-layout {
  justify-content: space-between;
}

.settings-template-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
}

.settings-template-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.settings-template-empty {
  margin-top: 28px;
}

.settings-template-actions {
  flex-wrap: wrap;
  margin-top: 18px;
}

.settings-actions--empty {
  justify-content: center;
  margin-top: 24px;
}

.settings-template-item {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.settings-template-item:hover,
.settings-template-item.active {
  border-color: rgba(15, 139, 141, 0.32);
  background: rgba(15, 139, 141, 0.06);
}

.settings-template-item-title {
  font-weight: 700;
}

.settings-template-item-head--with-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.settings-template-item-copy {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

/* 模型配置档案（多 AI 配置切换，2026-09-17 新增） */
.profile-archive-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.profile-archive-row .n-input { flex: 1 1 auto; min-width: 0; }
.profile-list { display: grid; gap: 10px; }
.profile-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
}
.profile-item.active { border-color: rgba(15, 139, 141, 0.45); }
.profile-item-main { flex: 1 1 auto; min-width: 0; }
.profile-item-name { font-weight: 700; display: flex; gap: 8px; align-items: center; }
.profile-item-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  overflow-wrap: anywhere;
}
.profile-item-actions { flex: 0 0 auto; display: flex; gap: 8px; }
.settings-inline-feedback {
  margin-top: 14px;
}

.code-editor-shell {
  width: 100%;
  min-height: 240px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.96)
    ),
    radial-gradient(
      circle at top left,
      rgba(15, 139, 141, 0.05),
      transparent 38%
    );
}

.code-editor-root {
  width: 100%;
  height: 100%;
}

.score-postprocess-stack,
.score-postprocess-summary-grid,
.score-postprocess-result-layout,
.score-postprocess-sidebar,
.score-postprocess-workspace {
  display: grid;
  gap: 18px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.score-postprocess-toolbar,
.score-postprocess-toolbar-copy {
  display: grid;
  gap: 20px;
}

.score-postprocess-preset-stack {
  display: grid;
  gap: 12px;
  align-items: start;
}

.score-postprocess-preset-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.score-postprocess-preset-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.score-postprocess-preset-select {
  min-width: 0;
  max-width: 100%;
}

.score-postprocess-api-box {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 0 0 22px 22px;
  border: 1px dashed rgba(15, 139, 141, 0.24);
  background: rgba(15, 139, 141, 0.05);
}

.score-postprocess-docs {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}

.score-postprocess-docs-toggle {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: background-color 160ms ease, color 160ms ease;
}

.score-postprocess-docs-toggle:hover {
  background: rgba(15, 139, 141, 0.04);
}

.score-postprocess-docs-toggle__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.score-postprocess-docs-toggle__arrow {
  color: #5f7388;
  font-size: 24px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform 180ms ease, color 180ms ease;
}

.score-postprocess-docs-toggle__arrow.is-expanded {
  transform: rotate(270deg);
  color: #0f4c75;
}

.score-postprocess-docs-panel {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.score-postprocess-ai-panel {
  padding: 20px 24px 24px;
}

.score-postprocess-doc-grid {
  display: grid;
  gap: 16px;
}

.score-postprocess-doc-item {
  display: grid;
  gap: 8px;
}

.score-postprocess-script-grid {
  display: grid;
  align-items: start;
  gap: 16px;
  margin-top: 0;
}

.score-postprocess-script-field {
  max-width: 860px;
}

.score-postprocess-script-hint {
  padding: 4px 4px 0 0;
  line-height: 1.8;
}

.score-postprocess-editor {
  margin-top: 6px;
}

.score-postprocess-actions {
  margin-top: 8px;
}

.score-postprocess-ai-actions {
  margin-top: 4px;
}

.score-postprocess-error-stack {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 12px;
  line-height: 1.6;
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
}

.score-postprocess-result-layout {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.28fr);
  height: clamp(720px, calc(100dvh - 230px), 980px);
  min-height: 0;
  max-height: calc(100dvh - 230px);
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
}

.score-postprocess-sidebar,
.score-postprocess-workspace {
  min-height: 0;
  height: 100%;
  min-width: 0;
}

.score-postprocess-sidebar {
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  padding: 22px;
}

.score-postprocess-workspace {
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  padding: 22px;
}

.score-postprocess-stack > .surface-card > .n-card__content {
  display: grid;
  gap: 32px;
}

.score-postprocess-toolbar .detail-subtitle,
.score-postprocess-api-box .preset-panel-copy,
.score-postprocess-script-hint {
  color: #5f7388;
}

.score-postprocess-toolbar .detail-subtitle {
  font-size: 15px;
  line-height: 1.9;
  max-width: 1100px;
}

.score-postprocess-api-box .preset-panel-title {
  font-size: 14px;
  line-height: 1.4;
}

.score-postprocess-api-box .preset-panel-copy {
  font-size: 14px;
  line-height: 1.9;
}

.score-postprocess-api-box code,
.score-postprocess-toolbar code,
.score-postprocess-script-hint code {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.08);
  color: #0f4c75;
  font-size: 0.95em;
}

.score-postprocess-script-grid .field-label {
  margin-bottom: 12px;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.score-postprocess-toolbar + .score-postprocess-summary-grid {
  margin-top: 8px;
}

.score-postprocess-summary-grid + .score-postprocess-api-box {
  margin-top: 6px;
}

.score-postprocess-api-box + .score-postprocess-script-grid {
  margin-top: 10px;
}

.score-postprocess-summary-grid .result-score-summary-card {
  gap: 10px;
  min-height: 116px;
  padding: 20px 22px;
  min-width: 0;
}

.score-postprocess-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.score-postprocess-stack > .surface-card,
.score-postprocess-stack > .surface-card > .n-card__content,
.score-postprocess-docs,
.score-postprocess-toolbar,
.score-postprocess-script-grid,
.score-postprocess-script-field,
.score-postprocess-api-box {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.statistics-export-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.statistics-export-hero > .n-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.statistics-export-hero-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.statistics-export-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.statistics-main-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.statistics-metrics-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
}

.statistics-filter-card > .n-card__content {
  display: grid;
}

.statistics-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.statistics-filter-select {
  width: min(280px, 100%);
}

.statistics-chart-card > .n-card__content,
.statistics-question-card > .n-card__content {
  display: grid;
  gap: 18px;
}

.statistics-question-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.statistics-score-chart {
  width: 100%;
  height: 320px;
  min-width: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(15, 139, 141, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 250, 0.84));
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.statistics-question-list {
  display: grid;
  gap: 14px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.statistics-question-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.statistics-question-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.statistics-question-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.statistics-question-row-head strong {
  color: #0f8b8d;
  font-size: 18px;
}

.statistics-question-title {
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  min-width: 0;
}

.statistics-question-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.statistics-rate-track {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.16);
}

.statistics-rate-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f8b8d, #62c3a5);
  box-shadow: 0 8px 22px rgba(15, 139, 141, 0.22);
}

.debug-panel-actions {
  margin-bottom: 16px;
}

.debug-output-panel {
  max-height: min(62vh, 760px);
  overflow: auto;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(18, 43, 59, 0.12);
  background:
    linear-gradient(180deg, rgba(9, 24, 33, 0.96), rgba(16, 33, 44, 0.96)),
    radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.12),
      transparent 44%
    );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.debug-output-text {
  margin: 0;
  color: #dcecf5;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
  font-family:
    'SF Mono', 'Menlo', 'Monaco', 'Cascadia Mono', 'Roboto Mono', 'Consolas',
    monospace;
}

.file-chip {
  display: inline-flex;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.1);
  color: var(--accent-deep);
}

.image-upload-zone {
  padding: 28px;
  border-radius: 22px;
  border: 1.5px dashed rgba(15, 139, 141, 0.26);
  background:
    linear-gradient(
      180deg,
      rgba(15, 139, 141, 0.08),
      rgba(255, 255, 255, 0.78)
    ),
    rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  outline: none;
}

.image-upload-zone:hover,
.image-upload-zone:focus {
  border-color: rgba(15, 139, 141, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

.image-upload-title {
  font-size: 18px;
  font-weight: 700;
}

.image-upload-copy {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.upload-preview-card {
  position: relative;
  overflow: hidden;
  display: grid;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(16, 91, 104, 0.08);
  padding: 0;
}

.upload-preview-open {
  display: grid;
  gap: 0;
  padding: 0;
  border: none;
  width: 100%;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.upload-preview-image {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.upload-preview-meta {
  padding: 14px;
  display: grid;
  gap: 6px;
}

.upload-preview-title {
  font-weight: 700;
}

.upload-preview-name {
  color: var(--muted);
  font-size: 13px;
  word-break: break-word;
}

.upload-preview-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  background: rgba(9, 34, 47, 0.75);
  color: white;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  z-index: 1;
}

.preview-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: 100%;
  background: linear-gradient(180deg, #0d1924, #122737);
  color: #e8f2f7;
}

.preview-sidebar {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: auto;
}

.preview-title {
  font-size: 22px;
  font-weight: 800;
}

.preview-thumb-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.preview-thumb {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.preview-thumb.active {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.08);
}

.preview-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.preview-stage-shell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-toolbar-meta {
  color: rgba(232, 242, 247, 0.72);
}

.preview-stage {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.preview-canvas {
  position: relative;
  width: min(920px, calc(100% - 60px));
  margin: 30px auto;
  transform-origin: center center;
  cursor: grab;
  user-select: none;
}

.preview-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.markdown-body,
.markdown-preview {
  line-height: 1.78;
  word-break: break-word;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-preview h1,
.markdown-preview h2,
.markdown-preview h3 {
  color: var(--accent-deep);
  word-break: break-word;
}

.markdown-body pre,
.markdown-preview pre {
  overflow: auto;
  padding: 14px;
  border-radius: 14px;
  background: #112232;
  color: #e9f0f7;
}

.markdown-body code,
.markdown-preview code {
  font-family: 'SF Mono', 'JetBrains Mono', monospace;
}

.markdown-preview {
  background: transparent;
  border: none;
}

.markdown-preview :is(h1, h2, h3, h4, h5, h6, p, li) {
  word-break: break-word;
}

.markdown-preview .katex,
.markdown-preview .katex * {
  word-break: normal;
  overflow-wrap: normal;
}

.markdown-preview > :first-child {
  margin-top: 0;
}

.markdown-preview > :last-child {
  margin-bottom: 0;
}

.project-modal {
  width: min(860px, calc(100vw - 40px));
}

.editor-card-resizer {
  min-height: 560px;
  height: 760px;
  max-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  resize: vertical;
  overflow: auto;
}

.editor-card-resizer > .answer-generation-pending,
.editor-card-resizer > .editor-card-editor {
  flex: 1 1 auto;
  min-height: 0;
}

.editor-card-resizer .md-editor {
  height: 100% !important;
  min-height: 100%;
}

.editor-card-resizer .md-editor-content,
.editor-card-resizer .md-editor-content-wrapper,
.editor-card-resizer .md-editor-input-wrapper,
.editor-card-resizer .md-editor-preview-wrapper,
.editor-card-resizer .cm-editor,
.editor-card-resizer .cm-scroller {
  height: 100%;
  min-height: 0;
}

@media (max-width: 1200px) {
  :root {
    --top-bar-safe-space: 166px;
    --sidebar-width: 260px;
    --sidebar-gap: 20px;
  }

  .generator-create-layout,
  .answer-detail-layout,
  .generator-layout,
  .two-pane,
  .scan-panel,
  .score-postprocess-result-layout,
  .two-col,
  .three-col,
  .create-form-grid {
    grid-template-columns: 1fr;
  }

  .nav-sidebar {
    min-height: calc(
      100dvh - var(--sidebar-margin-top) - var(--sidebar-bottom-gap)
    );
  }

  .nav-sidebar-main {
    margin: 0;
  }

  .task-list-card-body,
  .task-list-meta-grid,
  .task-preview-grid {
    grid-template-columns: 1fr;
  }

  .score-postprocess-preset-row {
    grid-template-columns: 1fr;
  }

  .task-list-meta-item--wide {
    grid-column: auto;
  }

  .task-preview-row {
    flex-direction: column;
  }

  .task-list-card-actions {
    justify-content: flex-start;
  }

  .create-project-toggle-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 1600px) {
  .task-list-meta-grid,
  .task-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html,
  body,
  #app {
    width: auto;
    height: auto;
    overflow: visible !important;
    background: #ffffff !important;
  }

  body {
    color: #163243;
  }

  .nav-sidebar,
  .window-drag-strip,
  .shell-scroll-fade,
  .top-bar,
  .hero-panel,
  .detail-panel-head,
  .result-sidebar,
  .result-workspace-head,
  .preview-overlay-controls,
  .question-toggle-button,
  .question-score-editor,
  .smart-name-save-hint,
  .n-tabs-nav,
  .n-tabs-tab-wrapper,
  .n-tabs-rail,
  .n-tabs-capsule,
  .n-tabs-bar,
  .n-alert__icon {
    display: none !important;
  }

  .app-shell,
  .shell-main,
  .shell-content,
  .page-stack,
  .detail-panel,
  .n-tabs,
  .n-tabs-pane-wrapper,
  .n-tab-pane,
  .result-review-layout,
  .result-workspace,
  .result-workspace-scroll,
  .result-workspace-stack,
  .result-subsection-card,
  .question-card,
  .issues-box,
  .score-breakdown-list li,
  .question-card-expanded {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    contain: none !important;
    content-visibility: visible !important;
  }

  .app-shell,
  .shell-main,
  .shell-content {
    position: static !important;
    inset: auto !important;
    padding: 0 !important;
  }

  .page-stack--result-print > .project-modal,
  .page-stack--result-print > .hero-panel {
    display: none !important;
  }

  .page-stack--result-print .detail-panel {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .page-stack--result-print .n-tabs-pane-wrapper,
  .page-stack--result-print .n-tab-pane {
    padding: 0 !important;
  }

  .page-stack--result-print .result-review-layout {
    display: none !important;
  }

  .page-stack--result-print .result-review-layout--print-host {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .page-stack--result-print .result-workspace--print-mode {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    gap: 12px !important;
  }

  .page-stack--result-print .result-workspace-scroll {
    padding: 0 !important;
  }

  .page-stack--result-print .result-workspace-stack {
    gap: 12px !important;
  }

  .page-stack--result-print .result-subsection-card,
  .page-stack--result-print .question-card {
    break-inside: auto !important;
    page-break-inside: auto !important;
    border-radius: 12px !important;
    border: 1px solid rgba(148, 163, 184, 0.18) !important;
    box-shadow: none !important;
    margin-bottom: 12px !important;
  }

  .page-stack--result-print .paper-stage,
  .page-stack--result-print .paper-stage--thumbnail {
    cursor: default !important;
  }

  .page-stack--result-print .paper-stage-image {
    max-height: none !important;
  }

  .page-stack--result-print .issues-box,
  .page-stack--result-print .score-breakdown-badge,
  .page-stack--result-print .n-tag,
  .page-stack--result-print .n-alert,
  .page-stack--result-print .n-alert-body,
  .page-stack--result-print .result-version-alert {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .page-stack--result-print .markdown-preview pre,
  .page-stack--result-print .markdown-body pre {
    white-space: pre-wrap;
    word-break: break-word;
    background: #f4f7f9 !important;
    color: #163243 !important;
    border: 1px solid rgba(148, 163, 184, 0.18) !important;
  }
}

@media (max-width: 1400px) {
  .result-layout {
    grid-template-columns: 240px 1fr;
  }

  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-stage {
    grid-column: 1 / -1;
  }

  .result-review-layout {
    grid-template-columns: 260px 1fr;
  }

  .smart-name-layout {
    grid-template-columns: 260px 1fr;
  }

  .result-workspace-head {
    grid-template-columns: 1fr;
  }

  .question-card-head {
    flex-direction: column;
  }

  .question-card-actions {
    justify-items: start;
  }

  .question-toggle-button {
    justify-self: start;
  }

  .score-postprocess-result-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .score-postprocess-workspace,
  .score-postprocess-sidebar {
    height: auto;
    overflow: visible;
  }

  .result-sidebar-scroll,
  .result-workspace-scroll {
    overflow: auto;
    padding-right: 0;
  }

  .score-postprocess-preset-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .result-review-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .smart-name-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .smart-name-main {
    grid-template-rows: auto;
    overflow: visible;
  }

  .result-duplicate-check-panel {
    max-height: none;
    overflow: visible;
  }

  .result-workspace {
    height: auto;
    overflow: visible;
  }

  .result-sidebar {
    height: auto;
  }

  .result-workspace-head {
    grid-template-columns: 1fr;
  }

  .score-postprocess-result-layout {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .score-postprocess-workspace,
  .score-postprocess-sidebar {
    height: auto;
    overflow: visible;
  }

  .result-sidebar-scroll,
  .result-workspace-scroll {
    overflow: auto;
    padding-right: 0;
  }

  .result-score-summary-grid {
    grid-template-columns: 1fr;
  }

  .smart-name-summary-grid,
  .smart-name-card-body {
    grid-template-columns: 1fr;
  }

  .smart-name-diff-row {
    grid-template-columns: 1fr;
  }

  .smart-name-diff-values {
    grid-template-columns: 1fr;
  }

  .project-scroll-fab-stack {
    left: calc(
      var(--sidebar-footprint) +
        ((100vw - var(--sidebar-footprint) - var(--shell-gutter)) / 2)
    );
  }
}

@media (max-width: 768px) {
  .score-postprocess-ai-panel {
    padding: 16px 16px 18px;
  }

  .project-scroll-fab-stack {
    left: calc(
      var(--sidebar-footprint) +
        ((100vw - var(--sidebar-footprint) - var(--shell-gutter)) / 2)
    );
    top: calc(var(--top-bar-safe-space) + 8px);
    bottom: 22px;
  }

  .project-scroll-fab {
    min-width: 0;
    padding: 10px 12px;
  }

  .project-scroll-fab__label {
    display: none;
  }
}

/* ==========================================================================
   移动端 / 窄视口适配（手机浏览器访问网页端时生效）
   Electron 主窗口 minWidth 为 1200px，桌面端永远不会命中这些断点，
   因此本区块对桌面布局零影响。
   ========================================================================== */

@media (max-width: 900px) {
  :root {
    --shell-gutter: 10px;
    --top-bar-top: 8px;
    --top-bar-safe-space: 0px;
    --top-scroll-fade-height: 0px;
    --sidebar-margin-top: 0px;
    --sidebar-left: 0px;
    --sidebar-width: 100%;
    --sidebar-gap: 0px;
    --sidebar-footprint: 0px;
    --sidebar-bottom-gap: 0px;
  }

  /* 外壳：绝对定位改为纵向文档流 */
  .app-shell {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
  }

  /* 关键：shell-main 是 app-shell 与 shell-content 之间的 absolute+overflow:hidden
     夹层。不做 flex 化的话，shell-content 变 static 后高度由内容撑开、没有可滚动
     的溢出，直接被这层裁掉 —— 表现为页面完全无法滚动（手机触摸与 PC 滚轮都一样）。
     改为 static 并参与 flex，才能让 shell-content 拿到受约束的高度去滚动。 */
  .shell-main {
    position: static;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  /* 顶栏从 absolute 悬浮改为文档流内的一行，否则会盖住内容首行 */
  .top-bar {
    position: static;
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 12px;
  }

  /* 侧边栏：320px 固定宽竖排 → 顶部横向滚动导航条 */
  .nav-sidebar {
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 0;
    align-items: center;
    contain: none;
  }

  .nav-sidebar-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    overflow: hidden;
  }

  .brand-block {
    flex: 0 0 auto;
    padding: 0;
    min-width: 0;
  }

  /* 桌面端品牌按钮是 width:100%（竖排侧栏里占满一行），横排顶栏里会把
     整行占满，把导航列表挤到 0 宽溢出屏幕外 —— 改为按内容取宽 */
  .brand-trigger {
    width: auto;
  }

  .brand-subtitle,
  .nav-card-subtitle {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-card {
    flex: 0 0 auto;
    min-width: 104px;
    padding: 8px 12px;
    text-align: center;
  }

  .nav-card-title {
    font-size: 13px;
    white-space: nowrap;
  }

  .shell-main {
    position: static;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* 桌面端专有装饰元素在网页端无意义 */
  .window-drag-strip,
  .shell-scroll-fade {
    display: none;
  }

  .top-bar {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin: 8px 10px 0;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 14px;
    flex-wrap: wrap;
  }

  .shell-content {
    position: static;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 10px 28px;
  }

  .shell-route-stage {
    min-height: auto;
  }

  .shell-visualizer-stage {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 10px;
    height: auto;
  }

  /* 多列布局统一降级为单列 */
  .create-form-grid,
  .create-step-card,
  .draft-grid,
  .generator-create-layout,
  .generator-layout,
  .image-grid,
  .llm-usage-record-grid,
  .llm-usage-stat-grid,
  .metrics-grid,
  .project-grid,
  .result-score-summary-grid,
  .result-stage-stack--embedded,
  .rubric-debug-meta-grid,
  .scan-panel,
  .score-postprocess-summary-grid,
  .smart-name-summary-grid,
  .stage-stack,
  .statistics-metrics-grid,
  .task-card-grid,
  .task-list-meta-grid,
  .task-preview-grid,
  .three-col,
  .two-col,
  .upload-preview-grid {
    grid-template-columns: 1fr !important;
  }

  /* 触控友好：加大点击热区 */
  .n-button,
  button.nav-card,
  .project-card,
  .task-card {
    min-height: 40px;
  }

  /* 宽表格改为容器内横向滚动，避免撑破页面 */
  .n-data-table,
  .n-table {
    font-size: 12px;
  }

  .n-data-table-table {
    overflow-x: auto;
  }

  /* 代码 / 公式块在窄屏下允许横向滚动 */
  pre,
  code,
  .md-editor-preview {
    overflow-x: auto;
  }
}

/* --------------------------------------------------------------------------
   移动端补充：固定像素列的布局在手机上必然溢出。
   这些布局原本是「左侧固定宽栏 + 右侧内容」，手机上改为单列上下堆叠，
   并解除固定高度（原本 clamp(720px…) + overflow:hidden 会直接裁掉内容）。
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .generator-layout,
  .answer-detail-layout,
  .result-layout,
  .result-review-layout,
  .smart-name-layout,
  .score-postprocess-result-layout,
  .preview-page {
    grid-template-columns: minmax(0, 1fr) !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    gap: 12px;
  }

  /* 复核 / 统计等工作区在桌面端依赖内部滚动，手机上交给页面整体滚动 */
  .result-workspace,
  .result-workspace-scroll,
  .result-workspace-stack,
  .paper-stage {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .paper-stage {
    min-height: 46dvh;
  }

  /* 设置项：文案与开关并排会互相挤压，改为上下排列 */
  .create-project-toggle-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .create-project-toggle-row > .n-switch,
  .create-project-toggle-row .n-switch {
    align-self: flex-start;
  }

  /* 顶部 Tab 栏在窄屏下横向滚动，而不是把页签压变形 */
  .n-tabs-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .n-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .n-tabs-tab {
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* 卡片与面板内边距收紧，给内容留出宽度 */
  .surface-card > .n-card__content,
  .detail-panel,
  .preset-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* JSON / 日志等长文本容器内部滚动 */
  .json-tree-shell,
  .preset-panel-copy,
  .stream-output-box {
    overflow-x: auto;
    max-width: 100%;
  }

  img,
  canvas,
  video {
    max-width: 100%;
  }
}

@font-face{font-display:block;font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url(./KaTeX_AMS-Regular-BQhdFMY1.woff2) format("woff2"),url(./KaTeX_AMS-Regular-DMm9YOAa.woff) format("woff"),url(./KaTeX_AMS-Regular-DRggAlZN.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url(./KaTeX_Caligraphic-Bold-Dq_IR9rO.woff2) format("woff2"),url(./KaTeX_Caligraphic-Bold-BEiXGLvX.woff) format("woff"),url(./KaTeX_Caligraphic-Bold-ATXxdsX0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url(./KaTeX_Caligraphic-Regular-Di6jR-x-.woff2) format("woff2"),url(./KaTeX_Caligraphic-Regular-CTRA-rTL.woff) format("woff"),url(./KaTeX_Caligraphic-Regular-wX97UBjC.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url(./KaTeX_Fraktur-Bold-CL6g_b3V.woff2) format("woff2"),url(./KaTeX_Fraktur-Bold-BsDP51OF.woff) format("woff"),url(./KaTeX_Fraktur-Bold-BdnERNNW.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url(./KaTeX_Fraktur-Regular-CTYiF6lA.woff2) format("woff2"),url(./KaTeX_Fraktur-Regular-Dxdc4cR9.woff) format("woff"),url(./KaTeX_Fraktur-Regular-CB_wures.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url(./KaTeX_Main-Bold-Cx986IdX.woff2) format("woff2"),url(./KaTeX_Main-Bold-Jm3AIy58.woff) format("woff"),url(./KaTeX_Main-Bold-waoOVXN0.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url(./KaTeX_Main-BoldItalic-DxDJ3AOS.woff2) format("woff2"),url(./KaTeX_Main-BoldItalic-SpSLRI95.woff) format("woff"),url(./KaTeX_Main-BoldItalic-DzxPMmG6.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url(./KaTeX_Main-Italic-NWA7e6Wa.woff2) format("woff2"),url(./KaTeX_Main-Italic-BMLOBm91.woff) format("woff"),url(./KaTeX_Main-Italic-3WenGoN9.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url(./KaTeX_Main-Regular-B22Nviop.woff2) format("woff2"),url(./KaTeX_Main-Regular-Dr94JaBh.woff) format("woff"),url(./KaTeX_Main-Regular-ypZvNtVU.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url(./KaTeX_Math-BoldItalic-CZnvNsCZ.woff2) format("woff2"),url(./KaTeX_Math-BoldItalic-iY-2wyZ7.woff) format("woff"),url(./KaTeX_Math-BoldItalic-B3XSjfu4.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url(./KaTeX_Math-Italic-t53AETM-.woff2) format("woff2"),url(./KaTeX_Math-Italic-DA0__PXp.woff) format("woff"),url(./KaTeX_Math-Italic-flOr_0UB.ttf) format("truetype")}@font-face{font-display:block;font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url(./KaTeX_SansSerif-Bold-D1sUS0GD.woff2) format("woff2"),url(./KaTeX_SansSerif-Bold-DbIhKOiC.woff) format("woff"),url(./KaTeX_SansSerif-Bold-CFMepnvq.ttf) format("truetype")}@font-face{font-display:block;font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url(./KaTeX_SansSerif-Italic-C3H0VqGB.woff2) format("woff2"),url(./KaTeX_SansSerif-Italic-DN2j7dab.woff) format("woff"),url(./KaTeX_SansSerif-Italic-YYjJ1zSn.ttf) format("truetype")}@font-face{font-display:block;font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url(./KaTeX_SansSerif-Regular-DDBCnlJ7.woff2) format("woff2"),url(./KaTeX_SansSerif-Regular-CS6fqUqJ.woff) format("woff"),url(./KaTeX_SansSerif-Regular-BNo7hRIc.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url(./KaTeX_Script-Regular-D3wIWfF6.woff2) format("woff2"),url(./KaTeX_Script-Regular-D5yQViql.woff) format("woff"),url(./KaTeX_Script-Regular-C5JkGWo-.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url(./KaTeX_Size1-Regular-mCD8mA8B.woff2) format("woff2"),url(./KaTeX_Size1-Regular-C195tn64.woff) format("woff"),url(./KaTeX_Size1-Regular-Dbsnue_I.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url(./KaTeX_Size2-Regular-Dy4dx90m.woff2) format("woff2"),url(./KaTeX_Size2-Regular-oD1tc_U0.woff) format("woff"),url(./KaTeX_Size2-Regular-B7gKUWhC.ttf) format("truetype")}@font-face{font-display:block;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(./KaTeX_Size3-Regular-CTq5MqoE.woff) format("woff"),url(./KaTeX_Size3-Regular-DgpXs0kz.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url(./KaTeX_Size4-Regular-Dl5lxZxV.woff2) format("woff2"),url(./KaTeX_Size4-Regular-BF-4gkZK.woff) format("woff"),url(./KaTeX_Size4-Regular-DWFBv043.ttf) format("truetype")}@font-face{font-display:block;font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url(./KaTeX_Typewriter-Regular-CO6r4hn1.woff2) format("woff2"),url(./KaTeX_Typewriter-Regular-C0xS9mPB.woff) format("woff"),url(./KaTeX_Typewriter-Regular-D3Ib7_Hf.ttf) format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;position:relative;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.44"}.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 .smash{display:inline;line-height:0}.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;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex svg{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}.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}
.md-editor .md-editor-preview{--md-theme-color: var(--md-color);--md-theme-color-reverse: #eee;--md-theme-color-hover: #eee;--md-theme-color-hover-inset: #ddd;--md-theme-link-color: #2d8cf0;--md-theme-link-hover-color: #73d13d;--md-theme-border-color: #e6e6e6;--md-theme-border-color-reverse: #bebebe;--md-theme-border-color-inset: #d6d6d6;--md-theme-bg-color: #fff;--md-theme-bg-color-inset: #ececec;--md-theme-code-copy-tips-color: inherit;--md-theme-code-copy-tips-bg-color: #fff;--md-theme-code-active-color: #61aeee;--md-theme-radius-s: 2px;--md-theme-radius-m: 5px}.md-editor-dark .md-editor-preview{--md-theme-color: var(--md-color);--md-theme-color-reverse: #222;--md-theme-color-hover: #191919;--md-theme-color-hover-inset: #444;--md-theme-link-color: #2d8cf0;--md-theme-link-hover-color: #73d13d;--md-theme-border-color: #2d2d2d;--md-theme-border-color-reverse: #e6e6e6;--md-theme-border-color-inset: #5a5a5a;--md-theme-bg-color: #000;--md-theme-bg-color-inset: #111;--md-theme-code-copy-tips-color: inherit;--md-theme-code-copy-tips-bg-color: #3a3a3a;--md-theme-code-active-color: #e6c07b;--md-theme-radius-s: 2px;--md-theme-radius-m: 5px}.md-editor .md-editor-admonition-note{--md-admonition-color: #212121;--md-admonition-bg-color: #FFFFFF;--md-admonition-border-color: rgb(166.2, 166.2, 166.2)}.md-editor .md-editor-admonition-tip{--md-admonition-color: #616161;--md-admonition-bg-color: #F5F5F5;--md-admonition-border-color: rgb(185.8, 185.8, 185.8)}.md-editor .md-editor-admonition-info{--md-admonition-color: #424242;--md-admonition-bg-color: #F0F0F0;--md-admonition-border-color: rgb(170.4, 170.4, 170.4)}.md-editor .md-editor-admonition-quote{--md-admonition-color: #455a64;--md-admonition-bg-color: #eceff1;--md-admonition-border-color: rgb(169.2, 179.4, 184.6)}.md-editor .md-editor-admonition-abstract{--md-admonition-color: #0288d1;--md-admonition-bg-color: #e1f5fe;--md-admonition-border-color: rgb(135.8, 201.4, 236)}.md-editor .md-editor-admonition-attention{--md-admonition-color: #1e88e5;--md-admonition-bg-color: #e3f2fd;--md-admonition-border-color: rgb(148.2, 199.6, 243.4)}.md-editor .md-editor-admonition-example{--md-admonition-color: #5e35b1;--md-admonition-bg-color: #ede7f6;--md-admonition-border-color: rgb(179.8, 159.8, 218.4)}.md-editor .md-editor-admonition-hint{--md-admonition-color: #00897B;--md-admonition-bg-color: #E0F2F1;--md-admonition-border-color: rgb(134.4, 200, 193.8)}.md-editor .md-editor-admonition-success{--md-admonition-color: #388e3c;--md-admonition-bg-color: #e8f5e9;--md-admonition-border-color: rgb(161.6, 203.8, 163.8)}.md-editor .md-editor-admonition-question{--md-admonition-color: #f9a825;--md-admonition-bg-color: #fffde7;--md-admonition-border-color: rgb(252.6, 219, 153.4)}.md-editor .md-editor-admonition-caution{--md-admonition-color: #fb8c00;--md-admonition-bg-color: #fff8e1;--md-admonition-border-color: rgb(253.4, 204.8, 135)}.md-editor .md-editor-admonition-warning{--md-admonition-color: #f57c00;--md-admonition-bg-color: #fff3e0;--md-admonition-border-color: rgb(251, 195.4, 134.4)}.md-editor .md-editor-admonition-danger{--md-admonition-color: #d84315;--md-admonition-bg-color: #ffebee;--md-admonition-border-color: rgb(239.4, 167.8, 151.2)}.md-editor .md-editor-admonition-failure{--md-admonition-color: #d32f2f;--md-admonition-bg-color: #fee2e6;--md-admonition-border-color: rgb(236.8, 154.4, 156.8)}.md-editor .md-editor-admonition-bug{--md-admonition-color: #c31a1a;--md-admonition-bg-color: #fddadd;--md-admonition-border-color: rgb(229.8, 141.2, 143)}.md-editor .md-editor-admonition-error{--md-admonition-color: #b71c1c;--md-admonition-bg-color: #fdd2d6;--md-admonition-border-color: rgb(225, 137.2, 139.6)}.md-editor-dark .md-editor-admonition-note{--md-admonition-color: #E0E0E0;--md-admonition-bg-color: #1E1E1E;--md-admonition-border-color: rgb(107.6, 107.6, 107.6)}.md-editor-dark .md-editor-admonition-tip{--md-admonition-color: #B0B0B0;--md-admonition-bg-color: #262626;--md-admonition-border-color: rgb(93.2, 93.2, 93.2)}.md-editor-dark .md-editor-admonition-info{--md-admonition-color: #B3B3B3;--md-admonition-bg-color: #2B2B2B;--md-admonition-border-color: rgb(97.4, 97.4, 97.4)}.md-editor-dark .md-editor-admonition-quote{--md-admonition-color: #b0bec5;--md-admonition-bg-color: #263238;--md-admonition-border-color: rgb(93.2, 106, 112.4)}.md-editor-dark .md-editor-admonition-abstract{--md-admonition-color: #81d4fa;--md-admonition-bg-color: #012f45;--md-admonition-border-color: rgb(52.2, 113, 141.4)}.md-editor-dark .md-editor-admonition-attention{--md-admonition-color: #64b5f6;--md-admonition-bg-color: #102a4c;--md-admonition-border-color: rgb(49.6, 97.6, 144)}.md-editor-dark .md-editor-admonition-example{--md-admonition-color: #9575cd;--md-admonition-bg-color: #271b52;--md-admonition-border-color: rgb(83, 63, 131.2)}.md-editor-dark .md-editor-admonition-hint{--md-admonition-color: #4DB6AC;--md-admonition-bg-color: #003D3A;--md-admonition-border-color: rgb(30.8, 109.4, 103.6)}.md-editor-dark .md-editor-admonition-success{--md-admonition-color: #81c784;--md-admonition-bg-color: #1b5e20;--md-admonition-border-color: rgb(67.8, 136, 72)}.md-editor-dark .md-editor-admonition-question{--md-admonition-color: #ffd54f;--md-admonition-bg-color: #3e2f00;--md-admonition-border-color: rgb(139.2, 113.4, 31.6)}.md-editor-dark .md-editor-admonition-caution{--md-admonition-color: #ffcc80;--md-admonition-bg-color: #3e2600;--md-admonition-border-color: rgb(139.2, 104.4, 51.2)}.md-editor-dark .md-editor-admonition-warning{--md-admonition-color: #ffb74d;--md-admonition-bg-color: #3d2600;--md-admonition-border-color: rgb(138.6, 96, 30.8)}.md-editor-dark .md-editor-admonition-danger{--md-admonition-color: #ef9a9a;--md-admonition-bg-color: #3c0000;--md-admonition-border-color: rgb(131.6, 61.6, 61.6)}.md-editor-dark .md-editor-admonition-failure{--md-admonition-color: #ef9a9a;--md-admonition-bg-color: #3c0900;--md-admonition-border-color: rgb(131.6, 67, 61.6)}.md-editor-dark .md-editor-admonition-bug{--md-admonition-color: #e68381;--md-admonition-bg-color: #300000;--md-admonition-border-color: rgb(120.8, 52.4, 51.6)}.md-editor-dark .md-editor-admonition-error{--md-admonition-color: #ef5350;--md-admonition-bg-color: #300000;--md-admonition-border-color: rgb(124.4, 33.2, 32)}.md-editor-preview .md-editor-admonition{background-color:var(--md-admonition-bg-color);border:1px solid var(--md-admonition-border-color);border-radius:var(--md-theme-radius-m);color:var(--md-admonition-color);display:flow-root;font-size:14px;font-weight:400;margin:1rem 0;padding:1em 1em .5em;page-break-inside:avoid}.md-editor-preview .md-editor-admonition-title{margin:0;padding:0;position:relative;font-weight:700}.md-editor-preview .md-editor-admonition p{margin:.5em 0;padding:0}.md-editor-preview .md-editor-admonition p:first-of-type{margin-block-start:0}.md-editor-preview .md-editor-admonition+p:empty,.md-editor-preview .md-editor-admonition+p:empty+p:empty{display:none}.md-editor-preview .md-editor-mermaid{overflow:hidden;line-height:normal}.md-editor-preview .md-editor-mermaid p{line-height:normal}.md-editor-preview .md-editor-mermaid:not([data-processed]){white-space:pre}.md-editor-preview [class=md-editor-mermaid][data-grab]{cursor:grab}.md-editor-preview [class=md-editor-mermaid][data-grab]:active{cursor:grabbing}.md-editor-preview [class=md-editor-mermaid][data-processed]{position:relative;display:flex;justify-content:center;align-items:center}.md-editor-preview [class=md-editor-mermaid][data-processed] svg{transform-origin:top left}.md-editor-preview [class=md-editor-mermaid][data-processed] .md-editor-mermaid-action{position:absolute;inset-block-start:10px;inset-inline-end:10px;z-index:1;opacity:0;transition:opacity .3s;cursor:pointer;display:flex;gap:8px}.md-editor-preview [class=md-editor-mermaid][data-processed] .md-editor-mermaid-action svg{padding:6px;border-radius:4px;background-color:var(--md-bk-color-outstand)}.md-editor-preview [class=md-editor-mermaid][data-processed]:hover .md-editor-mermaid-action{opacity:1}.md-editor-katex-block{text-align:center;margin:20px}.md-editor-katex-inline,.md-editor-katex-block{display:none;direction:ltr}.md-editor-katex-inline[data-processed]{display:initial}.md-editor-katex-block[data-processed]{display:block}.md-editor .md-editor-preview{--md-theme-code-inline-color: #3594f7;--md-theme-code-inline-bg-color: rgba(59, 170, 250, .1);--md-theme-code-inline-radius: var(--md-theme-radius-s);--md-theme-code-block-color: #a9b7c6;--md-theme-code-block-bg-color: #282c34;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: var(--md-theme-radius-m)}.md-editor-dark .md-editor-preview{--md-theme-code-inline-color: #3594f7;--md-theme-code-inline-bg-color: rgba(59, 170, 250, .1);--md-theme-code-inline-radius: var(--md-theme-radius-s);--md-theme-code-block-color: #a9b7c6;--md-theme-code-block-bg-color: #1a1a1a;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: var(--md-theme-radius-m)}.md-editor-preview code{direction:ltr;color:var(--md-theme-code-inline-color);background-color:var(--md-theme-code-inline-bg-color);border-radius:var(--md-theme-code-inline-radius);padding:2px 4px;line-height:22px}.md-editor-preview .md-editor-code{color:var(--md-theme-code-block-color);font-size:12px;line-height:1;margin:20px 0;position:relative}.md-editor-preview .md-editor-code input[type=radio],.md-editor-preview .md-editor-code input[type=radio]+pre,.md-editor-preview .md-editor-code input[type=radio]+span.md-editor-code-lang{display:none}.md-editor-preview .md-editor-code input:checked+pre,.md-editor-preview .md-editor-code input:checked+span.md-editor-code-lang{display:block}.md-editor-preview .md-editor-code input:checked+label{border-block-end:1px solid;color:var(--md-theme-code-active-color)}.md-editor-preview .md-editor-code .md-editor-code-head{display:grid;grid-template:"1fr 1fr";justify-content:space-between;height:32px;width:100%;font-size:12px;background-color:var(--md-theme-code-before-bg-color);margin-block-end:0;border-start-start-radius:var(--md-theme-code-block-radius);border-start-end-radius:var(--md-theme-code-block-radius);-webkit-tap-highlight-color:rgba(0,0,0,0);list-style:none;position:sticky;top:0;z-index:10000}.md-editor-preview .md-editor-code .md-editor-code-head::-webkit-details-marker{display:none}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag{margin-inline-start:12px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag span{display:inline-block;width:10px;height:10px;border-radius:50%;margin-block-start:11px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag span:nth-of-type(1){background-color:#ec6a5e}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag span:nth-of-type(2){background-color:#f4bf4f}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag span:nth-of-type(3){background-color:#61c554}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag span+span{margin-inline-start:4px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag ul.md-editor-codetab-label{box-sizing:border-box;white-space:nowrap;-webkit-user-select:none;user-select:none;background-color:var(--md-theme-code-block-bg-color);margin-block-start:8px;padding:0}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag ul.md-editor-codetab-label li{line-height:1;list-style:none;display:inline-block;position:relative;vertical-align:super;margin:0}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag ul.md-editor-codetab-label li label{cursor:pointer;-webkit-user-select:none;user-select:none;display:inline-block;font-size:14px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-flag ul.md-editor-codetab-label li+li{margin-inline-start:12px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-action{display:flex;align-items:center}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-action>*{margin-inline-end:10px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-code-lang{line-height:32px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button:not(data-is-icon){cursor:pointer;line-height:32px;position:initial}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button:not(data-is-icon) .md-editor-icon{width:15px;height:15px;display:inline-block;vertical-align:sub}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]{cursor:pointer;line-height:1;position:relative}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon] .md-editor-icon{width:15px;height:15px;display:inline-block;vertical-align:sub}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:before{content:attr(data-tips);color:var(--md-theme-code-copy-tips-color);background-color:var(--md-theme-code-copy-tips-bg-color);position:absolute;font-size:12px;font-family:sans-serif;width:max-content;text-align:center;padding:4px;border-radius:var(--md-theme-radius-s);box-shadow:0 0 2px #0003;inset-inline-start:-10px;inset-block-start:50%;transform:translate(-100%,-50%)}[dir=rtl] .md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:before{transform:translate(100%,-50%)}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:after{content:"";color:var(--md-theme-code-copy-tips-bg-color);position:absolute;width:0;height:0;border:5px solid rgba(0,0,0,0);border-inline-end-width:0;border-inline-start-color:currentColor;inset-inline-start:-10px;inset-block-start:50%;transform:translateY(-50%);filter:drop-shadow(4px 0 2px rgba(0,0,0,.2))}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:before,.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:after{visibility:hidden;transition:.3s}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:hover:before,.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-copy-button[data-is-icon]:hover:after{visibility:visible}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-collapse-tips{margin-inline-end:12px}.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-collapse-tips .md-editor-icon,.md-editor-preview .md-editor-code .md-editor-code-head .md-editor-collapse-tips .md-editor-iconfont{width:16px;height:16px;font-size:16px;display:inline-block;vertical-align:sub;transition:transform .1s;transform:rotate(0)}[dir=rtl] .md-editor-preview .md-editor-code .md-editor-code-head .md-editor-collapse-tips .md-editor-icon,[dir=rtl] .md-editor-preview .md-editor-code .md-editor-code-head .md-editor-collapse-tips .md-editor-iconfont{transform:rotate(180deg)}.md-editor-preview .md-editor-code pre{position:relative;margin:0}.md-editor-preview .md-editor-code pre code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace;font-size:14px;color:var(--md-theme-code-block-color);background-color:var(--md-theme-code-before-bg-color);display:block;line-height:1.6;overflow:auto;padding:1em;position:relative;border-start-start-radius:0;border-start-end-radius:0;border-end-start-radius:var(--md-theme-code-block-radius);border-end-end-radius:var(--md-theme-code-block-radius)}.md-editor-preview .md-editor-code pre code .md-editor-code-block{display:inline-block;width:100%;overflow:auto;vertical-align:bottom;color:var(--md-theme-code-block-color)}.md-editor-preview details.md-editor-code .md-editor-code-head{cursor:pointer}.md-editor-preview details.md-editor-code:not(open) .md-editor-code-head{border-end-start-radius:var(--md-theme-code-block-radius);border-end-end-radius:var(--md-theme-code-block-radius)}.md-editor-preview details.md-editor-code[open] .md-editor-code-head{border-end-start-radius:0;border-end-end-radius:0}.md-editor-preview details.md-editor-code[open] .md-editor-code-head .md-editor-collapse-tips .md-editor-icon,.md-editor-preview details.md-editor-code[open] .md-editor-code-head .md-editor-collapse-tips .md-editor-iconfont{transform:rotate(-90deg)}[dir=rtl] .md-editor-preview details.md-editor-code[open] .md-editor-code-head .md-editor-collapse-tips .md-editor-icon,[dir=rtl] .md-editor-preview details.md-editor-code[open] .md-editor-code-head .md-editor-collapse-tips .md-editor-iconfont{transform:rotate(270deg)}.md-editor-scrn span[rn-wrapper]{position:absolute;pointer-events:none;font-size:100%;inset-block-start:1em;inset-inline-start:0;width:3em;letter-spacing:-1px;-webkit-user-select:none;user-select:none;counter-reset:linenumber}.md-editor-scrn span[rn-wrapper]>span{display:block;pointer-events:none;counter-increment:linenumber}.md-editor-scrn span[rn-wrapper]>span:before{color:#999;display:block;padding-inline-end:.5em;text-align:right;content:counter(linenumber)}.md-editor-scrn pre code{padding-inline-start:3.5em!important}.md-editor-preview figure{margin:0 0 1em;display:inline-flex;flex-direction:column;text-align:center}.md-editor-preview figure figcaption{color:var(--md-theme-color);font-size:.875em;margin-block-start:5px}.md-editor .md-editor-preview{--md-theme-heading-color: var(--md-theme-color);--md-theme-heading-border: none;--md-theme-heading-1-color: var(--md-theme-heading-color);--md-theme-heading-1-border: var(--md-theme-heading-border);--md-theme-heading-2-color: var(--md-theme-heading-color);--md-theme-heading-2-border: var(--md-theme-heading-border);--md-theme-heading-3-color: var(--md-theme-heading-color);--md-theme-heading-3-border: var(--md-theme-heading-border);--md-theme-heading-4-color: var(--md-theme-heading-color);--md-theme-heading-4-border: var(--md-theme-heading-border);--md-theme-heading-5-color: var(--md-theme-heading-color);--md-theme-heading-5-border: var(--md-theme-heading-border);--md-theme-heading-6-color: var(--md-theme-heading-color);--md-theme-heading-6-border: var(--md-theme-heading-border)}.md-editor-preview h1,.md-editor-preview h2,.md-editor-preview h3,.md-editor-preview h4,.md-editor-preview h5,.md-editor-preview h6{position:relative;word-break:break-all;margin:1.4em 0 .8em;font-weight:700}.md-editor-preview h1 a,.md-editor-preview h2 a,.md-editor-preview h3 a,.md-editor-preview h4 a,.md-editor-preview h5 a,.md-editor-preview h6 a,.md-editor-preview h1 a:hover,.md-editor-preview h2 a:hover,.md-editor-preview h3 a:hover,.md-editor-preview h4 a:hover,.md-editor-preview h5 a:hover,.md-editor-preview h6 a:hover{color:inherit}.md-editor-preview h1{color:var(--md-theme-heading-1-color);border-block-end:var(--md-theme-heading-1-border)}.md-editor-preview h2{color:var(--md-theme-heading-2-color);border-block-end:var(--md-theme-heading-2-border)}.md-editor-preview h3{color:var(--md-theme-heading-3-color);border-block-end:var(--md-theme-heading-3-border)}.md-editor-preview h4{color:var(--md-theme-heading-4-color);border-block-end:var(--md-theme-heading-4-border)}.md-editor-preview h5{color:var(--md-theme-heading-5-color);border-block-end:var(--md-theme-heading-5-border)}.md-editor-preview h6{color:var(--md-theme-heading-6-color);border-block-end:var(--md-theme-heading-6-border)}.md-editor-preview h1{font-size:2em}.md-editor-preview h2{font-size:1.5em}.md-editor-preview h3{font-size:1.25em}.md-editor-preview h4{font-size:1em}.md-editor-preview h5{font-size:.875em}.md-editor-preview h6{font-size:.85em}.md-editor-preview hr{height:1px;margin:10px 0;border:none;border-block-start:1px solid var(--md-theme-border-color)}.md-editor-preview a{color:var(--md-theme-link-color);text-decoration:none;transition:color .1s}.md-editor-preview a:hover{color:var(--md-theme-link-hover-color)}.md-editor-preview a:empty:before{content:attr(href)}.md-editor-preview ol,.md-editor-preview ul{padding-inline-start:2em}.md-editor-preview ol .task-list-item,.md-editor-preview ul .task-list-item{list-style-type:none}.md-editor-preview ol .task-list-item input,.md-editor-preview ul .task-list-item input{margin-inline-start:-1.5em;margin-inline-end:.1em}.md-editor-preview img{max-width:100%}.md-editor-preview p:empty{display:none}.md-editor .md-editor-preview{--md-theme-quote-color: var(--md-theme-color);--md-theme-quote-border: none;--md-theme-quote-bg-color: inherit}.md-editor-preview blockquote{padding:0 1em;color:var(--md-theme-quote-color);border-inline-start:var(--md-theme-quote-border);background-color:var(--md-theme-quote-bg-color)}.md-editor .md-editor-preview{--md-theme-table-stripe-color: #fafafa;--md-theme-table-tr-bg-color: inherit;--md-theme-table-td-border-color: var(--md-theme-border-color)}.md-editor-dark .md-editor-preview{--md-theme-table-stripe-color: #0c0c0c;--md-theme-table-tr-bg-color: inherit;--md-theme-table-td-border-color: var(--md-theme-border-color)}.md-editor-preview table tr{background-color:var(--md-theme-table-tr-bg-color)}.md-editor-preview table tr th,.md-editor-preview table tr td{border:1px solid var(--md-theme-table-td-border-color)}.md-editor-preview table tr:nth-child(2n){background-color:var(--md-theme-table-stripe-color)}.md-editor-preview{color:var(--md-theme-color)}.md-editor-preview ::-webkit-scrollbar{width:6px;height:6px}.md-editor-preview ::-webkit-scrollbar-button:vertical{display:none}.md-editor-preview ::-webkit-scrollbar-corner,.md-editor-preview ::-webkit-scrollbar-track,.md-editor-preview ::-webkit-scrollbar-thumb{border-radius:2px}.md-editor .md-editor-preview ::-webkit-scrollbar-corner,.md-editor .md-editor-preview ::-webkit-scrollbar-track{background-color:#e2e2e2}.md-editor .md-editor-preview ::-webkit-scrollbar-thumb{background-color:#0000004d}.md-editor .md-editor-preview ::-webkit-scrollbar-thumb:vertical:hover{background-color:#00000059}.md-editor .md-editor-preview ::-webkit-scrollbar-thumb:vertical:active{background-color:#00000061}.md-editor-dark .md-editor-preview ::-webkit-scrollbar-corner,.md-editor-dark .md-editor-preview ::-webkit-scrollbar-track{background-color:#0f0f0f}.md-editor-dark .md-editor-preview ::-webkit-scrollbar-thumb{background-color:#2d2d2d}.md-editor-dark .md-editor-preview ::-webkit-scrollbar-thumb:vertical:hover{background-color:#3a3a3a}.md-editor-dark .md-editor-preview ::-webkit-scrollbar-thumb:vertical:active{background-color:#3a3a3a}.md-editor div.default-theme{--md-theme-code-copy-tips-color: #141414}.md-editor-dark div.default-theme{--md-theme-code-copy-tips-color: inherit}div.default-theme img{margin:0 auto;box-sizing:border-box}div.default-theme a{display:inline-flex;line-height:1;border-block-end:none}div.default-theme a:hover{border-block-end:1px solid}div.default-theme a[target=_blank]{align-items:center}div.default-theme a[target=_blank]:after{content:"";display:inline-block;width:16px;height:16px;margin-inline-start:2px;background-color:currentColor;-webkit-mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square-arrow-out-up-right"><path d="M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"/><path d="m21 3-9 9"/><path d="M15 3h6v6"/></svg>');mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square-arrow-out-up-right"><path d="M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"/><path d="m21 3-9 9"/><path d="M15 3h6v6"/></svg>');-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}div.default-theme ol,div.default-theme ul{margin:.6em 0}div.default-theme ol li,div.default-theme ul li{line-height:1.6;margin:.5em 0}div.default-theme p{line-height:1.6;margin:.5rem 0}.md-editor div.default-theme{--md-theme-quote-border: 5px solid #35b378;--md-theme-quote-bg-color: var(--md-theme-bg-color-inset)}div.default-theme blockquote{margin:20px 0;padding:0 1.2em;line-height:2em;display:flow-root}.md-editor default-theme{--md-theme-table-stripe-color: #fafafa}.md-editor-dark default-theme{--md-theme-table-stripe-color: #0c0c0c}div.default-theme table{overflow:auto;border-spacing:0;border-collapse:collapse;margin-block-end:1em;margin-block-start:1em}div.default-theme table tr th,div.default-theme table tr td{word-wrap:break-word;padding:8px 14px}div.default-theme table tbody tr:hover{background-color:var(--md-theme-color-hover)}div.default-theme blockquote table{line-height:initial}div.default-theme blockquote table tr th,div.default-theme blockquote table tr td{border-color:var(--md-theme-border-color-inset)}div.default-theme blockquote table tbody tr:nth-child(n){background-color:inherit}div.default-theme blockquote table tbody tr:hover{background-color:var(--md-theme-color-hover-inset)}.md-editor div.vuepress-theme{--md-theme-code-inline-color: #d63200;--md-theme-code-inline-bg-color: #f8f8f8;--md-theme-code-block-color: #747384;--md-theme-code-block-bg-color: #f8f8f8;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: 2px}.md-editor-dark div.vuepress-theme{--md-theme-code-inline-color: #e06c75;--md-theme-code-inline-bg-color: #1a1a1a;--md-theme-code-block-color: #999;--md-theme-code-block-bg-color: #1a1a1a;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: 2px}div.vuepress-theme code{padding:3px 5px;margin:0 2px}div.vuepress-theme .md-editor-code pre{font-size:.875em;margin:0 0 1em}div.vuepress-theme .md-editor-code pre code{white-space:pre;padding:22px 1em;margin:0}div.vuepress-theme .md-editor-code pre code span[rn-wrapper]{top:22px}.md-editor div.vuepress-theme{--md-theme-heading-color: #273849;--md-theme-heading-2-border: 1px solid var(--md-theme-border-color)}.md-editor-dark div.vuepress-theme{--md-theme-heading-color: #999;--md-theme-heading-2-border: 1px solid var(--md-theme-border-color)}div.vuepress-theme h1,div.vuepress-theme h2,div.vuepress-theme h3,div.vuepress-theme h4,div.vuepress-theme h5,div.vuepress-theme h6{font-weight:600;line-height:1.45;position:relative;margin-block-start:1em}div.vuepress-theme h1{font-size:2.2em;margin:1em 0}div.vuepress-theme h2{font-size:1.65em;padding-block-end:.3em}div.vuepress-theme h3{line-height:1.35em}.md-editor div.vuepress-theme{--md-theme-link-color: #42b983}div.vuepress-theme a{font-weight:600}div.vuepress-theme ul,div.vuepress-theme ol{position:relative;line-height:1.4em;margin:1.2em 0;z-index:1}div.vuepress-theme ul li,div.vuepress-theme ol li{margin:1.2em 0}div.vuepress-theme p{word-spacing:.05em;line-height:1.6em;margin:1.2em 0;position:relative}.md-editor div.vuepress-theme{--md-theme-quote-border: 4px solid #42b983}div.vuepress-theme blockquote{margin:2em 0;padding-inline-start:20px}div.vuepress-theme blockquote p{margin-inline-start:0;margin-block-start:1.2em;margin-block-end:0;padding:0}.md-editor div.vuepress-theme{--md-theme-table-td-border-color: #dfe2e5;--md-theme-table-stripe-color: #f6f8fa}.md-editor-dark div.vuepress-theme{--md-theme-table-td-border-color: #2d2d2d;--md-theme-table-stripe-color: #0c0c0c}div.vuepress-theme table{border-collapse:collapse;margin:1rem 0;display:block;overflow-x:auto}div.vuepress-theme table tr th,div.vuepress-theme table tr td{padding:.6em 1em}.md-editor div.vuepress-theme{--md-theme-color: #304455}.md-editor-dark div.vuepress-theme{--md-theme-color: #999}div.vuepress-theme{font-size:16px;color:var(--md-theme-color)}div.vuepress-theme em{color:#4f5959;padding:0 6px 0 4px}.md-editor div.github-theme{--md-theme-code-inline-color: inherit;--md-theme-code-inline-bg-color: #eff1f2;--md-theme-code-inline-radius: 6px;--md-theme-code-block-color: inherit;--md-theme-code-block-bg-color: #f6f8fa;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: 6px}.md-editor-dark div.github-theme{--md-theme-code-inline-color: #c9d1d9;--md-theme-code-inline-bg-color: #2d3339;--md-theme-code-inline-radius: 6px;--md-theme-code-block-color: #a9b7c6;--md-theme-code-block-bg-color: #161b22;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: 6px}div.github-theme code{padding:.2em .4em;margin:0}div.github-theme pre code{padding:22px 1em;margin-block-end:0;word-break:normal;letter-spacing:1px}.md-editor div.github-theme{--md-theme-heading-color: inherit;--md-theme-heading-6-color: #2d3339;--md-theme-heading-1-border: 1px solid #d9dee4;--md-theme-heading-2-border: 1px solid #d9dee4}.md-editor-dark div.github-theme{--md-theme-heading-color: #c9d1d9;--md-theme-heading-6-color: #768390;--md-theme-heading-1-border: 1px solid #373e47;--md-theme-heading-2-border: 1px solid #373e47}div.github-theme h1,div.github-theme h2,div.github-theme h3,div.github-theme h4,div.github-theme h5,div.github-theme h6{margin-block-start:24px;margin-block-end:16px;font-weight:600;line-height:1.25}div.github-theme h1{padding-block-end:.3em;font-size:2em}div.github-theme h2{padding-block-end:.3em;font-size:1.5em}div.github-theme h3{font-size:1.25em}div.github-theme h4{font-size:1em}div.github-theme h5{font-size:.875em}div.github-theme h6{font-size:.85em}.md-editor div.github-theme{--md-theme-heading-bg-color: #fff}.md-editor-dark div.github-theme{--md-theme-heading-bg-color: #22272e}div.github-theme img{background-color:var(--md-theme-heading-bg-color)}.md-editor div.github-theme{--md-theme-link-color: #539bf5;--md-theme-link-hover-color: #539bf5}div.github-theme a:hover{text-decoration:underline}div.github-theme ol li+li,div.github-theme ul li+li{margin-block-start:.25em}.md-editor div.github-theme{--md-theme-quote-color: #57606a;--md-theme-quote-border: .25em solid #d0d7de}.md-editor-dark div.github-theme{--md-theme-quote-color: #8b949e;--md-theme-quote-border: .25em solid #444c56}div.github-theme blockquote{margin:0;padding:0 1em}.md-editor div.github-theme{--md-theme-table-stripe-color: #f7f8fa;--md-theme-table-tr-bg-color: #fff;--md-theme-table-td-border-color: #d0d7de}.md-editor-dark div.github-theme{--md-theme-table-stripe-color: #161b22;--md-theme-table-tr-bg-color: transparent;--md-theme-table-td-border-color: #30363d}div.github-theme table{display:block;max-width:100%;overflow:auto;border-spacing:0;border-collapse:collapse}div.github-theme table tr th,div.github-theme table tr td{padding:6px 13px}.md-editor div.github-theme{--md-theme-color: #222}.md-editor-dark div.github-theme{--md-theme-color: #c9d1d9}div.github-theme{line-height:1.5;color:var(--md-theme-color)}div.github-theme p,div.github-theme blockquote,div.github-theme ul,div.github-theme ol,div.github-theme dl,div.github-theme table,div.github-theme pre,div.github-theme details{margin-block-start:0;margin-block-end:16px}.md-editor div.cyanosis-theme,.md-editor-dark div.cyanosis-theme{--md-theme-code-inline-color: var(--md-theme-code-color);--md-theme-code-inline-bg-color: var(--md-theme-code-bg-color);--md-theme-code-block-color: var(--md-theme-base-color);--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color)}div.cyanosis-theme code{padding:.065em .4em;font-family:Menlo,Monaco,Consolas,Courier New,monospace;overflow-x:auto}div.cyanosis-theme code::selection{background-color:var(--md-theme-slct-codebg-color)}div.cyanosis-theme .md-editor-code pre{font-family:Menlo,Monaco,Consolas,Courier New,monospace}div.cyanosis-theme .md-editor-code pre code{padding:11px 12px 22px;margin:0;word-break:normal;line-height:1.75}div.cyanosis-theme .md-editor-code pre code span[rn-wrapper]{top:11px}.md-editor div.cyanosis-theme{--md-theme-heading-color: var(--md-theme-title-color)}div.cyanosis-theme h1{padding-block-end:4px;margin-block-start:36px;margin-block-end:10px;font-size:30px;line-height:1.5;transition:color .35s}div.cyanosis-theme h2{position:relative;padding-inline-start:10px;padding-inline-end:10px;padding-block-end:10px;margin-block-start:36px;margin-block-end:10px;font-size:24px;line-height:1.5;border-block-end:1px solid var(--md-theme-border-color-2);transition:color .35s}div.cyanosis-theme h2:before{content:"「";position:absolute;inset-block-start:-6px;inset-inline-start:-14px}div.cyanosis-theme h2:after{content:"」";position:relative;inset-block-start:6px;inset-inline-end:auto}div.cyanosis-theme h3{position:relative;padding-block-end:0;margin-block-start:30px;margin-block-end:10px;font-size:20px;line-height:1.5;padding-inline-start:6px;transition:color .35s}div.cyanosis-theme h3:before{content:"»";padding-inline-end:6px;color:var(--md-theme-strong-color)}div.cyanosis-theme h4{padding-block-end:0;margin-block-start:24px;margin-block-end:10px;font-size:16px;line-height:1.5;padding-inline-start:6px;transition:color .35s}div.cyanosis-theme h5{padding-block-end:0;margin-block-start:18px;margin-block-end:10px;font-size:14px;line-height:1.5;padding-inline-start:6px;transition:color .35s}div.cyanosis-theme h6{padding-block-end:0;margin-block-start:12px;margin-block-end:10px;font-size:12px;line-height:1.5;padding-inline-start:6px;transition:color .35s}div.cyanosis-theme h1::selection,div.cyanosis-theme h2::selection,div.cyanosis-theme h3::selection,div.cyanosis-theme h4::selection,div.cyanosis-theme h5::selection,div.cyanosis-theme h6::selection{color:var(--md-theme-slct-title-color);background-color:var(--md-theme-slct-titlebg-color)}@media (max-width: 720px){div.cyanosis-theme h1{font-size:24px}div.cyanosis-theme h2{font-size:20px}div.cyanosis-theme h3{font-size:18px}}.md-editor div.cyanosis-theme{--md-theme-link-color: var(--md-theme-link-color);--md-theme-link-hover-color: var(--md-theme-linkh-color)}div.cyanosis-theme a{position:relative;display:inline-block;text-decoration:none;border-block-end:1px solid var(--md-theme-border-color)}div.cyanosis-theme a:hover{border-block-end-color:var(--md-theme-linkh-color)}div.cyanosis-theme a:active{color:var(--md-theme-linkh-color)}div.cyanosis-theme a:after{position:absolute;content:"";inset-block-start:100%;inset-inline-start:0;width:100%;opacity:0;border-block-end:1px solid var(--md-theme-border-color);transition:top .3s,opacity .3s;transform:translateZ(0)}div.cyanosis-theme a:hover:after{top:0;opacity:1;border-block-end-color:var(--md-theme-linkh-color)}div.cyanosis-theme ol,div.cyanosis-theme ul{margin:0}div.cyanosis-theme ol li,div.cyanosis-theme ul li{margin-block-end:0;list-style:inherit}div.cyanosis-theme ol li .task-list-item,div.cyanosis-theme ul li .task-list-item{list-style:none}div.cyanosis-theme ol li .task-list-item ul,div.cyanosis-theme ol li .task-list-item ol,div.cyanosis-theme ul li .task-list-item ul,div.cyanosis-theme ul li .task-list-item ol{margin-block-start:0}div.cyanosis-theme ol ul,div.cyanosis-theme ol ol,div.cyanosis-theme ul ul,div.cyanosis-theme ul ol{margin-block-start:4px}div.cyanosis-theme ol li{padding-inline-start:6px}div.cyanosis-theme ol li::selection,div.cyanosis-theme ul li::selection{color:var(--md-theme-slct-text-color);background-color:var(--md-theme-slct-bg-color)}div.cyanosis-theme .task-list-item-checkbox{position:relative}div.cyanosis-theme .contains-task-list input[type=checkbox]:before{content:"";position:absolute;inset-block-start:0;inset-inline-start:0;inset-inline-end:0;inset-block-end:0;width:inherit;height:inherit;background:#f0f8ff;border:1px solid #add6ff;border-radius:var(--md-theme-radius-s);box-sizing:border-box;z-index:1}div.cyanosis-theme .contains-task-list input[type=checkbox][checked]:after{content:"✓";position:absolute;inset-block-start:-12px;inset-inline-start:0;inset-inline-end:0;inset-block-end:0;width:0;height:0;color:#f55;font-size:20px;font-weight:700;z-index:2}div.cyanosis-theme p{line-height:inherit;margin-block-start:16px;margin-block-end:16px}div.cyanosis-theme p::selection{color:var(--md-theme-slct-text-color);background-color:var(--md-theme-slct-bg-color)}.md-editor div.cyanosis-theme{--md-theme-quote-color: var(--md-theme-blockquote-color);--md-theme-quote-border: 4px solid var(--md-theme-strong-color);--md-theme-quote-bg-color: var(--md-theme-blockquote-bg-color)}div.cyanosis-theme blockquote{padding:1px 20px;margin:22px 0;transition:color .35s}div.cyanosis-theme blockquote:after{display:block;content:""}div.cyanosis-theme blockquote>p{margin:10px 0}div.cyanosis-theme blockquote>b,div.cyanosis-theme blockquote>strong{color:var(--md-theme-strong-color)}div.cyanosis-theme table{display:inline-block!important;width:auto;max-width:100%;overflow:auto;border:1px solid var(--md-theme-table-border-color);border-spacing:0;border-collapse:collapse}div.cyanosis-theme table thead{color:#000;text-align:left;background:#f6f6f6}div.cyanosis-theme table tr:nth-child(2n){background-color:var(--md-theme-table-tr-nc-color)}div.cyanosis-theme table tr:hover{background-color:var(--md-theme-table-trh-color)}div.cyanosis-theme table th,div.cyanosis-theme table td{padding:12px 8px;line-height:24px;border:1px solid var(--md-theme-table-border-color)}div.cyanosis-theme table th{color:var(--md-theme-table-tht-color);background-color:var(--md-theme-table-th-color)}div.cyanosis-theme table td{min-width:120px}div.cyanosis-theme table thead th::selection{background-color:#0000}div.cyanosis-theme table tbody td::selection{background-color:var(--md-theme-slct-bg-color)}.md-editor div.cyanosis-theme{--md-theme-base-color:#353535;--md-theme-title-color:#005bb7;--md-theme-strong-color:#2196f3;--md-theme-em-color:#4fc3f7;--md-theme-del-color:#ccc;--md-theme-link-color:#3da8f5;--md-theme-linkh-color:#007fff;--md-theme-border-color:#bedcff;--md-theme-border-color-2:#ececec;--md-theme-bg-color:#fff;--md-theme-blockquote-color:#8c8c8c;--md-theme-blockquote-bg-color:#f0fdff;--md-theme-code-color:#c2185b;--md-theme-code-bg-color:#fff4f4;--md-theme-code-block-bg-color:#f8f8f8;--md-theme-table-border-color:#c3e0fd;--md-theme-table-th-color:#dff0ff;--md-theme-table-tht-color:#005bb7;--md-theme-table-tr-nc-color:#f7fbff;--md-theme-table-trh-color:#e0edf7;--md-theme-slct-title-color:#005bb7;--md-theme-slct-titlebg-color:rgba(175,207,247,.25);--md-theme-slct-text-color:#c80000;--md-theme-slct-bg-color:rgba(175,207,247,.25);--md-theme-slct-del-color:#999;--md-theme-slct-elbg-color:#e8ebec;--md-theme-slct-codebg-color:#ffeaeb;--md-theme-slct-prebg-color:rgba(160,200,255,.25)}.md-editor-dark div.cyanosis-theme{--md-theme-base-color:#cacaca;--md-theme-title-color:#ddd;--md-theme-strong-color:#fe9900;--md-theme-em-color:#ffd28e;--md-theme-del-color:#ccc;--md-theme-link-color:#ffb648;--md-theme-linkh-color:#fe9900;--md-theme-border-color:#ffe3ba;--md-theme-border-color-2:#ffcb7b;--md-theme-bg-color:#2f2f2f;--md-theme-blockquote-color:#c7c7c7;--md-theme-blockquote-bg-color:rgba(255,199,116,.1);--md-theme-code-color:#000;--md-theme-code-bg-color:#ffcb7b;--md-theme-code-block-bg-color:rgba(30,25,18,.5);--md-theme-table-border-color:#fe9900;--md-theme-table-th-color:#ffb648;--md-theme-table-tht-color:#000;--md-theme-table-tr-nc-color:#6d5736;--md-theme-table-trh-color:#947443;--md-theme-slct-title-color:#000;--md-theme-slct-titlebg-color:#fe9900;--md-theme-slct-text-color:#00c888;--md-theme-slct-bg-color:rgba(175,207,247,.25);--md-theme-slct-del-color:#999;--md-theme-slct-elbg-color:#000;--md-theme-slct-codebg-color:#ffcb7b;--md-theme-slct-prebg-color:rgba(160,200,255,.25)}div.cyanosis-theme{word-break:break-word;line-height:1.75;font-weight:400;overflow-x:hidden;color:var(--md-theme-base-color);transition:color .35s}div.cyanosis-theme hr{position:relative;width:98%;height:1px;margin-block-start:32px;margin-block-end:32px;background-image:linear-gradient(90deg,var(--md-theme-link-color),rgba(255,0,0,.3),rgba(37,163,65,.3),rgba(255,0,0,.3),var(--md-theme-link-color));border-width:0;overflow:visible}div.cyanosis-theme b,div.cyanosis-theme strong{color:var(--md-theme-strong-color)}div.cyanosis-theme i,div.cyanosis-theme em{color:var(--md-theme-em-color)}div.cyanosis-theme del{color:var(--md-theme-del-color)}div.cyanosis-theme details>summary{outline:none;color:var(--md-theme-title-color);font-size:20px;font-weight:bolder;border-block-end:1px solid var(--md-theme-border-color);cursor:pointer}div.cyanosis-theme details>p{padding:10px 20px;margin:10px 0 0;color:#666;background-color:var(--md-theme-blockquote-bg-color);border:2px dashed var(--md-theme-strong-color)}div.cyanosis-theme a::selection,div.cyanosis-theme b::selection,div.cyanosis-theme strong::selection,div.cyanosis-theme i::selection,div.cyanosis-theme em::selection{background-color:var(--md-theme-slct-elbg-color)}div.cyanosis-theme del::selection{color:var(--md-theme-slct-del-color);background-color:var(--md-theme-slct-elbg-color)}.md-editor div.mk-cute-theme,.md-editor-dark div.mk-cute-theme{--md-theme-code-inline-color: #4ec9b0;--md-theme-code-inline-bg-color: #282c34;--md-theme-code-block-color: #4ec9b0;--md-theme-code-block-bg-color: #282c34;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color);--md-theme-code-block-radius: 10px}div.mk-cute-theme code{font-family:Menlo,Monaco,Consolas,Courier New,monospace;overflow-x:auto;padding:.14em .46em;margin:0 4px}div.mk-cute-theme .md-editor-code pre code{font-family:Menlo,Monaco,Consolas,Courier New,monospace;padding:22px;margin:0;word-break:normal;line-height:1.75}div.mk-cute-theme .md-editor-code pre code span[rn-wrapper]{top:22px}.md-editor div.mk-cute-theme{--md-theme-heading-color: #36ace1}div.mk-cute-theme h1:before,div.mk-cute-theme h2:before,div.mk-cute-theme h3:before,div.mk-cute-theme h4:before,div.mk-cute-theme h5:before,div.mk-cute-theme h6:before{content:"";display:block;position:absolute;inset-inline-start:0;inset-block-start:0;inset-block-end:0;margin:auto;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAF8UlEQVRIS71Wa2wUVRT+7r0zu9t2t/RBaSioPCpYbIUfaEIQUogSAwZDAlUSGwgg/CBATExMCJH1D2hIfOEjFEUEhViCgBgIUCH44OkjPAMGBVqhpUCfW3Zn5z7MuQOE0hYxMdxJdmd25s53vnO+851leMCLPWA8/CfA2TsvL8n7q+nTFfNLG+4VqInHOeJLDQMzdz/3r4DGGDb9lxu+aPcE7U61JHDMDePcuv0O21ShugOefqDdtBie3Dk6K/O+Ab+qOjJiz7Ahv6c8hbDDwRiQlgYGDOcaWyEcjg8On+j71IpJndjGt9XO+jM7+pkywNvbazIfercieSdoJ4bE5sWjyZqMpDdeaQNXMNC34ME3LV8B56+1w3AOgk+EXe/Ub6uiLB6XdH/G/mYjeBCcFwnt3zQqWt4t4NjjnhzQ1CGkBhwOCMFAB71U0qsYgRlwBtQ1tiEJAy44OBdQUmFK3aWS06NLT+ukZAQoKCCjsfbDmk6p78RwX3ncWffmIj8U4kh6GpEwh+9rGy23LDU4GBrrm9DsuDYIGMAYIC/EUNQ7Cq1hn+WM2TI8f+jEyCmvjfn1FssuojHx6tDkyZOaCzr8TNpASzDAk8amlRIrEylcSGsYrcGIstIYWhgDDIM2BiGH3ywFkGAC1U9n38bpVqWGdk6r4HMWrZZaG1D5KLn0qYyBEAKnG1otAxLR8L7Z9nfP13CJHQ/ST4vK8sVHe8JsU0U6uO5hlexo8PI7vNDQomwoBRAwpSmtgJAAztS3QLsOsmBQlBtFJMQhlbbPUBBUR7o2hqHVddLbRsfCPQJ+u3TPw8uGl1yklAlHIJZKo3//XEhlLCtifPFyM7xwCI/lZ8IKTTBbS7pPLIggZZsSQ+zXbT4UYSsnet3UMM5HPT5LGbrDGYQroClyT2Jwnyj9aN949e8mDCwuRFoqKxRHUJ21BSDRELuQYGhvbMVV32Dp2RuxcfHSRBfAYTsbU9nJdFj5EiLkglHkRInC1xoxKbH9hQJIaTDvxxTCUddWl4wg0dCCtqSPDmoVx4Eitpxh64ZtsT6b5ie6pPRkfF90TllxOzEwmipMKRRgHODGgCuJkqIcvDdC2BZ5Y+tlHHMzkAKghbAxcQqQDiKrFBxhqg5MHTivS1tQ+sdsvaQl5Yd6yfdRXNQLsQwXnq/AQFLXEIIjzBSuNaaR0SuEtkQKl9IKjAsbJaWfzo1USDsM6zceDJfeVGgnhhN2N7YOyo5kJz1pa2AbgfrO1gRwXW6vSRQNtddR+EhvKGmseskgTtY2Q7kucYWWgToPHzyUyXry0iXfnBtfl5f/PaWPvPNW/zkOAQegJHltFE5dSaCskHqPVEnqpMAMEgkPtR1pKxyh/N0/vTToubtH1G3RmLjhM8ubKXfWB2mRa9ySOaWS2uT8lTZ0cI6I52Ngv7zAbW9mQVm1cpytu441P38XeXTlQu+e46nyh+bjLkMZRU0MCYTCJWZSG1y7cBWNURpxBlxqFBfEwGnGGhaYPSNwhpSv4DK+/vPynBk9MqRIiOWs8a2WJTm9a+cgh6SaMIMz9W1WjYHHMtv0wSmZdWB9gdsya/rcYVg7JoffCdqlD6ceTpiY59tM0PhJp5WNvra+BQkejCMyBarr8KKYDcZi8sDaCDKYFIGRk+FnSVXzyTO9JxBwF8DLc1dlLn65ooNEYN0fBsu21fTvL6PXnhxXlnLIqqhYYBian4lQ2Lk9ogiALsimiLC1QYfhlV1Hnxh7JfcMqxrpd7U2GFa5t9nOd7Kr+kg4uWvnCpromlJeXlq3Os3ZLOlrZBmNQf1ybVqpxhbA7mRIOCy1+esDOWhIyDv/+3Q7LRbsqH+rKRJ+nba+/+WW7II1s9vvVBuNr7KNF1WUM1bSt5f1Vq01jUVkKfnx8uoti3Or5rbd9782M61azJz/rFywYU/OyKqK1p5G2MS1Z18tGFDwTkvIxcK9RwaMP3a9/tbc62lPj/Nw5B9ey9Ehy/MY4oEqelgNleuyCgdXJlmc3fO5Ll56r5f+n/f+AWFf9jvBgaHpAAAAAElFTkSuQmCC);animation:spin 2s linear 0s infinite}div.mk-cute-theme h1{position:relative;font-size:30px;padding:12px 38px;margin:30px 0}div.mk-cute-theme h1:before{width:30px;height:30px;background-size:30px 30px}div.mk-cute-theme h2{position:relative;font-size:24px;padding:12px 36px;margin:28px 0}div.mk-cute-theme h2:before{width:28px;height:28px;background-size:28px 28px}div.mk-cute-theme h3{position:relative;font-size:18px;padding:4px 32px;margin:26px 0}div.mk-cute-theme h3:before{width:24px;height:24px;background-size:24px 24px}div.mk-cute-theme h4{position:relative;padding:4px 28px;font-size:16px;margin:22px 0}div.mk-cute-theme h4:before{width:20px;height:20px;background-size:20px 20px}div.mk-cute-theme h5{position:relative;padding:4px 26px;font-size:15px;margin:20px 0}div.mk-cute-theme h5:before{width:18px;height:18px;background-size:18px 18px}div.mk-cute-theme h6{position:relative;padding:4px 22px;font-size:14px;margin:16px 0}div.mk-cute-theme h6:before{width:16px;height:16px;background-size:16px 16px}@media (max-width: 720px){div.mk-cute-theme h1{font-size:24px}div.mk-cute-theme h2{font-size:20px}div.mk-cute-theme h3{font-size:18px}}.md-editor div.mk-cute-theme{--md-theme-link-color: #409eff;--md-theme-link-hover-color: #007bff}div.mk-cute-theme a{display:inline-block;border-block-end:1px solid #409eff}div.mk-cute-theme a:hover,div.mk-cute-theme a:active{border-block-end:1px solid #007bff}div.mk-cute-theme ol li,div.mk-cute-theme ul li{margin-block-end:0;list-style:inherit}div.mk-cute-theme ol li .task-list-item,div.mk-cute-theme ul li .task-list-item{list-style:none}div.mk-cute-theme ol li .task-list-item ul,div.mk-cute-theme ol li .task-list-item ol,div.mk-cute-theme ul li .task-list-item ul,div.mk-cute-theme ul li .task-list-item ol{margin-block-start:0}div.mk-cute-theme ol ul,div.mk-cute-theme ol ol,div.mk-cute-theme ul ul,div.mk-cute-theme ul ol{margin-block-start:3px}div.mk-cute-theme ol li{padding-inline-start:6px}div.mk-cute-theme p{line-height:inherit;margin-block-start:22px;margin-block-end:22px}.md-editor div.mk-cute-theme{--md-theme-quote-color: #fff;--md-theme-quote-border: 4px solid #409eff;--md-theme-quote-bg-color: rgba(54, 172, 225, .75)}.md-editor-dark div.mk-cute-theme{--md-theme-quote-color: inherit;--md-theme-quote-border: 4px solid #265d97;--md-theme-quote-bg-color: rgba(18, 80, 108, .75)}div.mk-cute-theme blockquote{position:relative;padding:8px 26px;margin:16px 0;border-radius:var(--md-theme-radius-m)}div.mk-cute-theme blockquote:before{content:"❝";inset-block-start:10px;inset-inline-start:8px;color:#409eff;font-size:20px;line-height:1;font-weight:700;position:absolute;opacity:.7}div.mk-cute-theme blockquote:after{content:"❞";font-size:20px;position:absolute;inset-inline-end:8px;inset-block-end:0;color:#409eff;opacity:.7}div.mk-cute-theme blockquote>p,div.mk-cute-theme blockquote ul li,div.mk-cute-theme blockquote ol li{color:var(--md-theme-quote-color)}.md-editor div.mk-cute-theme{--md-theme-table-color: #000;--md-theme-table-border-color: #f6f6f6;--md-theme-table-thead-bg-color: #f6f6f6;--md-theme-table-stripe-color: #fcfcfc}.md-editor-dark div.mk-cute-theme{--md-theme-table-color: inherit;--md-theme-table-border-color: #1c1c1c;--md-theme-table-thead-bg-color: rgba(28, 28, 28, .631372549);--md-theme-table-stripe-color: rgba(28, 28, 28, .631372549)}div.mk-cute-theme table{display:inline-block;width:auto;max-width:100%;overflow:auto;border:solid 1px var(--md-theme-table-border-color)}div.mk-cute-theme table thead{background-color:var(--md-theme-table-thead-bg-color);color:var(--md-theme-table-color);text-align:left}div.mk-cute-theme table tr th,div.mk-cute-theme table tr td{padding:12px 7px;line-height:24px;border:none}div.mk-cute-theme table tr td{min-width:120px}div.mk-cute-theme blockquote table tbody{color:var(--md-theme-color)}div.mk-cute-theme blockquote table tr{background-color:var(--md-theme-table-stripe-color)}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.md-editor div.mk-cute-theme{--md-theme-color: #36ace1;background-image:linear-gradient(90deg,#323a4240 3%,#0000 3%),linear-gradient(360deg,#323a4240 3%,#0000 3%)}.md-editor-dark div.mk-cute-theme{background-image:linear-gradient(90deg,#d9eafb40 3%,#0000 3%),linear-gradient(360deg,#d9eafb40 3%,#0000 3%);--md-theme-bg-color-scrollbar-thumb: #4d4d4d}div.mk-cute-theme{word-break:break-word;line-height:1.75;font-weight:400;overflow-x:hidden;background-size:20px 20px;background-position:center center}div.mk-cute-theme hr{position:relative;width:98%;height:1px;border:none;margin-block-start:32px;margin-block-end:32px;background-image:linear-gradient(to right,#36ace1,#dff0fe,#36ace1);overflow:visible}div.mk-cute-theme del{color:#36ace1}.md-editor div.smart-blue-theme{--md-theme-code-inline-color: #d63200;--md-theme-code-inline-bg-color: #fff5f5;--md-theme-code-block-color: #333;--md-theme-code-block-bg-color: #f8f8f8;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color)}.md-editor-dark div.smart-blue-theme{--md-theme-code-inline-color: #e06c75;--md-theme-code-inline-bg-color: #1a1a1a;--md-theme-code-block-color: #999;--md-theme-code-block-bg-color: #1a1a1a;--md-theme-code-before-bg-color: var(--md-theme-code-block-bg-color)}div.smart-blue-theme code{overflow-x:auto;padding:.065em .4em}div.smart-blue-theme .md-editor-code pre{font-family:Menlo,Monaco,Consolas,Courier New,monospace}div.smart-blue-theme .md-editor-code pre code{padding:22px 12px;margin:0;word-break:normal}div.smart-blue-theme .md-editor-code pre code span[rn-wrapper]{top:22px}.md-editor div.smart-blue-theme{--md-theme-heading-color: #135ce0}div.smart-blue-theme h1,div.smart-blue-theme h2,div.smart-blue-theme h3,div.smart-blue-theme h4,div.smart-blue-theme h5,div.smart-blue-theme h6{padding:30px 0;margin:0}div.smart-blue-theme h1 a,div.smart-blue-theme h2 a,div.smart-blue-theme h3 a,div.smart-blue-theme h4 a,div.smart-blue-theme h5 a,div.smart-blue-theme h6 a{border:none}div.smart-blue-theme h1{position:relative;text-align:center;font-size:22px;margin:50px 0}div.smart-blue-theme h2{position:relative;font-size:20px;border-inline-start:4px solid;padding:0 0 0 10px;margin:30px 0}div.smart-blue-theme h3{font-size:16px}div.smart-blue-theme img{margin:0 auto}.md-editor div.smart-blue-theme{--md-theme-link-color: #036aca}.md-editor-dark div.smart-blue-theme{--md-theme-link-color: #2d7dc7}div.smart-blue-theme a{font-weight:400}div.smart-blue-theme ul,div.smart-blue-theme ol{margin-block-start:1em}div.smart-blue-theme li{line-height:2;margin-block-end:0;list-style:inherit}div.smart-blue-theme p{line-height:2;font-weight:400}div.smart-blue-theme *+p{margin-block-start:16px}.md-editor div.smart-blue-theme{--md-theme-quote-color: #666;--md-theme-quote-bg-color: #fff9f9;--md-theme-quote-border-color: #b2aec5}.md-editor-dark div.smart-blue-theme{--md-theme-quote-color: #999;--md-theme-quote-bg-color: #2a2a2a;--md-theme-quote-border-color: #0063bb}div.smart-blue-theme blockquote{background-color:var(--md-theme-quote-bg-color);margin:2em 0;padding:2px 20px;border-inline-start:4px solid var(--md-theme-quote-border-color)}div.smart-blue-theme blockquote p{color:var(--md-theme-quote-color);line-height:2}.md-editor div.smart-blue-theme{--md-theme-table-td-border-color: #dfe2e5;--md-theme-table-stripe-color: #f6f8fa}.md-editor-dark div.smart-blue-theme{--md-theme-table-td-border-color: #2d2d2d;--md-theme-table-stripe-color: #0c0c0c}div.smart-blue-theme table{border-collapse:collapse;margin:1rem 0;overflow-x:auto}div.smart-blue-theme table tr th,div.smart-blue-theme table tr td{padding:.6em 1em}div.smart-blue-theme blockquote table{line-height:initial}div.smart-blue-theme blockquote table tr th,div.smart-blue-theme blockquote table tr td{border-color:var(--md-theme-border-color-inset)}div.smart-blue-theme blockquote table tbody tr:nth-child(n){background-color:inherit}.md-editor div.smart-blue-theme{--md-theme-color: #595959}.md-editor div.smart-blue-theme{background-image:linear-gradient(90deg,#3c0a1e0a 3%,#0000 3%),linear-gradient(360deg,#3c0a1e0a 3%,#0000 3%)}.md-editor-dark div.smart-blue-theme{--md-theme-color: #999}.md-editor-dark div.smart-blue-theme{background-image:linear-gradient(90deg,#cfcfcf0a 3%,#fff0 3%),linear-gradient(360deg,#cfcfcf0a 3%,#fff0 3%)}div.smart-blue-theme{color:var(--md-theme-color);font-family:-apple-system,system-ui,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif;background-size:20px 20px;background-position:center center}div.smart-blue-theme strong,div.smart-blue-theme em strong{color:#036aca}div.smart-blue-theme hr{border-block-start:1px solid #135ce0}.md-editor-checkbox{cursor:pointer;width:12px;height:12px;border:1px solid var(--md-border-color);background-color:var(--md-bk-color-outstand);border-radius:2px;line-height:1;text-align:center}.md-editor-checkbox:after{content:"";font-weight:700}.md-editor-checkbox-checked:after{content:"✓"}.md-editor-divider{position:relative;display:inline-block;width:1px;inset-block-start:.1em;height:.9em;margin-block:0;margin-inline:8px;background-color:var(--md-border-color)}.md-editor-dropdown{overflow:hidden;box-sizing:border-box;position:absolute;transition:all .3s;opacity:1;z-index:20000;background-color:var(--md-bk-color)}.md-editor-dropdown-hidden{opacity:0;visibility:hidden}.md-editor-dropdown-overlay{margin-block-start:6px}.md-editor-modal-mask{position:fixed;inset-block-start:0;inset-inline-end:0;inset-block-end:0;inset-inline-start:0;z-index:20000;height:100%;background-color:var(--md-modal-mask)}.md-editor-modal{display:block;background-color:var(--md-bk-color);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;border-radius:3px;border:1px solid var(--md-border-color);position:fixed;z-index:20001;box-shadow:var(--md-modal-shadow)}.md-editor-modal-header{cursor:grab;display:flex;justify-content:space-between;padding-block:10px;padding-inline:24px;color:var(--md-color);font-weight:600;font-size:16px;line-height:22px;word-wrap:break-word;-webkit-user-select:none;user-select:none;border-block-end:1px solid var(--md-border-color);position:relative}.md-editor-modal-body{padding-block:20px;padding-inline:20px;font-size:14px;word-wrap:break-word;height:calc(100% - 43px);box-sizing:border-box}.md-editor-modal .md-editor-modal-func{position:absolute;inset-block-start:10px;inset-inline-end:10px}.md-editor-modal .md-editor-modal-func .md-editor-modal-adjust,.md-editor-modal .md-editor-modal-func .md-editor-modal-close{cursor:pointer;width:24px;height:24px;line-height:24px;text-align:center;display:inline-block}.md-editor-modal .md-editor-modal-func .md-editor-modal-adjust{padding-inline-end:10px}.animation{animation-duration:.15s;animation-fill-mode:forwards}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoom-in{animation-name:zoomIn;animation-duration:.15s;animation-fill-mode:forwards}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoom-out{animation-name:zoomOut;animation-duration:.15s;animation-fill-mode:forwards}.md-editor-custom-scrollbar{position:relative;overflow:hidden;height:100%}.md-editor-custom-scrollbar__track{position:absolute;inset-block-start:0;inset-inline-end:0;width:6px;height:100%;background:var(--md-scrollbar-bg-color)}.md-editor-custom-scrollbar__thumb{position:absolute;width:6px;background:var(--md-scrollbar-thumb-color);border-radius:4px;cursor:pointer;transition:background .2s}.md-editor-custom-scrollbar__thumb:hover{background:var(--md-scrollbar-thumb-hover-color)}.md-editor-content{direction:ltr;position:relative;display:flex;flex:1;height:0;flex-shrink:0}.md-editor-content-wrapper{display:flex;flex:1;width:0;position:relative}.md-editor-resize-operate{position:absolute;width:2px;height:100%;background-color:var(--md-bk-color);z-index:1;cursor:col-resize}.md-editor-input-wrapper{height:100%;box-sizing:border-box}.md-editor-preview-wrapper{position:relative;height:100%;box-sizing:border-box;overflow:auto;scrollbar-width:none}[dir=rtl] .md-editor-preview-wrapper{direction:rtl}.md-editor-preview-wrapper::-webkit-scrollbar{display:none}.md-editor-html{font-size:16px;word-break:break-all}.md-editor-catalog-editor{position:relative;overflow-x:hidden;overflow-y:auto;height:100%;background-color:var(--md-bk-color);border-inline-start:1px solid var(--md-border-color);width:200px;box-sizing:border-box;margin-block:0;margin-inline:0;padding-block:5px;padding-inline:10px;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:"tnum";scrollbar-width:none}.md-editor-catalog-editor::-webkit-scrollbar{display:none}.md-editor-catalog-fixed{position:absolute;inset-block-start:0;inset-inline-end:0;z-index:10002}.md-editor-catalog-flat{position:initial;flex-shrink:0}.md-editor-footer{height:24px;flex-shrink:0;font-size:12px;color:var(--md-color);border-block-start:1px solid var(--md-border-color);display:flex;justify-content:space-between}.md-editor-footer-item{display:inline-flex;align-items:center;height:100%;padding-block:0;padding-inline:10px}.md-editor-footer-item+.md-editor-footer-item{padding-inline-start:0}.md-editor-footer-label{padding-inline-end:5px;line-height:1}.md-editor-clip{position:relative;display:flex;height:calc(100% - 52px)}.md-editor-clip-main,.md-editor-clip-preview{width:50%;height:100%;border:1px solid var(--md-border-color)}.md-editor-clip-main{margin-inline-end:1em}.md-editor-clip-main .md-editor-clip-cropper{position:relative;width:100%;height:100%}.md-editor-clip-main .md-editor-clip-cropper .md-editor-clip-delete{position:absolute;inset-block-start:0;inset-inline-end:0;font-size:0;background-color:var(--md-bk-color-outstand);border-bottom-left-radius:4px;color:var(--md-color);cursor:pointer}.md-editor-clip-main .md-editor-clip-upload{display:flex;align-items:center;justify-content:center;width:100%;height:100%;cursor:pointer}.md-editor-clip-main .md-editor-clip-upload .md-editor-icon,.md-editor-clip-main .md-editor-clip-upload .md-editor-iconfont{width:auto;height:40px;font-size:40px}.md-editor-clip-preview-target{width:100%;height:100%;overflow:hidden}.md-editor-form-item{margin-block-end:20px;text-align:center}.md-editor-form-item:last-of-type{margin-block-end:0}.md-editor-label{font-size:14px;color:var(--md-color);width:80px;text-align:center;display:inline-block}.md-editor-input{border-radius:4px;padding-block:4px;padding-inline:11px;color:var(--md-color);font-size:14px;line-height:1.5715;background-color:var(--md-bk-color);background-image:none;border:1px solid var(--md-border-color);transition:all .2s}.md-editor-input:focus,.md-editor-input:hover{border-color:var(--md-border-hover-color);outline:0}.md-editor-input:focus{border-color:var(--md-border-active-color)}.md-editor-btn{font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;border:1px solid var(--md-border-color);white-space:nowrap;-webkit-user-select:none;user-select:none;height:32px;padding-block:0;padding-inline:15px;font-size:14px;border-radius:4px;transition:all .2s linear;color:var(--md-color);background-color:var(--md-bk-color);border-color:var(--md-border-color);margin-inline-start:10px}.md-editor-btn:first-of-type{margin-inline-start:0}.md-editor-btn:hover{color:var(--md-hover-color);background-color:var(--md-bk-color);border-color:var(--md-border-hover-color)}.md-editor-btn-row{width:100%}@media (max-width: 688px){.md-editor-modal-clip .md-editor-modal{max-width:calc(100% - 20px);max-height:calc(100% - 20px);margin-block:10px;margin-inline:10px;inset-inline-start:0!important}.md-editor-modal-clip .md-editor-clip{flex-direction:column}.md-editor-modal-clip .md-editor-clip-main,.md-editor-modal-clip .md-editor-clip-preview{width:100%;height:0;flex:1}.md-editor-modal-clip .md-editor-clip-main{margin-block-end:1em}}.md-editor-menu{margin-block:0;margin-inline:0;padding-block:0;padding-inline:0;border-radius:3px;border:1px solid var(--md-border-color);background-color:inherit}.md-editor-menu-item{list-style:none;font-size:12px;color:var(--md-color);padding-block:4px;padding-inline:10px;cursor:pointer;line-height:16px}.md-editor-menu-item:first-of-type{padding-block-start:8px}.md-editor-menu-item:last-of-type{padding-block-end:8px}.md-editor-menu-item:hover{background-color:var(--md-bk-hover-color)}.md-editor-table-shape{padding-block:4px;padding-inline:4px;border-radius:3px;border:1px solid var(--md-border-color);display:flex;flex-direction:column}.md-editor-table-shape-row{display:flex}.md-editor-table-shape-col{padding-block:2px;padding-inline:2px;cursor:pointer}.md-editor-table-shape-col-default{width:16px;height:16px;background-color:#e0e0e0;border-radius:3px;transition:all .2s}.md-editor-table-shape-col-include{background-color:#aaa}.md-editor-toolbar-wrapper{overflow-x:auto;overflow-y:hidden;scrollbar-width:none;flex-shrink:0;padding-block:4px;padding-inline:4px;border-block-end:1px solid var(--md-border-color)}.md-editor-toolbar-wrapper::-webkit-scrollbar{height:0!important}.md-editor-toolbar{display:flex;justify-content:space-between;align-items:center;box-sizing:content-box}.md-editor-toolbar-item{color:var(--md-color);display:flex;flex-direction:column;align-items:center;margin-block:0;margin-inline:2px;padding-block:0;padding-inline:2px;transition:all .3s;border-radius:3px;cursor:pointer;list-style:none;-webkit-user-select:none;user-select:none;text-align:center;border:none;background-color:transparent}.md-editor-toolbar-item-name{font-size:12px;word-break:keep-all;white-space:nowrap}.md-editor-toolbar-item:not([disabled]):hover{background-color:var(--md-bk-color-outstand)}.md-editor-toolbar-active{background-color:var(--md-bk-color-outstand)}.md-editor-toolbar-left,.md-editor-toolbar-right{padding-block:1px;padding-inline:0;display:flex;align-items:center}.md-editor .md-editor-stn .md-editor-toolbar-item{padding-block:0;padding-inline:6px}.md-editor-dark .md-editor-table-shape-col-default{background-color:#222}.md-editor-dark .md-editor-table-shape-col-include{background-color:#555}.md-editor-floating-toolbar{padding-block:4px;padding-inline:4px;display:flex;align-items:center}.md-editor-floating-toolbar-container{opacity:0;transition:opacity .12s ease-out;transition-delay:20ms;will-change:opacity}.md-editor-floating-toolbar-container[data-state=visible]{opacity:1}.md-editor-floating-toolbar-container .cm-tooltip-arrow{transition:opacity .12s ease-out;opacity:0}.md-editor-floating-toolbar-container[data-state=visible] .cm-tooltip-arrow{opacity:1}.md-editor .cm-editor{direction:ltr;font-size:14px;height:100%}.md-editor .cm-editor.cm-focused{outline:none}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete{border-radius:3px}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete>ul{border-radius:3px;min-width:fit-content;max-width:fit-content}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete>ul li{background-color:var(--md-bk-color);color:var(--md-color);padding-block:4px;padding-inline:10px;line-height:16px}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete>ul li .cm-completionIcon{width:auto}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete>ul li[aria-selected]{background-color:var(--md-bk-hover-color)}.md-editor .cm-editor .cm-tooltip.cm-tooltip-autocomplete .cm-completionInfo{margin-block-start:-2px;margin-inline-start:3px;padding-block:4px;padding-inline:9px;border-radius:3px;overflow:hidden;background-color:var(--md-bk-hover-color);color:var(--md-color)}.md-editor .cm-scroller{scrollbar-width:none}.md-editor .cm-scroller::-webkit-scrollbar{display:none}.md-editor .cm-scroller .cm-content[contenteditable=true]{margin-block:10px;margin-inline:10px;min-height:calc(100% - 20px)}.md-editor .cm-scroller .cm-gutters+.cm-content[contenteditable=true]{margin-block:0;margin-inline:0;min-height:100%}.md-editor .cm-scroller .cm-line{line-height:inherit}.md-editor .ͼ1 .cm-scroller{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace;line-height:20px}.md-editor .cm-search .cm-textfield{border-radius:4px;padding-block:4px;padding-inline:11px;color:var(--md-color);font-size:10px;background-image:none;border:1px solid var(--md-border-color);transition:all .2s}.md-editor .cm-search .cm-textfield:focus,.md-editor .cm-search .cm-textfield:hover{border-color:var(--md-border-hover-color);outline:0}.md-editor .cm-search .cm-textfield:focus{border-color:var(--md-border-active-color)}.md-editor .cm-search .cm-button{font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;border:1px solid var(--md-border-color);white-space:nowrap;-webkit-user-select:none;user-select:none;height:20px;padding-block:0;padding-inline:15px;font-size:10px;border-radius:4px;transition:all .2s linear;color:var(--md-color);background-color:inherit;background-image:none;border-color:var(--md-border-color)}.md-editor .cm-search .cm-button:first-of-type{margin-inline-start:0}.md-editor .cm-search .cm-button:hover{color:var(--md-hover-color);background-color:inherit;border-color:var(--md-border-hover-color)}.md-editor .cm-search input[type=checkbox]{vertical-align:sub}.md-editor .cm-search input[type=checkbox]:after{display:block;content:"";font-weight:700;cursor:pointer;width:12px;height:12px;border:1px solid var(--md-border-color);background-color:var(--md-bk-color-outstand);border-radius:2px;line-height:1;text-align:center}.md-editor .cm-search input[type=checkbox]:checked:after{content:"✓";color:var(--md-color)}.md-editor .cm-search button[name=close]{color:inherit;cursor:pointer;inset-block-end:6px}[dir=rtl] .md-editor-catalog{direction:rtl}.md-editor-catalog-indicator{height:18px;width:4px;background-color:#73d13d;position:absolute;border-radius:4px;transition:top .3s}.md-editor-catalog>.md-editor-catalog-link{padding-block:5px;padding-inline:8px}.md-editor-catalog-link{padding-block:5px;padding-inline-start:1em;display:flex;flex-direction:column}.md-editor-catalog-link span{display:inline-block;width:100%;position:relative;overflow:hidden;color:var(--md-color);white-space:nowrap;text-overflow:ellipsis;transition:color .3s;cursor:pointer;line-height:18px}.md-editor-catalog-link span:hover{color:#73d13d}.md-editor-catalog-wrapper>.md-editor-catalog-link{padding-block-start:5px;padding-block-end:5px}.md-editor-catalog-wrapper>.md-editor-catalog-link:first-of-type{padding-block-start:10px}.md-editor-catalog-wrapper>.md-editor-catalog-link:last-of-type{padding-block-end:0}.md-editor-catalog-active>span{color:#73d13d}.md-editor-catalog-dark{--md-color: #999;--md-hover-color: #bbb;--md-bk-color: #000;--md-bk-color-outstand: #333;--md-bk-hover-color: #1b1a1a;--md-border-color: #2d2d2d;--md-border-hover-color: #636262;--md-border-active-color: #777;--md-modal-mask: #00000073;--md-modal-shadow: 0px 6px 24px 2px #00000066;--md-scrollbar-bg-color: #0f0f0f;--md-scrollbar-thumb-color: #2d2d2d;--md-scrollbar-thumb-hover-color: #3a3a3a;--md-scrollbar-thumb-active-color: #3a3a3a}.md-editor{--md-color: #3f4a54;--md-hover-color: #000;--md-bk-color: #fff;--md-bk-color-outstand: #f2f2f2;--md-bk-hover-color: #f5f7fa;--md-border-color: #e6e6e6;--md-border-hover-color: #b9b9b9;--md-border-active-color: #999;--md-modal-mask: #00000073;--md-modal-shadow: 0px 6px 24px 2px #00000019;--md-scrollbar-bg-color: #e2e2e2;--md-scrollbar-thumb-color: #0000004d;--md-scrollbar-thumb-hover-color: #00000059;--md-scrollbar-thumb-active-color: #00000061;color:var(--md-color);font-family:-apple-system,BlinkMacSystemFont,Segoe UI Variable,Segoe UI,system-ui,ui-sans-serif,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";width:100%;height:500px;position:relative;box-sizing:border-box;border:1px solid var(--md-border-color);display:flex;flex-direction:column;overflow:hidden;background-color:var(--md-bk-color)}.md-editor .md-editor-fullscreen{position:fixed!important;inset-block-start:0;inset-inline-end:0;inset-block-end:0;inset-inline-start:0;width:auto!important;height:auto!important;z-index:10000}svg.md-editor-icon{width:16px;height:16px;padding-block:4px;padding-inline:4px;fill:none;overflow:hidden;display:block;box-sizing:content-box}.md-editor .lucide-list-icon,.md-editor .lucide-list-ordered-icon,.md-editor .lucide-list-todo-icon{width:18px;height:18px;padding-block:3px;padding-inline:3px}.md-editor-preview{font-size:16px;word-break:break-all;display:flow-root;padding-block:10px;padding-inline:20px}.md-editor-modal-container{--md-color: #3f4a54;--md-hover-color: #000;--md-bk-color: #fff;--md-bk-color-outstand: #f2f2f2;--md-bk-hover-color: #f5f7fa;--md-border-color: #e6e6e6;--md-border-hover-color: #b9b9b9;--md-border-active-color: #999;--md-modal-mask: #00000073;--md-modal-shadow: 0px 6px 24px 2px #00000019;--md-scrollbar-bg-color: #e2e2e2;--md-scrollbar-thumb-color: #0000004d;--md-scrollbar-thumb-hover-color: #00000059;--md-scrollbar-thumb-active-color: #00000061;color:var(--md-color);font-family:-apple-system,BlinkMacSystemFont,Segoe UI Variable,Segoe UI,system-ui,ui-sans-serif,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"}.md-editor-modal-container .lucide-xicon{width:20px;height:20px;padding-block:2px;padding-inline:2px}.md-editor-previewOnly{border:none;height:auto;overflow:visible}.md-editor-previewOnly .md-editor-content{height:100%}.md-editor-previewOnly .md-editor-preview{padding-block:0;padding-inline:0}.md-editor-previewOnly .md-editor-preview-wrapper{overflow:visible}.md-editor-dark,.md-editor-modal-container[data-theme=dark]{--md-color: #999;--md-hover-color: #bbb;--md-bk-color: #000;--md-bk-color-outstand: #333;--md-bk-hover-color: #1b1a1a;--md-border-color: #2d2d2d;--md-border-hover-color: #636262;--md-border-active-color: #777;--md-modal-mask: #00000073;--md-modal-shadow: 0px 6px 24px 2px #00000066;--md-scrollbar-bg-color: #0f0f0f;--md-scrollbar-thumb-color: #2d2d2d;--md-scrollbar-thumb-hover-color: #3a3a3a;--md-scrollbar-thumb-active-color: #3a3a3a}.medium-zoom-overlay,.medium-zoom-image--opened{z-index:100001}.md-editor-fullscreen{position:fixed!important;inset-block-start:0;inset-inline-end:0;inset-block-end:0;inset-inline-start:0;width:auto!important;height:auto!important;z-index:10000}.md-editor-disabled{cursor:not-allowed!important;opacity:.6}
