@import 'https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css';
:root {
  --width-left: 288px;
  --width-main: 720px;
  --gap-l: 16px;
  --gap-p: 0.75rem;
}
@media screen and (min-width: 2048px) {
  :root {
    --gap-l: 32px;
    --width-left: 352px;
    --width-main: 780px;
  }
}
@media screen and (min-width: 2560px) {
  :root {
    --width-main: 860px;
    --gap-l: 64px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --width-left: 252px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --width-left: 288px;
  }
}
:root {
  --site-bg: #f3f3f3 radial-gradient(#eff4f9 75%, #f3f3f3 100%) no-repeat fixed;
  --color-scheme: light;
  --card-border: #e1e1e3;
  --card: #fafbfd;
  --block: #eef0f2;
  --block-border: #e0e3e7;
  --block-hover: #e8ebee;
  --text-p0: #000;
  --text-p1: #1a1a1a;
  --text-p2: #444546;
  --text-p3: #6f7173;
  --text-p4: #a4a7aa;
  --text-meta: #c4c8cc;
  --text-code: #000;
  --text-revert: #fff;
  --theme-highlight: #0078d4;
  --theme-cap: #005ba1;
  --theme-bg: #fafbfd;
  --theme-link: #0078d4;
}

pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif !important;
  font-size: 0.8125rem;
  tab-size: 4;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  -webkit-tab-size: 4;
}
a {
  text-decoration: none;
  color: var(--theme-link);
}
a:hover {
  color: #0078d4;
}
.md-text p:not([class]) {
  text-align: left;
}
hr {
  color: var(--text-meta);
  opacity: 0.1;
}
img {
  max-width: 100%;
}
ul,
ol {
  padding-left: 1.5rem;
}
table:not([class]) {
  border-collapse: collapse;
  overflow: auto;
  display: block;
  margin: 1rem 0;
  max-width: 100%;
  vertical-align: text-top;
  font-size: 0.875rem;
}
table:not([class]) th {
  background: var(--block);
}
table:not([class]) td,
table:not([class]) th {
  padding: 0.5em 1em;
  border: 1px solid var(--block-hover);
  line-height: 1.5;
}
table:not([class]) tr {
  word-break: keep-all;
  white-space: nowrap;
}
table:not([class]) tr:hover {
  background: var(--block);
}
*[ff=title] {
  font-family: HarmonyOS_Regular, system-ui, -apple-system, sans-serif;
}
blockquote {
  display: block;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--theme-highlight);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  color: var(--text-p2);
}
:root {
  --blur-px: 12px;
  --blur-bg: rgba(255,255,255,0.5);
}

