@charset "UTF-8";
:root {
  --xm-font-sans: Open Sans, Inter, Roboto, Helvetica, Arial, Sarasa Gothic TC, Sarasa Gothic SC, Noto Sans TC, Noto Sans SC, Microsoft JhengHei, Microsoft YaHei, -apple-system, sans-serif;
  --xm-font-serif: Merriweather, Georgia, Times New Roman, Times, Source Han Serif Traditional Chinese, Source Han Serif Simplified Chinese, Noto Serif TC, Noto Serif SC, serif;
  --xm-font-mono: DM Mono, Fira Code, Jetbrains Mono, Input Mono, Menlo, MesloLGS NF, Ubuntu, Sarasa Gothic TC, Sarasa Gothic SC, monospace;
  --xm-font-display: var(--xm-font-sans);
  --xm-font-code: var(--xm-font-mono);
}

.markdown-body {
  --xm-c-shallowest: #f8f8f8;
  --xm-c-shallower: #ddd;
  --xm-c-shallow: #bbb;
  --xm-c-regular: #555;
  --xm-c-deep: #222;
  --xm-c-deeper: #000;
  --xm-c-border: hsla(0, 0%, 50%, 0.35);
  --xm-c-border-table: hsla(0, 0%, 50%, 0.5);
}

.dark .markdown-body {
  --xm-c-shallowest: #212121;
  --xm-c-shallower: #555;
  --xm-c-shallow: #777;
  --xm-c-regular: #bbb;
  --xm-c-deep: #ddd;
  --xm-c-deeper: #fff;
  --xm-c-border: hsla(0, 0%, 75%, 0.35);
  --xm-c-border-table: hsla(0, 0%, 40%, 0.75);
}

.markdown-body {
  font-family: var(--xm-font-display) !important;
}