.blur {
  background: var(--blur-bg);
}
@supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
  .blur {
    background: var(--blur-bg) !important;
    backdrop-filter: saturate(200%) blur(var(--blur-px));
    -webkit-backdrop-filter: saturate(200%) blur(var(--blur-px));
  }
}
.blur:hover {
  background: var(--card);
}
button {
  border: none;
  font-weight: 500;
  outline: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
a.button {
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  font-size: 0.9375rem;
  -moz-box-align: center;
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  -moz-box-pack: center;
  justify-content: center;
  text-decoration-line: none;
  vertical-align: middle;
  margin: 0px;
  overflow: hidden;
  border: 1px solid;
  border-color: #d1d1d1;
  outline-style: none;
  padding: 5px 12px;
  min-width: 96px;
  font-weight: 600;
  line-height: 20px;
  transition-duration: 100ms;
  transition-property: background-color, border-color, color;
  transition-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  color: var(--text-revert);
  background-color: var(--theme-highlight);
  border-color: transparent;
}
a.button.theme {
  background: #0078d4;
  color: var(--card);
}
a.button.theme:hover {
  background-color: var(--theme-cap);
  border-color: #c7c7c7;
}
a[onclick]:hover {
  cursor: pointer;
}
.cap {
  font-weight: 500;
  font-size: 0.75rem;
  scrollbar-width: none;
  color: var(--text-p3);
}
.cap.blue {
  color: #0d87e9;
}
.cap.cyan {
  color: #03c3f5;
}
.cap.theme {
  color: var(--theme-cap);
}
.dis-select {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.mobile-only {
  display: none;
}
@media screen and (max-width: 667px) {
  .mobile-only {
    display: block !important;
  }
}
@media screen and (max-width: 667px) {
  .mobile-hidden {
    display: none !important;
  }
}
.float-panel {
  position: sticky;
  right: 0;
  bottom: 2rem;
  float: right;
  z-index: 10;
  display: flex;
  border-radius: 2rem;
  margin-right: 1rem;
  overflow: hidden;
  --blur-px: 16px;
  --blur-bg: rgba(255,255,255,0.4);
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

.sidebar-toggle.mobile {
  cursor: pointer;
  color: var(--text-p0);
  background: none;
  padding: 0.5rem;
  line-height: 0;
  font-size: 20px;
  margin: 0;
}
.l_body.mobile.sidebar .float-panel {
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.l_body.mobile.sidebar .sidebar-toggle.mobile {
  background: var(--card);
  color: #0078d4;
  border-color: var(--block-border);
}
code {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
}
p>code:not([class]),
li>code:not([class]) {
  font-size: 85%;
  background: rgba(20,20,20,0.05);
  padding: 3px 4px;
  border-radius: 4px;
  color: var(--text-code);
}
.md-text .highlight,
pre:not([class]):has(>code) {
  margin: var(--gap-p) 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--block);
  border: 1px solid var(--block-border);
  line-height: 1.5;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  box-sizing: border-box;
}
@media screen and (min-width: 500px) {
  .md-text .highlight,
  pre:not([class]):has(>code) {
    min-width: 180px;
  }
}
.md-text .highlight {
  position: relative;
  overflow: auto;
  display: block;
}
.md-text .highlight figcaption {
  color: var(--text-p2);
  font-size: 85%;
  padding: 4px 0.5rem;
  position: sticky;
  left: 0;
  background: var(--block-hover);
  border-top-left-radius: calc(8px - 1px);
  border-top-right-radius: calc(8px - 1px);
  border-bottom: 1px solid var(--block-border);
}
.md-text .highlight figcaption span {
  margin-right: 4px;
}
.md-text .highlight >table {
  overflow: auto;
  display: block;
  margin: 0 !important;
  background: transparent;
  border: none;
}
.md-text .highlight >table td,
.md-text .highlight >table th {
  padding: 0;
  border: none;
  line-height: 1.5;
}
.md-text .highlight >table::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.md-text .highlight >table::-webkit-scrollbar-track-piece {
  background: transparent;
}
.md-text .highlight >table::-webkit-scrollbar-thumb {
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}
.md-text .highlight >table:hover::-webkit-scrollbar-thumb {
  background: var(--text-meta);
}
.md-text .highlight >table:hover::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.md-text .highlight >table tr {
  background: transparent;
}
.md-text .highlight >table tr:hover {
  background: transparent;
}
.md-text .highlight .gutter {
  pointer-events: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  text-align: right;
  padding: 0 0.5rem 0 1rem;
  border-width: 0;
  margin-left: 0;
  position: sticky;
  background: var(--card);
  left: 0;
  z-index: 1;
}
.md-text .highlight .gutter pre .line {
  color: var(--text-p4);
}
.md-text .highlight .code pre {
  display: block;
  padding: 0;
}
.md-text .highlight .gutter+.code pre {
  padding-left: 0.25em;
}
.md-text .gist .gist-file {
  border: 1px solid var(--block-border);
  border-radius: 8px;
}
.md-text .gist .gist-data {
  border-bottom: 1px solid var(--block-border);
}
.md-text .gist .highlight {
  display: inherit;
  border: none;
  border-radius: 0;
  background: none;
  margin: 0;
  padding: 1em 0;
}
.md-text .gist .gist-meta {
  background: var(--block-border);
}
table:not([class]) {
  border-collapse: collapse;
}
.md-text pre >.caption {
  color: var(--text-p3);
}
.md-text pre >.hljs {
  padding: 1rem;
  line-height: 1.5;
  box-sizing: border-box;
}
.md-text .highlight {
  border-radius: 8px;
  border: 1px solid var(--card-border);
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  background-color: var(--card);
  margin: 1rem 0.3rem;
}
.md-text .highlight .code {
  vertical-align: top;
}
.md-text .highlight .code:before {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 0.5rem;
  opacity: 0.25;
  font-weight: 700;
  color: var(--text-p3);
  filter: drop-shadow(1px 1px 0.5px var(--text-p4));
}
.md-text .highlight.yaml .code:before {
  content: "YAML";
}
.md-text .highlight.json .code:before {
  content: "JSON";
}
.md-text .highlight.diff .code:before {
  content: "diff";
}
.md-text .highlight.html .code:before {
  content: "HTML";
}
.md-text .highlight.js .code:before,
.md-text .highlight.javascript .code:before {
  content: "JS";
}
.md-text .highlight.css .code:before {
  content: "CSS";
}
.md-text .highlight.less .code:before {
  content: "Less";
}
.md-text .highlight.stylus .code:before {
  content: "Stylus";
}
.md-text .highlight.bash .code:before {
  content: "bash";
}
.md-text .highlight.shell .code:before {
  content: "shell";
}
.md-text .highlight.sh .code:before {
  content: "sh";
}
.md-text .highlight.ini .code:before {
  content: "ini";
}
.md-text .highlight.c .code:before {
  content: "C";
}
.md-text .highlight.cpp .code:before {
  content: "C++";
}
.md-text .highlight.objc .code:before,
.md-text .highlight.objectivec .code:before {
  content: "Objective-C";
}
.md-text .highlight.swift .code:before {
  content: "Swift";
}
.md-text .highlight.java .code:before {
  content: "Java";
}
.md-text .highlight.python .code:before {
  content: "Python";
}
.md-text .highlight.php .code:before {
  content: "PHP";
}
.md-text .highlight.rust .code:before,
.md-text .highlight.rs .code:before {
  content: "Rust";
}
.md-text .highlight.sql .code:before {
  content: "SQL";
}
.md-text .highlight.ruby .code:before {
  content: "Ruby";
}
.md-text .highlight.makefile .code:before {
  content: "Makefile";
}
.md-text .highlight.go .code:before {
  content: "Go";
}
.md-text .highlight.typescript .code:before,
.md-text .highlight.ts .code:before {
  content: "TS";
}
.md-text .highlight.matlab .code:before {
  content: "MATLAB";
}
.code>pre .code:before {
  display: none;
}
.code>pre .line,
.code>pre .params {
  color: var(--text-p1);
}
.code>pre .line .addition {
  color: #3fa33f;
}
.code>pre .line .deletion {
  color: #ee2b29;
}
.code>pre .marked {
  background-color: rgba(254,213,66,0.4);
  padding: 2px 8px 2px 0;
  border-radius: 2px;
  width: 100%;
}
.code>pre .title,
.code>pre .attr,
.code>pre .attribute {
  color: #3f51b5;
}
.code>pre .comment {
  color: var(--text-p4);
  font-style: italic;
}
.code>pre .keyword,
.code>pre .meta-keyword,
.code>pre .javascript .function {
  color: #8959a8;
}
.code>pre .type,
.code>pre .built_in,
.code>pre .tag .name {
  color: #2196f3;
}
.code>pre .variable,
.code>pre .regexp,
.code>pre .ruby .constant,
.code>pre .xml .tag .title,
.code>pre .xml .pi,
.code>pre .xml .doctype,
.code>pre .html .doctype,
.code>pre .css .id,
.code>pre .css .class,
.code>pre .css .pseudo {
  color: #fd8607;
}
.code>pre .number,
.code>pre .preprocessor,
.code>pre .literal,
.code>pre .constant {
  color: #fd8607;
}
.code>pre .class,
.code>pre .ruby .class .title,
.code>pre .css .rules .attribute {
  color: #ff9800;
}
.code>pre .string,
.code>pre .meta-string {
  color: #449e48;
}
.code>pre .value,
.code>pre .inheritance,
.code>pre .header,
.code>pre .ruby .symbol,
.code>pre .xml .cdata {
  color: #4caf50;
}
.code>pre .css .hexcolor {
  color: #6cc;
}
.code>pre .function,
.code>pre .python .decorator,
.code>pre .python .title,
.code>pre .ruby .function .title,
.code>pre .ruby .title .keyword,
.code>pre .perl .sub,
.code>pre .javascript .title,
.code>pre .coffeescript .title {
  color: #69c;
}
.highlight.html .line .tag .name,
.highlight.css .line .tag .name,
.highlight.less .line .tag .name,
.highlight.stylus .line .tag .name,
.highlight.html .line .selector-tag,
.highlight.css .line .selector-tag,
.highlight.less .line .selector-tag,
.highlight.stylus .line .selector-tag {
  color: #ee2b29;
}
.highlight.html .line .selector-class,
.highlight.css .line .selector-class,
.highlight.less .line .selector-class,
.highlight.stylus .line .selector-class,
.highlight.html .line .selector-attr,
.highlight.css .line .selector-attr,
.highlight.less .line .selector-attr,
.highlight.stylus .line .selector-attr {
  color: #fd8607;
}
.highlight.html .line .attribute,
.highlight.css .line .attribute,
.highlight.less .line .attribute,
.highlight.stylus .line .attribute {
  color: #3f51b5;
}
.highlight.html .line .number,
.highlight.css .line .number,
.highlight.less .line .number,
.highlight.stylus .line .number {
  color: #17afca;
}
.highlight.objc .line .meta,
.highlight.objectivec .line .meta,
.highlight.swift .line .meta,
.highlight.c .line .meta {
  color: #8959a8;
}
.highlight.objc .line .class,
.highlight.objectivec .line .class,
.highlight.swift .line .class,
.highlight.c .line .class {
  color: var(--text-p1);
}
.highlight.json .line .attr {
  color: #e24f5a;
}
.highlight.json .line .literal {
  color: #3f51b5;
}
.highlight.yaml .line .attr {
  color: #e24f5a;
}
* {
  outline: none;
}
html {
  color-scheme: var(--color-scheme);
  font-family: HarmonyOS_Regular, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--site-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
div.lazy.img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
input {
  background: none;
  border: none;
}
input.copy-area {
  display: block;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-p3);
}
svg.loading {
  display: block;
  position: absolute;
  color: var(--text-p3);
  z-index: -1;
  width: 100%;
  height: 2rem;
  margin: auto;
  animation: spin infinite 2s;
  animation-timing-function: linear;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-wrap {
  margin: 0;
  text-align: center;
  background: var(--block);
  border-radius: 8px;
  position: relative;
  padding: 2rem;
}
.loading-wrap svg {
  margin: 4px;
}
.loading-wrap:after {
  content: '';
  color: var(--text-p1);
  display: block;
  font-size: 14px;
}
.loading-wrap.error:after {
  content: '';
}
pre:not([class]):has(>code) {
  display: block;
  padding: 1rem;
  overflow: auto;
}
pre:not([class]):has(>code) code {
  padding: 0;
}
span.dot,
span.sep {
  font-size: 0.9em;
  margin: 0 0.25em;
}
span.dot:before {
  content: '·';
  font-weight: 900;
}
span.sep:before {
  content: '/';
  padding-left: 2px;
  padding-right: 2px;
}
svg.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  overflow: hidden;
}
h1,
.h1 {
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}
h2,
.h2 {
  font-size: 1.5rem;
}
h3,
.h3 {
  font-size: 1.375rem;
}
h4,
.h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 0.9375rem;
}
h6 {
  font-size: 0.75rem;
}
.fs14 {
  font-size: 0.875rem;
}
.fs14 p {
  font-size: 0.875rem !important;
}
.fs14 li {
  font-size: 0.875rem !important;
}
.fs12 {
  font-size: 0.75rem;
}
.widgets .post-title {
  margin: 0.75rem 0;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widgets .post-title .cap {
  margin-bottom: 2px;
  opacity: 0.5;
}
.widgets .post-title a {
  color: inherit;
  font-weight: 500;
}
.widgets .post-title a:hover {
  color: #0078d4;
}
div.toast {
  max-width: 60%;
  padding: 1rem 3rem;
  line-height: 1.5;
  color: var(--text-p1);
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  background: var(--card);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1);
}
.darkmode-switch {
  display: none;
  cursor: pointer;
}
:root[data-theme="dark"] #darkmode-switch-auto {
  display: inline-block;
}
:root[data-theme="auto"] #darkmode-switch-light {
  display: inline-block;
}
:root[data-theme="light"] #darkmode-switch-dark {
  display: inline-block;
}
.md-text .article-footer {
  margin-top: 4rem;
  padding: 1rem;
  background: var(--block);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  border: 1px solid var(--block-border);
}
.md-text .article-footer:empty {
  display: none;
}
.md-text .article-footer .header {
  font-weight: 500;
  color: var(--text-p2);
  font-size: 1.125rem;
}
.md-text .article-footer .body input.copy-area {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
}
.md-text .article-footer .body p {
  color: var(--text-p2);
  margin: 0.5em 0;
}
.md-text .article-footer .body p a {
  font-weight: unset;
}
.md-text .article-footer .body ul {
  margin: 0;
  overflow: hidden;
}
.md-text .article-footer .body .post-title {
  margin: 0.5rem 0;
  line-height: 1.2;
  word-break: break-all;
}
.md-text .article-footer section+section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--block-border);
}
.md-text .article-footer .social-wrap {
  grid-gap: 0.5rem 1rem;
  margin: 0;
}
.md-text .article-footer .qrcode {
  width: 128px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1), 0 0 32px 0px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: height 0.2s ease-out;
  -moz-transition: height 0.2s ease-out;
  -webkit-transition: height 0.2s ease-out;
  -o-transition: height 0.2s ease-out;
}
.md-text .article-footer .qrcode img {
  object-fit: contain;
}
.md-text .article-footer .qrcode.display {
  margin: 2rem auto 1rem;
  height: 128px !important;
  visibility: visible !important;
}
.bread-nav {
  padding: 0.25rem 1rem 0;
  color: var(--text-p3);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.bread-nav div#breadcrumb {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.bread-nav div#breadcrumb:not([style]) a {
  color: var(--theme-link);
}
.bread-nav div#breadcrumb[style] a {
  color: inherit;
}
.bread-nav div#breadcrumb span.sep {
  color: var(--text-p3);
}
.bread-nav div#breadcrumb a.cap:hover {
  color: #0078d4;
}
.bread-nav div#post-meta {
  margin-top: 2px;
}
.bread-nav .ghrepo {
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--text-meta);
  padding-left: 8px;
}
.bread-nav .ghrepo a {
  display: flex;
  align-items: center;
  color: var(--text-p2);
}
.bread-nav .ghrepo a svg {
  margin-right: 4px;
}
.bread-nav .ghrepo a.bold {
  font-weight: 600;
  color: var(--text-p1);
}
.bread-nav .ghrepo a span {
  margin-left: 4px;
}
.bread-nav .ghrepo a:hover {
  color: var(--theme-link);
}
.bread-nav .ghrepo a+a {
  margin-top: 8px;
}
.l_cover {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.l_cover.post {
  height: inherit;
}
.l_cover .cover-wrap {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l_cover .cover-wrap .cover-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 1rem 0;
  line-height: 1.2;
}
.l_cover .cover-wrap .description {
  margin: 1rem 0;
}
.l_cover .cover-wrap .start-wrap {
  margin: 2rem 0;
  flex-shrink: 0;
}
.l_cover .cover-wrap .start-wrap a.start {
  display: inline-block;
}
.l_cover.post .cover {
  z-index: -1;
  width: 100%;
  height: 30vh;
  max-width: 2048px;
  min-height: 150px;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .l_cover.post .cover {
    height: 25vh;
  }
}
@media screen and (max-width: 500px) {
  .l_cover.post .cover {
    height: 20vh;
  }
}
@media screen and (min-width: 2048px) {
  .l_cover.post .cover {
    margin-top: 4rem;
  }
  .l_cover.post .cover .img {
    border-radius: 2rem;
  }
}
.l_cover.post .cover-wrap {
  z-index: 1;
}
.l_cover.post .cover-wrap .article-title {
  text-align: center;
  padding: 1rem;
  margin: 1em 0 0 0;
}
@media screen and (min-width: 2048px) {
  .l_cover.post .cover-wrap .article-title {
    font-size: 3rem;
  }
}
.l_cover.wiki .cover-wrap {
  max-width: 500px;
}
.l_cover.wiki .cover-wrap .preview {
  margin-bottom: 2rem;
}
.l_cover.wiki .cover-wrap .preview img {
  object-fit: contain;
  max-height: 35vh;
  max-width: 100%;
}
@media screen and (max-width: 500px) {
  .l_cover.wiki .cover-wrap .preview img {
    max-width: 60%;
  }
}
.l_cover.wiki .cover-wrap .cover-title:first-child {
  font-size: 3rem;
}
.page-footer {
  margin: 4rem 1rem 3rem;
  color: var(--text-p3);
}
.page-footer a {
  color: var(--text-p3);
}
.page-footer a:hover {
  color: #0078d4;
}
.page-footer .sitemap {
  margin: 0.5rem 0 2rem;
  display: grid;
  scrollbar-width: none;
  grid-gap: 1rem 1rem;
  grid-auto-flow: column dense;
  overflow: scroll;
}
.page-footer .sitemap::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.page-footer .sitemap::-webkit-scrollbar-track-piece {
  background: transparent;
}
.page-footer .sitemap::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.page-footer .sitemap::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.page-footer .sitemap .sitemap-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-footer .sitemap .sitemap-group >span,
.page-footer .sitemap .sitemap-group >a {
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-footer .sitemap .sitemap-group >span {
  margin: 0.5rem 0;
  font-weight: 500;
  color: var(--text-p1);
}
.page-footer .sitemap .sitemap-group >a {
  margin: 0.2rem 0;
}
.page-footer .text p {
  margin: 4px 0;
  line-height: 1.5;
}
.page-footer .text a:not([class]) {
  text-decoration: underline;
  font-weight: 500;
}
.nav-wrap {
  position: sticky;
  position: -webkit-sticky;
  margin-top: -0.5rem;
  top: -2px;
  background: var(--site-bg);
  padding: 0 1rem;
  z-index: 8;
  margin-bottom: 1px;
}
nav.cap {
  display: flex;
  overflow: auto;
}
nav.cap::-webkit-scrollbar {
  height: 0;
  width: 0;
}
nav.cap::-webkit-scrollbar-track-piece {
  background: transparent;
}
nav.cap::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
nav.cap::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
nav.cap >p {
  margin: 0;
}
nav.cap a {
  padding: 0.25rem 1rem;
  margin: 10px 0 8px 0;
  line-height: 2;
  color: var(--text-p3);
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
nav.cap a:after {
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 1rem;
  right: 1rem;
  background: var(--theme-highlight);
  border-radius: 2px;
  pointer-events: none;
}
nav.cap a:hover {
  background: var(--block-hover);
}
nav.cap a.active,
nav.cap a:hover {
  color: var(--text-p1);
}
nav.cap a.active {
  background: var(--card);
}
nav.cap a.active:after {
  content: '';
}
nav.cap a+a {
  margin-left: 4px;
}
@media screen and (max-width: 667px) {
  .nav-wrap {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-wrap nav a:first-child {
    margin-left: 1rem;
  }
  .nav-wrap nav a:last-child {
    margin-right: 1rem;
  }
}
.paginator-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  overflow: hidden;
}
.page-number {
  padding: 4px 8px;
  border-radius: 6px;
  margin: 0.5rem;
  color: var(--text-p3);
}
.page-number:hover {
  color: var(--theme-highlight);
}
.space {
  margin: 1rem;
  color: var(--text-p2);
}
.extend {
  color: var(--text-p3);
  padding: 1rem;
  line-height: 0;
  filter: grayscale(100%);
  text-align: center;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  background-origin: content-box;
  background-clip: content-box;
}
.extend img {
  height: 1rem;
}
.extend.disable {
  pointer-events: none;
}
.extend.next {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE4IDNDMTguNTEyOCAzIDE4LjkzNTUgMy4zODYwNCAxOC45OTMzIDMuODgzMzhMMTkgNFYyMEMxOSAyMC41NTIzIDE4LjU1MjMgMjEgMTggMjFDMTcuNDg3MiAyMSAxNy4wNjQ1IDIwLjYxNCAxNy4wMDY3IDIwLjExNjZMMTcgMjBWNEMxNyAzLjQ0NzcyIDE3LjQ0NzcgMyAxOCAzWk01LjI5Mjg5IDMuMjkyODlDNS42NTMzOCAyLjkzMjQxIDYuMjIwNjEgMi45MDQ2OCA2LjYxMjkgMy4yMDk3TDYuNzA3MTEgMy4yOTI4OUwxNC43MDcxIDExLjI5MjlDMTUuMDY3NiAxMS42NTM0IDE1LjA5NTMgMTIuMjIwNiAxNC43OTAzIDEyLjYxMjlMMTQuNzA3MSAxMi43MDcxTDYuNzA3MTEgMjAuNzA3MUM2LjMxNjU4IDIxLjA5NzYgNS42ODM0MiAyMS4wOTc2IDUuMjkyODkgMjAuNzA3MUM0LjkzMjQxIDIwLjM0NjYgNC45MDQ2OCAxOS43Nzk0IDUuMjA5NyAxOS4zODcxTDUuMjkyODkgMTkuMjkyOUwxMi41ODU4IDEyTDUuMjkyODkgNC43MDcxMUM0LjkwMjM3IDQuMzE2NTggNC45MDIzNyAzLjY4MzQyIDUuMjkyODkgMy4yOTI4OVoiIGZpbGw9IiMyMTIxMjEiLz4KPC9zdmc+");
}
.extend.prev {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNiAzQzUuNDg3MTYgMyA1LjA2NDQ5IDMuMzg2MDQgNS4wMDY3MyAzLjg4MzM4TDUgNFYyMEM1IDIwLjU1MjMgNS40NDc3MiAyMSA2IDIxQzYuNTEyODQgMjEgNi45MzU1MSAyMC42MTQgNi45OTMyNyAyMC4xMTY2TDcgMjBWNEM3IDMuNDQ3NzIgNi41NTIyOCAzIDYgM1pNMTguNzA3MSAzLjI5Mjg5QzE4LjM0NjYgMi45MzI0MSAxNy43Nzk0IDIuOTA0NjggMTcuMzg3MSAzLjIwOTdMMTcuMjkyOSAzLjI5Mjg5TDkuMjkyODkgMTEuMjkyOUM4LjkzMjQxIDExLjY1MzQgOC45MDQ2OCAxMi4yMjA2IDkuMjA5NyAxMi42MTI5TDkuMjkyODkgMTIuNzA3MUwxNy4yOTI5IDIwLjcwNzFDMTcuNjgzNCAyMS4wOTc2IDE4LjMxNjYgMjEuMDk3NiAxOC43MDcxIDIwLjcwNzFDMTkuMDY3NiAyMC4zNDY2IDE5LjA5NTMgMTkuNzc5NCAxOC43OTAzIDE5LjM4NzFMMTguNzA3MSAxOS4yOTI5TDExLjQxNDIgMTJMMTguNzA3MSA0LjcwNzExQzE5LjA5NzYgNC4zMTY1OCAxOS4wOTc2IDMuNjgzNDIgMTguNzA3MSAzLjI5Mjg5WiIgZmlsbD0iIzIxMjEyMSIvPgo8L3N2Zz4=");
}

.current {
  background: var(--theme-highlight);
  color: var(--text-revert);
}
.current:hover {
  color: var(--text-revert);
}
span.extend {
  opacity: 0.25;
}
a.extend:hover {
  filter: unset;
}
.related-wrap {
  padding: 1rem;
  margin: 2rem 0;
}
.related-wrap:empty {
  display: none;
}
.related-wrap section.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related-wrap section.header >span.title {
  padding: 0.25rem 0;
}
.related-wrap section.footer {
  margin-top: 1rem;
}
.related-wrap a.more {
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  color: var(--text-p1);
}
.related-posts {
  max-width: 100%;
  margin: 1rem 0;
}
.related-posts .item {
  line-height: 1.2;
  display: block;
  border-left: 0;
  margin-top: 1rem;
}
.related-posts .item .title {
  color: var(--text-p1);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease-out, border 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, border 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, border 0.2s ease-out;
  -o-transition: color 0.2s ease-out, border 0.2s ease-out;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px dashed var(--text-meta);
  line-height: 1.6;
}
.related-posts .item .excerpt {
  color: var(--text-p3);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.related-posts .item:hover .title {
  color: #0078d4;
  border-bottom: 1px solid #0078d4;
}
.related-wrap#read-next .body {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(auto-fill, calc((100% - 1 * 16px) / 2));
}
.related-wrap#read-next .body .item {
  border-top: 1px dashed var(--block-border);
  border-bottom: 1px dashed var(--block-border);
  padding: 1rem 0;
}
.related-wrap#read-next .body .note {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-p4);
  font-weight: 500;
}
.related-wrap#read-next .body a {
  margin: 0;
  line-height: 1.2;
  color: var(--text-p1);
  font-size: 1.125rem;
}
.related-wrap#read-next .body a:hover {
  color: #0078d4 !important;
}
.related-wrap#read-next .body #next {
  text-align: right;
}
.wiki+.related-wrap#read-next .item a {
  font-size: 1.375rem;
}
.wiki+.related-wrap#read-next .item#prev a {
  color: var(--text-p3);
}
.related-wrap#comments div.cmt-title p {
  margin: 0;
  font-size: inherit;
}
.related-wrap#comments div.cmt-title p a {
  color: inherit;
  text-decoration: underline;
}
.related-wrap#comments div.cmt-title p a:hover {
  color: #0078d4;
}
.related-wrap#comments div.cmt-title p a:after {
  display: none;
}
.related-wrap#comments div.cmt-body {
  min-height: 150px;
  position: relative;
}
.related-wrap#comments div.cmt-body svg.loading {
  top: 60px;
}
.tag-plugin.about {
  background: var(--block);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.tag-plugin.about .nav-back {
  display: none;
  position: absolute;
  line-height: 1;
  overflow: hidden;
  left: 0.75rem;
  top: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 667px) {
  .tag-plugin.about .nav-back {
    display: flex;
  }
}
.tag-plugin.about .nav-back svg {
  width: 1rem;
  height: 1rem;
}
.tag-plugin.about .about-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.tag-plugin.about .about-header img {
  object-fit: contain;
}
.tag-plugin.about .about-header >img {
  margin: auto 0;
}
.tag-plugin.about .about-header >p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-p3);
  padding-top: 0.75rem;
}
.tag-plugin.about .about-header >p strong:first-child {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-p1);
  margin-right: 0.75rem;
}
.tag-plugin.about .about-header .avatar {
  display: inline-flex;
  margin: 0 1rem;
}
.tag-plugin.about .about-body >p {
  line-height: 1.5;
}
.tag-plugin.about .about-body >p:first-child {
  margin-top: 2.5rem;
}
.tag-plugin.about .about-body p+.tag-plugin.navbar .cap {
  margin-top: 1rem;
}
.tag-plugin.about .about-header+.about-body {
  margin-top: 2rem;
}
@media screen and (max-width: 500px) {
  .tag-plugin.about {
    padding: 2rem 1rem;
  }
  .tag-plugin.about .about-header p {
    width: 100%;
  }
}
.tag_plugin.bvideo a:link {
  text-decoration: none false;
}
.tag_plugin.bvideo .bvideo-box {
  width: 80%;
  height: 96px;
  margin: 0 auto;
  font-weight: 400;
  box-sizing: border-box;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
/* background-color: #fcfcfc */
  display: flex;
  user-select: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
}
.tag_plugin.bvideo .bvideo-cover {
  display: inline-block;
  width: 150px;
  height: 94px;
  min-width: 150px;
  min-height: 94px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  overflow: hidden;
  position: relative;
}
.tag_plugin.bvideo .bvideo-cover .video-cover-img {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: inline-block;
  background-size: cover;
  background-position: 50%;
}
.tag_plugin.bvideo .bvideo-cover .duration {
  position: absolute;
  right: 3px;
  bottom: 0px;
  padding: 0px;
  color: var(--text-p0);
  font-size: 12px;
  border-radius: 2px;
}
.tag_plugin.bvideo .bvideo-cover .bvideo-cover-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.tag_plugin.bvideo .bvideo-cover .cover-default {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 44px;
  background-color: #f0f1f4;
  background-position: 50%;
  background-repeat: no-repeat;
}

  .tag_plugin.bvideo .bvideo-info {
      max-width: calc(100% - calc(1rem + 150px))
  }
.tag_plugin.bvideo .bvideo-info {
  margin-left: 1rem;
  padding-top: 10px;
  min-height: 84px;
  position: relative;
  text-align: left;
}
.tag_plugin.bvideo .bvideo-info .title {
  max-height: 40px;
  min-height: 19px;
  color: var(--text-p1);
  line-height: 1.4;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 768px) {
  .tag_plugin.bvideo .bvideo-info .title {
    max-height: 40px;
    min-height: 19px;
    color: var(--text-p1);
    line-height: 1.4;
    font-size: 14px;
    text-overflow: clip;
    overflow: hidden;
    white-space: normal;
    margin: 0;
  }
}
.tag_plugin.bvideo .bvideo-info .up-name {
  height: 19px;
  margin-top: 1px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 150px;
}
.tag_plugin.bvideo .bvideo-info .card-status {
  line-height: 13px;
  font-size: 12px;
  color: #999;
  margin: 0;
  bottom: 30px;
}
.tag_plugin.bvideo .bvideo-info .card-status svg {
  fill: currentColor;
  position: relative;
  top: 3px;
}
.tag_plugin.bvideo .bvideo-info .play-num {
  margin-right: 13px;
}
.tag_plugin.bvideo .bvideo-info .partition {
  font-size: 12px;
  line-height: 13px;
  color: #999;
  position: absolute;
  bottom: -1px;
  padding-left: 35px;
  top: 73px;
}
@media (max-width: 768px) {
  .tag_plugin.bvideo .bvideo-info {
    max-width: inherit;
  }
}
.tag_plugin.bvideo .icon-video {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA2CAMAAACsuQomAAAAclBMVEX///8AAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+As+VLAAAAJnRSTlOzAK8+F4OppBAmnTKsllOOb2dhOS0JBJqAWk0aB19FHgJ8dUAgC8ZU4VsAAAGPSURBVEjHpdbrcqowGIXhtbIxnEGOCmKt2n3/t1hSO6Y2qYwf779M5plkCJkJ+Fih85i+4lwX/NUvHAHQLd3SDED0HHcagGoc2ygA4eRidwV15WNvytmRDzPWmBv5sxFzYcxFzI8QcwVtw5c9kcuYhwRz9X1cYS4J+Cfu4+bfvUJhbvs9umBOFXY6PT3gqNJ4pWSY7rhx6DL/+MZXhdfTRoOnDJJ2ncEbyBpIxBCmJ+IIaSlRivGRCOGpbMdkEV8IBU8t2R3VAt4T3gLOBefnePMMk2m+ArMvtByT0VaAbXEpwLa3cAXm/0rJMXnaCLCtSVZgRvkKzOOalXcCbM9LiuMSEGLzjwqxuR1SnO4AIT7sASHuagUpNscjw+7xuDiDp9Q9HrczkcBTfq01ltoSe0gbiVGMD0SUCe2GBGshbg2ecpGtaDCDncBe+htmdH6VquHdPuLabZ4pdZ/yZSfDcgjc52MDk36nrz6DKeVXLu6S25fwV90eUA62l1eFdU9/Ux2q/YEOtjlbfjoLrugTV6YSSQ5kbxYAAAAASUVORK5CYII=");
  position: absolute;
  background-size: 100% 100%;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -13px;
  height: 26px;
}
.tag_plugin.bvideo .card-label {
  display: inline-block;
  font-weight: 550;
  width: 25px;
  height: 13px;
  border: 1.5px solid #ffc3d4;
  color: #ffc3d4;
  background-size: 100% 100%;
  position: absolute;
  top: -1px;
  left: 0;
  padding-left: 1px;
}
.md-text .checkbox {
  display: flex;
  font-size: 0.9375rem;
  line-height: 1.2;
  --gap-p: 0.25rem;
/* Checkbox */
/* Radio */
/* Colors */
}
.md-text .checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  height: 16px;
  width: 16px;
  cursor: pointer;
  display: inline-block;
  outline: none;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 8px;
  pointer-events: none;
}
.md-text .checkbox span {
  margin-top: 1px;
}
.md-text .checkbox input[type=checkbox]:before,
.md-text .checkbox input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: var(--site-bg);
}
.md-text .checkbox input[type=checkbox]:before {
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.md-text .checkbox input[type=checkbox]:after {
  right: 7px;
  bottom: 3px;
  width: 2px;
  height: 0px;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
}
.md-text .checkbox input[type=checkbox]:checked:before {
  left: 0px;
  top: 7px;
  width: 6px;
  height: 2px;
}
.md-text .checkbox input[type=checkbox]:checked:after {
  right: 3px;
  bottom: 1px;
  width: 2px;
  height: 10px;
}
.md-text .checkbox[symbol=minus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .checkbox[symbol=minus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .checkbox[symbol=minus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .checkbox[symbol=minus] input[type=checkbox]:checked:after {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .checkbox[symbol=plus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .checkbox[symbol=plus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 5px;
  top: 1px;
  width: 2px;
  height: 0px;
}
.md-text .checkbox[symbol=plus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .checkbox[symbol=plus] input[type=checkbox]:checked:after {
  left: 5px;
  top: 1px;
  width: 2px;
  height: 10px;
}
.md-text .checkbox[symbol=times] input[type=checkbox]:before {
  transform: rotate(45deg);
  left: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md-text .checkbox[symbol=times] input[type=checkbox]:after {
  transform: rotate(135deg);
  right: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md-text .checkbox[symbol=times] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .checkbox[symbol=times] input[type=checkbox]:checked:after {
  right: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .checkbox input[type=radio] {
  border-radius: 50%;
  transform: translateY(-1px);
}
.md-text .checkbox input[type=radio]:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 2px;
  transform: scale(0);
}
.md-text .checkbox input[type=radio]:checked:before {
  transform: scale(1);
}
.md-text .checkbox input {
  border: 2px solid var(--theme);
}
.md-text .checkbox input[type=checkbox]:checked {
  background: var(--theme);
}
.md-text .checkbox input[type=radio]:checked:before {
  background: var(--theme);
}
.tag-plugin.checkbox:not([color]) {
  --theme: #2196f3;
}
.tag-plugin {
  --theme: var(--text-p1);
  --theme-border: var(--block-border);
  --theme-bg: var(--card);
}
.colorful[color='red'] {
  --theme: #f44336;
  --theme-block: #fddbd8;
  --theme-border: #e6b6b3;
  --text-p0: #3f1512;
  --text-p1: #4f1b17;
  --text-p2: #740e06;
}
.colorful[color='orange'] {
  --theme: #fa6400;
  --theme-block: #fde7d8;
  --theme-border: #e6c7b3;
  --text-p0: #3f2412;
  --text-p1: #4f2d17;
  --text-p2: #743206;
}
.colorful[color='yellow'] {
  --theme: #ffbd2b;
  --theme-block: #fdf2d8;
  --theme-border: #e6d6b3;
  --text-p0: #3f3112;
  --text-p1: #4f3e17;
  --text-p2: #745206;
}
.colorful[color='green'] {
  --theme: #3dc550;
  --theme-block: #d8fddd;
  --theme-border: #b3e6ba;
  --text-p0: #123f19;
  --text-p1: #174f1f;
  --text-p2: #067416;
}
.colorful[color='cyan'] {
  --theme: #1bcdfc;
  --theme-block: #d8f5fd;
  --theme-border: #b3dbe6;
  --text-p0: #12363f;
  --text-p1: #17434f;
  --text-p2: #065d74;
}
.colorful[color='blue'] {
  --theme: #2196f3;
  --theme-block: #d8edfd;
  --theme-border: #b3cfe6;
  --text-p0: #122b3f;
  --text-p1: #17364f;
  --text-p2: #064374;
}
.colorful[color='purple'] {
  --theme: #9c27b0;
  --theme-block: #f8d8fd;
  --theme-border: #deb3e6;
  --text-p0: #39123f;
  --text-p1: #47174f;
  --text-p2: #640674;
}
.colorful[color='light'] {
  --theme-bg: #fff;
}
.colorful[color='dark'] {
  --theme-bg: #333;
  --text-p0: #fff;
  --text-p1: #fff;
  --text-p2: #eee;
  --text-p3: #ddd;
  --text-code: #fff;
  --card: #282a39;
  --block: #2b2f33;
  --block-border: #393e44;
  --block-hover: #222528;
}
.colorful[color='warning'] {
  --theme: #ffbd2b;
  --theme-border: #ffe659;
  --theme-bg: #ffe659;
  --theme-link: #ff453a;
}
.colorful[color='error'] {
  --theme: #ffbd2b;
  --theme-border: #ff453a;
  --theme-bg: #ff453a;
  --theme-link: #ffe659;
  --text-p0: #fff;
  --text-p1: #fff;
  --text-p2: #eee;
  --text-p3: #ddd;
  --text-code: #fff;
  --card: #282a39;
  --block: #2b2f33;
  --block-border: #393e44;
  --block-hover: #222528;
}

.md-text .tag-plugin.copy {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background: var(--block);
  border-radius: 8px;
  border: 1px solid var(--block-border);
  overflow: hidden;
  width: 320px;
  max-width: 100%;
}
.md-text .tag-plugin.copy[width='max'] {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .md-text .tag-plugin.copy {
    min-width: 100%;
  }
}
.md-text .tag-plugin.copy input.copy-area {
  display: inline-block;
  padding: 0;
  width: 100%;
  color: var(--text-p2);
  line-height: 3;
  text-indent: 1rem;
}
.md-text .tag-plugin.copy button.copy-btn {
  margin: 0;
  line-height: 3;
  border-left: 1px solid var(--block-border);
  display: inline-block;
  background: var(--block-hover);
  line-height: 0;
  font-size: 1rem;
  padding: 0 0.75rem;
  color: var(--text-p2);
}
.md-text .tag-plugin.copy button.copy-btn:hover {
  background: var(--card);
}
.md-text .tag-plugin.emoji {
  display: inline-block;
  margin: -4px 2px 0;
  vertical-align: middle;
}
.md-text .tag-plugin.emoji img {
  display: block;
  object-fit: contain;
  height: 1.75em;
}
.tag-plugin.folders {
  display: block;
  margin: 1rem 0;
  border-radius: 8px;
  font-size: 0.875rem;
  border: 1px solid var(--theme-border);
  overflow: hidden;
}
.tag-plugin.folders .folder {
  display: block;
  font-size: 0.875rem;
  background: var(--block);
}
.tag-plugin.folders .folder:last-child summary {
  border-bottom: none;
}
.tag-plugin.folders summary {
  display: block;
  cursor: pointer;
  color: var(--text-p2);
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  outline: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--theme-border);
}
.tag-plugin.folders summary:last-child {
  border-bottom: none;
}
.tag-plugin.folders summary > p,
.tag-plugin.folders summary > h1,
.tag-plugin.folders summary > h2,
.tag-plugin.folders summary > h3,
.tag-plugin.folders summary > h4,
.tag-plugin.folders summary > h5,
.tag-plugin.folders summary > h6 {
  display: inline;
  border-bottom: none !important;
}
.tag-plugin.folders summary:hover {
  color: var(--text-p0);
  background: var(--block-hover);
}
.tag-plugin.folders summary:hover:after {
  position: absolute;
  content: '+';
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.tag-plugin.folders details[open] {
  background: none;
}
.tag-plugin.folders details[open]:last-child summary {
  border-bottom: 1px solid var(--theme-border);
}
.tag-plugin.folders details[open]:last-child .body {
  border-bottom: none;
}
.tag-plugin.folders details[open] >summary {
  color: var(--text-p1);
  background: var(--block-hover);
}
.tag-plugin.folders details[open] >summary:hover:after {
  content: '-';
}
.tag-plugin.folders details[open] >div.body {
  padding: 1rem;
  border-bottom: 1px solid var(--theme-border);
  font-size: 0.9375rem;
}
.tag-plugin.folders details[open] >div.body >:first-child {
  margin-top: 0;
}
.tag-plugin.folders details[open] >div.body >:last-child {
  margin-bottom: 0;
}
details.folding {
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  font-size: 0.875rem;
  background: var(--theme-bg);
  border: 1px solid var(--theme-border);
}
details.folding summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  margin: -1rem;
  border-radius: 8px;
  color: var(--text-p2);
  font-weight: 500;
  position: relative;
  line-height: normal;
  outline: none;
}
details.folding summary > p,
details.folding summary > h1,
details.folding summary > h2,
details.folding summary > h3,
details.folding summary > h4,
details.folding summary > h5,
details.folding summary > h6 {
  display: inline;
  border-bottom: none !important;
}
details.folding summary:hover {
  color: var(--text-p0);
}
details.folding summary:hover:after {
  position: absolute;
  content: '+';
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
details.folding[open] >summary {
  border-bottom: 1px solid var(--theme-border);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--text-p1);
  margin-bottom: 0;
}
details.folding[open] >summary:hover:after {
  content: '-';
}
details.folding[open] >div.body {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: -1rem;
  margin-top: 0;
  background: var(--card);
  border-bottom-left-radius: calc(8px - 1px);
  border-bottom-right-radius: calc(8px - 1px);
  font-size: 0.9375rem;
}
details.folding[open] >div.body >:first-child {
  margin-top: 0;
}
details.folding[open] >div.body >:last-child {
  margin-bottom: 0;
}
details.folding[child=codeblock]>div.body {
  padding: 0;
  background: transparent;
  overflow: hidden;
}
details.folding[child=codeblock]>div.body .highlight {
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
}
details.folding[child=codeblock]>div.body .highlight .code:before {
  content: none;
}
.md-text .frame-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.md-text .frame-wrap img,
.md-text .frame-wrap video {
  border-radius: 0;
}
.md-text .frame-wrap .frame {
  z-index: 1;
  display: block;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.md-text .tag-plugin.img-wrap .frame-wrap[focus] {
  height: auto;
}
.md-text .frame-wrap#iphone11 img,
.md-text .frame-wrap#iphone11 video {
  width: 287px;
  margin-top: 19px;
  margin-bottom: 20px;
}
.md-text .frame-wrap#iphone11 .frame {
  background-image: url("https://fastly.jsdelivr.net/gh/cdn-x/placeholder@1.0.1/frame/iphone11.svg");
  width: 329px;
  height: 658px;
}
.md-text .frame-wrap[focus='top'] img,
.md-text .frame-wrap[focus='top'] video {
  margin-bottom: 0 !important;
}
.md-text .frame-wrap:not([focus='bottom']) .frame {
  top: 0;
}
.md-text .frame-wrap[focus='bottom'] img,
.md-text .frame-wrap[focus='bottom'] video {
  bottom: 0;
  margin-top: 0 !important;
}
.md-text .frame-wrap[focus='bottom'] .frame {
  bottom: 0;
}
@media screen and (max-width: 500px) {
  .md-text .frame-wrap#iphone11 img,
  .md-text .frame-wrap#iphone11 video {
    width: 208px;
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .md-text .frame-wrap#iphone11 .frame {
    width: 238px;
    height: 476px;
  }
}
.users-wrap {
  overflow: hidden;
}
.users-wrap .group-header {
  margin: 0 0 1rem;
}
.users-wrap .group-header p {
  margin: 0;
  font-size: 0.875rem;
}
.users-wrap .group-header p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}
.users-wrap .group-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.users-wrap .group-body+.group-header {
  margin-top: 2rem;
}
.users-wrap .stellar-friends-api {
  display: block;
}
.users-wrap .user-card {
  flex-shrink: 1;
  display: flex;
  align-items: stretch;
  width: 12.5%;
}
@media screen and (max-width: 980px) {
  .users-wrap .user-card {
    width: 14.28%;
  }
}
@media screen and (max-width: 900px) {
  .users-wrap .user-card {
    width: 16.66%;
  }
}
@media screen and (max-width: 820px) {
  .users-wrap .user-card {
    width: 20%;
  }
}
@media screen and (max-width: 667px) {
  .users-wrap .user-card {
    width: 16.66%;
  }
}
@media screen and (max-width: 500px) {
  .users-wrap .user-card {
    width: 25%;
  }
}
.users-wrap .user-card .card-link {
  margin: 0;
  width: 100%;
  color: var(--text-p1);
  font-size: 10px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding: 1rem 0.5rem;
}
.users-wrap .user-card .card-link img {
  object-fit: cover;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--card);
  border-radius: 64px;
  margin: 0 0 0.5rem;
}
.users-wrap .user-card .card-link >img {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -o-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.users-wrap .user-card .card-link:hover {
  background: var(--block-hover);
}
.users-wrap .user-card .card-link:hover img {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
.tag-plugin.ghcard {
  line-height: 0;
}
.tag-plugin.ghcard a.ghcard {
  display: inline-block;
}
.md-text .tag-plugin.hashtag {
  padding: 0px 8px;
  border-radius: 100px;
  background: var(--theme-block);
  color: var(--text-p2);
  margin: 2px 0;
  display: inline-flex;
  align-items: center;
  --fsp: $fsp2;
  font-size: var(--fsp);
  font-weight: 500;
  transition: background 0.2s ease-out, color 0.2s ease-out;
  -moz-transition: background 0.2s ease-out, color 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out, color 0.2s ease-out;
  -o-transition: background 0.2s ease-out, color 0.2s ease-out;
}
.md-text .tag-plugin.hashtag span {
  margin: 0 2px;
}
.md-text .tag-plugin.hashtag:hover {
  background: var(--text-p2);
  color: var(--theme-block);
}
.tag-plugin.image {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.tag-plugin.image .image-bg {
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.tag-plugin.image .image-bg:hover .image-download {
  opacity: 1 !important;
}
.tag-plugin.image .image-bg img {
  display: block;
  object-fit: cover;
}
.tag-plugin.image .image-bg .image-download {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.125rem;
  padding: 6px;
  line-height: 0;
  border-radius: 4px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  color: var(--text-p1);
}
.tag-plugin.image .image-bg .image-download:hover {
  background: var(--card) !important;
  color: #0078d4;
}
.tag-plugin.image .image-meta {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.tag-plugin.image .image-meta .image-caption {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-p2);
  line-height: 1.5;
  text-align: justify;
}
.tag-plugin.image .image-meta .image-caption:empty {
  display: none;
}
.md-text .tag-plugin.paper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--gap-padding);
  padding-bottom: var(--gap-padding);
}
.md-text .tag-plugin.paper >.content {
  border-left: 1px dashed var(--text-meta);
  border-right: 1px dashed var(--text-meta);
  border-bottom: 1px dashed var(--text-meta);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 1rem;
  max-width: calc(95%);
}
.md-text .tag-plugin.paper >.content >.title {
  font-weight: 500;
  text-align: center;
}
.md-text .tag-plugin.paper >.content >.meta {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
}
.md-text .tag-plugin.paper >.content >.body >.paragraph {
  text-indent: 2em;
}
.md-text .tag-plugin.paper >.content >.body >.section >.section-title {
  text-align: center;
}
.md-text .tag-plugin.paper >.content >.body >.section >.section-content {
  text-indent: 2em;
}
.md-text .tag-plugin.paper >.content >.body >.line.right >p {
  text-align: right;
}
.md-text .tag-plugin.paper >.content >.body .tag-plugin {
  margin: 0;
}
.md-text .tag-plugin.paper >.content >.footer {
  color: var(--text-p4);
  font-size: 0.75rem;
  text-align: right;
}
.md-text .tag-plugin.paper >.content >.footer >.author-date {
  text-align: right;
}
.md-text .tag-plugin.paper >.content >.footer >.author-date >span {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
}
.md-text .tag-plugin.paper >.content >.footer >.author-date >.author {
  margin-right: calc(0.5 * var(--gap-p));
}
.md-text .tag-plugin.paper>.content {
  position: relative;
}
.md-text .tag-plugin.paper>.content:before {
  content: '';
  position: absolute;
  height: 4px;
  left: -16px;
  top: -4px;
  right: -16px;
  border-radius: 4px;
  background: var(--block);
}
.md-text .tag-plugin.paper>.content >.title {
  position: relative;
}
.md-text .tag-plugin.paper>.content >.title:before {
  content: '';
  position: absolute;
  height: 4px;
  left: calc(-1rem - 6px);
  top: calc(-1rem - 4px);
  right: calc(100% + 1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
}
.md-text .tag-plugin.paper>.content >.title:after {
  content: '';
  position: absolute;
  height: 4px;
  right: calc(-1rem - 6px);
  top: calc(-1rem - 4px);
  left: calc(100% + 1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
}
.md-text .tag-plugin.paper > .content.underline > .title,
.md-text .tag-plugin.paper > .content.underline > .meta,
.md-text .tag-plugin.paper > .content.underline > .author-date,
.md-text .tag-plugin.paper > .content.underline > .footer,
.md-text .tag-plugin.paper > .content.underline > .body {
  background: linear-gradient(transparent 1.5rem, var(--text-meta) 1px);
  background-size: 100% calc(1.5rem + 1px);
  line-height: calc(1.5rem + 1px);
  padding: 0 3px;
}
.md-text .tag-plugin.paper > .content.underline p {
  margin: 0;
}
.md-text .tag-plugin.paper > .content.underline >.title {
  border-top: 1px solid var(--text-meta);
}
.md-text .tag-plugin.reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--gap-padding);
  padding-bottom: var(--gap-padding);
}
.md-text .tag-plugin.reel >.content {
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
  border-top: 1px dashed var(--text-meta);
  border-bottom: 1px dashed var(--text-meta);
  max-width: calc(100% - 80px);
  padding: 1rem;
}
.md-text .tag-plugin.reel >.content >.title {
  font-weight: 500;
  font-size: 1rem;
}
.md-text .tag-plugin.reel >.content >.meta {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
}
.md-text .tag-plugin.reel >.content >.body {
  overflow: auto;
  margin: calc(var(--gap-padding) - 4px);
}
.md-text .tag-plugin.reel >.content >.body::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.md-text .tag-plugin.reel >.content >.body::-webkit-scrollbar-track-piece {
  background: transparent;
}
.md-text .tag-plugin.reel >.content >.body::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 2px;
}
.md-text .tag-plugin.reel >.content >.body::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.md-text .tag-plugin.reel >.content >.body .main p {
  margin: 0;
  font-size: 0.875rem;
}
.md-text .tag-plugin.reel >.content >.date {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: right;
}
.md-text .tag-plugin.reel >.content >.footer {
  color: var(--text-p4);
  font-size: 0.75rem;
  text-align: right;
}
.md-text .tag-plugin.reel>.content {
  position: relative;
}
.md-text .tag-plugin.reel>.content:before {
  content: '';
  position: absolute;
  width: 4px;
  left: -4px;
  top: -16px;
  bottom: -16px;
  border-radius: 4px;
  background: var(--block);
}
.md-text .tag-plugin.reel>.content:after {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(100%);
  top: -16px;
  bottom: -16px;
  border-radius: 4px;
  background: var(--block);
}
.md-text .tag-plugin.reel>.content >.title {
  position: relative;
}
.md-text .tag-plugin.reel>.content >.title:before {
  content: '';
  position: absolute;
  width: 4px;
  right: calc(-1rem - 4px);
  top: calc(-1rem - 6px);
  bottom: calc(100% + 1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
  z-index: 1;
}
.md-text .tag-plugin.reel>.content >.title:after {
  content: '';
  position: absolute;
  width: 4px;
  right: calc(-1rem - 4px);
  top: calc(100% + 1rem - 6px);
  bottom: calc(-1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
  z-index: 1;
}
.md-text .tag-plugin.reel>.content >.footer {
  position: relative;
}
.md-text .tag-plugin.reel>.content >.footer:before {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(-1rem - 4px);
  top: calc(-1rem - 6px);
  bottom: calc(100% + 1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
}
.md-text .tag-plugin.reel>.content >.footer:after {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(-1rem - 4px);
  top: calc(100% + 1rem - 6px);
  bottom: calc(-1rem - 6px);
  border-radius: 4px;
  background: #0078d4;
}
.md-text u {
  text-decoration: none;
  border-bottom: 2px solid #0078d4;
}
.md-text emp {
  width: fit-content;
  text-decoration: none;
  border-bottom: 4px dotted #0078d4;
}
.md-text wavy {
  text-decoration: underline wavy #0078d4;
}
.md-text del {
  color: var(--text-p3);
  text-decoration: line-through var(--text-p3);
}
.md-text kbd {
  border-radius: 4px;
  border: 1px solid var(--card-border);
  background: var(--card);
  padding: 2px 4px 1px 4px;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  font-weight: 550;
}
.md-text psw {
  color: transparent;
  background: #a1a1a1;
  border-radius: 3px;
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  margin: auto 2px;
}
.md-text psw:hover {
  color: inherit;
  background: none;
}
.md-text sup,
.md-text sub {
  color: var(--theme);
  line-height: 1;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
}
.md-text h1 sup,
.md-text h2 sup,
.md-text h3 sup,
.md-text h4 sup,
.md-text h1 sub,
.md-text h2 sub,
.md-text h3 sub,
.md-text h4 sub {
  font-size: 0.85rem;
}
.md-text .tag-plugin.link {
  margin: 1em auto;
  display: flex;
  justify-content: center;
}
.md-text .link-card {
  background: var(--card);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 320px;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  border-radius: 4px;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.md-text .link-card:hover {
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.md-text .link-card.plain {
  flex-direction: row;
  align-items: center;
}
.md-text .link-card.rich {
  flex-direction: column;
  align-items: stretch;
  width: 460px;
  text-align: justify;
}
.md-text .link-card >.left {
  overflow: hidden;
  margin: 0.75rem 0 0.75rem 0.75rem;
}
.md-text .link-card >.left .title {
  font-size: 0.875rem;
}
.md-text .link-card >.left span+span {
  margin-top: 0.25rem;
}
.md-text .link-card >.right {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}
.md-text .link-card >.top {
  display: flex;
  margin: 1rem 1rem 0.75rem;
  overflow: hidden;
  max-width: calc(100% - 1rem * 2);
  align-items: center;
}
.md-text .link-card >.top .img {
  line-height: 0;
  height: 16px;
  width: 16px;
  min-width: 16px;
  border-radius: 16px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.md-text .link-card >.top span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.md-text .link-card >.bottom {
  margin: 0 1rem 1rem;
}
.md-text .link-card >.bottom .title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.md-text .link-card {
  line-height: 1.2;
}
.md-text .link-card .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.md-text .link-card .cap {
  flex-shrink: 0;
  color: var(--text-p3);
}
.md-text .link-card .link {
  line-height: 1.5;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.md-text .link-card .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.md-text .link-card .img {
  border-radius: 4px;
}
.md-text .link-card span {
  margin: 0;
  display: block;
}
.md-text .link-card .title {
  font-weight: 500;
  color: var(--text-p1);
}
.md-text .tag-plugin.mark {
  padding: 0 1px;
  border-radius: 2px;
  background: var(--theme-bg);
  border: 1px solid var(--theme-border);
  color: var(--text-p0);
}
.md-text .tag-plugin.mark[color=dark] {
  border-color: var(--theme-bg);
}
.tag-plugin.video {
  line-height: 0;
  margin: auto;
}
.tag-plugin.video video,
.tag-plugin.video iframe {
  border-radius: 8px;
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  background: var(--block);
  width: 100%;
  height: 100%;
  margin: 0;
}
.md-text .tag-plugin.navbar {
  text-align: center;
}
.md-text .tag-plugin.navbar nav.cap {
  margin: 0;
  padding: 1px;
  background: var(--card);
  box-shadow: 0 0 2px 0px rgba(0,0,0,0.04), 0 0 8px 0px rgba(0,0,0,0.04);
  border-radius: 6px;
  display: inline-flex;
  max-width: 100%;
}
.md-text .tag-plugin.navbar nav.cap a {
  margin: 1px;
  padding: 0.25em 0.75rem;
  color: var(--text-p2);
}
.md-text .tag-plugin.navbar nav.cap a:after {
  display: none;
}
.md-text .tag-plugin.navbar nav.cap a:hover {
  background: var(--block);
}
.md-text .tag-plugin.navbar nav.cap a.active {
  background: var(--block);
  box-shadow: none;
  color: var(--text-p1);
}
.md-text .tag-plugin.note {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--theme-bg);
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  border: 1px solid var(--theme-border);
  color: var(--text-p1);
}
.md-text .tag-plugin.note >.title {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 1rem;
}
.md-text .tag-plugin.note >.body {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.md-text .tag-plugin.note >.body,
.md-text .tag-plugin.note >.body p {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.md-text .tag-plugin.note >.body:only-child {
  margin: 1rem 0;
}
.md-text .tag-plugin.note[color] code {
  background: none;
}
.md-text .tag-plugin.note:not([color]) .highlight {
  background: var(--block-hover);
}
.md-text .tag-plugin.note[child=codeblock] {
  padding: 0;
}
.md-text .tag-plugin.note[child=codeblock] >.title,
.md-text .tag-plugin.note[child=codeblock] >.body:only-child {
  margin-top: 0;
}
.md-text .tag-plugin.note[child=codeblock] >.body {
  margin-bottom: 0;
}
.md-text .tag-plugin.note[child=codeblock] .highlight {
  margin: 0;
  border: none;
  background: none;
}
.md-text .tag-plugin.note[child=tabs] >.body {
  margin: 0;
}
.md-text .tag-plugin.note[child=tabs] >.body >.tabs {
  margin-top: 0.5rem;
}
.md-text .tag-plugin.note[child=iframe] {
  overflow: hidden;
  padding: 0;
}
.md-text .tag-plugin.note[child=iframe] >.body {
  margin: 0;
}
.md-text .tag-plugin.note[child=iframe] >.body iframe {
  margin: 0;
}
.md-text .tag-plugin .tag-plugin.note {
  --gap-p: 1rem;
}
.md-text .tag-plugin.okr {
  position: relative;
  border-radius: 8px;
  background: var(--block);
  border: 1px solid var(--card-border);
  border: 1px solid var(--card-border);
  overflow: hidden;
  color: var(--text-p1);
  line-height: 1.5;
}
.md-text .tag-plugin.okr .o .title {
  font-size: 0.9375rem;
}
.md-text .tag-plugin.okr .o .note {
  font-size: 0.875rem;
}
.md-text .tag-plugin.okr .o .note p {
  font-size: 0.875rem;
}
.md-text .tag-plugin.okr .kr .title {
  font-size: 0.875rem;
}
.md-text .tag-plugin.okr .kr .note {
  font-size: 0.875rem;
}
.md-text .tag-plugin.okr .kr .note p,
.md-text .tag-plugin.okr .kr .note li,
.md-text .tag-plugin.okr .kr .note .tag-plugin {
  font-size: 0.875rem;
}
.md-text .tag-plugin.okr .title {
  font-weight: 600;
  display: block;
}
.md-text .tag-plugin.okr .note {
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}
.md-text .tag-plugin.okr .note >p,
.md-text .tag-plugin.okr .note >ul {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.md-text .tag-plugin.okr .note >.tag-plugin {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.md-text .tag-plugin.okr .note >*:last-child {
  margin-bottom: 0;
}
.md-text .tag-plugin.okr .status {
  font-size: 0.75rem;
  padding: 2px 4px;
  border-radius: 2px;
}
.md-text .tag-plugin.okr .okr-item.o {
  border-bottom: 4px solid var(--block-border);
}
.md-text .tag-plugin.okr .okr-item.kr+.okr-item.kr {
  border-top: 1px dashed var(--block-border);
}
.tag-plugin.okr .okr-item {
  display: grid;
  grid-template-columns: 3.2rem auto 100px;
  grid-column-gap: 0.75rem;
  padding: 1rem;
}
.tag-plugin.okr .okr-item .okr-left .title {
  background: var(--card);
  border-radius: 1rem;
  text-align: center;
  padding: 0 0.5rem;
}
.tag-plugin.okr .okr-item .labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.tag-plugin.okr .okr-item .labels .label {
  background: var(--block);
  color: var(--text-p1);
}
.tag-plugin.okr .okr-item .progress {
  margin-top: 4px;
  height: 4px;
  border-radius: 2px;
  position: relative;
  background: var(--card);
}
.tag-plugin.okr .okr-item .progress .fill {
  position: absolute;
  background: var(--theme-highlight);
  border-radius: 2px;
  top: 0;
  left: 0;
  bottom: 0;
}
.tag-plugin.okr .okr-item .progress .fill:before {
  content: '';
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -4px;
  width: 8px;
  height: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 2px 0px rgba(0,0,0,0.04), 0 0 8px 0px rgba(0,0,0,0.04);
}
.tag-plugin.okr .okr-item .progress .fill:after {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: -2px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--theme-highlight);
}
.md-text .tag-plugin.poetry {
  align-self: center;
}
.md-text .tag-plugin.poetry[align=center] {
  align-items: center;
}
.md-text .tag-plugin.poetry >.title {
  font-weight: 500;
  font-size: 1rem;
  margin-top: var(--gap-p);
}
.md-text .tag-plugin.poetry >.meta {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
}
.md-text .tag-plugin.poetry >.meta span+span {
  margin-left: 4px;
}
.md-text .tag-plugin.poetry >.body {
  margin: var(--gap-p) 0;
  border-top: 1px dashed var(--block-border);
  border-bottom: 1px dashed var(--block-border);
}
.md-text .tag-plugin.poetry >.body p {
  font-size: 0.875rem;
}
.md-text .tag-plugin.poetry >.footer {
  font-style: italic;
  color: var(--text-p4);
  margin: var(--gap-p) 0;
  font-size: 0.75rem;
}
.md-text .tag-plugin.poetry {
  padding-left: 1rem;
  position: relative;
}
.md-text .tag-plugin.poetry:before {
  content: '';
  position: absolute;
  width: 4px;
  left: -4px;
  top: 4px;
  bottom: 4px;
  border-radius: 4px;
  background: var(--block);
}
.md-text .tag-plugin.poetry >.title {
  position: relative;
}
.md-text .tag-plugin.poetry >.title:before {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(-1rem - 4px);
  top: 6px;
  bottom: 6px;
  border-radius: 4px;
  background: #0078d4;
}
.md-text .tag-plugin.quot {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.md-text .tag-plugin.quot .content {
  display: flex;
  align-items: center;
  border-bottom: none;
  font-weight: 700;
  padding: 16px 24px;
  line-height: 1.2;
}
.md-text .tag-plugin.quot .content a.headerlink:before {
  content: '';
}
@media screen and (max-width: 500px) {
  .md-text .tag-plugin.quot .content {
    padding: 12px 20px;
  }
}
.md-text .tag-plugin.quot .content {
  max-width: 500px;
  position: relative;
}
.md-text.content .tag-plugin.quot h1 {
  font-size: 1.75rem;
  font-weight: 900;
  padding: 20px 32px 12px 32px;
}
@media screen and (max-width: 500px) {
  .md-text.content .tag-plugin.quot h1 {
    padding: 20px 24px 12px;
  }
}
.md-text.content .tag-plugin.quot h2,
.md-text.content .tag-plugin.quot h3,
.md-text.content .tag-plugin.quot h4,
.md-text.content .tag-plugin.quot h5,
.md-text.content .tag-plugin.quot h6 {
  font-size: 1.375rem;
  margin-top: 1em;
  margin-bottom: 0;
}
.md-text.content .tag-plugin.quot p {
  font-size: 1.125rem;
  color: var(--text-p0);
}
.md-text .tag-plugin.quot .content[type=text]:before,
.md-text .tag-plugin.quot .content[type=text]:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
}
.md-text .tag-plugin.quot .content[type=text]:before {
  top: 8px;
  left: 0;
  border-top: 6px solid #0078d4;
  border-left: 6px solid #0078d4;
}
.md-text .tag-plugin.quot .content[type=text]:after {
  right: 0;
  bottom: 8px;
  border-right: 6px solid #0078d4;
  border-bottom: 6px solid #0078d4;
}
.md-text .tag-plugin.quot h1.content[type=text]:before,
.md-text .tag-plugin.quot h1.content[type=text]:after {
  width: 12px;
  height: 20px;
  border-width: 8px;
}
.md-text .tag-plugin.quot .content[type=icon] .icon {
  height: 1.5em;
  display: inline-block;
  color: #0078d4;
  border-radius: 0;
}
.md-text .tag-plugin.quot .content[type=icon] .icon.prefix {
  margin-left: -0.5rem;
  margin-right: 0.5rem;
}
.md-text .tag-plugin.quot .content[type=icon] .icon.suffix {
  margin-left: 0.5rem;
}
.sites-wrap .group-header {
  margin: 1rem 0;
}
.sites-wrap .group-header p {
  margin: 0;
  font-size: 0.875rem;
}
.sites-wrap .group-header p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}
.sites-wrap .group-body {
  width: 100%;
}
.sites-wrap .group-body+.group-header {
  margin-top: 2rem;
}
.sites-wrap .stellar-sites-api {
  display: block;
}
.site-card {
  background: var(--card);
  padding: 2px;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.2);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.site-card:hover {
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1), 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.sites-wrap .group-body {
  display: grid;
  grid-gap: 1rem 1rem;
  grid-template-columns: repeat(auto-fill, calc((100% - 3 * 1rem) / 4));
}
@media screen and (max-width: 1024px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 2 * 1rem) / 3));
  }
}
@media screen and (max-width: 900px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 1 * 1rem) / 2));
  }
}
@media screen and (max-width: 667px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 2 * 1rem) / 3));
  }
}
@media screen and (max-width: 500px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 1 * 1rem) / 2));
  }
}
.sites-wrap .group-body .site-card .card-link {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sites-wrap .group-body .site-card .card-link >img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 120px;
  }
}
@media screen and (max-width: 900px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 120px;
  }
}