.markdown-body {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: var(--xm-c-regular);
  font-size: 1rem;
  line-height: 1.75;
}
.markdown-body:first-child {
  margin-top: 1rem;
}
.markdown-body h1 {
  margin-top: 0;
  margin-bottom: 0.875rem;
  color: var(--xm-c-deeper);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.15;
}
.markdown-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--xm-c-deep);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.35;
}
.markdown-body h2 code {
  font-size: 0.875rem;
}
.markdown-body h2 + * {
  margin-top: 0;
}
.markdown-body h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  color: inherit;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.7;
}
.markdown-body h3 code {
  font-size: 0.9rem;
}
.markdown-body h3 + * {
  margin-top: 0;
}
.markdown-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: inherit;
  font-weight: 600;
  line-height: 1.5;
}
.markdown-body h4 + * {
  margin-top: 0;
}
.markdown-body h5,
.markdown-body h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}
.markdown-body hr {
  width: 50px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-color: var(--xm-c-hr-border);
}
.markdown-body hr + * {
  margin-top: 0;
}
.markdown-body .header-anchor {
  border: 0 !important;
}
.markdown-body .header-anchor {
  float: left;
  margin-top: 0;
  margin-left: -1.25rem;
  padding-right: 0.5rem;
  font-weight: 600;
  font-size: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  opacity: 0;
}
.markdown-body .header-anchor:hover, .markdown-body .header-anchor:focus {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.markdown-body h1:hover .header-anchor, .markdown-body h1:focus .header-anchor {
  opacity: 0.375;
}
.markdown-body h2:hover .header-anchor, .markdown-body h2:focus .header-anchor {
  opacity: 0.4;
}
.markdown-body h3:hover .header-anchor, .markdown-body h3:focus .header-anchor {
  opacity: 0.425;
}
.markdown-body h4:hover .header-anchor, .markdown-body h4:focus .header-anchor {
  opacity: 0.45;
}
.markdown-body h5:hover .header-anchor, .markdown-body h5:focus .header-anchor {
  opacity: 0.475;
}
.markdown-body h6:hover .header-anchor, .markdown-body h6:focus .header-anchor {
  opacity: 0.5;
}
.markdown-body p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.markdown-body strong {
  color: var(--xm-c-deep);
  font-weight: 600;
}
.markdown-body b {
  color: var(--xm-c-deep);
}
.markdown-body em {
  color: inherit;
}
.markdown-body a {
  border-bottom: 1px solid var(--xm-c-border);
  color: var(--xm-c-deeper);
  font-weight: 500;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: border 0.3s ease-in-out;
}
.markdown-body a code {
  color: var(--xm-c-deep);
}
.markdown-body a:hover {
  border-bottom: 1px solid var(--xm-c-regular);
}
.markdown-body a:not([href]) {
  border-bottom: none;
  color: inherit;
  font-weight: normal;
  transition: none;
}
.markdown-body code {
  color: var(--xm-c-deep);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--xm-font-code);
}
.markdown-body code::before, .markdown-body code::after {
  content: "`";
}
.markdown-body pre {
  overflow-x: auto;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
  padding-top: 0.875rem, 1.15rem;
  border-radius: 0.375rem;
  color: var(--xm-c-deep);
  font-size: 0.875rem;
  line-height: 1.75;
}
.markdown-body pre code {
  padding: 0;
  border-width: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 400;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.markdown-body pre code::before, .markdown-body pre code::after {
  content: none;
}
.markdown-body pre:has(code) {
  margin: 0.5rem 0;
  font-size: 1.05rem;
  font-family: var(--xm-font-code);
  line-height: 1.4;
}
.markdown-body blockquote,
.markdown-body q {
  margin-top: 1.65rem;
  margin-bottom: 1.65rem;
  padding: 0.6rem 1.2rem;
  border-left: 0.25rem solid var(--xm-c-border);
  color: inherit;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5rem;
  quotes: "“" "”" "‘" "’";
  opacity: 0.75;
}
.markdown-body blockquote p:first-of-type::before,
.markdown-body q p:first-of-type::before {
  content: open-quote;
}
.markdown-body blockquote p:last-of-type::after,
.markdown-body q p:last-of-type::after {
  content: close-quote;
}
.markdown-body blockquote > *:first-child,
.markdown-body q > *:first-child {
  margin-top: 0;
}
.markdown-body blockquote > *:last-child,
.markdown-body q > *:last-child {
  margin-bottom: 0;
}
.markdown-body figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.markdown-body figure figcaption {
  margin-top: 0.875rem;
  color: var(--xm-c-shallow);
  font-size: 0.875rem;
  line-height: 1.45;
}
.markdown-body figure > * {
  margin-top: 0;
  margin-bottom: 0;
}
.markdown-body li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.markdown-body ol {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  list-style-type: none;
}
.markdown-body ol > li {
  position: relative;
  padding-left: 1.75rem;
}
.markdown-body ol > li::before {
  content: counter(list-item, decimal) ".";
  position: absolute;
  left: 0;
  color: var(--xm-c-shallow);
  font-weight: 400;
}
.markdown-body ul {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  list-style-type: none;
}
.markdown-body ul > li {
  position: relative;
  padding-left: 1.75rem;
}
.markdown-body ul > li::before {
  content: "";
  position: absolute;
  top: 0.675rem;
  left: 0.25rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--xm-c-shallower);
}
.markdown-body ul ul,
.markdown-body ul ol,
.markdown-body ol ul,
.markdown-body ol ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.markdown-body table {
  overflow: auto;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.markdown-body table th,
.markdown-body table td {
  padding: 6px 13px;
  border: 1.5px solid var(--xm-c-border-table);
}
.markdown-body table thead th {
  font-weight: 700;
}
.markdown-body table tbody tr:hover {
  background-color: var(--xm-c-shallowest);
}
.markdown-body img {
  display: block;
  max-width: 92%;
  margin: 1rem auto;
  border-radius: 0.2rem;
}
.markdown-body video {
  margin: auto;
}
.markdown-body iframe {
  display: flex;
  width: 92%;
  margin: auto;
  border-radius: 0.2rem;
}
/*# sourceMappingURL=bundle.css.map */