.sites-wrap .group-body .site-card .card-link .info {
  margin-top: 0.5rem;
  margin-left: 0.3rem;
  line-height: 1.2;
}
.sites-wrap .group-body .site-card .card-link .info >img {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  float: left;
  margin-right: 8px;
  margin-top: 2px;
}
.sites-wrap .group-body .site-card .card-link .info span {
  display: block;
}
.sites-wrap .group-body .site-card .card-link .info .title {
  font-weight: 500;
  color: var(--text-p1);
  font-size: 0.875rem;
  margin-top: 1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.sites-wrap .group-body .site-card .card-link .info .desc {
  font-size: 10px;
  margin-top: 2px;
  word-wrap: break-word;
  color: var(--text-p3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.tag-plugin.split {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(auto-fill, calc((100% - 1 * 16px) / 2));
}
.tag-plugin.split >.cell {
  margin: 1rem 0;
}
.tag-plugin.split >.cell p:first-child>strong:only-child {
  font-size: 1.125rem;
}
.tag-plugin.split >.cell> p {
  line-height: 1.5;
}
.tag-plugin.split >.cell> :first-child {
  margin-top: 0;
}
.tag-plugin.split >.cell> :last-child {
  margin-bottom: 0;
}
.tag-plugin.split >.cell> p:first-child {
  margin-top: -0.25em;
}
.tag-plugin.split >.cell> p:last-child {
  margin-bottom: -0.25em;
}
@media screen and (max-width: 768px) {
  .tag-plugin.split {
    display: block;
  }
}
.tag-plugin.split[bg]>.cell {
  padding: 1rem;
  border-radius: 8px;
}
.tag-plugin.split[bg='block']>.cell {
  background: var(--block);
}
.tag-plugin.split[bg='card']>.cell {
  background: var(--card);
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.tag-plugin.split[bg='card']>.cell:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
.tag-plugin.tabs {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.tag-plugin.tabs[align=left] {
  align-items: flex-start;
}
.tag-plugin.tabs[align=left] .nav-tabs {
  align-self: flex-start;
}
.tag-plugin.tabs[align=center] {
  align-items: center;
}
.tag-plugin.tabs[align=right] {
  align-items: flex-end;
}
.tag-plugin.tabs[align=right] .nav-tabs {
  align-self: flex-end;
}
.tag-plugin.tabs .nav-tabs {
  display: flex;
  align-self: center;
  overflow: scroll visible;
  max-width: 100%;
  white-space: nowrap;
  margin: 0 !important;
  line-height: 1.5;
  position: relative;
  padding: 8px 0;
}
.tag-plugin.tabs .nav-tabs::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.tag-plugin.tabs .nav-tabs::-webkit-scrollbar-track-piece {
  background: transparent;
}
.tag-plugin.tabs .nav-tabs::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.tag-plugin.tabs .nav-tabs::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.tag-plugin.tabs .nav-tabs:after {
  content: '';
  position: absolute;
  background: var(--block-hover);
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.tag-plugin.tabs .nav-tabs .tab {
  list-style-type: none;
}
.tag-plugin.tabs .nav-tabs .tab a {
  display: block;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  line-height: inherit;
  font-weight: 500;
  color: var(--text-p3);
  border-radius: 4px;
  position: relative;
  margin: 0 2px;
}
.tag-plugin.tabs .nav-tabs .tab a:hover {
  color: var(--text-p1);
  background: var(--block-hover);
}
.tag-plugin.tabs .nav-tabs .tab a i {
  pointer-events: none;
}
.tag-plugin.tabs .nav-tabs .tab.active a {
  cursor: default;
  color: var(--text-p1);
  background: var(--card);
  box-shadow: 0 0 2px 0px rgba(0,0,0,0.04), 0 0 8px 0px rgba(0,0,0,0.04);
}
.tag-plugin.tabs .nav-tabs .tab.active a:after {
  content: '';
  z-index: 1;
  position: absolute;
  background: #0078d4;
  height: 2px;
  bottom: -8px;
  left: 0.75rem;
  right: 0.75rem;
  border-radius: 2px;
}
.tag-plugin.tabs .tab-content {
  max-width: 100%;
  text-align: justify;
  margin-top: 0.5rem;
}
.tag-plugin.tabs .tab-content .tab-pane:not(.active) {
  display: none;
}
.tag-plugin.tabs .tab-content .tab-pane.active {
  display: block;
}
.md-text.indent .tag-plugin.tabs .tab-content p:not([class]) {
  text-indent: calc(0.9375rem * 2);
}
.md-text.indent .tag-plugin.tabs .tab-content p:not([class]) a {
  text-indent: 0;
}
.md-text .tag-plugin.folding .body:has(.timeline) {
  background: var(--site-bg);
}
.md-text .tag-plugin.timeline {
  position: relative;
  margin-top: 0;
  padding-left: 16px;
}
.md-text .tag-plugin.timeline:before {
  content: '';
  position: absolute;
  z-index: 0;
  background: var(--block-hover);
  width: 4px;
  left: 0px;
  border-radius: 8px;
  top: 0.5rem;
  bottom: 0;
}
.md-text .tag-plugin.timeline:has(.loading-wrap) {
  padding-left: 0;
}
.md-text .tag-plugin.timeline:has(.loading-wrap):before {
  display: none;
}
.md-text .tag-plugin.timeline .timenode {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 100%;
}
.md-text .tag-plugin.timeline .timenode >.header,
.md-text .tag-plugin.timeline .timenode >.body {
  box-sizing: border-box;
  max-width: 100%;
}
.md-text .tag-plugin.timeline .timenode[highlight] .header:before {
  background: #0078d4;
}
.md-text .tag-plugin.timeline .timenode+.timenode {
  margin-top: 1rem;
}
.md-text .tag-plugin.timeline .timenode:hover .header p {
  color: var(--text-p1);
}
.md-text .tag-plugin.timeline .timenode:hover .header .user-info {
  background: #0078d4;
}
.md-text .tag-plugin.timeline .timenode:hover .header .user-info span {
  color: var(--card);
}
.md-text .tag-plugin.timeline .timenode:hover .header:before {
  background: #0078d4;
  height: 16px;
  top: calc(50% - 0.5 * 16px);
  transform: scale(1);
}
.tag-plugin.timeline .timenode .header {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0.25rem 0;
  font-size: 0.75rem;
}
.tag-plugin.timeline .timenode .header .user-info {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-p1);
  margin-right: 4px;
  line-height: 1;
  border-radius: 16px;
  padding-right: 6px;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
}
.tag-plugin.timeline .timenode .header .user-info img {
  background: #fff;
  height: 16px;
  border-radius: 16px;
  display: inline;
  margin: 0 4px 0 0;
  object-fit: contain;
}
.tag-plugin.timeline .timenode .header .user-info:hover {
  background: #0078d4;
}
.tag-plugin.timeline .timenode .header,
.tag-plugin.timeline .timenode .header p {
  font-weight: 500;
  color: var(--text-p3);
  transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  line-height: 1;
}
.tag-plugin.timeline .timenode .header p {
  margin: 0 !important;
  font-size: 0.75rem !important;
}
.tag-plugin.timeline .timenode .header p a {
  color: inherit;
  font-weight: inherit;
}
.tag-plugin.timeline .timenode .header:before {
  content: '';
  position: absolute;
  left: -16px;
  width: 4px;
  border-radius: 12px;
  height: 4px;
  top: calc(50% - 0.5 * 4px);
  background: var(--text-meta);
  transition: background 0.2s ease-out, height 0.2s ease-out, top 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: background 0.2s ease-out, height 0.2s ease-out, top 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out, height 0.2s ease-out, top 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: background 0.2s ease-out, height 0.2s ease-out, top 0.2s ease-out, transform 0.2s ease-out;
  transform: scale(2);
}
.tag-plugin.timeline .body {
  background: var(--theme-bg);
  border-radius: 12px;
  border-top-left-radius: 2px;
  padding: 0.5rem 1rem;
  margin-top: 4px;
  box-shadow: 0 1px 4px 0px rgba(0,0,0,0.02), 0 2px 8px 0px rgba(0,0,0,0.02);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -o-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  color: var(--text-p1);
}
.tag-plugin.timeline .body:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
.tag-plugin.timeline .body p {
  font-size: 0.875rem;
}
.tag-plugin.timeline .body p img {
  display: block;
}
.tag-plugin.timeline .body:empty {
  display: none;
}
.tag-plugin.timeline .body p,
.tag-plugin.timeline .body .highlight,
.tag-plugin.timeline .body ol,
.tag-plugin.timeline .body ul,
.tag-plugin.timeline .body .tag-plugin {
  margin: 0.5rem 0;
}
.tag-plugin.timeline .body .tag-plugin.copy {
  width: 240px;
}
.tag-plugin.timeline .body a {
  color: var(--theme-link);
}
.tag-plugin.timeline[api].stellar-fcircle-api .timenode:hover .header .user-info {
  background: inherit;
}
.tag-plugin.timeline[api].stellar-fcircle-api .timenode:hover .header .user-info span {
  color: inherit;
}
.tag-plugin.timeline[api] a.body {
  display: block;
  color: var(--text-p1);
  line-height: 1.25;
  padding: 0.75rem 1rem;
}
.tag-plugin.timeline[api] .body p.title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.25;
}
.tag-plugin.timeline[api] .body p.title:only-child {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.tag-plugin.timeline[api] .body p.title a {
  color: inherit;
}
.tag-plugin.timeline[api] .body p.title a:hover {
  color: #0078d4;
}
.tag-plugin.timeline[api] .body a:has(img):after {
  display: none;
}
.tag-plugin.timeline[api] .body a img {
  margin: 0 auto;
}
.tag-plugin.timeline[api] .body img {
  margin: 0.5rem auto;
}
.tag-plugin.timeline[api] .body pre code {
  font-size: 0.75rem;
}
.tag-plugin.timeline[api] .body .footer {
  margin: 0 0 -0.5rem;
  padding: 0.5rem 0 1rem;
  user-select: none;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  background: var(--card);
}
.tag-plugin.timeline[api] .body .footer span {
  line-height: 1.8;
}
.tag-plugin.timeline[api] .body .footer:empty {
  display: none;
}
.tag-plugin.timeline[api] .body .footer .flex {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  align-items: stretch;
}
.tag-plugin.timeline[api] .body .footer .item {
  border-width: 1px;
  border-style: solid;
  margin: 2px;
  border-radius: 4px;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
}
.tag-plugin.timeline[api] .body .footer .item:first-child {
  margin-left: 0;
}
.tag-plugin.timeline[api] .body .footer .item:last-child {
  margin-right: 0;
}
.tag-plugin.timeline[api] .body .footer .reaction {
  border-color: var(--block);
}
.tag-plugin.timeline .body blockquote {
  background: none;
  border-radius: 0;
  padding: 0 0.5rem;
  margin: 0.75rem 0;
}
.tag-plugin.timeline .body blockquote p {
  font-size: 0.8125rem;
  margin: 0.25rem;
}
.tag-plugin.timeline .body {
  line-height: 1.5;
}
.tag-plugin.timeline .body h1,
.tag-plugin.timeline .body h2 {
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.2;
}
.tag-plugin.timeline .body h3,
.tag-plugin.timeline .body h4 {
  font-size: 1rem;
  margin: 0.75rem 0;
  line-height: 1.2;
}
.tag-plugin.timeline .body h5,
.tag-plugin.timeline .body h6 {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.2;
}
details.toc {
  background: var(--block);
  border: 1px solid var(--block-border);
  border-radius: 8px;
  overflow: hidden;
  color: var(--text-p2);
}
details.toc summary {
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 2;
  color: var(--text-p2);
  font-size: 0.8125rem;
  font-weight: 500;
}
details.toc summary:hover {
  background: var(--block-hover);
}
details.toc >div.body {
  margin: var(--gap-p) 1rem 1rem;
}
details.toc[open] >summary {
  border-bottom: 1px solid transparent;
}
details.toc[open] >summary:hover {
  border-bottom-color: var(--block-border);
}
details.toc[open] >div.body section+section {
  margin-top: 1rem;
}
details.toc[open] >div.body section .header {
  line-height: 2;
  font-weight: 500;
}
details.toc[open] >div.body section .header+.doc_tree {
  margin-top: 0;
}
@media screen and (max-width: 667px) {
  .tag-plugin.toc[display=mobile] {
    display: block !important;
  }
}
.l_left>.footer {
  margin: 0.5rem var(--gap-l) 1rem;
}
.social-wrap {
  display: grid;
  grid-gap: 0.25rem 0.25rem;
  grid-template-columns: repeat(auto-fill, 32px);
}
.social-wrap a.social,
.social-wrap .darkmode-switch-container {
  cursor: pointer;
  line-height: 0;
  display: inline-block;
  padding: 6px;
  border-radius: 4px;
  filter: grayscale(100%);
  overflow: hidden;
  background: transparent;
  border: 0px solid var(--block-border);
  transition: background 0.2s ease-out, transform 0.2s ease-out, border 0.2s ease-out;
  -moz-transition: background 0.2s ease-out, transform 0.2s ease-out, border 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out, transform 0.2s ease-out, border 0.2s ease-out;
  -o-transition: background 0.2s ease-out, transform 0.2s ease-out, border 0.2s ease-out;
}
.social-wrap a.social:hover,
.social-wrap .darkmode-switch-container:hover {
  color: #0078d4;
  z-index: 1;
  filter: unset;
  transform: translateY(-1px);
  background: var(--card);
  border: 1px solid var(--block-border);
}
.social-wrap a.social:hover .proj-wrap,
.social-wrap .darkmode-switch-container:hover .proj-wrap {
  display: grid;
  grid-gap: 0.25rem 0.25rem;
}
.social-wrap a.social:hover .proj-wrap a.item,
.social-wrap .darkmode-switch-container:hover .proj-wrap a.item {
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-p2);
  background: var(--block);
  border: 1px solid var(--block-border);
  overflow: hidden;
  padding: 0.75em;
  text-align: center;
}
.social-wrap a.social:hover .proj-wrap a.item svg,
.social-wrap .darkmode-switch-container:hover .proj-wrap a.item svg {
  margin-right: 0.5em;
}
.social-wrap a.social:hover .proj-wrap a.item:hover,
.social-wrap .darkmode-switch-container:hover .proj-wrap a.item:hover {
  color: #0078d4;
  background: var(--card);
}
.l_left nav.menu {
  margin-bottom: 0;
}
nav.menu {
  margin: 1rem 0;
  border-radius: 6px;
  display: flex;
  padding: 1px;
  flex-wrap: wrap;
}
nav.menu::-webkit-scrollbar {
  display: none;
}
nav.menu::-webkit-scrollbar-track-piece {
  background: transparent;
}
nav.menu::-webkit-scrollbar-thumb {
  display: none;
}
nav.menu a.nav-item {
  position: relative;
  text-overflow: ellipsis;
  word-break: keep-all;
  margin: 1px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  padding: 0.375rem 0.5rem;
  color: var(--text-p3);
  text-align: center;
}
nav.menu a.nav-item.active,
nav.menu a.nav-item:hover {
  color: var(--text-p1);
  background: var(--card);
}
.l_left .menu a.nav-item {
  flex-grow: 1;
}
.logo-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.logo-wrap a {
  color: inherit;
  display: flex;
  align-items: center;
}
.logo-wrap a.avatar {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 1rem;
}
.logo-wrap a.avatar div.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.logo-wrap a.avatar img.avatar {
  margin: 2px;
  object-fit: cover;
  width: calc(100% - 2 * 2px);
  height: calc(100% - 2 * 2px);
  border-radius: calc(100% - 2 * 2px);
}
.logo-wrap a.avatar div.bg {
  transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  position: absolute;
  opacity: 0 !important;
  z-index: -1;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-wrap a.avatar:hover div.bg {
  opacity: 1 !important;
  animation: spin infinite 4s;
  animation-timing-function: linear;
}
.logo-wrap a.title {
  font-size: 1.75rem;
  font-weight: 900;
  color: inherit;
  line-height: 1.2;
  display: block;
  position: relative;
}
.logo-wrap a.title .main {
  color: var(--text-p0);
}
.logo-wrap a.title .sub {
  color: var(--text-p1);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  white-space: nowrap;
}
.logo-wrap a.title .hover {
  position: absolute;
  bottom: 0;
  transform: translateY(8px);
  overflow: visible;
}
.logo-wrap a.title:hover .normal {
  opacity: 0;
  transform: translateY(-8px);
}
.logo-wrap a.title:hover .hover {
  transform: translateY(0);
  opacity: 1 !important;
}
.l_left {
  display: flex;
  flex-direction: column;
  word-break: break-all;
  text-align: justify;
  height: 100vh;
  background: var(--site-bg);
}
.l_left .header {
  margin: var(--gap-l) var(--gap-l) 0;
  margin-top: calc(2 * var(--gap-l));
}
@media screen and (min-width: 667px) {
  .l_left >.widgets:first-child>.widget-wrapper:first-child {
    margin-top: calc(2 * var(--gap-l));
  }
}
@media screen and (max-width: 667px) {
  .l_left {
    height: 100vh;
  }
}
.l_left[layout=wiki] {
  padding-bottom: 0;
  height: 100vh;
}
@media screen and (max-width: 667px) {
  .l_left[layout=wiki] {
    height: 100vh;
  }
}
.l_left[layout=wiki] .widgets >:last-child {
  margin-bottom: 6rem;
}
.l_left .widgets .widget-wrapper.logo-wrap.wiki {
  margin-bottom: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
}
.l_left .widgets .widget-wrapper.logo-wrap.wiki a.wiki-home {
  margin-bottom: 0.5rem;
  color: var(--text-p1);
}
.l_left .widgets .widget-wrapper.logo-wrap.wiki a.wiki-home svg {
  margin-right: 2px;
}
.l_left .widgets .widget-wrapper.logo-wrap.wiki a.wiki-home:hover {
  color: #0078d4;
  filter: unset !important;
}
.widget-wrapper.ghrepo .repo {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--text-p2);
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.widget-wrapper.ghrepo .repo >div+div {
  margin-top: 0.5rem;
}
.widget-wrapper.ghrepo .repo span {
  color: var(--text-p2);
}
.widget-wrapper.ghrepo .repo:hover {
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.widget-wrapper.ghrepo .repo svg {
  margin-right: 4px;
}
.widget-wrapper.ghrepo .repo .flex-row {
  display: flex;
  align-items: center;
}
.widget-wrapper.ghrepo .repo .repo-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-p1);
}
.widget-wrapper.ghrepo .repo .repo-desc {
  font-size: 0.8125rem;
  margin-left: 2px;
  margin-right: 2px;
}
.widget-wrapper.ghrepo .repo .grid {
  font-size: 0.8125rem;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(auto-fill, calc((100% - 2 * 2px) / 3));
}
.widget-wrapper.ghuser .widget-header+.widget-body {
  margin: 0.75rem 0;
}
.widget-wrapper.ghuser .widget-body {
  text-align: center;
  background: var(--card);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
}
.widget-wrapper.ghuser .avatar {
  display: block;
  border-radius: 100%;
  margin: 1rem auto 1.25rem auto;
  max-width: 75%;
  overflow: hidden;
}
.widget-wrapper.ghuser .avatar img {
  display: block;
}
@media screen and (max-width: 768px) {
  .widget-wrapper.ghuser .avatar {
    max-width: 50%;
  }
}
.widget-wrapper.ghuser .username {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-p0);
  margin: 0.5rem 0;
}
.widget-wrapper.ghuser .bio {
  font-size: 0.8125rem;
  margin: 0.5rem 0;
}
.widget-wrapper.ghuser .follow {
  font-weight: 500;
  border-radius: 64px;
  padding: 0.5rem 1rem;
  background: #0078d4;
  color: var(--card);
  font-size: 1rem;
  align-self: stretch;
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
}
.widget-wrapper.ghuser .follow svg {
  margin-right: 6px;
}
.widget-wrapper.ghuser .follow:hover {
  background: #0078d4;
}
.widget-wrapper.ghuser .menu {
  margin-bottom: 0;
  background: none;
}
.widget-wrapper.ghuser .menu a:hover {
  box-shadow: none;
  background: var(--block);
}
.widget-wrapper.ghuser .menu a.active {
  box-shadow: none;
  position: relative;
}
.widget-wrapper.ghuser .menu a.active:after {
  content: '';
  position: absolute;
  height: 3px;
  bottom: 0;
  width: 32px;
  left: calc(50% - 0.5 * 32px);
  border-radius: 4px;
  background: #0078d4;
}
.widget-wrapper.ghuser .buttons {
  margin: 1rem 0;
  align-self: stretch;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(auto-fill, calc((100% - 2 * 2px) / 3));
}
.widget-wrapper.ghuser .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.25rem 0;
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
}
.widget-wrapper.ghuser .btn:hover {
  background: var(--block);
}
.widget-wrapper.ghuser .btn .title {
  font-size: 1rem;
  font-weight: 700;
}
.widget-wrapper.ghuser .btn .desc {
  font-size: 0.75rem;
  color: var(--text-p3);
  font-weight: 500;
}
div#instantclick-bar {
  background: var(--theme-highlight);
}
.widget-wrapper.recent .widget-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0.25rem;
}
.widget-wrapper.recent .widget-body a {
  line-height: 1.2;
  font-size: 0.8125rem;
  margin: 0.25rem 0;
}
.widget-wrapper.recent .widget-body a .title {
  font-size: 0.8125rem;
  color: var(--text-p2);
}
.widget-wrapper.recent .widget-body a:hover {
  color: #0078d4;
}
.widget-wrapper.related .widget-body a {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.widget-wrapper.related .widget-body a .title {
  font-weight: 700;
  font-size: 0.875rem;
}
.widget-wrapper.related .widget-body a .excerpt {
  -webkit-line-clamp: 3;
}
.widgets .widget-wrapper.search {
  margin-top: 0;
  margin-bottom: 0;
}
.widget-wrapper.tagcloud .widget-body {
  margin-top: 0.25rem;
}
.widget-wrapper.tagcloud .widget-body a {
  word-break: break-word;
  color: var(--text-p2);
  line-height: 1.5;
}
.widget-wrapper.tagcloud .widget-body a:hover {
  color: #0078d4;
}
.widget-wrapper.timeline .widget-body {
  margin-top: 0.5rem;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header .user-info {
  background: var(--block);
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header .user-info:hover {
  background: #0078d4;
  color: var(--card);
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header:before {
  display: none;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode+.timenode {
  margin-top: 0.75rem;
}
.widget-wrapper.toc.single .doc-tree.active>.toc {
  border-left: 2px solid var(--block-hover);
}
.widget-wrapper.toc .widget-header {
  margin-top: 1rem;
}
.widget-wrapper.toc.single .widget-header {
  font-weight: 500;
  font-size: 0.75rem;
  background: var(--site-bg);
}
.widget-wrapper.toc.single .widget-header >span {
  margin: 0.5rem 0;
}
.widget-wrapper.toc .widget-body {
  margin-top: 0;
}
.widget-wrapper.toc .widget-body ul ul,
.widget-wrapper.toc .widget-body ul ol {
  padding-left: 0;
}
.widget-wrapper.toc .widget-body ol ul,
.widget-wrapper.toc .widget-body ol ol {
  padding-left: 0;
}
.widget-wrapper.toc .widget-body .doc-tree {
  margin: 4px 0;
}
.widget-wrapper.toc .widget-body .toc {
  padding: 0;
  margin: 0;
  padding-left: 0.25rem;
}
.widget-wrapper.toc .widget-body .toc .toc-item .toc-link {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-p2);
}
.widget-wrapper.toc .widget-body .toc .toc-child .toc-item .toc-link {
  padding: 0.25rem 0.5rem 0.25rem 1.3rem;
  font-weight: 400;
  color: var(--text-p2);
}
.widget-wrapper.toc .widget-body .toc .toc-child .toc-child .toc-item .toc-link {
  padding-left: 2.1rem;
  font-size: 0.75rem;
  color: var(--text-p3);
}
.widget-wrapper.toc .widget-body .toc .toc-child .toc-child .toc-child .toc-item .toc-link {
  padding-left: 2.9rem;
}
.widget-wrapper.toc .toc-item {
  color: var(--text-p2);
  font-size: 0.75rem;
  padding: 0;
  list-style: none;
}
.widget-wrapper.toc .toc-item.active {
  color: #0078d4;
  border-left-color: #0078d4;
}
.widget-wrapper.toc .toc-item .toc-child .toc-item {
  padding: 0;
}
.widget-wrapper.toc a.toc-link {
  color: inherit;
  display: block;
  line-height: 1.2;
  border-radius: 4px;
  position: relative;
}
.widget-wrapper.toc a.toc-link:before {
  content: '';
  position: absolute;
  left: -6px;
  top: calc(50% - 6px);
  bottom: calc(50% - 6px);
  width: 2px;
  border-radius: 2px;
  background: #0078d4;
  visibility: hidden;
}
.widget-wrapper.toc a.toc-link:hover {
  background: var(--block-hover);
}
.widget-wrapper.toc a.toc-link.active {
  color: var(--theme-highlight) !important;
}
.widget-wrapper.toc a.toc-link.active:before {
  visibility: visible;
}
.widget-wrapper.toc.multi .widget-header {
  color: var(--text-p1);
  font-size: 0.875rem;
}
.widget-wrapper.toc.multi .doc-tree {
  border-radius: 8px;
  background: var(--block);
  overflow: hidden;
  border: 1px solid var(--block-border);
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link {
  color: var(--text-p2);
  padding: 0.5rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link:after {
  position: absolute;
  right: 0.5rem;
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link.active {
  color: var(--text-p1);
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link.active:only-child {
  background: var(--card);
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link:hover {
  background: var(--block-hover);
}
.widget-wrapper.toc.multi .doc-tree a.doc-tree-link:hover:after {
  content: '+';
}
.widget-wrapper.toc.multi .doc-tree.active a.doc-tree-link {
  background: var(--block);
  font-weight: 700;
}
.widget-wrapper.toc.multi .doc-tree.active a.doc-tree-link:not(:only-child) {
  border-bottom: 1px solid var(--block-border);
}
.widget-wrapper.toc.multi .doc-tree.active a.doc-tree-link:hover:after {
  content: none;
}
.widget-wrapper.toc.multi .doc-tree.active >.toc {
  padding: 4px;
  background: var(--card);
}
.widget-wrapper.toc.multi .doc-tree.active >.toc a.toc-link:before {
  left: -2px;
  width: 4px;
}
.widget-wrapper.toc.multi .doc-tree.active >.toc a.toc-link:hover {
  background: var(--block);
}
.widgets .loading-wrap {
  margin: 0.5rem 0;
}
.widgets {
  overflow: scroll;
  flex-grow: 1;
  scrollbar-width: none;
  z-index: 1;
  line-height: 1.2;
}
.widgets::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.widgets::-webkit-scrollbar-track-piece {
  background: transparent;
}
.widgets::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.widgets::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.widgets .widget-wrapper .widget-header {
  padding-left: var(--gap-l);
  padding-right: var(--gap-l);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  position: sticky;
  top: -2px;
  padding-top: 2px;
  z-index: 1;
}
.widgets .widget-wrapper .widget-header .item {
  display: block;
}
.widgets .widget-wrapper .widget-header >span {
  margin: 0.25rem 0;
  text-align: left;
}
.widgets .widget-wrapper .widget-header:empty {
  display: none;
}
.widgets .widget-wrapper .widget-header .cap-action {
  border-radius: 4px;
  padding: 4px 4px;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
  line-height: 0;
  color: var(--text-meta);
  transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
}
.widgets .widget-wrapper .widget-header .cap-action:hover {
  background: var(--block-hover);
}
.widgets .widget-wrapper .widget-header .cap-action .icon {
  fill: var(--text-meta);
}
.widgets .widget-wrapper .widget-header .cap-action:hover {
  color: #0078d4;
}
.widgets .widget-wrapper .widget-header .cap-action:hover .icon {
  fill: #0078d4;
}
.widgets .widget-wrapper .widget-body {
  margin: 0.5rem var(--gap-l);
  color: var(--text-p1);
}
.widgets .widget-wrapper .widget-body p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.widgets .widget-wrapper .widget-header+.widget-body {
  margin-top: 0;
}
.widgets .widget-wrapper+.widget-wrapper .widget-header {
  margin-top: 3rem;
}
.widgets .widget-wrapper+.widget-wrapper.toc .widget-header {
  margin-top: 1rem;
}
.widget-wrapper {
  display: block;
  margin: 2rem 0;
}
.post-list #archive {
  padding: 1rem;
}
.post-list #archive .archive-header {
  display: inline-block;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  position: relative;
  padding: 4px 0;
  color: var(--text-p3);
}
.post-list #archive .archive-header:after {
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 4px;
  background: var(--block-border);
}
.post-list #archive a.post {
  display: inline-flex;
  align-items: baseline;
  margin: 0.25rem 0;
  color: var(--text-p1);
}
.post-list #archive a.post:hover {
  color: #0078d4;
}
.post-list #archive a.post time {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  margin-right: 1em;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.5;
}
.post-list #archive:hover .archive-header {
  color: var(--text-p1);
}
.post-list #archive:hover .archive-header:after {
  background: #0078d4;
}
.post-list #cats {
  padding: 0;
}
.post-list #cats a.cat {
  display: flex;
  padding: 0.5em 1rem;
  border-radius: 8px;
  color: var(--text-p2);
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.875rem;
}
.post-list #cats a.cat.child {
  padding-left: 2rem;
}
.post-list #cats a.cat .badge {
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace, sans-serif;
  opacity: 0.5;
  font-size: 0.75rem;
}
.post-list #cats a.cat:hover {
  background: var(--block-hover);
  color: var(--text-p0);
}
.post-list #cats a.cat:hover .badge {
  opacity: 1;
  color: #0078d4;
}
.post-list #tags {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -4px;
}
.post-list #tags a.tag {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--text-p2);
  margin: 4px;
  padding: 0.5em 0.75rem;
  border-radius: 4px;
  background: var(--card);
  border: 1px solid var(--card-border);
  font-size: 0.8125rem;
  font-weight: 500;
}
.post-list #tags a.tag:before {
  content: "#";
  margin-left: -2px;
  margin-right: 2px;
  opacity: 0.4;
}
.post-list #tags a.tag:hover {
  color: var(--text-p0);
  background: var(--card);
}
.post-list #tags a.tag:hover:before {
  color: #0078d4;
  opacity: 1;
}
.md-text.error-page {
  text-align: center;
  margin-top: 2rem;
}
.md-text.error-page img#error {
  width: 30vw;
  max-height: 150px;
  margin-bottom: 2rem;
}
.md-text.error-page h1 {
  font-size: 4rem;
  margin-bottom: 0;
}
.md-text.error-page p.what,
.md-text.error-page p.why {
  margin: 0.5em;
}
.md-text.error-page p.why {
  font-size: 0.8125rem;
}
.md-text.error-page a#back {
  margin: 2rem 0;
  display: inline-block;
  background: #fdb62f;
  color: #000;
  border-radius: 4px;
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  .md-text.error-page {
    margin-top: 4rem;
  }
}
.l_body {
  display: flex;
  margin: auto;
  padding: 0 var(--gap-l);
  justify-content: center;
}
.l_body .l_left {
  z-index: 8;
  width: var(--width-left);
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.l_body .l_main {
  flex-shrink: 1;
  flex-grow: 1;
  width: 320px;
  max-width: var(--width-main);
}
@media screen and (max-width: 667px) {
  .mobile-only {
    display: block !important;
  }
  .l_body {
    padding: 0;
  }
  .l_body .l_left {
    position: fixed;
    transform: translateX(-320px);
    margin: 0;
    left: 0;
    box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 9;
  }
  .l_body .l_main {
    max-width: 100%;
  }
  .l_body.mobile .l_left {
    transition: transform 0.3s ease-out;
  }
  .l_body.mobile.sidebar .l_left {
    transform: translateX(0px);
  }
}
.post-list {
  margin: 1rem;
}
.post-list .post-title:first-child {
  margin-top: 0.5rem;
}
.post-list .post-title {
  font-weight: 500;
  margin: 1.25rem 0 0.75rem 0;
  line-height: 1.2;
  font-size: 1.375rem;
  border-bottom: none;
  color: var(--text-p0);
  transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
}
@media screen and (max-width: 500px) {
  .post-list .post-title {
    font-size: 1.125rem;
    margin: 0.5rem 0;
  }
}
.post-list .wiki .post-title {
  margin-top: 0.5rem;
}
.post-list .post-card {
  display: block;
  margin: 1rem 0;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  box-shadow: 0 1px 2px rgba(113,113,122,0.1);
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  overflow: hidden;
  z-index: 0;
  background: var(--card);
  position: relative;
}
.post-list .post-card .excerpt {
  margin: 1rem 0;
}
@media screen and (max-width: 500px) {
  .post-list .post-card .excerpt {
    margin: 0.5rem 0;
  }
}
.post-list .post-card .excerpt >p {
  margin: 1rem 0;
  line-height: 1.5;
}
@media screen and (max-width: 500px) {
  .post-list .post-card .excerpt >p {
    margin: 0.5rem 0;
  }
}
.post-list .post-card .meta.cap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0.25rem 0;
  line-height: 1.5;
}
.post-list .post-card .meta.cap span+span {
  margin-left: 0.5rem;
}
.post-list .post-card .meta.cap span.pin {
  line-height: 0;
}
.post-list .post-card .meta.cap span.pin img {
  object-fit: contain;
  height: 1.5em;
}
.post-list .post-card:hover {
  box-shadow: 0 2px 8px rgba(113,113,122,0.12);
  transform: translateY(-2px) !important;
}
.post-list .post-card:hover img {
  transform: scale(1.02);
}
.post-list .md-text {
  padding: 1rem;
}
@media screen and (max-width: 500px) {
  .post-list .md-text {
    padding: 0.5rem 1rem;
  }
}
.post-list .md-text p {
  color: var(--text-p2);
  font-size: 0.875rem;
}
.post-list .post-card .post-cover {
  overflow: hidden;
  width: calc(100% + 2 * 1rem);
  border-radius: 0;
  margin-left: -1rem;
  margin-top: -1rem;
  margin-right: -1rem;
  background: var(--block);
}
.post-list .post-card .post-cover:not(.lazy) {
  transition: transform 1s ease-out;
  -moz-transition: transform 1s ease-out;
  -webkit-transition: transform 1s ease-out;
  -o-transition: transform 1s ease-out;
}
.post-list .post-card .post-cover img {
  object-fit: cover;
  width: 100%;
  border-radius: 0;
  height: 280px;
}
@media screen and (max-width: 900px) {
  .post-list .post-card .post-cover img {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .post-list .post-card .post-cover img {
    height: 220px;
  }
}
@media screen and (max-width: 425px) {
  .post-list .post-card .post-cover img {
    height: 200px;
  }
}
@media screen and (max-width: 375px) {
  .post-list .post-card .post-cover img {
    height: 180px;
  }
}
.post-list .post-card.post.photo .cover {
  position: relative;
  line-height: 0;
}
.post-list .post-card.post.photo .cover img {
  width: 100%;
}
.post-list .post-card.post.photo .cover .cover-info {
  padding: 1.5rem 1rem;
  position: absolute;
  line-height: 1.2;
  width: calc(100% - 1rem * 2);
  color: var(--text-revert);
}
.post-list .post-card.post.photo .cover .cover-info:not(.cover-no-shadow) {
  text-shadow: 1px 1px 2px var(--text-p0);
}

.post-list .post-card.post.photo .cover .cover-info[position=top] {
  top: 0;
}
.post-list .post-card.post.photo .cover .cover-info[position=top]:not(.cover-no-shadow) {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0));
}
.post-list .post-card.post.photo .cover .cover-info[position=bottom] {
  bottom: 0;
}
.post-list .post-card.post.photo .cover .cover-info[position=bottom]:not(.cover-no-shadow) {
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2));
}
.post-list .post-card.post.photo .cover .cover-info div+div {
  margin-top: 4px;
}
.post-list .post-card.post.photo .cover .cover-info .cap {
  font-size: 0.8125rem;
  color: unset;
}
.post-list .post-card.post.photo .cover .cover-info .title {
  font-weight: 500;
  font-size: 1.375rem;
}
@media screen and (max-width: 500px) {
  .post-list .post-card.post.photo .cover .cover-info {
    padding: 1rem;
  }
  .post-list .post-card.post.photo .cover .cover-info div+div {
    margin-top: 2px;
  }
  .post-list .post-card.post.photo .cover .cover-info .title {
    font-size: 1.125rem;
  }
  .post-list .post-card.post.photo .cover .cover-info .cap {
    font-size: 0.75rem;
  }
}
.post-list .post-card.post.photo h2 {
  margin: 0.25rem 0;
  font-size: 1.125rem;
}
.post-list .post-card.wiki article {
  display: flex;
  flex-wrap: wrap;
  transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  justify-content: center;
  padding: 1rem 0.5rem;
}
.post-list .post-card.wiki article .preview {
  display: flex;
  width: 200px;
  margin: 1rem 0.5rem;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .post-list .post-card.wiki article .preview {
    margin: 1rem;
  }
}
.post-list .post-card.wiki article .preview img {
  object-fit: contain;
}
.post-list .post-card.wiki article .preview img:not(.lazy) {
  transition: transform 0.75s ease-out;
  -moz-transition: transform 0.75s ease-out;
  -webkit-transition: transform 0.75s ease-out;
  -o-transition: transform 0.75s ease-out;
}
.post-list .post-card.wiki article .excerpt {
  margin: 1rem 0.5rem;
  min-width: 280px;
  flex: 1;
  overflow: hidden;
  word-wrap: break-word;
}
@media screen and (min-width: 950px) {
  .post-list .post-card.wiki article .excerpt {
    margin-right: 2rem;
  }
}
.post-list .post-card.wiki article .excerpt p:last-child {
  margin-bottom: 0;
}
.l_main {
  position: relative;
  padding-bottom: calc(1 * var(--gap-l));
}
@media screen and (min-width: 1400px) {
  .l_main {
    margin-left: calc(2 * var(--gap-l));
    margin-right: calc(2 * var(--gap-l) + var(--width-left) / 2);
  }
}
@media screen and (min-width: 667px) {
  .l_main {
    padding-top: calc(2 * var(--gap-l));
  }
}
@media screen and (max-width: 667px) {
  .l_main {
    padding-top: 1rem;
  }
}
.l_main header {
  margin: 2rem 1rem 1rem;
}
.l_main header .logo-wrap {
  margin: 0;
}
.md-text {
  max-width: 100%;
  padding: 0 1rem;
  margin-top: 1rem;
  color: var(--text-p1);
  line-height: 1.7;
  word-break: break-word;
}
.md-text:first-child {
  margin-top: 0;
}
.md-text.excerpt p {
  font-size: 0.875rem;
  margin: 1em 0;
}
h1.article-title {
  margin-top: 0.5em;
  margin-bottom: 1em;
  line-height: 1.2;
  color: var(--text-p0);
}
.md-text.content {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.md-text.content.indent >p:not([class]) {
  text-indent: calc(0.9375rem * 2);
  text-align: left;
}
.md-text.content.indent >p:not([class]) a {
  text-indent: 0;
}
.md-text.content.indent h1,
.md-text.content.indent h2,
.md-text.content.indent h3,
.md-text.content.indent h4,
.md-text.content.indent h5,
.md-text.content.indent h6 {
  text-align: center;
}
.md-text.content.indent >h2:not([class]) {
  align-self: center;
  border-bottom-style: dashed;
  border-bottom-color: #0078d4;
}
.md-text.content >:first-child:not(h1) {
  margin-top: 0;
}
.md-text.content h1:not(:first-child) {
  margin-top: 2em;
}
.md-text.content h2:first-child {
  margin-top: 0;
}
.md-text.content h2,
.md-text.content h3,
.md-text.content h4,
.md-text.content h5,
.md-text.content h6 {
  color: var(--text-p0);
  padding-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.md-text.content h2:hover a.headerlink:before,
.md-text.content h3:hover a.headerlink:before,
.md-text.content h4:hover a.headerlink:before,
.md-text.content h5:hover a.headerlink:before,
.md-text.content h6:hover a.headerlink:before {
  opacity: 1;
}
.md-text.content blockquote h2,
.md-text.content .tag-plugin h2,
.md-text.content blockquote h3,
.md-text.content .tag-plugin h3,
.md-text.content blockquote h4,
.md-text.content .tag-plugin h4,
.md-text.content blockquote h5,
.md-text.content .tag-plugin h5,
.md-text.content blockquote h6,
.md-text.content .tag-plugin h6 {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  padding-top: 0;
}
.md-text ul:not(:last-child),
.md-text ol:not(:last-child) {
  padding-bottom: 0.5rem;
  margin: 0;
}
.md-text blockquote p,
.md-text ul p,
.md-text ol p,
.md-text blockquote ul,
.md-text ul ul,
.md-text ol ul,
.md-text blockquote ol,
.md-text ul ol,
.md-text ol ol {
  font-size: 16px;
  line-height: 1.5;
}
.md-text p *,
.md-text blockquote *,
.md-text .tag-plugin *,
.md-text ul *,
.md-text ol *,
.md-text .highlight *,
.md-text table * {
  --gap-p: 0.5rem;
}
.md-text p,
.md-text ul,
.md-text ol {
  margin-top: calc(var(--gap-p) - 4px);
  margin-bottom: calc(var(--gap-p) - 4px);
}
.md-text .tag-plugin,
.md-text iframe {
  margin-top: var(--gap-p);
  margin-bottom: var(--gap-p);
}
.md-text iframe {
  display: block;
}
.md-text.content a.headerlink:before {
  opacity: 0;
  content: '#';
  position: absolute;
  margin-left: -0.6em;
}
.md-text.content h2 {
  margin-top: 2rem;
  border-bottom: 1px solid var(--block-border);
  font-weight: 400;
}
.md-text.content h3 {
  margin-top: 1.5rem;
  font-weight: 400;
}
.md-text.content h4,
.md-text.content h5,
.md-text.content h6 {
  font-weight: 500;
}
.md-text.content h1+h2 {
  margin-top: -0.5rem;
}
.md-text.content h2+h3 {
  margin-top: -0.5rem;
}
.md-text.content h3+h4 {
  margin-top: -0.5rem;
}
.md-text.content h4+h5 {
  margin-top: -0.5rem;
}
.md-text.content h5+h6 {
  margin-top: -0.5rem;
}
.md-text p {
  font-size: 0.9375rem;
}
.md-text pre {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.md-text .center {
  align-self: center;
}
.md-text>div {
  margin: var(--gap-p) 0;
}
.md-text img {
  border-radius: 6px;
  margin: auto;
  vertical-align: middle;
}
.md-text p:not([class]) a:not([class]),
.md-text li:not([class]) a:not([class]) {
  position: relative;
  padding: 2px 0;
  text-decoration: none;
  line-height: 1.2;
  word-break: keep-all;
}
.md-text p:not([class]) a:not([class]):after,
.md-text li:not([class]) a:not([class]):after {
  content: '';
  position: absolute;
  border-radius: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.8;
  background: var(--theme-link);
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.md-text p:not([class]) a:not([class]):hover,
.md-text li:not([class]) a:not([class]):hover {
  border-bottom: none;
  color: var(--theme-link);
}
.md-text p:not([class]) a:not([class]):hover:after,
.md-text li:not([class]) a:not([class]):hover:after {
  height: 100%;
  opacity: 0.2;
  bottom: 0;
  left: -2px;
  right: -2px;
}
img.lazy {
  transition: transform 0.5s ease-out, filter 0.28s ease-out;
  -moz-transition: transform 0.5s ease-out, filter 0.28s ease-out;
  -webkit-transition: transform 0.5s ease-out, filter 0.28s ease-out;
  -o-transition: transform 0.5s ease-out, filter 0.28s ease-out;
}
img.lazy:not(.loaded) {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
img.lazy.loaded,
img.lazy.error {
  filter: none;
  -webkit-filter: none;
}
.group-body .site-card .card-link>img {
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
.group-body .user-card .card-link>img {
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
}
:root {
  --swiper-theme-color: #0078d4 !important;
}
.swiper-container {
  width: 100%;
  border-radius: 4px;
  --gap-p: 2rem;
}
.swiper-container:not(.swiper-container-initialized) {
  display: none;
}
div.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-self: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 50%;
}
div.swiper-slide img {
  border-radius: 4px;
}
.swiper-container[width='max'] div.swiper-slide {
  width: 100%;
}
.swiper-container[width='min'] div.swiper-slide {
  width: 25%;
}
.swiper-button-prev,
.swiper-button-next {
  padding: 1rem 0.5rem;
  margin-top: -2rem !important;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  --swiper-theme-color: #000 !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff !important;
  --swiper-theme-color: #0078d4 !important;
}
img[fancybox='true'] {
  cursor: zoom-in;
}
.swiper-slide {
  cursor: zoom-in;
}
.highlight {
  position: relative;
}
.highlight .code .copy-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 0.5rem;
  opacity: 0;
  font-weight: 700;
  color: var(--theme);
  cursor: pointer;
}
.highlight:hover .copy-btn {
  opacity: 0.25;
}
.highlight .code .copy-btn:hover {
  color: var(--theme);
  opacity: 0.75;
}
.highlight .code .copy-btn.success {
  color: #3dc550;
  opacity: 0.75;
}
.highlight .code .copy-btn.warning {
  color: #fa6400;
  opacity: 0.75;
}
.search-wrapper {
  width: 100%;
}
.search-wrapper >.search-form {
  position: sticky;
  top: 1rem;
}
.search-wrapper .search-input {
  width: 100%;
  padding: 0.5rem 0.5rem;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid var(--card-border);
  background-color: var(--card);
  color: var(--text-p0);
  transition: border-bottom-color 0.2s ease-out, border-bottom-width 0.2s ease-out;
  -moz-transition: border-bottom-color 0.2s ease-out, border-bottom-width 0.2s ease-out;
  -webkit-transition: border-bottom-color 0.2s ease-out, border-bottom-width 0.2s ease-out;
  -o-transition: border-bottom-color 0.2s ease-out, border-bottom-width 0.2s ease-out;
  border-bottom: 1px solid #808080;
}
.search-wrapper .search-input:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--theme-highlight);
}
.search-wrapper.noresult {
  transition: border-bottom-color 0.2s ease-out;
  -moz-transition: border-bottom-color 0.2s ease-out;
  -webkit-transition: border-bottom-color 0.2s ease-out;
  -o-transition: border-bottom-color 0.2s ease-out;
}
.search-wrapper.noresult .search-input:hover {
  border-bottom-color: #c6180b;
}
.search-wrapper.noresult .search-input:focus {
  border-bottom-color: #c6180b;
}
.search-wrapper .search-no-result {
  display: none;
  margin: 1em auto;
  color: var(--text-p1);
  text-align: center;
  font-size: 0.875rem;
  padding: 2rem;
  border-radius: 8px;
}
.search-wrapper #search-result ul.search-result-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.search-wrapper #search-result li {
  margin: 1em auto;
}
.search-wrapper #search-result li:hover .search-result-title {
  color: #0078d4;
}
.search-wrapper #search-result .search-result-title {
  background-image: none;
  color: var(--text-p1);
  font-weight: bold;
  line-height: 1.2;
}
.search-wrapper #search-result .search-result-content {
  overflow: hidden;
  color: var(--text-p3);
  margin: 0.4em auto;
  max-height: 13em;
  text-align: justify;
  font-size: 0.75rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.search-wrapper #search-result .search-keyword {
  border-bottom: 1px dashed #0078d4;
  color: #0078d4;
  font-weight: bold;
}
.search-wrapper.noresult .search-no-result {
  display: block;
}
.widget-wrapper .search-form {
  top: 0;
}
.widget-wrapper .search-input {
  margin-top: 1rem;
  margin-bottom: -1rem;
}
.widget-wrapper #search-result,
.widget-wrapper .search-no-result {
  margin-top: 2rem;
}
.widget-wrapper:not(:first-child) .search-wrapper {
  margin-top: -1rem;
}
