:root {
  --width-main: 720px;
  --fsp: 17px;
  --fsh2: calc(var(--fsp) + 11px);
  --fsh3: calc(var(--fsp) + 7px);
  --fsh4: calc(var(--fsp) + 4px);
  --side-content-width: 224px;
  --gap-margin: 16px;
  --gap-padding: 16px;
  --gap-p: calc(17px + 4px);
  --gap-p-compact: calc(17px * 0.75);
}
@media screen and (min-width: 2048px) {
  :root {
    --width-main: 780px;
  }
}
@media screen and (min-width: 2560px) {
  :root {
    --width-main: 860px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --side-content-width: 188px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --side-content-width: 224px;
  }
}
:root {
  --gap-max: calc(var(--gap-margin) + var(--gap-padding));
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1rem 0;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-grid.is-single {
  display: flex !important;
  justify-content: center;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-grid.is-single .wikibox {
  max-width: 640px;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox {
  display: block !important;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  box-sizing: border-box;
  overflow: hidden;
  text-decoration: none;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.04);
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 20px;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-url {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.56); /* 浅一点的黑色（Light 固定） */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
/* 两列时左对齐 */
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-grid.is-single .wikibox-title {
  text-align: center;
/* 单列时居中 */
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-inline {
/* 关键：用 inline-flex + vertical-align: middle 实现行内垂直居中 */
  display: inline-flex !important;
  align-items: center; /* 内部文字在胶囊里垂直居中 */
  vertical-align: middle; /* 胶囊相对整行居中 */
  line-height: 1; /* 去掉多余的上/下行间距 */
  padding: 0.2em 0.6em; /* 上下对称，用 em 随字号缩放 */
  margin: 0 0.2em;
  border-radius: 0.65em;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.03);
  text-decoration: none;
  box-sizing: border-box;
  max-width: 34ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-inline::after {
  content: "🔗";
  margin-left: 0.45em;
  line-height: 1;
  opacity: 0.85;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikilink-broken {
  color: #d33;
  border-bottom: 1px dotted currentColor;
}
@media (max-width: 800px) {
  :where(.post-content,
  .post-body,
  .markdown-body,
  article,
  main) .wikibox-grid {
    grid-template-columns: 1fr !important;
  }
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox-grid.is-single .wikibox {
  width: clamp(360px, 92vw, 520px) !important;
  max-width: none !important; /* 让 clamp 生效 */
}
:root {
  --wikibox-accent: #25c2a0; /* 主色：明快的青绿色 */
  --wikibox-accent-hover: #189e81; /* 悬浮时稍深一点 */
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox .wikibox-title {
  color: var(--wikibox-accent) !important;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) a.wikibox-inline {
  color: var(--wikibox-accent) !important;
}
:where(.post-content,
.post-body,
.markdown-body,
article,
main) .wikibox:hover .wikibox-title,
main) a.wikibox-inline:hover,
main) a.wikibox-inline:focus {
  color: var(--wikibox-accent-hover) !important;
}
.tag-plugin.banner {
  height: 256px !important;
}
@media screen and (max-width: 667px) {
  .tag-plugin.banner {
    height: 188px !important;
  }
}
.md-text .tag-plugin.audio {
  text-align: center;
}
.md-text .tag-plugin.audio audio {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
:root {
  --hue: 338deg;
  --sat: 92%;
  --light: 74%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --accent: #b27ce4;
  --link: hsla(196deg 58% 48% / 1);
  --link-a20: hsla(196deg 58% 48% / 0.2);
  --background: hsla(210deg 20% 98% / 1);
  --card: #fff;
  --bg-a20: hsla(210deg 0% 100% / 0.2);
  --bg-a50: hsla(210deg 0% 100% / 0.5);
  --bg-a60: hsla(210deg 0% 100% / 0.6);
  --bg-a75: hsla(210deg 0% 100% / 0.75);
  --bg-a100: hsla(210deg 0% 100% / 1);
  --text: hsla(210deg 0% 0% / 1);
  --text-reverse: hsla(210deg 0% 100% / 1);
  --text-p1: hsla(210deg 0% 0% / 0.8);
  --text-p2: hsla(210deg 0% 0% / 0.7);
  --text-p3: hsla(210deg 0% 0% / 0.5);
  --text-p4: hsla(210deg 0% 0% / 0.4);
  --text-meta: hsla(210deg 0% 0% / 0.2);
  --text-code: hsla(210deg 0% 0% / 0.9);
  --text-a10: hsla(210deg 0% 0% / 0.1);
  --text-a20: hsla(210deg 0% 0% / 0.2);
  --block: hsla(210deg 50% 12% / 0.04);
  --block-border: hsla(210deg 50% 12% / 0.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: hsla(210deg 8% 12% / 1);
    --card: hsla(210deg 10% 24% / 1);
    --bg-a20: hsla(210deg 0% 0% / 0.2);
    --bg-a50: hsla(210deg 0% 0% / 0.5);
    --bg-a60: hsla(210deg 0% 0% / 0.6);
    --bg-a75: hsla(210deg 0% 0% / 0.75);
    --bg-a100: hsla(210deg 0% 0% / 1);
    --text: hsla(210deg 0% 100% / 1);
    --text-reverse: hsla(210deg 0% 0% / 1);
    --text-p1: hsla(210deg 0% 100% / 0.8);
    --text-p2: hsla(210deg 0% 100% / 0.7);
    --text-p3: hsla(210deg 0% 100% / 0.5);
    --text-p4: hsla(210deg 0% 100% / 0.4);
    --text-meta: hsla(210deg 0% 100% / 0.2);
    --text-code: hsla(210deg 0% 100% / 0.9);
    --text-a10: hsla(210deg 0% 100% / 0.1);
    --text-a20: hsla(210deg 0% 100% / 0.2);
    --block: hsla(210deg 24% 72% / 0.08);
    --block-border: hsla(210deg 24% 72% / 0.12);
    --text-code: hsla(20 75 60 / 1);
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 667px) {
  :root {
    --background: #000;
  }
}
:root[data-theme="light"] {
  --background: hsla(210deg 20% 98% / 1);
  --card: #fff;
  --bg-a20: hsla(210deg 0% 100% / 0.2);
  --bg-a50: hsla(210deg 0% 100% / 0.5);
  --bg-a60: hsla(210deg 0% 100% / 0.6);
  --bg-a75: hsla(210deg 0% 100% / 0.75);
  --bg-a100: hsla(210deg 0% 100% / 1);
  --text: hsla(210deg 0% 0% / 1);
  --text-reverse: hsla(210deg 0% 100% / 1);
  --text-p1: hsla(210deg 0% 0% / 0.8);
  --text-p2: hsla(210deg 0% 0% / 0.7);
  --text-p3: hsla(210deg 0% 0% / 0.5);
  --text-p4: hsla(210deg 0% 0% / 0.4);
  --text-meta: hsla(210deg 0% 0% / 0.2);
  --text-code: hsla(210deg 0% 0% / 0.9);
  --text-a10: hsla(210deg 0% 0% / 0.1);
  --text-a20: hsla(210deg 0% 0% / 0.2);
  --block: hsla(210deg 50% 12% / 0.04);
  --block-border: hsla(210deg 50% 12% / 0.06);
}
:root[data-theme="dark"] {
  --background: hsla(210deg 8% 12% / 1);
  --card: hsla(210deg 10% 24% / 1);
  --bg-a20: hsla(210deg 0% 0% / 0.2);
  --bg-a50: hsla(210deg 0% 0% / 0.5);
  --bg-a60: hsla(210deg 0% 0% / 0.6);
  --bg-a75: hsla(210deg 0% 0% / 0.75);
  --bg-a100: hsla(210deg 0% 0% / 1);
  --text: hsla(210deg 0% 100% / 1);
  --text-reverse: hsla(210deg 0% 0% / 1);
  --text-p1: hsla(210deg 0% 100% / 0.8);
  --text-p2: hsla(210deg 0% 100% / 0.7);
  --text-p3: hsla(210deg 0% 100% / 0.5);
  --text-p4: hsla(210deg 0% 100% / 0.4);
  --text-meta: hsla(210deg 0% 100% / 0.2);
  --text-code: hsla(210deg 0% 100% / 0.9);
  --text-a10: hsla(210deg 0% 100% / 0.1);
  --text-a20: hsla(210deg 0% 100% / 0.2);
  --block: hsla(210deg 24% 72% / 0.08);
  --block-border: hsla(210deg 24% 72% / 0.12);
  --text-code: hsla(20 75 60 / 1);
}
@media screen and (max-width: 667px) {
  :root[data-theme="dark"] {
    --background: #000;
  }
}
.tag-plugin {
  --theme-border: var(--block-border);
  --theme-block: var(--block);
  --theme-mark: var(--block);
  --theme-codeblock: var(--block);
}
.colorful[color='red'] {
  --hue: 4.105263157894738deg;
  --sat: 89.62264150943398%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 1);
  --link-a20: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 0.2);
  --theme-border: hsla(4.105263157894738deg 50% 80% / var(--alpha));
  --theme-block: hsla(4.105263157894738deg 90% 92% / var(--alpha));
  --theme-mark: hsla(4.105263157894738deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(4.105263157894738deg 50% 95% / var(--alpha));
  --text: hsla(4.105263157894738deg 55% 16% / 1);
  --text-p1: hsla(4.105263157894738deg 90% 20% / 1);
  --text-p2: hsla(4.105263157894738deg 90% 20% / 0.8);
  --text-p3: hsla(4.105263157894738deg 90% 20% / 0.6);
  --text-p4: hsla(4.105263157894738deg 90% 20% / 0.4);
  --link: hsla(4.105263157894738deg 95% 32% / 1);
  --link-a20: hsla(4.105263157894738deg 95% 32% / 0.2);
}
.colorful[color='orange'] {
  --hue: 24deg;
  --sat: 100%;
  --light: 49.01960784313725%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(24deg 100% 49.01960784313725% / 1);
  --link-a20: hsla(24deg 100% 49.01960784313725% / 0.2);
  --theme-border: hsla(24deg 50% 80% / var(--alpha));
  --theme-block: hsla(24deg 90% 92% / var(--alpha));
  --theme-mark: hsla(24deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(24deg 50% 95% / var(--alpha));
  --text: hsla(24deg 55% 16% / 1);
  --text-p1: hsla(24deg 90% 20% / 1);
  --text-p2: hsla(24deg 90% 20% / 0.8);
  --text-p3: hsla(24deg 90% 20% / 0.6);
  --text-p4: hsla(24deg 90% 20% / 0.4);
  --link: hsla(24deg 95% 32% / 1);
  --link-a20: hsla(24deg 95% 32% / 0.2);
}
.colorful[color='amber'] {
  --hue: 41.320754716981135deg;
  --sat: 100%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(41.320754716981135deg 100% 58.43137254901961% / 1);
  --link-a20: hsla(41.320754716981135deg 100% 58.43137254901961% / 0.2);
  --theme-border: hsla(41.320754716981135deg 50% 80% / var(--alpha));
  --theme-block: hsla(41.320754716981135deg 90% 92% / var(--alpha));
  --theme-mark: hsla(41.320754716981135deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(41.320754716981135deg 50% 95% / var(--alpha));
  --text: hsla(41.320754716981135deg 55% 16% / 1);
  --text-p1: hsla(41.320754716981135deg 90% 20% / 1);
  --text-p2: hsla(41.320754716981135deg 90% 20% / 0.8);
  --text-p3: hsla(41.320754716981135deg 90% 20% / 0.6);
  --text-p4: hsla(41.320754716981135deg 90% 20% / 0.4);
  --link: hsla(41.320754716981135deg 95% 32% / 1);
  --link-a20: hsla(41.320754716981135deg 95% 32% / 0.2);
}
.colorful[color='yellow'] {
  --hue: 50.96385542168675deg;
  --sat: 100%;
  --light: 67.45098039215686%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(50.96385542168675deg 100% 67.45098039215686% / 1);
  --link-a20: hsla(50.96385542168675deg 100% 67.45098039215686% / 0.2);
  --theme-border: hsla(50.96385542168675deg 50% 80% / var(--alpha));
  --theme-block: hsla(50.96385542168675deg 90% 92% / var(--alpha));
  --theme-mark: hsla(50.96385542168675deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(50.96385542168675deg 50% 95% / var(--alpha));
  --text: hsla(50.96385542168675deg 55% 16% / 1);
  --text-p1: hsla(50.96385542168675deg 90% 20% / 1);
  --text-p2: hsla(50.96385542168675deg 90% 20% / 0.8);
  --text-p3: hsla(50.96385542168675deg 90% 20% / 0.6);
  --text-p4: hsla(50.96385542168675deg 90% 20% / 0.4);
  --link: hsla(50.96385542168675deg 95% 32% / 1);
  --link-a20: hsla(50.96385542168675deg 95% 32% / 0.2);
}
.colorful[color='green'] {
  --hue: 128.38235294117646deg;
  --sat: 53.96825396825397%;
  --light: 50.588235294117645%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 1);
  --link-a20: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 0.2);
  --theme-border: hsla(128.38235294117646deg 50% 80% / var(--alpha));
  --theme-block: hsla(128.38235294117646deg 90% 92% / var(--alpha));
  --theme-mark: hsla(128.38235294117646deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(128.38235294117646deg 50% 95% / var(--alpha));
  --text: hsla(128.38235294117646deg 55% 16% / 1);
  --text-p1: hsla(128.38235294117646deg 90% 20% / 1);
  --text-p2: hsla(128.38235294117646deg 90% 20% / 0.8);
  --text-p3: hsla(128.38235294117646deg 90% 20% / 0.6);
  --text-p4: hsla(128.38235294117646deg 90% 20% / 0.4);
  --link: hsla(128.38235294117646deg 95% 32% / 1);
  --link-a20: hsla(128.38235294117646deg 95% 32% / 0.2);
}
.colorful[color='cyan'] {
  --hue: 192.53333333333333deg;
  --sat: 97.40259740259742%;
  --light: 54.70588235294118%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 1);
  --link-a20: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 0.2);
  --theme-border: hsla(192.53333333333333deg 50% 80% / var(--alpha));
  --theme-block: hsla(192.53333333333333deg 90% 92% / var(--alpha));
  --theme-mark: hsla(192.53333333333333deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(192.53333333333333deg 50% 95% / var(--alpha));
  --text: hsla(192.53333333333333deg 55% 16% / 1);
  --text-p1: hsla(192.53333333333333deg 90% 20% / 1);
  --text-p2: hsla(192.53333333333333deg 90% 20% / 0.8);
  --text-p3: hsla(192.53333333333333deg 90% 20% / 0.6);
  --text-p4: hsla(192.53333333333333deg 90% 20% / 0.4);
  --link: hsla(192.53333333333333deg 95% 32% / 1);
  --link-a20: hsla(192.53333333333333deg 95% 32% / 0.2);
}
.colorful[color='blue'] {
  --hue: 206.57142857142856deg;
  --sat: 89.74358974358974%;
  --light: 54.11764705882353%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 1);
  --link-a20: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 0.2);
  --theme-border: hsla(206.57142857142856deg 50% 80% / var(--alpha));
  --theme-block: hsla(206.57142857142856deg 90% 92% / var(--alpha));
  --theme-mark: hsla(206.57142857142856deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(206.57142857142856deg 50% 95% / var(--alpha));
  --text: hsla(206.57142857142856deg 55% 16% / 1);
  --text-p1: hsla(206.57142857142856deg 90% 20% / 1);
  --text-p2: hsla(206.57142857142856deg 90% 20% / 0.8);
  --text-p3: hsla(206.57142857142856deg 90% 20% / 0.6);
  --text-p4: hsla(206.57142857142856deg 90% 20% / 0.4);
  --link: hsla(206.57142857142856deg 95% 32% / 1);
  --link-a20: hsla(206.57142857142856deg 95% 32% / 0.2);
}
.colorful[color='purple'] {
  --hue: 291.24087591240874deg;
  --sat: 63.72093023255814%;
  --light: 42.15686274509804%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 1);
  --link-a20: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 0.2);
  --theme-border: hsla(291.24087591240874deg 50% 80% / var(--alpha));
  --theme-block: hsla(291.24087591240874deg 90% 92% / var(--alpha));
  --theme-mark: hsla(291.24087591240874deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(291.24087591240874deg 50% 95% / var(--alpha));
  --text: hsla(291.24087591240874deg 55% 16% / 1);
  --text-p1: hsla(291.24087591240874deg 90% 20% / 1);
  --text-p2: hsla(291.24087591240874deg 90% 20% / 0.8);
  --text-p3: hsla(291.24087591240874deg 90% 20% / 0.6);
  --text-p4: hsla(291.24087591240874deg 90% 20% / 0.4);
  --link: hsla(291.24087591240874deg 95% 32% / 1);
  --link-a20: hsla(291.24087591240874deg 95% 32% / 0.2);
}
.colorful[color='theme'] {
  --hue: 338deg;
  --sat: 92%;
  --light: 74%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(338deg 92% 74% / 1);
  --link-a20: hsla(338deg 92% 74% / 0.2);
  --theme-border: hsla(338deg 50% 80% / var(--alpha));
  --theme-block: hsla(338deg 90% 92% / var(--alpha));
  --theme-mark: hsla(338deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(338deg 50% 95% / var(--alpha));
  --text: hsla(338deg 55% 16% / 1);
  --text-p1: hsla(338deg 90% 20% / 1);
  --text-p2: hsla(338deg 90% 20% / 0.8);
  --text-p3: hsla(338deg 90% 20% / 0.6);
  --text-p4: hsla(338deg 90% 20% / 0.4);
  --link: hsla(338deg 95% 32% / 1);
  --link-a20: hsla(338deg 95% 32% / 0.2);
}
.colorful[color='accent'] {
  --hue: 271deg;
  --sat: 66%;
  --light: 69%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(271deg 66% 69% / 1);
  --link-a20: hsla(271deg 66% 69% / 0.2);
  --theme-border: hsla(271deg 50% 80% / var(--alpha));
  --theme-block: hsla(271deg 90% 92% / var(--alpha));
  --theme-mark: hsla(271deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(271deg 50% 95% / var(--alpha));
  --text: hsla(271deg 55% 16% / 1);
  --text-p1: hsla(271deg 90% 20% / 1);
  --text-p2: hsla(271deg 90% 20% / 0.8);
  --text-p3: hsla(271deg 90% 20% / 0.6);
  --text-p4: hsla(271deg 90% 20% / 0.4);
  --link: hsla(271deg 95% 32% / 1);
  --link-a20: hsla(271deg 95% 32% / 0.2);
}
.colorful[color='light'] {
  --theme: #fff;
  --theme-block: var(--theme);
  --theme-mark: var(--theme);
  --theme-codeblock: var(--theme);
  --background: hsla(210deg 20% 98% / 1);
  --card: #fff;
  --bg-a20: hsla(210deg 0% 100% / 0.2);
  --bg-a50: hsla(210deg 0% 100% / 0.5);
  --bg-a60: hsla(210deg 0% 100% / 0.6);
  --bg-a75: hsla(210deg 0% 100% / 0.75);
  --bg-a100: hsla(210deg 0% 100% / 1);
  --text: hsla(210deg 0% 0% / 1);
  --text-reverse: hsla(210deg 0% 100% / 1);
  --text-p1: hsla(210deg 0% 0% / 0.8);
  --text-p2: hsla(210deg 0% 0% / 0.7);
  --text-p3: hsla(210deg 0% 0% / 0.5);
  --text-p4: hsla(210deg 0% 0% / 0.4);
  --text-meta: hsla(210deg 0% 0% / 0.2);
  --text-code: hsla(210deg 0% 0% / 0.9);
  --text-a10: hsla(210deg 0% 0% / 0.1);
  --text-a20: hsla(210deg 0% 0% / 0.2);
  --block: hsla(210deg 50% 12% / 0.04);
  --block-border: hsla(210deg 50% 12% / 0.06);
}
.colorful[color='dark'] {
  --background: hsla(210deg 8% 12% / 1);
  --card: hsla(210deg 10% 24% / 1);
  --bg-a20: hsla(210deg 0% 0% / 0.2);
  --bg-a50: hsla(210deg 0% 0% / 0.5);
  --bg-a60: hsla(210deg 0% 0% / 0.6);
  --bg-a75: hsla(210deg 0% 0% / 0.75);
  --bg-a100: hsla(210deg 0% 0% / 1);
  --text: hsla(210deg 0% 100% / 1);
  --text-reverse: hsla(210deg 0% 0% / 1);
  --text-p1: hsla(210deg 0% 100% / 0.8);
  --text-p2: hsla(210deg 0% 100% / 0.7);
  --text-p3: hsla(210deg 0% 100% / 0.5);
  --text-p4: hsla(210deg 0% 100% / 0.4);
  --text-meta: hsla(210deg 0% 100% / 0.2);
  --text-code: hsla(210deg 0% 100% / 0.9);
  --text-a10: hsla(210deg 0% 100% / 0.1);
  --text-a20: hsla(210deg 0% 100% / 0.2);
  --block: hsla(210deg 24% 72% / 0.08);
  --block-border: hsla(210deg 24% 72% / 0.12);
  --text-code: hsla(20 75 60 / 1);
  --theme: #111;
  --theme-border: none;
  --theme-block: var(--theme);
  --theme-mark: var(--theme);
  --theme-codeblock: var(--theme);
}
@media screen and (max-width: 667px) {
  .colorful[color='dark'] {
    --background: #000;
  }
}
.colorful[color='warning'] {
  --hue: 50.96385542168675deg;
  --sat: 100%;
  --light: 67.45098039215686%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(50.96385542168675deg 100% 67.45098039215686% / 1);
  --link-a20: hsla(50.96385542168675deg 100% 67.45098039215686% / 0.2);
  --theme-border: hsla(50.96385542168675deg 50% 80% / var(--alpha));
  --theme-block: hsla(50.96385542168675deg 90% 92% / var(--alpha));
  --theme-mark: hsla(50.96385542168675deg 95% 80% / var(--alpha));
  --theme-codeblock: hsla(50.96385542168675deg 50% 95% / var(--alpha));
  --text: hsla(50.96385542168675deg 55% 16% / 1);
  --text-p1: hsla(50.96385542168675deg 90% 20% / 1);
  --text-p2: hsla(50.96385542168675deg 90% 20% / 0.8);
  --text-p3: hsla(50.96385542168675deg 90% 20% / 0.6);
  --text-p4: hsla(50.96385542168675deg 90% 20% / 0.4);
  --link: hsla(50.96385542168675deg 95% 32% / 1);
  --link-a20: hsla(50.96385542168675deg 95% 32% / 0.2);
  --background: hsla(210deg 20% 98% / 1);
  --card: #fff;
  --bg-a20: hsla(210deg 0% 100% / 0.2);
  --bg-a50: hsla(210deg 0% 100% / 0.5);
  --bg-a60: hsla(210deg 0% 100% / 0.6);
  --bg-a75: hsla(210deg 0% 100% / 0.75);
  --bg-a100: hsla(210deg 0% 100% / 1);
  --text: hsla(210deg 0% 0% / 1);
  --text-reverse: hsla(210deg 0% 100% / 1);
  --text-p1: hsla(210deg 0% 0% / 0.8);
  --text-p2: hsla(210deg 0% 0% / 0.7);
  --text-p3: hsla(210deg 0% 0% / 0.5);
  --text-p4: hsla(210deg 0% 0% / 0.4);
  --text-meta: hsla(210deg 0% 0% / 0.2);
  --text-code: hsla(210deg 0% 0% / 0.9);
  --text-a10: hsla(210deg 0% 0% / 0.1);
  --text-a20: hsla(210deg 0% 0% / 0.2);
  --block: hsla(210deg 50% 12% / 0.04);
  --block-border: hsla(210deg 50% 12% / 0.06);
  --link: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 1);
  --link-a20: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 0.2);
  --theme-border: none;
  --theme-block: var(--theme);
  --text-code: var(--text-p1);
}
.colorful[color='error'] {
  --hue: 4.105263157894738deg;
  --sat: 89.62264150943398%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 1);
  --link-a20: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 0.2);
  --theme-border: hsla(4.105263157894738deg 40% 24% / var(--alpha));
  --theme-block: hsla(4.105263157894738deg 24% 24% / var(--alpha));
  --theme-mark: hsla(4.105263157894738deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(4.105263157894738deg 12% 24% / var(--alpha));
  --text: hsla(4.105263157894738deg 50% 75% / 1);
  --text-p1: hsla(4.105263157894738deg 80% 80% / 1);
  --text-p2: hsla(4.105263157894738deg 80% 80% / 0.8);
  --text-p3: hsla(4.105263157894738deg 80% 80% / 0.6);
  --text-p4: hsla(4.105263157894738deg 80% 80% / 0.4);
  --link: hsla(4.105263157894738deg 80% 60% / 1);
  --link-a20: hsla(4.105263157894738deg 80% 60% / 0.2);
  --background: hsla(210deg 8% 12% / 1);
  --card: hsla(210deg 10% 24% / 1);
  --bg-a20: hsla(210deg 0% 0% / 0.2);
  --bg-a50: hsla(210deg 0% 0% / 0.5);
  --bg-a60: hsla(210deg 0% 0% / 0.6);
  --bg-a75: hsla(210deg 0% 0% / 0.75);
  --bg-a100: hsla(210deg 0% 0% / 1);
  --text: hsla(210deg 0% 100% / 1);
  --text-reverse: hsla(210deg 0% 0% / 1);
  --text-p1: hsla(210deg 0% 100% / 0.8);
  --text-p2: hsla(210deg 0% 100% / 0.7);
  --text-p3: hsla(210deg 0% 100% / 0.5);
  --text-p4: hsla(210deg 0% 100% / 0.4);
  --text-meta: hsla(210deg 0% 100% / 0.2);
  --text-code: hsla(210deg 0% 100% / 0.9);
  --text-a10: hsla(210deg 0% 100% / 0.1);
  --text-a20: hsla(210deg 0% 100% / 0.2);
  --block: hsla(210deg 24% 72% / 0.08);
  --block-border: hsla(210deg 24% 72% / 0.12);
  --text-code: hsla(20 75 60 / 1);
  --link: hsla(50.96385542168675deg 100% 67.45098039215686% / 1);
  --link-a20: hsla(50.96385542168675deg 100% 67.45098039215686% / 0.2);
  --theme-border: none;
  --theme-block: var(--theme);
  --text-code: var(--text-p1);
}
@media screen and (max-width: 667px) {
  .colorful[color='error'] {
    --background: #000;
  }
}
:root[data-theme="dark"] .tag-plugin.tag {
  --hue: 338deg;
  --sat: 92%;
  --light: 74%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(338deg 92% 74% / 1);
  --link-a20: hsla(338deg 92% 74% / 0.2);
  --theme-border: hsla(338deg 40% 24% / var(--alpha));
  --theme-block: hsla(338deg 24% 24% / var(--alpha));
  --theme-mark: hsla(338deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(338deg 12% 24% / var(--alpha));
  --text: hsla(338deg 50% 75% / 1);
  --text-p1: hsla(338deg 80% 80% / 1);
  --text-p2: hsla(338deg 80% 80% / 0.8);
  --text-p3: hsla(338deg 80% 80% / 0.6);
  --text-p4: hsla(338deg 80% 80% / 0.4);
  --link: hsla(338deg 80% 60% / 1);
  --link-a20: hsla(338deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='red'] {
  --hue: 4.105263157894738deg;
  --sat: 89.62264150943398%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 1);
  --link-a20: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 0.2);
  --theme-border: hsla(4.105263157894738deg 40% 24% / var(--alpha));
  --theme-block: hsla(4.105263157894738deg 24% 24% / var(--alpha));
  --theme-mark: hsla(4.105263157894738deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(4.105263157894738deg 12% 24% / var(--alpha));
  --text: hsla(4.105263157894738deg 50% 75% / 1);
  --text-p1: hsla(4.105263157894738deg 80% 80% / 1);
  --text-p2: hsla(4.105263157894738deg 80% 80% / 0.8);
  --text-p3: hsla(4.105263157894738deg 80% 80% / 0.6);
  --text-p4: hsla(4.105263157894738deg 80% 80% / 0.4);
  --link: hsla(4.105263157894738deg 80% 60% / 1);
  --link-a20: hsla(4.105263157894738deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='orange'] {
  --hue: 24deg;
  --sat: 100%;
  --light: 49.01960784313725%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(24deg 100% 49.01960784313725% / 1);
  --link-a20: hsla(24deg 100% 49.01960784313725% / 0.2);
  --theme-border: hsla(24deg 40% 24% / var(--alpha));
  --theme-block: hsla(24deg 24% 24% / var(--alpha));
  --theme-mark: hsla(24deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(24deg 12% 24% / var(--alpha));
  --text: hsla(24deg 50% 75% / 1);
  --text-p1: hsla(24deg 80% 80% / 1);
  --text-p2: hsla(24deg 80% 80% / 0.8);
  --text-p3: hsla(24deg 80% 80% / 0.6);
  --text-p4: hsla(24deg 80% 80% / 0.4);
  --link: hsla(24deg 80% 60% / 1);
  --link-a20: hsla(24deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='amber'] {
  --hue: 41.320754716981135deg;
  --sat: 100%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(41.320754716981135deg 100% 58.43137254901961% / 1);
  --link-a20: hsla(41.320754716981135deg 100% 58.43137254901961% / 0.2);
  --theme-border: hsla(41.320754716981135deg 40% 24% / var(--alpha));
  --theme-block: hsla(41.320754716981135deg 24% 24% / var(--alpha));
  --theme-mark: hsla(41.320754716981135deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(41.320754716981135deg 12% 24% / var(--alpha));
  --text: hsla(41.320754716981135deg 50% 75% / 1);
  --text-p1: hsla(41.320754716981135deg 80% 80% / 1);
  --text-p2: hsla(41.320754716981135deg 80% 80% / 0.8);
  --text-p3: hsla(41.320754716981135deg 80% 80% / 0.6);
  --text-p4: hsla(41.320754716981135deg 80% 80% / 0.4);
  --link: hsla(41.320754716981135deg 80% 60% / 1);
  --link-a20: hsla(41.320754716981135deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='yellow'] {
  --hue: 50.96385542168675deg;
  --sat: 100%;
  --light: 67.45098039215686%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(50.96385542168675deg 100% 67.45098039215686% / 1);
  --link-a20: hsla(50.96385542168675deg 100% 67.45098039215686% / 0.2);
  --theme-border: hsla(50.96385542168675deg 40% 24% / var(--alpha));
  --theme-block: hsla(50.96385542168675deg 24% 24% / var(--alpha));
  --theme-mark: hsla(50.96385542168675deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(50.96385542168675deg 12% 24% / var(--alpha));
  --text: hsla(50.96385542168675deg 50% 75% / 1);
  --text-p1: hsla(50.96385542168675deg 80% 80% / 1);
  --text-p2: hsla(50.96385542168675deg 80% 80% / 0.8);
  --text-p3: hsla(50.96385542168675deg 80% 80% / 0.6);
  --text-p4: hsla(50.96385542168675deg 80% 80% / 0.4);
  --link: hsla(50.96385542168675deg 80% 60% / 1);
  --link-a20: hsla(50.96385542168675deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='green'] {
  --hue: 128.38235294117646deg;
  --sat: 53.96825396825397%;
  --light: 50.588235294117645%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 1);
  --link-a20: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 0.2);
  --theme-border: hsla(128.38235294117646deg 40% 24% / var(--alpha));
  --theme-block: hsla(128.38235294117646deg 24% 24% / var(--alpha));
  --theme-mark: hsla(128.38235294117646deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(128.38235294117646deg 12% 24% / var(--alpha));
  --text: hsla(128.38235294117646deg 50% 75% / 1);
  --text-p1: hsla(128.38235294117646deg 80% 80% / 1);
  --text-p2: hsla(128.38235294117646deg 80% 80% / 0.8);
  --text-p3: hsla(128.38235294117646deg 80% 80% / 0.6);
  --text-p4: hsla(128.38235294117646deg 80% 80% / 0.4);
  --link: hsla(128.38235294117646deg 80% 60% / 1);
  --link-a20: hsla(128.38235294117646deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='cyan'] {
  --hue: 192.53333333333333deg;
  --sat: 97.40259740259742%;
  --light: 54.70588235294118%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 1);
  --link-a20: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 0.2);
  --theme-border: hsla(192.53333333333333deg 40% 24% / var(--alpha));
  --theme-block: hsla(192.53333333333333deg 24% 24% / var(--alpha));
  --theme-mark: hsla(192.53333333333333deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(192.53333333333333deg 12% 24% / var(--alpha));
  --text: hsla(192.53333333333333deg 50% 75% / 1);
  --text-p1: hsla(192.53333333333333deg 80% 80% / 1);
  --text-p2: hsla(192.53333333333333deg 80% 80% / 0.8);
  --text-p3: hsla(192.53333333333333deg 80% 80% / 0.6);
  --text-p4: hsla(192.53333333333333deg 80% 80% / 0.4);
  --link: hsla(192.53333333333333deg 80% 60% / 1);
  --link-a20: hsla(192.53333333333333deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='blue'] {
  --hue: 206.57142857142856deg;
  --sat: 89.74358974358974%;
  --light: 54.11764705882353%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 1);
  --link-a20: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 0.2);
  --theme-border: hsla(206.57142857142856deg 40% 24% / var(--alpha));
  --theme-block: hsla(206.57142857142856deg 24% 24% / var(--alpha));
  --theme-mark: hsla(206.57142857142856deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(206.57142857142856deg 12% 24% / var(--alpha));
  --text: hsla(206.57142857142856deg 50% 75% / 1);
  --text-p1: hsla(206.57142857142856deg 80% 80% / 1);
  --text-p2: hsla(206.57142857142856deg 80% 80% / 0.8);
  --text-p3: hsla(206.57142857142856deg 80% 80% / 0.6);
  --text-p4: hsla(206.57142857142856deg 80% 80% / 0.4);
  --link: hsla(206.57142857142856deg 80% 60% / 1);
  --link-a20: hsla(206.57142857142856deg 80% 60% / 0.2);
}
:root[data-theme="dark"] .colorful[color='purple'] {
  --hue: 291.24087591240874deg;
  --sat: 63.72093023255814%;
  --light: 42.15686274509804%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  --link: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 1);
  --link-a20: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 0.2);
  --theme-border: hsla(291.24087591240874deg 40% 24% / var(--alpha));
  --theme-block: hsla(291.24087591240874deg 24% 24% / var(--alpha));
  --theme-mark: hsla(291.24087591240874deg 24% 24% / var(--alpha));
  --theme-codeblock: hsla(291.24087591240874deg 12% 24% / var(--alpha));
  --text: hsla(291.24087591240874deg 50% 75% / 1);
  --text-p1: hsla(291.24087591240874deg 80% 80% / 1);
  --text-p2: hsla(291.24087591240874deg 80% 80% / 0.8);
  --text-p3: hsla(291.24087591240874deg 80% 80% / 0.6);
  --text-p4: hsla(291.24087591240874deg 80% 80% / 0.4);
  --link: hsla(291.24087591240874deg 80% 60% / 1);
  --link-a20: hsla(291.24087591240874deg 80% 60% / 0.2);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .tag-plugin.tag {
    --hue: 338deg;
    --sat: 92%;
    --light: 74%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(338deg 92% 74% / 1);
    --link-a20: hsla(338deg 92% 74% / 0.2);
    --theme-border: hsla(338deg 40% 24% / var(--alpha));
    --theme-block: hsla(338deg 24% 24% / var(--alpha));
    --theme-mark: hsla(338deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(338deg 12% 24% / var(--alpha));
    --text: hsla(338deg 50% 75% / 1);
    --text-p1: hsla(338deg 80% 80% / 1);
    --text-p2: hsla(338deg 80% 80% / 0.8);
    --text-p3: hsla(338deg 80% 80% / 0.6);
    --text-p4: hsla(338deg 80% 80% / 0.4);
    --link: hsla(338deg 80% 60% / 1);
    --link-a20: hsla(338deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='red'] {
    --hue: 4.105263157894738deg;
    --sat: 89.62264150943398%;
    --light: 58.43137254901961%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 1);
    --link-a20: hsla(4.105263157894738deg 89.62264150943398% 58.43137254901961% / 0.2);
    --theme-border: hsla(4.105263157894738deg 40% 24% / var(--alpha));
    --theme-block: hsla(4.105263157894738deg 24% 24% / var(--alpha));
    --theme-mark: hsla(4.105263157894738deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(4.105263157894738deg 12% 24% / var(--alpha));
    --text: hsla(4.105263157894738deg 50% 75% / 1);
    --text-p1: hsla(4.105263157894738deg 80% 80% / 1);
    --text-p2: hsla(4.105263157894738deg 80% 80% / 0.8);
    --text-p3: hsla(4.105263157894738deg 80% 80% / 0.6);
    --text-p4: hsla(4.105263157894738deg 80% 80% / 0.4);
    --link: hsla(4.105263157894738deg 80% 60% / 1);
    --link-a20: hsla(4.105263157894738deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='orange'] {
    --hue: 24deg;
    --sat: 100%;
    --light: 49.01960784313725%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(24deg 100% 49.01960784313725% / 1);
    --link-a20: hsla(24deg 100% 49.01960784313725% / 0.2);
    --theme-border: hsla(24deg 40% 24% / var(--alpha));
    --theme-block: hsla(24deg 24% 24% / var(--alpha));
    --theme-mark: hsla(24deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(24deg 12% 24% / var(--alpha));
    --text: hsla(24deg 50% 75% / 1);
    --text-p1: hsla(24deg 80% 80% / 1);
    --text-p2: hsla(24deg 80% 80% / 0.8);
    --text-p3: hsla(24deg 80% 80% / 0.6);
    --text-p4: hsla(24deg 80% 80% / 0.4);
    --link: hsla(24deg 80% 60% / 1);
    --link-a20: hsla(24deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='amber'] {
    --hue: 41.320754716981135deg;
    --sat: 100%;
    --light: 58.43137254901961%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(41.320754716981135deg 100% 58.43137254901961% / 1);
    --link-a20: hsla(41.320754716981135deg 100% 58.43137254901961% / 0.2);
    --theme-border: hsla(41.320754716981135deg 40% 24% / var(--alpha));
    --theme-block: hsla(41.320754716981135deg 24% 24% / var(--alpha));
    --theme-mark: hsla(41.320754716981135deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(41.320754716981135deg 12% 24% / var(--alpha));
    --text: hsla(41.320754716981135deg 50% 75% / 1);
    --text-p1: hsla(41.320754716981135deg 80% 80% / 1);
    --text-p2: hsla(41.320754716981135deg 80% 80% / 0.8);
    --text-p3: hsla(41.320754716981135deg 80% 80% / 0.6);
    --text-p4: hsla(41.320754716981135deg 80% 80% / 0.4);
    --link: hsla(41.320754716981135deg 80% 60% / 1);
    --link-a20: hsla(41.320754716981135deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='yellow'] {
    --hue: 50.96385542168675deg;
    --sat: 100%;
    --light: 67.45098039215686%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(50.96385542168675deg 100% 67.45098039215686% / 1);
    --link-a20: hsla(50.96385542168675deg 100% 67.45098039215686% / 0.2);
    --theme-border: hsla(50.96385542168675deg 40% 24% / var(--alpha));
    --theme-block: hsla(50.96385542168675deg 24% 24% / var(--alpha));
    --theme-mark: hsla(50.96385542168675deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(50.96385542168675deg 12% 24% / var(--alpha));
    --text: hsla(50.96385542168675deg 50% 75% / 1);
    --text-p1: hsla(50.96385542168675deg 80% 80% / 1);
    --text-p2: hsla(50.96385542168675deg 80% 80% / 0.8);
    --text-p3: hsla(50.96385542168675deg 80% 80% / 0.6);
    --text-p4: hsla(50.96385542168675deg 80% 80% / 0.4);
    --link: hsla(50.96385542168675deg 80% 60% / 1);
    --link-a20: hsla(50.96385542168675deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='green'] {
    --hue: 128.38235294117646deg;
    --sat: 53.96825396825397%;
    --light: 50.588235294117645%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 1);
    --link-a20: hsla(128.38235294117646deg 53.96825396825397% 50.588235294117645% / 0.2);
    --theme-border: hsla(128.38235294117646deg 40% 24% / var(--alpha));
    --theme-block: hsla(128.38235294117646deg 24% 24% / var(--alpha));
    --theme-mark: hsla(128.38235294117646deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(128.38235294117646deg 12% 24% / var(--alpha));
    --text: hsla(128.38235294117646deg 50% 75% / 1);
    --text-p1: hsla(128.38235294117646deg 80% 80% / 1);
    --text-p2: hsla(128.38235294117646deg 80% 80% / 0.8);
    --text-p3: hsla(128.38235294117646deg 80% 80% / 0.6);
    --text-p4: hsla(128.38235294117646deg 80% 80% / 0.4);
    --link: hsla(128.38235294117646deg 80% 60% / 1);
    --link-a20: hsla(128.38235294117646deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='cyan'] {
    --hue: 192.53333333333333deg;
    --sat: 97.40259740259742%;
    --light: 54.70588235294118%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 1);
    --link-a20: hsla(192.53333333333333deg 97.40259740259742% 54.70588235294118% / 0.2);
    --theme-border: hsla(192.53333333333333deg 40% 24% / var(--alpha));
    --theme-block: hsla(192.53333333333333deg 24% 24% / var(--alpha));
    --theme-mark: hsla(192.53333333333333deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(192.53333333333333deg 12% 24% / var(--alpha));
    --text: hsla(192.53333333333333deg 50% 75% / 1);
    --text-p1: hsla(192.53333333333333deg 80% 80% / 1);
    --text-p2: hsla(192.53333333333333deg 80% 80% / 0.8);
    --text-p3: hsla(192.53333333333333deg 80% 80% / 0.6);
    --text-p4: hsla(192.53333333333333deg 80% 80% / 0.4);
    --link: hsla(192.53333333333333deg 80% 60% / 1);
    --link-a20: hsla(192.53333333333333deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='blue'] {
    --hue: 206.57142857142856deg;
    --sat: 89.74358974358974%;
    --light: 54.11764705882353%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 1);
    --link-a20: hsla(206.57142857142856deg 89.74358974358974% 54.11764705882353% / 0.2);
    --theme-border: hsla(206.57142857142856deg 40% 24% / var(--alpha));
    --theme-block: hsla(206.57142857142856deg 24% 24% / var(--alpha));
    --theme-mark: hsla(206.57142857142856deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(206.57142857142856deg 12% 24% / var(--alpha));
    --text: hsla(206.57142857142856deg 50% 75% / 1);
    --text-p1: hsla(206.57142857142856deg 80% 80% / 1);
    --text-p2: hsla(206.57142857142856deg 80% 80% / 0.8);
    --text-p3: hsla(206.57142857142856deg 80% 80% / 0.6);
    --text-p4: hsla(206.57142857142856deg 80% 80% / 0.4);
    --link: hsla(206.57142857142856deg 80% 60% / 1);
    --link-a20: hsla(206.57142857142856deg 80% 60% / 0.2);
  }
  :root:not([data-theme]) .colorful[color='purple'] {
    --hue: 291.24087591240874deg;
    --sat: 63.72093023255814%;
    --light: 42.15686274509804%;
    --alpha: 1;
    --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
    --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
    --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
    --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
    --link: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 1);
    --link-a20: hsla(291.24087591240874deg 63.72093023255814% 42.15686274509804% / 0.2);
    --theme-border: hsla(291.24087591240874deg 40% 24% / var(--alpha));
    --theme-block: hsla(291.24087591240874deg 24% 24% / var(--alpha));
    --theme-mark: hsla(291.24087591240874deg 24% 24% / var(--alpha));
    --theme-codeblock: hsla(291.24087591240874deg 12% 24% / var(--alpha));
    --text: hsla(291.24087591240874deg 50% 75% / 1);
    --text-p1: hsla(291.24087591240874deg 80% 80% / 1);
    --text-p2: hsla(291.24087591240874deg 80% 80% / 0.8);
    --text-p3: hsla(291.24087591240874deg 80% 80% / 0.6);
    --text-p4: hsla(291.24087591240874deg 80% 80% / 0.4);
    --link: hsla(291.24087591240874deg 80% 60% / 1);
    --link-a20: hsla(291.24087591240874deg 80% 60% / 0.2);
  }
}
pre {
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  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(--link);
}
a:hover {
  color: var(--accent);
}
.md-text p:not([class]) {
  text-align: left;
}
hr {
  color: var(--text-meta);
  opacity: 0.1;
}
img {
  max-width: 100%;
}
li {
  font-size: calc(var(--fsp) - 1px);
}
ul,
ol {
  padding-left: var(--fsp);
}
table:not([class]) {
  border-collapse: collapse;
  overflow: auto;
  margin: 1rem 0;
  max-width: 100%;
  vertical-align: text-top;
  --fsp: calc(17px - 2px);
  font-size: var(--fsp);
  display: table;
}
table:not([class])::-webkit-scrollbar {
  height: 0;
  width: 0;
}
table:not([class])::-webkit-scrollbar-track-piece {
  background: transparent;
}
table:not([class])::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
table:not([class])::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
table:not([class]) th {
  background: var(--block);
  border-top: 1px solid var(--block-border);
  border-bottom: 1px solid var(--block-border);
}
table:not([class]) td,
table:not([class]) th {
  padding: 4px 1em;
  line-height: 1.5;
}
table:not([class]) tr {
  border-bottom: 1px dashed var(--block-border);
}
table:not([class]) tr:hover {
  background: var(--block);
}
@media screen and (min-width: 667px) {
  table:not([class]) {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  table:not([class]) {
    display: block;
  }
  table:not([class]) tr {
    word-break: keep-all;
    white-space: nowrap;
  }
}
blockquote {
  display: block;
  margin-left: 0;
  margin-right: 0;
  padding: 0 var(--fsp);
  color: var(--text-p3);
  position: relative;
}
blockquote:before {
  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;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 1px;
  left: 0;
  opacity: 0.5;
  background: var(--text-meta);
}
blockquote:hover:before {
  background: var(--theme);
}
:root {
  --blur-px: 12px;
  --blur-bg: var(--bg-a50);
  --blur-sat: 300%;
}
.blur {
  background-color: var(--blur-bg);
}
@supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
  .blur {
    background-color: var(--blur-bg) !important;
    backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
    -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  }
}
.blur:hover {
  background-color: 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;
  background: none;
}
a.button {
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  user-select: none;
}
a.button.theme {
  background: var(--theme);
  color: var(--card);
}
a.button.theme:hover {
  background: var(--accent);
}
a.button.start {
  border-radius: 100px;
  background: var(--text-p1);
  color: var(--card);
}
a[onclick]:hover {
  cursor: pointer;
}
a.button.start.gradient {
  position: relative;
}
:root[data-theme="dark"] a.button.start.gradient {
  transition: 0.38s ease-out;
  z-index: 0;
  background: linear-gradient(to right, #4c95fa, #38c9fa, #24f9c4, #24f9c4, #38c9fa, #4c95fa);
  background-size: 1000%;
  color: #fff;
  text-shadow: 0 0 1px rgba(0,0,0,0.12);
  animation: glow 60s linear infinite;
}
:root[data-theme="dark"] a.button.start.gradient:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100px;
  background: inherit;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.5;
  transition: 0.38s ease-out;
}
:root[data-theme="dark"] a.button.start.gradient:hover:after {
  filter: blur(36px);
  opacity: 1;
}
@-moz-keyframes glow {
  from {
    background-position: 0%;
  }
  to {
    background-position: 1000%;
  }
}
@-webkit-keyframes glow {
  from {
    background-position: 0%;
  }
  to {
    background-position: 1000%;
  }
}
@-o-keyframes glow {
  from {
    background-position: 0%;
  }
  to {
    background-position: 1000%;
  }
}
@keyframes glow {
  from {
    background-position: 0%;
  }
  to {
    background-position: 1000%;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) a.button.start.gradient {
    transition: 0.38s ease-out;
    z-index: 0;
    background: linear-gradient(to right, #4c95fa, #38c9fa, #24f9c4, #24f9c4, #38c9fa, #4c95fa);
    background-size: 1000%;
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,0.12);
    animation: glow 60s linear infinite;
  }
  :root:not([data-theme]) a.button.start.gradient:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 100px;
    background: inherit;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.5;
    transition: 0.38s ease-out;
  }
  :root:not([data-theme]) a.button.start.gradient:hover:after {
    filter: blur(36px);
    opacity: 1;
  }
@-moz-keyframes glow {
    from {
      background-position: 0%;
    }
    to {
      background-position: 1000%;
    }
}
@-webkit-keyframes glow {
    from {
      background-position: 0%;
    }
    to {
      background-position: 1000%;
    }
}
@-o-keyframes glow {
    from {
      background-position: 0%;
    }
    to {
      background-position: 1000%;
    }
}
@keyframes glow {
    from {
      background-position: 0%;
    }
    to {
      background-position: 1000%;
    }
}
}
.canonical-tip {
  position: fixed;
  text-align: center;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  background-color: var(--card);
  color: var(--text-p1);
  font-size: 1rem;
  font-family: #fff8e1;
  z-index: 9999999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.1);
  border-radius: 6px;
}
.canonical-tip .headline {
  font-size: calc(17px + 11px);
}
.canonical-tip a {
  display: block;
  color: inherit;
  padding: 1rem 2rem;
}
.canonical-tip.unofficial {
  background-color: #f43;
  color: #fff;
  animation: breathe 3s ease-in-out infinite;
}
@-moz-keyframes breathe {
  0% {
    background-color: #f43;
  }
  50% {
    background-color: #990d00;
  }
  100% {
    background-color: #f43;
  }
}
@-webkit-keyframes breathe {
  0% {
    background-color: #f43;
  }
  50% {
    background-color: #990d00;
  }
  100% {
    background-color: #f43;
  }
}
@-o-keyframes breathe {
  0% {
    background-color: #f43;
  }
  50% {
    background-color: #990d00;
  }
  100% {
    background-color: #f43;
  }
}
@keyframes breathe {
  0% {
    background-color: #f43;
  }
  50% {
    background-color: #990d00;
  }
  100% {
    background-color: #f43;
  }
}
.cap {
  font-weight: 500;
  font-size: 0.8125rem;
  scrollbar-width: none;
  color: var(--text-p2);
}
.cap.blue {
  color: #0d87e9;
}
.cap.cyan {
  color: #03c3f5;
}
.cap.theme {
  color: var(--theme);
}
.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;
  grid-column-end: span 3;
  --inset: 2rem;
  right: 0;
  bottom: calc(var(--inset) * 2);
  margin-left: auto;
  margin-right: var(--inset);
  float: right;
  z-index: 999999;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 64px;
  overflow: hidden;
  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;
  box-shadow: 0 0 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  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;
  text-shadow: 0 0 4px #fff, 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.6);
}
@media screen and (min-width: 667px) {
  .float-panel {
    margin-right: 3rem;
  }
}
.float-panel:before,
.float-panel:after {
  border-radius: 64px;
}
@media (prefers-color-scheme: dark) {
  .float-panel {
    text-shadow: 0 0 2px rgba(0,0,0,0.2), 0 0 4px rgba(0,0,0,0.4);
  }
}
.float-panel nav a:not(.active,
.float-panel :hover) {
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 4px #fff);
}
@media (prefers-color-scheme: dark) {
  .float-panel nav a:not(.active,
  .float-panel :hover) {
    filter: none;
  }
}
.float-panel:before,
.float-panel:after {
  z-index: -1;
  position: absolute;
  pointer-events: none;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 64px;
}
.float-panel:before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.3);
  margin: 1px;
}
@media (prefers-color-scheme: dark) {
  .float-panel:before {
    background: rgba(255,255,255,0.2);
  }
}
.float-panel:after {
  --blur-px: 16px;
  --blur-sat: 300%;
  backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  mask: linear-gradient(#fff, 20%, transparent, 80%, #fff), linear-gradient(90deg, #fff, 20%, transparent, 80%, #fff);
  -webkit-mask-image: linear-gradient(#fff, 20%, transparent, 80%, #fff), linear-gradient(90deg, #fff, 20%, transparent, 80%, #fff);
  box-shadow: inset 0 0 4px 1px rgba(255,255,255,0.5);
  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;
}
@media (prefers-color-scheme: dark) {
  .float-panel:after {
    box-shadow: inset 0 0 2px 1px rgba(255,255,255,0.2);
  }
}
.float-panel button {
  cursor: pointer;
  color: var(--text);
  background: none;
  width: 48px;
  height: 48px;
  line-height: 0;
  font-size: 28px;
  margin: 0;
  display: flex;
}
.float-panel button >* {
  width: auto;
  height: 28px;
}
.float-panel button >* path#sep {
  transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
}
.l_body[leftbar] .float-panel,
.l_body[rightbar] .float-panel {
  box-shadow: 0 0 4px -1px var(--theme), 0 0 16px -4px var(--theme), 0 0 32px -12px var(--theme), 0 0 128px -32px var(--theme);
}
.l_body[leftbar] .float-panel:before,
.l_body[rightbar] .float-panel:before {
  background: var(--bg-a50);
}
.l_body[leftbar] .float-panel button.leftbar-toggle {
  color: var(--theme);
}
.l_body[leftbar] .float-panel button.leftbar-toggle svg g {
  fill: currentColor;
  fill-opacity: 0.3;
}
.l_body[leftbar] .float-panel button.leftbar-toggle svg g path#sep {
  transform: translateX(2px);
}
.l_body .l_right:empty+.float-panel button.rightbar-toggle {
  display: none !important;
}
.l_body[rightbar] .float-panel button.rightbar-toggle {
  color: var(--theme);
}
.l_body[rightbar] .float-panel button.rightbar-toggle svg g {
  fill: currentColor;
  fill-opacity: 0.3;
}
.l_body[rightbar] .float-panel button.rightbar-toggle svg g path#sep {
  transform: translateX(2px);
}
code {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
}
p>code:not([class]),
li>code:not([class]) {
  font-size: 85%;
  background: var(--block);
  padding: 0.2em;
  border-radius: 4px;
  color: var(--text-code);
}
.md-text .highlight,
pre:not([class]):has(>code) {
  --theme: var(--text-p3);
  margin: var(--gap-p) 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--block);
  font-family: Menlo, Monaco, Consolas, system-ui, 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: 0.8125rem;
  font-weight: 500;
  margin-left: 0.5rem;
  display: inline-block;
}
.md-text .highlight figcaption span {
  padding: 4px 0.5rem;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: var(--block);
}
.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,
.md-text .highlight >table::-webkit-scrollbar-corner {
  background: transparent;
}
.md-text .highlight >table::-webkit-scrollbar-thumb {
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
}
.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;
  border: none;
}
.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 1em;
  border-width: 0;
  margin-left: 0;
  left: 0;
  z-index: 1;
}
.md-text .highlight .gutter pre .line {
  color: var(--text-p4);
}
.md-text .highlight .code pre {
  display: block;
  padding: 0.5em 1rem;
}
.md-text .highlight .gutter+.code pre {
  padding-left: 0.25em;
}
.md-text .gist .gist-file {
  border: 1px solid var(--block-border);
  border-radius: 22px;
  overflow: hidden;
}
.md-text .gist .gist-data {
  --bgColor-default: var(--block);
  border-bottom: 1px solid var(--block-border);
}
.md-text .gist .highlight {
  display: inherit;
  border: none;
  border-radius: 0;
  background: var(--block);
  margin: 0;
  padding: 1em 0;
}
.md-text .gist .highlight pre {
  background: none;
}
.md-text .gist .blob-code-inner {
  color: var(--text-p1);
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
}
.md-text .gist .gist-meta {
  background: var(--block);
}
table:not([class]) {
  border-collapse: collapse;
}
.md-text pre >.caption {
  color: var(--text-p3);
}
.md-text pre >.hljs {
  padding: 1rem;
  border-radius: 22px;
  line-height: 1.5;
  box-sizing: border-box;
}
.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(--theme);
}
.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";
}
.md-text .highlight.nginx .code:before {
  content: "Nginx";
}
.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 {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  font-family: "Avenir Next Rounded", "Nunito", "PingFang SC", "Microsoft Yahei", system-ui, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-padding-top: 8px;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
html::-webkit-scrollbar-track-piece {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 8px;
}
html::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
body {
  background: var(--background);
  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, system-ui, monospace, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-p3);
}
.flex {
  display: flex;
  align-items: center;
}
.flex.column {
  flex-direction: column;
}
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;
  align-content: center;
  background: var(--block);
  border-radius: 22px;
  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: '加载失败，请稍后重试。';
}
audio,
video {
  max-width: 100%;
}
video {
  z-index: 1;
}
pre:not([class]):has(>code) {
  display: block;
  padding: 1rem;
  overflow: auto;
}
pre:not([class]):has(>code)::-webkit-scrollbar {
  height: 0;
  width: 0;
}
pre:not([class]):has(>code)::-webkit-scrollbar-track-piece {
  background: transparent;
}
pre:not([class]):has(>code)::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
pre:not([class]):has(>code)::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
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;
}
svg.active-icon {
  color: var(--theme);
}
h1,
.h1 {
  font-size: var(--fsh2);
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: var(--fsh2);
  }
}
h2,
.h2 {
  font-size: var(--fsh2);
  margin-top: 1.5em;
}
h3,
.h3 {
  font-size: var(--fsh3);
}
h4,
.h4 {
  font-size: var(--fsh4);
}
h5 {
  font-size: calc(var(--fsp) + 1px);
}
h6 {
  font-size: calc(var(--fsp) + 0px);
}
.fs15 {
  --fsp: 0.9375rem;
  font-size: var(--fsp);
}
.fs14 {
  --fsp: 0.875rem;
  font-size: var(--fsp);
}
.footnote {
  --fsp: 0.8125rem;
  font-size: var(--fsp);
}
.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: var(--accent);
}
div.toast {
  max-width: 60%;
  padding: 1rem 2rem;
  line-height: 1.5;
  color: var(--text-p1);
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  background: var(--card);
  position: fixed;
  left: 50%;
  top: 32px;
  transform: translateX(-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), 0 12px 16px -4px rgba(0,0,0,0.2);
  visibility: hidden;
}
div.toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2s;
  animation: fadein 0.5s, fadeout 0.5s 2s;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadein {
  from {
    top: -64px;
    opacity: 0;
  }
  to {
    top: 32px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    top: 32px;
    opacity: 1;
  }
  to {
    top: -64px;
    opacity: 0;
  }
}
@-moz-keyframes fadein {
  from {
    top: -64px;
    opacity: 0;
  }
  to {
    top: 32px;
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    top: -64px;
    opacity: 0;
  }
  to {
    top: 32px;
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    top: -64px;
    opacity: 0;
  }
  to {
    top: 32px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    top: -64px;
    opacity: 0;
  }
  to {
    top: 32px;
    opacity: 1;
  }
}
@-moz-keyframes fadeout {
  from {
    top: 32px;
    opacity: 1;
  }
  to {
    top: -64px;
    opacity: 0;
  }
}
@-webkit-keyframes fadeout {
  from {
    top: 32px;
    opacity: 1;
  }
  to {
    top: -64px;
    opacity: 0;
  }
}
@-o-keyframes fadeout {
  from {
    top: 32px;
    opacity: 1;
  }
  to {
    top: -64px;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    top: 32px;
    opacity: 1;
  }
  to {
    top: -64px;
    opacity: 0;
  }
}
.article.banner {
  --text-banner: var(--text);
  background: var(--block);
  margin: 0;
  height: unset;
}
.article.banner .bg+.content {
  min-height: 200px;
  aspect-ratio: 2.4;
  --text-banner: #fff;
  --button-hover-bg: rgba(255,255,255,0.25);
}
.article.banner .content .top {
  align-items: flex-start;
  margin: 1rem calc(1rem - 4px);
}
.article.banner .content .title {
  font-size: calc(17px + 9px);
  color: #fff;
}
.article.banner .content h1 {
  line-height: 1.2;
  margin: 0.25rem 0;
}
.l_body .article.banner .content .bottom.only-title .title {
  padding: 0.75rem 0;
}
.article.banner .bg+.content {
  --blur-bg: rgba(0,0,0,0);
  --blur-px: 1em;
  --blur-sat: 100%;
  --blur-height-top: 6rem;
  --blur-height-bottom: 7rem;
  --blur-opacity: 0;
  background: var(--blur-bg);
  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;
}
.article.banner .bg+.content:hover {
  --blur-bg: rgba(0,0,0,0.1);
  --blur-sat: 150%;
  --blur-height-top: 6rem;
  --blur-height-bottom: 7rem;
  --blur-opacity: 1;
}
.article.banner .bg+.content:before,
.article.banner .bg+.content:after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  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;
  opacity: var(--blur-opacity);
}
.article.banner .bg+.content:before {
  top: 0;
  height: var(--blur-height-top);
  mask: linear-gradient(#000, rgba(0,0,0,0.75), transparent);
  -webkit-mask: linear-gradient(#000, rgba(0,0,0,0.75), transparent);
}
.article.banner .bg+.content:after {
  bottom: 0;
  height: var(--blur-height-bottom);
  mask: linear-gradient(transparent, rgba(0,0,0,0.75), #000);
  -webkit-mask: linear-gradient(transparent, rgba(0,0,0,0.75), #000);
}
.article.banner .bg+.content .top,
.article.banner .bg+.content .bottom {
  z-index: 1;
}
.article.banner {
  --button-hover-bg: rgba(0,0,0,0.05);
}
:root[data-theme="dark"] .article.banner {
  --button-hover-bg: rgba(255,255,255,0.15);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .article.banner {
    --button-hover-bg: rgba(255,255,255,0.15);
  }
}
.article-footer {
  margin: 2rem 1rem 1rem;
  padding: 1rem;
  background: var(--block);
  border-radius: 30px;
  border: 1px solid var(--block-border);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-p1);
}
.article-footer:empty {
  display: none;
}
.article-footer .header {
  font-weight: 500;
  font-size: calc(17px + 2px);
}
.article-footer .body {
  --fsp: calc(17px - 2px);
}
.article-footer .body >.link {
  margin: 0;
  height: 0;
  opacity: 0;
}
.article-footer .body p {
  color: var(--text-p2);
  margin: 0.5rem 0;
}
.article-footer .body p a {
  font-weight: unset;
}
.article-footer .body ul {
  margin: 0;
  overflow: hidden;
  padding-left: 1rem;
}
.article-footer .body ul li {
  font-size: var(--fsp);
}
.article-footer .body .post-title {
  margin: 0;
  line-height: 1.2;
  word-break: break-all;
}
.article-footer .body .post-title p {
  --fsp: calc(17px - 2px);
}
.article-footer section+section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--block-border);
}
.article-footer #contributors .header {
  display: flex;
  justify-content: space-between;
}
.article-footer #contributors .header a.edit {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  color: inherit;
  background: var(--block);
  padding: 0 0.5rem;
  border-radius: 8px;
  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;
}
.article-footer #contributors .header a.edit svg {
  width: 1.2em;
  height: 1.2em;
  margin-right: 4px;
  color: var(--text-p4);
  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;
}
.article-footer #contributors .header a.edit span {
  line-height: 1.5;
  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;
}
.article-footer #contributors .header a.edit:hover {
  color: var(--theme);
  background: var(--theme-a20);
}
.article-footer #contributors .header a.edit:hover svg {
  color: var(--theme);
}
.article-footer #contributors .body .loading-wrap {
  margin-top: 4px;
  padding: 0;
  height: 84px;
}
.article-footer #contributors .body .users-wrap .grid-box {
  margin-top: 4px;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  grid-gap: 4px;
}
.article-footer #contributors .body .users-wrap .grid-box:empty {
  display: none;
}
.article-footer #contributors .body .users-wrap .user-card .card-link {
  background: var(--block);
  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;
}
.article-footer #contributors .body .users-wrap .user-card .card-link:hover {
  background: var(--theme-a20);
  color: var(--theme);
}
.article-footer #contributors .body .users-wrap .user-card .card-link img {
  width: 32px;
  height: 32px;
}
.article-footer .social-wrap {
  grid-gap: 0.5rem 2rem;
  margin: 1rem 0 0.5rem;
  grid-template-columns: repeat(auto-fill, 20px);
}
.article-footer .social-wrap a.social {
  background: none;
  border-radius: 4px;
  padding: 0;
}
.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: 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;
  height: 0;
  margin: 0 auto;
  transform: scale(0.01);
}
.article-footer .qrcode img {
  object-fit: contain;
}
.article-footer .qrcode.display {
  margin: 2rem auto 1rem;
  height: 128px !important;
  opacity: 1 !important;
  transform: scale(1);
}
.bread-nav {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  color: var(--text-banner);
}
.bread-nav .flex-row {
  display: flex;
  align-items: baseline;
  flex-direction: row;
}
.bread-nav a {
  color: var(--text-banner);
  padding: 4px;
  border-radius: 2px;
}
.bread-nav a:hover {
  background: var(--button-hover-bg);
}
.bread-nav span {
  color: var(--text-banner);
}
.bread-nav span.sep {
  opacity: 0.5;
  margin: 0;
}
.bread-nav span.text {
  padding: 4px;
}
.bread-nav div#post-meta span.sep:before {
  content: '|';
}
.bread-nav div#post-meta span.updated {
  visibility: hidden;
}
.bread-nav:hover div#post-meta span.updated {
  visibility: visible;
}
.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-banner);
}
.bread-nav .ghrepo a svg {
  margin-right: 4px;
}
.bread-nav .ghrepo a.bold {
  font-weight: 600;
  color: var(--text-banner);
}
.bread-nav .ghrepo a span {
  margin-left: 4px;
}
.bread-nav .ghrepo a:hover {
  opacity: 1;
}
.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;
  font-size: var(--fsp);
}
.l_cover .cover-wrap .cover-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 1rem 0;
  line-height: 1.2;
  color: var(--text);
}
.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.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;
  min-width: 96px;
  min-height: 96px;
  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-p2);
}
.page-footer a {
  color: var(--text-p2);
  border-radius: 4px;
  transition: background 0.2s ease-out;
}
.page-footer a:hover {
  color: var(--text);
  background: var(--block-border);
}
.page-footer .sitemap {
  margin: 0.5rem -4px;
  grid-gap: 1rem 1rem;
  column-count: 4;
}
.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 {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 1rem;
}
.page-footer .sitemap .sitemap-group >span,
.page-footer .sitemap .sitemap-group >a {
  text-decoration: none;
  padding: 4px;
}
.page-footer .sitemap .sitemap-group >span {
  font-weight: 500;
  color: var(--text-p1);
  margin: 4px 0;
}
.page-footer .text {
  margin-top: 0.5rem;
}
.page-footer .text p {
  margin: 4px 0;
  line-height: 1.5;
}
.page-footer .text a:not([class]) {
  font-weight: 500;
}
.navbar {
  z-index: 8;
  top: calc(var(--gap-margin) * 2);
  position: sticky;
  position: -webkit-sticky;
}
.navbar-blur {
  margin: 0 1rem;
  border-radius: 64px;
  position: relative;
  box-shadow: 0 0 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  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;
  text-shadow: 0 0 4px #fff, 0 0 8px rgba(255,255,255,0.8), 0 0 16px rgba(255,255,255,0.6);
}
@media (prefers-color-scheme: dark) {
  .navbar-blur {
    text-shadow: 0 0 2px rgba(0,0,0,0.2), 0 0 4px rgba(0,0,0,0.4);
  }
}
.navbar-blur nav a:not(.active,
.navbar-blur :hover) {
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 4px #fff);
}
@media (prefers-color-scheme: dark) {
  .navbar-blur nav a:not(.active,
  .navbar-blur :hover) {
    filter: none;
  }
}
.navbar-blur:before,
.navbar-blur:after {
  z-index: -1;
  position: absolute;
  pointer-events: none;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 64px;
}
.navbar-blur:before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.3);
  margin: 1px;
}
@media (prefers-color-scheme: dark) {
  .navbar-blur:before {
    background: rgba(255,255,255,0.2);
  }
}
.navbar-blur:after {
  --blur-px: 16px;
  --blur-sat: 300%;
  backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  mask: linear-gradient(#fff, 20%, transparent, 80%, #fff), linear-gradient(90deg, #fff, 20%, transparent, 80%, #fff);
  -webkit-mask-image: linear-gradient(#fff, 20%, transparent, 80%, #fff), linear-gradient(90deg, #fff, 20%, transparent, 80%, #fff);
  box-shadow: inset 0 0 4px 1px rgba(255,255,255,0.5);
  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;
}
@media (prefers-color-scheme: dark) {
  .navbar-blur:after {
    box-shadow: inset 0 0 2px 1px rgba(255,255,255,0.2);
  }
}
.navbar-container {
  max-width: 100%;
  margin: 1px;
  border-radius: 64px;
  overflow: scroll visible;
}
.navbar-container::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.navbar-container::-webkit-scrollbar-track-piece {
  background: transparent;
}
.navbar-container::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.navbar-container::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.navbar nav {
  display: inline-flex;
  font-size: 0.875rem;
  z-index: 1;
}
.navbar nav >p {
  margin: 0;
}
.navbar nav a {
  padding: 0.25rem 0.75rem;
  margin: 0.25rem;
  line-height: 2;
  color: var(--text-p1);
  border-radius: 32px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 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;
}
.navbar nav a:hover {
  background: var(--bg-a50);
}
.navbar nav a.active,
.navbar nav a:hover {
  color: var(--text);
}
.navbar nav a.active {
  background: var(--bg-a60);
  box-shadow: 0 0 1px rgba(0,0,0,0.04), 0 0 2px rgba(0,0,0,0.04), 0 0 4px rgba(0,0,0,0.08);
  cursor: default;
  pointer-events: none;
  backdrop-filter: saturate(300%);
  -webkit-backdrop-filter: saturate(300%);
}
@media (prefers-color-scheme: dark) {
  .navbar nav a.active {
    background: rgba(255,255,255,0.25);
  }
}
.navbar nav a.active:after {
  content: '';
}
.navbar nav a+a {
  margin-left: 4px;
}
@media screen and (max-width: 450px) {
  .navbar.top {
    top: 36px;
  }
}
.paginator-wrap {
  margin: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--card);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0px rgba(0,0,0,0.03);
  color: var(--text-p3);
}
.paginator-wrap .page-number {
  padding: 4px 8px;
  border-radius: 8px;
  margin: 2px;
}
.paginator-wrap a.page-number {
  color: var(--text-p3);
}
.paginator-wrap a.page-number:hover {
  color: var(--text-p1);
  background: var(--block);
}
.paginator-wrap .extend {
  text-align: center;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  background-origin: content-box;
  background-clip: content-box;
}
.paginator-wrap .extend.next {
  border-left: 1px dashed var(--block-border);
  background-image: url("https://gcore.jsdelivr.net/gh/cdn-x/placeholder@1.0.12/arrow/064b95430caf4.svg");
}
.paginator-wrap .extend.prev {
  border-right: 1px dashed var(--block-border);
  background-image: url("https://gcore.jsdelivr.net/gh/cdn-x/placeholder@1.0.12/arrow/f049bbd4e88ec.svg");
}
.paginator-wrap .current {
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  background: var(--block);
}
.paginator-wrap .extend {
  padding: 1rem;
  line-height: 0;
  filter: grayscale(100%);
}
.paginator-wrap .extend img {
  height: 1rem;
}
.paginator-wrap .extend.disable {
  pointer-events: none;
}
.paginator-wrap span.extend {
  opacity: 0.25;
}
.paginator-wrap a.extend:hover {
  filter: unset;
}
.related-wrap {
  padding: 0 1rem;
  margin: 4rem 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: 14px;
  color: var(--text-p1);
}
article.md-text.content+.related-wrap {
  margin-top: 0;
}
.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;
  --fsp: calc(17px - 1px);
  font-size: var(--fsp);
  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);
  --fsp: calc(17px - 3px);
  font-size: var(--fsp);
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.related-posts .item.active .title {
  border-bottom: 1px dashed var(--theme);
}
.related-posts .item:hover .title {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.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.8125rem;
  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: calc(17px + 2px);
}
.related-wrap#read-next .body a:hover {
  color: var(--accent) !important;
}
.related-wrap#read-next .body #next {
  text-align: right;
}
.wiki+.related-wrap#read-next .item a {
  font-size: calc(17px + 7px);
}
.wiki+.related-wrap#read-next .item#prev a {
  color: var(--text-p3);
}
.related-wrap#comments {
  padding: 0 1rem;
}
.related-wrap#comments .cmt-title p {
  margin: 0;
  font-size: inherit;
}
.related-wrap#comments .cmt-title p a {
  --link: var(--theme);
  --link-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
}
.related-wrap#comments .cmt-body {
  min-height: 150px;
  position: relative;
}
.related-wrap#comments .cmt-body svg.loading {
  top: 60px;
}
.related-wrap#comments .cmt-body iframe {
  border-radius: 4px;
  border: none;
  width: 100%;
}
.tag-plugin.about {
  background: var(--block);
  border-radius: 22px;
  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%;
  }
}
.banner {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 220px;
}
.banner.top {
  border-radius: 30px;
}
@media screen and (max-width: 667px) {
  .banner {
    height: 180px;
  }
}
.banner .bg {
  z-index: 0;
}
.banner .content {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner .content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  margin: 1rem;
}
.banner .content .top .tag-plugin.navbar {
  margin: 0;
  border-radius: 6px;
  padding: 2px;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
}
.banner .content .top .tag-plugin.navbar:after {
  content: none;
}
.banner .content .top .tag-plugin.navbar .link {
  margin: 0;
  border-radius: 4px;
  color: rgba(255,255,255,0.8);
  padding: 2px 6px;
  background: none;
  line-height: 1.5;
  font-size: 0.9375rem;
  text-shadow: 0 0 1px rgba(0,0,0,0.12);
}
.banner .content .top .tag-plugin.navbar .link+.link {
  margin-left: 2px;
}
.banner .content .top .tag-plugin.navbar .link:after {
  content: none;
}
.banner .content .top .tag-plugin.navbar .link:hover {
  color: #fff;
  background: rgba(255,255,255,0.25);
}
.banner .content .top .tag-plugin.navbar .link.active {
  color: #fff;
  background: rgba(255,255,255,0.25);
}
.banner .content .top .back {
  background: none;
  padding: 0;
  line-height: 0;
  visibility: hidden;
}
@media screen and (max-width: 667px) {
  .banner .content .top .back {
    visibility: visible;
  }
}
.banner .content .top .back svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.banner .banner-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 2;
}
.banner img {
  object-fit: cover;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  height: 100%;
  width: 100%;
}
.banner img.bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner img.avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.banner .bottom {
  display: flex;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.banner .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.banner .avatar+.text-area {
  margin-left: 0.75rem;
}
.banner .text-area .text {
  line-height: 1.2;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.banner .avatar+.text-area .title {
  font-size: 1.2rem;
}
.banner .subtitle {
  font-size: 0.875rem;
}
.banner .content:only-child {
  color: var(--text-p1);
}
.banner .bg+.content {
  color: #fff;
}
.banner .bg+.content .avatar {
  border: 2px solid #fff;
  margin: 0;
}
.banner .bg+.content .bottom {
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.2));
  text-shadow: 0 0 1px rgba(0,0,0,0.12);
}
.tag-plugin.banner {
  transition: transform 2s ease-out;
  -moz-transition: transform 2s ease-out;
  -webkit-transition: transform 2s ease-out;
  -o-transition: transform 2s ease-out;
}
.tag-plugin.banner:hover img.bg {
  transform: scale(1.01);
}
.tag-plugin.banner .navbar a.active {
  background-color: var(--blur-bg);
}
@supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
  .tag-plugin.banner .navbar a.active {
    background-color: var(--blur-bg) !important;
    backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
    -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  }
}
.tag-plugin.banner .navbar a.active:hover {
  background-color: var(--card);
}
@media screen and (max-width: 667px) {
  .banner.top {
    border-radius: 0;
  }
}
a.tag-plugin.button {
  background: var(--theme);
  color: var(--bg-a100);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  padding: 0 0.5rem;
  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: 0.5em 0;
  font-size: 1em;
  line-height: 1.5;
}
a.tag-plugin.button svg,
a.tag-plugin.button img {
  height: 1.2em;
  width: auto;
  margin: 0 -0.25em 0 0.5em;
  flex-shrink: 0;
  align-self: center;
}
a.tag-plugin.button span {
  text-indent: 0;
  margin: 0.5em;
}
a.tag-plugin.button[size='xs'] {
  margin: 0;
  border-radius: 4px;
  padding: 0 4px;
}
a.tag-plugin.button[size='xs'] svg,
a.tag-plugin.button[size='xs'] img,
a.tag-plugin.button[size='xs'] span {
  margin: 0 2px;
}
a.tag-plugin.button:hover {
  --theme: var(--accent);
}
.tag-plugin.grid a.tag-plugin.button {
  width: 100%;
  box-sizing: border-box;
}
:root[data-theme="light"] {
  --chat-bg: #f1f2f5;
  --chat-block: #fff;
  --chat-border: #f2f2f2;
  --chat-qq-right-bg: #09f;
  --chat-qq-right-text: #fff;
  --chat-wechat-news-num: #d8dadf;
  --chat-video-button: rgba(255,255,255,0.902);
  --chat-wechat-right-bg: #91ed61;
  --chat-quote-blink-color: rgba(24,92,109,0.102);
  --chat-wechat-quote-color: #808080;
  --chat-wechat-quote-bg: rgba(128,128,128,0.102);
}
:root[data-theme="dark"] {
  --chat-bg: #1f2224;
  --chat-block: #25282a;
  --chat-border: #303437;
  --chat-qq-right-bg: rgba(0,153,255,0.502);
  --chat-qq-right-text: rgba(255,255,255,0.6);
  --chat-wechat-news-num: #25282a;
  --chat-video-button: rgba(37,40,42,0.851);
  --chat-wechat-right-bg: #305034;
  --chat-quote-blink-color: rgba(24,92,109,0.149);
  --chat-wechat-quote-color: #858585;
  --chat-wechat-quote-bg: rgba(133,133,133,0.102);
}
:root:not([data-theme]) {
  --chat-bg: #f1f2f5;
  --chat-block: #fff;
  --chat-border: #f2f2f2;
  --chat-qq-right-bg: #09f;
  --chat-qq-right-text: #fff;
  --chat-wechat-news-num: #d8dadf;
  --chat-video-button: rgba(255,255,255,0.902);
  --chat-wechat-right-bg: #91ed61;
  --chat-quote-blink-color: rgba(24,92,109,0.102);
  --chat-wechat-quote-color: #808080;
  --chat-wechat-quote-bg: rgba(128,128,128,0.102);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --chat-bg: #1f2224;
    --chat-block: #25282a;
    --chat-border: #303437;
    --chat-qq-right-bg: rgba(0,153,255,0.502);
    --chat-qq-right-text: rgba(255,255,255,0.6);
    --chat-wechat-news-num: #25282a;
    --chat-video-button: rgba(37,40,42,0.851);
    --chat-wechat-right-bg: #305034;
    --chat-quote-blink-color: rgba(24,92,109,0.149);
    --chat-wechat-quote-color: #858585;
    --chat-wechat-quote-bg: rgba(133,133,133,0.102);
  }
}
.md-text .tag-plugin.chat {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 375px;
  margin: 1rem auto;
  border-radius: 8px;
  background: var(--chat-block);
  box-shadow: rgba(0,0,0,0.16) 0px 1px 4px;
  display: flex;
  flex-direction: column;
  height: 658px;
  width: 329px;
  overflow: hidden;
}
.md-text .tag-plugin.chat .fs12 {
  font-size: 0.75rem;
}
.md-text .tag-plugin.chat .cap {
  color: var(--text-p3);
}
.md-text .tag-plugin.chat.iphone11 {
  width: 329px;
  height: 658px;
  border-radius: 3em;
  padding: 1em;
  position: relative;
  box-shadow: unset;
}
.md-text .tag-plugin.chat.iphone11 >.device-image {
  background-image: url("https://gcore.jsdelivr.net/gh/cdn-x/placeholder@1.0.14/frame/iphone11.svg");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar {
  display: flex;
  margin: 0.5em 0.7em;
  justify-content: space-between;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar >.left-items {
  font-size: 0.75rem;
  width: 5em;
  display: flex;
  justify-content: center;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar >.right-items {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar >.right-items >svg.icon {
  width: 1.3em;
  height: 1.3em;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar >.right-items >svg.icon.earphone,
.md-text .tag-plugin.chat.iphone11 >.status-bar >.right-items >svg.icon.bluetooth {
  display: none;
}
.md-text .tag-plugin.chat.iphone11 >.status-bar >.right-items >svg.icon >path {
  fill: var(--text-p1);
}
.md-text .tag-plugin.chat.iphone11 >.chat-navbar,
.md-text .tag-plugin.chat.iphone11 >.content {
  margin: 0 0.4em;
}
.md-text .tag-plugin.chat.iphone11 >.bottom {
  margin: 0 0.4em;
  padding-bottom: 0.75em;
}
.md-text .tag-plugin.chat >.chat-navbar {
  display: flex;
  padding: 0.3rem 0;
  justify-content: space-between;
  z-index: 4;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items {
  display: flex;
  align-items: center;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items .back-btn {
  margin-left: 0.2em;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items .back-btn .icon.back {
  width: 1.3em;
  height: 1.3em;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items .news-num {
  background: var(--chat-bg);
  border-radius: 8px;
  font-size: 0.75em;
  padding: 0px 4px;
  margin-right: 8px;
  color: var(--text-p2);
}
.md-text .tag-plugin.chat >.chat-navbar .right-items>.more-btn {
  height: 100%;
  margin-right: 0.5em;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items>.back-btn,
.md-text .tag-plugin.chat >.chat-navbar .right-items>.more-btn {
  display: flex;
  align-items: center;
}
.md-text .tag-plugin.chat >.chat-navbar .left-items>.back-btn >svg>path,
.md-text .tag-plugin.chat >.chat-navbar .right-items>.more-btn >svg>path {
  fill: var(--text-p1);
}
.md-text .tag-plugin.chat >.content {
  background: var(--chat-bg);
  overflow: auto;
  position: relative;
  flex: 1;
  z-index: 3;
}
.md-text .tag-plugin.chat >.content::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.md-text .tag-plugin.chat >.content::-webkit-scrollbar-track-piece,
.md-text .tag-plugin.chat >.content::-webkit-scrollbar-corner {
  background: transparent;
}
.md-text .tag-plugin.chat >.content::-webkit-scrollbar-thumb {
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
}
.md-text .tag-plugin.chat >.content:hover::-webkit-scrollbar-thumb {
  background: var(--text-meta);
}
.md-text .tag-plugin.chat >.content:hover::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.md-text .tag-plugin.chat >.bottom {
  z-index: 1;
  padding-bottom: 0.5em;
  background: var(--chat-bg);
  box-shadow: rgba(0,0,0,0.06) 0px 1px 1px 0px inset;
}
.md-text .tag-plugin.chat >.bottom .input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0.5em;
  margin-top: 0.5em;
  height: 32px;
}
.md-text .tag-plugin.chat >.bottom .input .input-text {
  background: var(--chat-block);
  border-radius: 6px;
  width: calc(100% - 40px - 0.5em);
  height: 100%;
}
.md-text .tag-plugin.chat >.bottom .input .submit-btn {
  padding: 3px 6px;
  background: var(--theme-a30);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--theme);
}
.md-text .tag-plugin.chat >.bottom .icons {
  margin: 0 0.5em;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5em;
}
.md-text .tag-plugin.chat >.bottom .icons >svg.icon {
  width: 1.5em;
  height: 1.5em;
}
.md-text .tag-plugin.chat >.bottom .icons >svg.icon.voice {
  width: 1.3em !important;
  height: 1.3em !important;
}
.md-text .tag-plugin.chat >.bottom .icons >svg.icon path {
  fill: var(--text-p2);
}
.md-text .tag-plugin.chat >.content >div:first-child {
  margin-top: 0.5em;
}
.md-text .tag-plugin.chat >.content >div:last-child {
  margin-bottom: 0.5em;
}
.md-text .tag-plugin.chat >.content .chattip {
  font-size: 0.75rem;
  color: var(--text-p3);
  margin: auto;
  width: fit-content;
  padding: 0.5em;
}
.md-text .tag-plugin.chat >.content .chatcell {
  padding: 0.5em;
}
.md-text .tag-plugin.chat >.content .chatcell img {
  border-radius: 6px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-avatar {
  float: left;
}
.md-text .tag-plugin.chat >.content .chatcell .user-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main {
  padding: 0 0.5em;
  display: flex;
  flex-flow: column;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .header {
  line-height: 1.5;
  font-size: 13px;
  margin-bottom: 0.3em;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .header .label {
  padding: 0 4px;
  color: var(--theme);
  background: var(--theme-a30);
  border-radius: 3px;
  margin-right: 4px;
  font-size: calc(0.75rem - .1rem);
  font-weight: 600;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .header .name {
  color: var(--text-p3);
  font-size: 0.75rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk {
  width: fit-content;
  max-width: calc(100% - 32px);
  background: var(--chat-block);
  padding: calc((32px - 1.3 * 0.875rem) / 2) .5em;
  border-radius: 6px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk p {
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.error-img-to-show {
  min-width: 100px;
  min-height: 100px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote {
  color: var(--text-p3);
  background: var(--text-a20);
  padding: 0.3rem;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 0.3em;
  transition: color 0.5s ease-out, background 0.5s ease-out;
  -moz-transition: color 0.5s ease-out, background 0.5s ease-out;
  -webkit-transition: color 0.5s ease-out, background 0.5s ease-out;
  -o-transition: color 0.5s ease-out, background 0.5s ease-out;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote:hover {
  color: var(--theme);
  background: var(--theme-a30);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote:hover .quote-user>svg>path {
  fill: var(--theme);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1em;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-user >span {
  font-size: 0.75rem;
  height: 16px;
  line-height: 16px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-user >svg {
  width: 0.75em;
  height: 0.75em;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-user >svg path {
  fill: var(--text-p3);
  transition: color 0.2s ease-out, 0.5s 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, 0.5s 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, 0.5s 0.2s ease-out;
  -o-transition: color 0.2s ease-out, 0.5s 0.2s ease-out;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-content {
  margin-top: 0.3em;
  font-size: 0.75rem;
  line-height: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-content span {
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-content span p,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk >.quote .quote-content span span {
  font-size: 0.75rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.md .tag-plugin {
  margin-bottom: 0;
  margin: 0.2rem 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.image,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.emoji,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file {
  background: unset !important;
  padding: 0 !important;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card {
  background: var(--chat-block);
  box-shadow: unset;
  transition: unset;
  -webkit-transition: unset;
  -moz-transition: unset;
  -o-transition: unset;
  border-radius: 6px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card:hover {
  transform: none;
  color: var(--text-p3);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .top {
  margin: 0.5em;
  max-width: unset;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .top span {
  white-space: unset;
  font-size: 0.875rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .center {
  margin: 0 0.5em;
  column-gap: 0.5em;
  display: flex;
  align-self: unset;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .center .left {
  width: calc(100% - 32px - 0.5em);
  height: 32px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .center .left .desc {
  -webkit-line-clamp: 2;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .center .right {
  flex: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .bottom {
  margin: 0.5em 0.5em 0.3em 0.5em;
  padding-top: 0.3em;
  border-top: 1px solid var(--chat-border);
  display: flex;
  align-items: center;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .bottom >svg,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.link .link-card .bottom >span {
  height: 0.8rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 4.5px 0.5em;
  cursor: pointer;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice .voice-btns {
  flex-shrink: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice .voice-btns svg.icon {
  width: 1.3em;
  height: 1.3em;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice .voice-btns svg.icon >path {
  fill: var(--text-p1);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice canvas.voice-wave {
  margin: 0 0.5em;
  height: 23px;
  width: 36px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice div.voice-wave {
  height: 1.2em;
  margin: 0 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice div.voice-wave .play-line {
  position: absolute;
  top: -20%;
  left: 0;
  height: 140%;
  width: 1px;
  background: var(--text-p2);
  content: "";
  opacity: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice div.voice-wave .play-line.active {
  opacity: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice div.voice-wave .play-line.back {
  transition: transform 0.3s linear !important;
  -moz-transition: transform 0.3s linear !important;
  -webkit-transition: transform 0.3s linear !important;
  -o-transition: transform 0.3s linear !important;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice div.voice-wave span.voice-wave-item {
  background: var(--text-p2);
  width: 2px;
  border-radius: 2px;
  flex-shrink: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice .voice-metas {
  font-size: 0.875rem;
  display: flex;
  flex-shrink: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.voice .voice-metas span {
  line-height: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video {
  position: relative;
  line-height: 0;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video .video-btns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video .video-btns .play-btn,
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video .video-btns .pause-btn {
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video .video-btns svg.icon {
  width: 3em;
  height: 3em;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video .video-btns svg.icon >path {
  fill: var(--chat-video-button);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.video video {
  width: 100%;
  border-radius: 6px;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file {
  background: transparent !important;
  display: flex;
  padding: unset !important;
  column-gap: 0.3rem;
  width: calc(100% - 32px);
  cursor: pointer;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content {
  background: var(--chat-block);
  padding: 0.5em;
  border-radius: 6px;
  flex-grow: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.top {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.top >.left {
  height: 2.5rem;
  flex-grow: 1;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.top >.left >span {
  white-space: unset;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-p1);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: calc(2.5rem / 2);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.top >.right {
  height: fit-content;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.top >.right >svg.icon {
  height: 2.5rem;
  width: unset;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.bottom {
  margin-top: 0.5em;
  display: flex;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.content >.bottom >span {
  line-height: 0.75rem;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.download-btn {
  display: flex;
  align-items: flex-end;
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.download-btn >svg.icon {
  height: 1rem;
  width: 1rem;
  padding: 0.2em;
  border-radius: 50%;
  background: var(--chat-block);
}
.md-text .tag-plugin.chat >.content .chatcell .user-main .talk.file >.download-btn >svg.icon >path {
  fill: var(--text-p1);
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-avatar {
  float: right;
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-main {
  flex-flow: row-reverse;
  flex-wrap: wrap;
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-main .header {
  flex-basis: 100%;
  justify-content: flex-end;
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-main .talk.file {
  flex-direction: row-reverse;
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-main .talk.voice .voice-btns svg.icon>path {
  fill: var(--chat-qq-right-text);
}
.md-text .tag-plugin.chat >.content .chatcell.right .user-main .talk.md,
.md-text .tag-plugin.chat >.content .chatcell.right .user-main .talk.voice {
  background: var(--chat-qq-right-bg);
  color: var(--chat-qq-right-text);
}
.md-text .tag-plugin.chat >.content .chatcell.quote-blink {
  animation: chatQuoteblinking 1s;
}
.md-text .tag-plugin.chat.person >.content >.chatcell >.user-main {
  min-height: 32px;
  justify-content: center;
  align-content: unset;
}
.md-text .tag-plugin.chat.person >.content >.chatcell >.user-main >.header {
  display: none;
}
.md-text .tag-plugin.chat.person >.content >.chatcell.right>.user-main {
  justify-content: unset;
  align-content: center;
}
.md-text .tag-plugin.chat.wechat.iphone11 {
  background: var(--chat-bg);
}
.md-text .tag-plugin.chat.wechat.iphone11 >.bottom {
  padding-bottom: 0.75rem;
}
.md-text .tag-plugin.chat.wechat >.chat-navbar {
  background: var(--chat-bg);
  box-shadow: rgba(27,31,35,0.02) 0px 1px 0px;
}
.md-text .tag-plugin.chat.wechat >.chat-navbar >.left-items >.news-num {
  background: var(--chat-wechat-news-num);
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell img {
  border-radius: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-avatar>img {
  border-radius: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.header {
  line-height: 1;
  margin-bottom: 0.2em;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.header >.label {
  display: none;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk {
  position: relative;
  border-radius: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk:before {
  content: "";
  position: absolute;
  left: -2.5px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 1.5px;
  transform: rotate3d(0, 0, 1, -45deg);
  background: var(--chat-block);
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.emoji:before,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.video:before,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.image:before {
  display: none;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.link>.link-card,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.video>video,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.file>.content,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.image>img,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.emoji>img {
  border-radius: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.file .download-btn {
  display: none;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice {
  padding: 8px 0.5em;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice {
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transform: rotate3d(0, 0, 1, 135deg);
  margin-left: 0.2rem;
  margin-right: 0;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice >.voice-circle {
  border: 2px solid var(--text-p1);
  border-radius: 50%;
  position: absolute;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice >.voice-circle.first {
  width: 5px;
  height: 5px;
  background: var(--text-p1);
  top: 12px;
  left: 12px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice >.voice-circle.second {
  width: 13px;
  height: 13px;
  top: 8px;
  left: 8px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice >.voice-circle.third {
  width: 21px;
  height: 21px;
  top: 4px;
  left: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice.play >.second {
  animation: wehcatVoicefadeInOut 1s infinite 0.2s;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.talk.voice >.wechat-voice.play >.third {
  animation: wehcatVoicefadeInOut 1s infinite 0.4s;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote {
  width: fit-content;
  max-width: calc(100% - 32px);
  background: var(--chat-wechat-quote-bg);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  margin-top: 0.2em;
  font-size: 0.75rem;
  color: var(--chat-wechat-quote-color);
  display: flex;
  column-gap: 4px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote.image-chat {
  display: flex;
  column-gap: 0.4em;
  padding: 0.5em;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote img {
  border-radius: 4px;
  display: inline;
  width: 64px;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote .tag-plugin {
  margin-bottom: 0;
  margin: 0.2rem 0;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote .tag-plugin.image img {
  display: block;
  width: unset;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote p,
.md-text .tag-plugin.chat.wechat >.content >.chatcell >.user-main >.quote span {
  font-size: 0.75rem;
  margin: 0;
  padding: 0;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.header {
  display: none;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk:before {
  right: -2px;
  left: unset;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.md,
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.md:before,
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.voice,
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.voice:before {
  background: var(--chat-wechat-right-bg);
  color: var(--text-p1);
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.voice {
  flex-direction: row-reverse;
}
.md-text .tag-plugin.chat.wechat >.content >.chatcell.right>.user-main >.talk.voice >.wechat-voice {
  transform: rotate3d(0, 0, 1, -45deg);
  margin-left: 0;
  margin-right: 0.2rem;
}
.md-text .tag-plugin.chat.wechat >.bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em;
  column-gap: 0.5em;
}
.md-text .tag-plugin.chat.wechat >.bottom .input-text {
  border-radius: 4px;
  flex-grow: 1;
  height: 2rem;
  background: var(--chat-block);
}
.md-text .tag-plugin.chat.wechat >.bottom .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.md-text .tag-plugin.chat.wechat >.bottom .icon >path {
  fill: var(--text-p2);
}
@-moz-keyframes wehcatVoicefadeInOut {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
@-webkit-keyframes wehcatVoicefadeInOut {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
@-o-keyframes wehcatVoicefadeInOut {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
@keyframes wehcatVoicefadeInOut {
  0% {
    opacity: 0; /*初始状态 透明度为0*/
  }
  100% {
    opacity: 1; /*结尾状态 透明度为1*/
  }
}
@-moz-keyframes chatQuoteblinking {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--chat-quote-blink-color);
  }
  100% {
    background-color: transparent;
  }
}
@-webkit-keyframes chatQuoteblinking {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--chat-quote-blink-color);
  }
  100% {
    background-color: transparent;
  }
}
@-o-keyframes chatQuoteblinking {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--chat-quote-blink-color);
  }
  100% {
    background-color: transparent;
  }
}
@keyframes chatQuoteblinking {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--chat-quote-blink-color);
  }
  100% {
    background-color: transparent;
  }
}
.md-text .tag-plugin.checkbox {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  --gap-p: calc(var(--gap-p-compact) / 2);
/* Checkbox */
/* Radio */
/* Colors */
}
.md-text .tag-plugin.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 .tag-plugin.checkbox input[type=checkbox]:before,
.md-text .tag-plugin.checkbox input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: var(--background);
}
.md-text .tag-plugin.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 .tag-plugin.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 .tag-plugin.checkbox input[type=checkbox]:checked:before {
  left: 0px;
  top: 7px;
  width: 6px;
  height: 2px;
}
.md-text .tag-plugin.checkbox input[type=checkbox]:checked:after {
  right: 3px;
  bottom: 1px;
  width: 2px;
  height: 10px;
}
.md-text .tag-plugin.checkbox[symbol=minus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=minus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=minus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=minus] input[type=checkbox]:checked:after {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=plus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=plus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 5px;
  top: 1px;
  width: 2px;
  height: 0px;
}
.md-text .tag-plugin.checkbox[symbol=plus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=plus] input[type=checkbox]:checked:after {
  left: 5px;
  top: 1px;
  width: 2px;
  height: 10px;
}
.md-text .tag-plugin.checkbox[symbol=times] input[type=checkbox]:before {
  transform: rotate(45deg);
  left: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=times] input[type=checkbox]:after {
  transform: rotate(135deg);
  right: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=times] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .tag-plugin.checkbox[symbol=times] input[type=checkbox]:checked:after {
  right: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md-text .tag-plugin.checkbox input[type=radio] {
  border-radius: 50%;
  transform: translateY(-1px);
}
.md-text .tag-plugin.checkbox input[type=radio]:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 2px;
  transform: scale(0);
}
.md-text .tag-plugin.checkbox input[type=radio]:checked:before {
  transform: scale(1);
}
.md-text .tag-plugin.checkbox input {
  border: 2px solid var(--theme);
}
.md-text .tag-plugin.checkbox input[type=checkbox]:checked {
  background: var(--theme);
}
.md-text .tag-plugin.checkbox input[type=radio]:checked:before {
  background: var(--theme);
}
.tag-plugin.checkbox:not([color]) {
  --theme: #2196f3;
}
.md-text .tag-plugin.copy {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--block-border);
  overflow: hidden;
  width: 100%;
  min-width: 200px;
}
.md-text .tag-plugin.copy span {
  padding: 0.25rem 0.5rem;
  margin: auto 0.5rem;
  line-height: 1;
  border-radius: 4px;
  background: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  color: var(--theme);
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.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 span+input.copy-area {
  text-indent: 0;
}
.md-text .tag-plugin.copy button.copy-btn {
  margin: 2px 2px 2px 0;
  border-radius: calc(14px - 2px);
  display: inline-block;
  background: var(--block);
  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;
  line-height: 0;
  font-size: 1rem;
  padding: 0 0.75rem;
  color: var(--text-p2);
}
.md-text .tag-plugin.copy button.copy-btn:hover {
  color: var(--theme);
  background: var(--theme-a20);
}
.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;
  border-radius: 0;
}
.tag-plugin.folders {
  margin: var(--gap-p) 0;
  --fsp: calc(17px - 2px);
  font-size: var(--fsp);
  border-top: 1px solid var(--block-border);
  overflow: hidden;
}
.tag-plugin.folders .folder {
  border-bottom: 1px solid var(--block-border);
  padding: 1rem;
}
.tag-plugin.folders summary {
  cursor: pointer;
  color: var(--text-p2);
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  outline: none;
  padding: 1rem;
  margin: -1rem;
}
.tag-plugin.folders summary:last-child {
  border-bottom: none;
}
.tag-plugin.folders summary > span {
  margin-left: 0.25em;
}
.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);
}
.tag-plugin.folders summary:after {
  position: absolute;
  content: '+';
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
.tag-plugin.folders details[open] >summary {
  color: var(--text-p1);
  font-weight: 700;
}
.tag-plugin.folders details[open] >summary:after {
  content: '-';
}
.tag-plugin.folders details[open] >div.body {
  --fsp: calc(17px - 1px);
}
.tag-plugin.folders details[open] >div.body >:first-child {
  margin-top: 1rem;
}
.tag-plugin.folders details[open] >div.body >:last-child {
  margin-bottom: 0;
}
details.folding {
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 22px;
  background: var(--theme-block);
  border: 1px solid var(--theme-border);
}
details.folding summary {
  cursor: pointer;
  padding: 1rem;
  margin: -1rem;
  color: var(--text-p2);
  font-weight: 500;
  --fsp: calc(17px - 2px);
  font-size: var(--fsp);
  position: relative;
  line-height: 1.2;
  outline: none;
}
details.folding summary > span {
  margin-left: 0.25em;
}
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);
}
details.folding summary:after {
  position: absolute;
  content: '+';
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  line-height: 1;
}
details.folding[open] >summary {
  color: var(--text-p1);
  font-weight: 700;
  z-index: 1;
}
details.folding[open] >summary:after {
  content: '-';
}
details.folding[open] >div.body {
  padding: 0 1rem 1rem;
  margin: 0 -1rem -1rem;
  color: var(--text-p1);
  --fsp: calc(17px - 1px);
}
details.folding[open] >div.body >:first-child {
  margin-top: 1rem;
}
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 figcaption {
  display: none;
}
details.folding[child=codeblock]>div.body .highlight figcaption span {
  background: var(--theme-block);
}
details.folding[child=codeblock]>div.body .highlight .code:before {
  content: none;
}
details.folding[child=codeblock]>div.body .highlight+.highlight {
  border-top: 1px dashed var(--theme-border);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
details.folding[child=iframe] {
  overflow: hidden;
  background: none;
}
details.folding[child=iframe] >summary {
  background: none;
}
details.folding[child=iframe] >div.body {
  padding: 0;
  background: none;
  overflow: hidden;
}
.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://gcore.jsdelivr.net/gh/cdn-x/placeholder@1.0.12/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-posts-wrap .grid-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2px;
  overflow: hidden;
  border-radius: 22px;
}
.users-posts-wrap .user-post-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 16px;
  font-weight: 500;
  border-radius: 4px;
  background: var(--block);
  padding: 1rem;
}
.users-posts-wrap .user-post-card div,
.users-posts-wrap .user-post-card span {
  line-height: 1.2;
}
.users-posts-wrap .user-post-card .labels {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}
.users-posts-wrap .user-post-card .labels .label {
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin: 4px 2px 0 2px;
  line-height: 1;
  border-radius: 16px;
}
.users-posts-wrap .user-post-card .avatar-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.users-posts-wrap .user-post-card .card-link {
  color: var(--text-p1);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  -webkit-transition: width 0.2s ease-out;
  -o-transition: width 0.2s ease-out;
}
.users-posts-wrap .user-post-card .card-link span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  position: relative;
}
.users-posts-wrap .user-post-card .card-link .title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  max-width: 100%;
}
.users-posts-wrap .user-post-card .card-link .lazy-box {
  border-radius: 64px;
  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-posts-wrap .user-post-card .card-link img {
  object-fit: cover;
  display: block;
  width: 64px;
  height: 64px;
}
.users-posts-wrap .user-post-card .previews {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.users-posts-wrap .user-post-card .previews .empty {
  min-height: 1rem;
}
.users-posts-wrap .user-post-card .previews .desc {
  font-size: 1.2rem;
  color: var(--text-p3);
  font-weight: 400;
  margin: 1rem 0;
  margin-right: auto;
  position: relative;
}
.users-posts-wrap .user-post-card .previews .desc:before {
  position: absolute;
  font-weight: 900;
  font-size: 32px;
  color: var(--block-border);
  top: 0;
  content: '“';
  left: -16px;
  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;
}
.users-posts-wrap .user-post-card .previews .spacer {
  height: 100%;
}
.users-posts-wrap .user-post-card .previews .posts {
  margin: 0.5rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.users-posts-wrap .user-post-card .previews .post-link {
  display: flex;
  flex-direction: column;
  color: var(--text-p1);
  position: relative;
  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;
}
.users-posts-wrap .user-post-card .previews .post-link+.post-link {
  margin-top: 1rem;
}
.users-posts-wrap .user-post-card .previews .post-link:before {
  content: '';
  position: absolute;
  left: -12px;
  top: 2px;
  height: calc(0.875rem - 2px);
  width: 4px;
  border-radius: 4px;
  background: var(--block-border);
  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;
}
.users-posts-wrap .user-post-card .previews .post-link:hover:before {
  background: var(--accent);
  height: 100%;
  top: 0;
}
.users-posts-wrap .user-post-card .previews .post-link span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  position: relative;
}
.users-posts-wrap .user-post-card .previews .title {
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  position: relative;
}
.users-posts-wrap .user-post-card .previews .date {
  font-size: 0.75rem;
  color: var(--text-p3);
  margin-top: 0.25rem;
}
.users-posts-wrap .user-post-card .previews .no-post {
  font-size: 0.8125rem;
  color: var(--text-p4);
}
.users-posts-wrap .user-post-card:hover .desc:before {
  color: var(--accent);
  transform: scale(1.2) translateX(-4px);
}
.users-posts-wrap .user-post-card .card-link:hover .lazy-box {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 12px 16px -4px rgba(0,0,0,0.2);
}
.users-posts-wrap .user-post-card .post-link:hover {
  color: var(--accent);
}
.users-wrap .grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}
.users-wrap .user-card .card-link {
  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: 8px;
  overflow: hidden;
  position: relative;
  padding: 1rem 0.5rem;
}
.users-wrap .user-card .card-link .name {
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  position: relative;
}
.users-wrap .user-card .card-link .lazy-box {
  border-radius: 64px;
  margin: 0 0 0.5rem;
}
.users-wrap .user-card .card-link img {
  object-fit: cover;
  display: block;
  width: 48px;
  height: 48px;
}
.users-wrap .user-card .label {
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 16px;
  font-weight: 500;
}
.users-wrap .user-card .card-link .lazy-box {
  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-border);
}
.users-wrap .user-card .card-link:hover .lazy-box {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 12px 16px -4px rgba(0,0,0,0.2);
}
.tag-plugin.gallery .grid-cell,
.tag-plugin.gallery .flow-cell {
  display: block;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.tag-plugin.gallery .grid-cell:hover .image-meta,
.tag-plugin.gallery .flow-cell:hover .image-meta {
  background: rgba(0,0,0,0.5);
}
.tag-plugin.gallery .grid-cell:hover .image-caption,
.tag-plugin.gallery .flow-cell:hover .image-caption {
  color: #fff;
}
.tag-plugin.gallery img {
  object-fit: cover;
  max-height: 100%;
  display: block;
}
.tag-plugin.gallery .image-meta {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: transparent;
  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;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tag-plugin.gallery .image-meta .image-caption {
  display: block;
  font-size: 0.8125rem;
  color: transparent;
  pointer-events: none;
  line-height: 1.2;
  margin: 0.5rem;
  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;
  text-align: left;
}
.tag-plugin.gallery .image-meta .image-caption:empty {
  display: none;
}
.tag-plugin.gallery .grid-cell >img {
  transition: transform 0.5s ease-out;
  -moz-transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
}
.tag-plugin.gallery .grid-cell:hover >img {
  transform: scale(1.1);
}
.tag-plugin.gallery.grid-box {
  display: grid;
}
.tag-plugin.gallery.grid-box[size='xs'] {
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  grid-gap: 2px;
}
.tag-plugin.gallery.grid-box[size='xs'] .grid-cell,
.tag-plugin.gallery.grid-box[size='xs'] img {
  border-radius: 2px;
}
.tag-plugin.gallery.grid-box[size='xs'] .image-caption {
  font-size: 0.75rem;
}
.tag-plugin.gallery.grid-box[size='s'] {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 2px;
}
.tag-plugin.gallery.grid-box[size='s'] .grid-cell,
.tag-plugin.gallery.grid-box[size='s'] img {
  border-radius: 2px;
}
.tag-plugin.gallery.grid-box[size='m'] {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 4px;
}
.tag-plugin.gallery.grid-box[size='m'] .grid-cell,
.tag-plugin.gallery.grid-box[size='m'] img {
  border-radius: 4px;
}
.tag-plugin.gallery.grid-box[size='l'] {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 8px;
}
.tag-plugin.gallery.grid-box[size='l'] .grid-cell,
.tag-plugin.gallery.grid-box[size='l'] img {
  border-radius: 8px;
}
.tag-plugin.gallery.grid-box[size='xl'] {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
.tag-plugin.gallery.grid-box[size='xl'] .grid-cell,
.tag-plugin.gallery.grid-box[size='xl'] img {
  border-radius: 16px;
}
.tag-plugin.gallery.grid-box[size='mix'] {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 4px;
}
.tag-plugin.gallery.grid-box[size='mix'] .grid-cell,
.tag-plugin.gallery.grid-box[size='mix'] img {
  border-radius: 4px;
}
.tag-plugin.gallery.grid-box[size='mix'] .grid-cell:nth-child(3n+1) {
  grid-column: auto/span 2;
  grid-row: auto/span 2;
}
.tag-plugin.gallery.grid-box[ratio='square'] .grid-cell {
  aspect-ratio: 1;
}
.tag-plugin.gallery.grid-box[ratio='portrait'] .grid-cell {
  aspect-ratio: 2/3;
}
.tag-plugin.gallery.grid-box .grid-cell {
  background: var(--block);
}
.tag-plugin.gallery.grid-box .grid-cell img {
  width: 100%;
  height: 100%;
}
.tag-plugin.gallery.flow-box {
  column-count: 3;
  column-gap: 8px;
}
.tag-plugin.gallery.flow-box .flow-cell {
  border-radius: 8px;
  padding-bottom: 8px;
}
.tag-plugin.gallery.flow-box .flow-cell img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.tag-plugin.gallery.flow-box .flow-cell:has(img.loading),
.tag-plugin.gallery.flow-box .flow-cell:has(img.error) {
  background-color: var(--block);
}
.tag-plugin.gallery.flow-box .flow-cell:has(img.loading) img,
.tag-plugin.gallery.flow-box .flow-cell:has(img.error) img {
  background-color: var(--block);
}
.tag-plugin.gallery.flow-box .image-meta {
  border-radius: 8px;
  margin-bottom: 8px;
}
.tag-plugin.ghcard {
  line-height: 0;
}
.tag-plugin.ghcard a.ghcard {
  display: inline-block;
}
.tag-plugin.grid {
  display: grid;
  grid-gap: 16px;
}
.tag-plugin.grid[bg]>.cell> p {
  line-height: 1.5;
}
.tag-plugin.grid[bg]>.cell> :first-child {
  margin-top: 0;
}
.tag-plugin.grid[bg]>.cell> :last-child {
  margin-bottom: 0;
}
.tag-plugin.grid[bg]>.cell> p:first-child {
  margin-top: -0.25em;
}
.tag-plugin.grid[bg]>.cell> p:last-child {
  margin-bottom: -0.25em;
}
.tag-plugin.grid[bg]>.cell {
  padding: 1rem;
  border-radius: 22px;
}
.tag-plugin.grid[bg='box']>.cell {
  background: var(--block);
}
.tag-plugin.grid[bg='card']>.cell {
  background: var(--card);
  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;
}
:root[data-theme="light"] .tag-plugin.grid[bg='card']>.cell {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root[data-theme="light"] .tag-plugin.grid[bg='card']>.cell:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
:root[data-theme="dark"] .tag-plugin.grid[bg='card']>.cell:hover {
  box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
}
:root:not([data-theme]) .tag-plugin.grid[bg='card']>.cell {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root:not([data-theme]) .tag-plugin.grid[bg='card']>.cell:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .tag-plugin.grid[bg='card']>.cell:hover {
    box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
  }
}
.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: calc(17px - 2px);
  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);
}
span.tag-plugin.icon {
  display: inline-block;
  margin: -4px 1px 0;
  vertical-align: middle;
}
span.tag-plugin.icon svg,
span.tag-plugin.icon img {
  display: block;
  height: 1.5em;
  width: auto;
}
span.tag-plugin.icon svg {
  color: var(--theme);
}
span.tag-plugin.icon img {
  object-fit: contain;
}
p>strong>span.tag-plugin.icon {
  margin: -4px 4px 0 0;
}
.tag-plugin.icon-wrap span.tag-plugin.icon {
  margin-right: 4px;
}
.tag-plugin.image {
  margin-top: 1rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.tag-plugin.image .image-bg {
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 100%;
}
.tag-plugin.image .image-bg:has(img.lazy.loading),
.tag-plugin.image .image-bg:has(img.lazy.error) {
  background-color: var(--block);
}
.tag-plugin.image .image-bg:hover .image-download {
  opacity: 1 !important;
}
.tag-plugin.image .image-bg img {
  display: block;
  object-fit: cover;
  border-radius: 20px;
}
.tag-plugin.image .image-bg .image-download {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.125rem;
  padding: 6px;
  line-height: 0;
  border-radius: 40px;
  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: var(--theme);
}
.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.8125rem;
  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: 22px;
  border-bottom-right-radius: 22px;
  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: var(--accent);
}
.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: var(--accent);
}
.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: var(--accent);
  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: var(--accent);
  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: var(--accent);
}
.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: var(--accent);
}
.md-text u {
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}
.md-text emp {
  width: fit-content;
  text-decoration: none;
  border-bottom: 4px dotted var(--accent);
}
.md-text wavy {
  text-decoration: underline wavy var(--accent);
}
.md-text del {
  color: var(--text-p3);
  text-decoration: line-through var(--text-p3);
}
.md-text kbd {
  border-radius: 4px;
  border: 1px solid #d2d2d2;
  border-bottom-width: 2px;
  background: var(--card);
  padding: 2px 4px 1px 4px;
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  font-weight: 700;
}
.md-text psw {
  color: transparent;
  background: #a1a1a1;
  border-radius: 2px;
  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 blur {
  filter: blur(4px);
  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 blur:hover {
  filter: blur(0);
}
.md-text sup,
.md-text sub {
  color: var(--theme);
  line-height: 1;
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, 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;
  text-align: left;
}
.md-text .link-card {
  background: var(--card);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  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;
}
:root[data-theme="light"] .md-text .link-card {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root[data-theme="light"] .md-text .link-card:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
:root[data-theme="dark"] .md-text .link-card:hover {
  box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
}
:root:not([data-theme]) .md-text .link-card {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root:not([data-theme]) .md-text .link-card:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .md-text .link-card:hover {
    box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
  }
}
.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;
  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.5px 2px 1px;
  border-radius: 5.5px;
  background: var(--theme-mark);
  color: var(--text);
}
.ds-mdrender p strong {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.l_body[text-indent] article.content .ds-mdrender p:not([class]) {
  text-indent: 0;
}
.l_body[type=story] .md-text.content .ds-mdrender ol,
.l_body[type=story] .md-text.content .ds-mdrender ul {
  margin-left: 0.5rem;
}
.tag-plugin.video-player {
  line-height: 0;
  margin: auto;
}
.tag-plugin.video-player video,
.tag-plugin.video-player iframe {
  border-radius: 22px;
  box-shadow: 0 12px 16px -4px rgba(0,0,0,0.2);
  z-index: 1;
  background: var(--block);
  width: 100%;
  height: 100%;
  margin: 0;
}
.tag-plugin.navbar {
  display: inline-flex;
}
.tag-plugin.navbar a {
  box-sizing: border-box;
  padding: 0.25rem 0;
  color: inherit;
  position: relative;
}
.tag-plugin.navbar a+a {
  margin-left: 1rem;
}
.tag-plugin.navbar a:after {
  content: '';
  position: absolute;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  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;
}
.tag-plugin.navbar a.active:after,
.tag-plugin.navbar a:hover:after {
  background: var(--theme);
}
.md-text .tag-plugin.note {
  position: relative;
  padding: 0.25rem 1rem;
  border-radius: 22px;
  background: var(--theme-block);
  overflow: hidden;
  border: 1px solid var(--theme-border);
  color: var(--text-p1);
}
.md-text .tag-plugin.note >.title {
  --fsp: calc(17px - 1px);
  font-size: var(--fsp);
  line-height: 1.5;
  margin-top: var(--gap-p-compact);
  font-weight: 500;
  color: var(--text);
}
.md-text .tag-plugin.note >.body {
  margin-top: var(--gap-p-compact);
  margin-bottom: var(--gap-p-compact);
}
.md-text .tag-plugin.note >.body,
.md-text .tag-plugin.note >.body p {
  --fsp: calc(17px - 2px);
  font-size: var(--fsp);
  line-height: 1.5;
}
.md-text .tag-plugin.note >.body:only-child {
  margin: calc(var(--gap-p) - 0.25rem) 0;
}
.md-text .tag-plugin.note[color] code {
  background: none;
}
.md-text .tag-plugin.note[child=codeblock] {
  padding: 0;
  background: var(--theme-codeblock);
}
.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=codeblock] .highlight figcaption span {
  background: var(--theme-block);
}
.md-text .tag-plugin.note[child=codeblock] .highlight+.highlight {
  border-top: 1px dashed var(--theme-border);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.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] {
  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;
}
.l_body[type=story] .tag-plugin.note .title p:not([class]) {
  text-indent: 0;
}
.md-text .tag-plugin.okr {
  position: relative;
  border-radius: 22px;
  background: var(--theme-block);
  border: 1px solid var(--theme-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;
  flex-wrap: wrap;
}
.tag-plugin.okr .okr-item .labels .label {
  background: var(--theme-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);
  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);
}
@media screen and (max-width: 667px) {
  .tag-plugin.okr .okr-item {
    grid-template-columns: 2.8rem auto 50px;
    grid-column-gap: 0.5rem;
    padding: 0.5rem;
  }
  .tag-plugin.okr .okr-item .okr-left .title {
    padding: 0 0.25rem;
  }
  .tag-plugin.okr .okr-item .label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.tag-plugin.note blockquote,
.tag-plugin.folding blockquote {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: none;
  padding-top: 0;
  padding-bottom: 0;
}
.md-text .tag-plugin.poetry {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  --fsp: 17px;
}
.md-text .tag-plugin.poetry .content >.title {
  font-weight: 500;
  margin-top: var(--gap-p);
}
.md-text .tag-plugin.poetry .content >.meta {
  color: var(--text-p2);
  --fsp: calc(17px - 3px);
  font-size: var(--fsp);
  font-weight: 500;
}
.md-text .tag-plugin.poetry .content >.meta span+span {
  margin-left: 4px;
}
.md-text .tag-plugin.poetry .content >.body {
  margin: var(--gap-p) 0;
  border-top: 1px dashed var(--block-border);
  border-bottom: 1px dashed var(--block-border);
  line-height: 2;
}
.md-text .tag-plugin.poetry .content >.footer {
  font-style: italic;
  color: var(--text-p4);
  margin: var(--gap-p) 0;
  --fsp: calc(17px - 3px);
  font-size: var(--fsp);
}
.md-text .tag-plugin.poetry .content {
  padding-left: 1rem;
  position: relative;
}
.md-text .tag-plugin.poetry .content:before {
  content: '';
  position: absolute;
  width: 4px;
  left: -4px;
  top: 4px;
  bottom: 4px;
  border-radius: 4px;
  background: var(--block);
}
.md-text .tag-plugin.poetry .content >.title {
  position: relative;
}
.md-text .tag-plugin.poetry .content >.title:before {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(-1rem - 4px);
  top: 6px;
  bottom: 6px;
  border-radius: 4px;
  background: var(--accent);
}
.md-text .tag-plugin.quot {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  --gap-p: 2rem;
  margin: var(--gap-p) 1rem;
}
.md-text .tag-plugin.quot .content {
  display: flex;
  align-items: center;
  border-bottom: none;
  font-weight: 700;
  padding: 0 24px;
  line-height: 1.2;
}
@media screen and (max-width: 500px) {
  .md-text .tag-plugin.quot .content {
    padding: 0 20px;
  }
}
.md-text .tag-plugin.quot .content {
  position: relative;
}
.md-text.content .tag-plugin.quot {
  text-wrap: balance;
}
.md-text.content .tag-plugin.quot h1,
.md-text.content .tag-plugin.quot h2 {
  font-size: calc(17px + 11px);
  font-weight: 900;
  padding: 4px 32px 0;
}
@media screen and (max-width: 500px) {
  .md-text.content .tag-plugin.quot h1,
  .md-text.content .tag-plugin.quot h2 {
    padding: 4px 24px 0;
  }
}
.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: calc(17px + 7px);
}
.md-text.content .tag-plugin.quot p {
  font-size: calc(var(--fsp) + 2px);
  color: var(--text);
}
.md-text .tag-plugin.quot img,
.md-text .tag-plugin.quot svg {
  height: 1.5em;
  display: inline-block;
  color: var(--accent);
  border-radius: 0;
  flex-shrink: 0;
}
.md-text .tag-plugin.quot span.text {
  margin: 0 0.5rem;
  padding-top: 1px;
}
.md-text .tag-plugin.quot span.empty {
  padding: 0 8px;
}
.md-text .tag-plugin.quot.p .content {
  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 .tag-plugin.quot.p .content .text {
  position: relative;
}
.md-text .tag-plugin.quot.p .content .text:after {
  content: "";
  position: absolute;
  --width: 90%;
  width: var(--width);
  height: 4px;
  left: calc(50% - var(--width) / 2);
  bottom: -8px;
  border-radius: 100%;
  background: var(--text);
  opacity: 0.1;
  filter: blur(2px);
  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 .tag-plugin.quot.p:hover .content {
  transform: translateY(-4px) scale(1.05);
}
.md-text .tag-plugin.quot.p:hover .content .text:after {
  opacity: 0.2;
  filter: blur(8px);
  transform: translateY(4px) scale(1.2, 1.5);
}
.tag-plugin.blockquote {
  position: relative;
}
.tag-plugin.blockquote p:not([class]) {
  text-indent: 0 !important;
}
.tag-plugin.blockquote[indent='true'] p:not([class]) {
  text-indent: calc(var(--fsp) * 2) !important;
}
.tag-plugin.ds-rating {
  text-align: center;
}
.tag-plugin.ds-rating .header {
  margin: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.tag-plugin.ds-rating .body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tag-plugin.ds-rating .body button {
  color: var(--text-p1);
  font-size: 1rem;
  padding: 0;
  border-radius: 8px;
  display: flex;
  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;
  color: var(--theme);
  opacity: 0.2;
}
.tag-plugin.ds-rating .body button svg {
  font-size: 1.5em;
  margin: 4px;
}
.tag-plugin.ds-rating .body button img {
  margin: 4px;
}
.tag-plugin.ds-rating .body button:hover,
.tag-plugin.ds-rating .body button.hover,
.tag-plugin.ds-rating .body button.preview {
  opacity: 1;
}
.tag-plugin.ds-rating .body span {
  line-height: 1;
  font-size: 1em;
  margin: 4px;
}
.tag-plugin.ds-rating .footer {
  margin: 0.5rem;
  color: var(--text-p3);
  font-weight: 500;
  font-size: 0.75rem;
}
.tag-plugin.ds-rating.rated {
  pointer-events: none;
}
.sites-wrap .grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 1rem 1rem;
}
.sites-wrap .grid-box .grid-cell {
  aspect-ratio: 1.5;
}
.sites-wrap .site-card .card-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sites-wrap .site-card .card-link .lazy-box {
  border-radius: 16px;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.2);
  overflow: hidden;
}
.sites-wrap .site-card .card-link .lazy-box >img {
  object-fit: cover;
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
}
.sites-wrap .site-card .card-link .info {
  margin-top: 0.5rem;
  line-height: 1.2;
  position: relative;
}
.sites-wrap .site-card .card-link .info .lazy-box {
  float: left;
  margin-right: 8px;
  margin-top: 2px;
  border-radius: 100%;
}
.sites-wrap .site-card .card-link .info .lazy-box >img {
  width: 28px;
  height: 28px;
}
.sites-wrap .site-card .card-link .info span {
  display: block;
}
.sites-wrap .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 .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: 1;
}
.sites-wrap .site-card .card-link .labels {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  pointer-events: none;
  user-select: none;
  opacity: 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;
}
.sites-wrap .site-card .card-link .labels .label {
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px 2px 6px;
  margin: 2px;
  line-height: 1;
  border-radius: 16px;
}
.sites-wrap .site-card .card-link >.lazy-box {
  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;
}
.sites-wrap .site-card .card-link:hover .labels {
  opacity: 0;
  transform: translateY(-4px);
}
.sites-wrap .site-card .card-link:hover >.lazy-box {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
.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,
.tag-plugin.tabs[align=left] .tab-content {
  align-self: flex-start;
}
.tag-plugin.tabs[align=center] {
  align-items: center;
}
.tag-plugin.tabs[align=center] .nav-tabs,
.tag-plugin.tabs[align=center] .tab-content {
  align-items: center;
}
.tag-plugin.tabs[align=right] {
  align-items: flex-end;
}
.tag-plugin.tabs[align=right] .nav-tabs,
.tag-plugin.tabs[align=right] .tab-content {
  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-border);
  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;
  --fsp: calc(17px - 3px);
  font-size: var(--fsp);
  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-border);
}
.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: var(--theme);
  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;
  display: flex;
  flex-direction: column;
}
.tag-plugin.tabs .tab-content .tab-pane {
  display: block;
  max-width: 100%;
}
.tag-plugin.tabs .tab-content .tab-pane:not(.active) {
  height: 0;
  overflow: hidden;
}
.tag-plugin.tabs .tab-content .tab-pane.active {
  height: auto;
}
.tag-plugin.tabs .tab-content:has(.grid-box),
.tag-plugin.tabs .tab-pane:has(.grid-box) {
  width: 100%;
}
.tag-plugin.timeline {
  position: relative;
  padding-left: 16px;
}
.tag-plugin.timeline p>img {
  border-radius: 12px;
}
.tag-plugin.timeline:before {
  content: '';
  position: absolute;
  z-index: 0;
  background: var(--block);
  width: 4px;
  left: 0px;
  border-radius: 8px;
  top: 0.5rem;
  bottom: 0;
}
.tag-plugin.timeline:has(.loading-wrap) {
  padding-left: 0;
}
.tag-plugin.timeline:has(.loading-wrap):before {
  display: none;
}
.l_body[type=story] .md-text.content .tag-plugin.timeline ol,
.l_body[type=story] .md-text.content .tag-plugin.timeline ul {
  margin-left: 0;
}
.l_body[type=story] .md-text.content .tag-plugin.timeline p>img {
  border-radius: 12px;
}
.tag-plugin.timeline .timenode {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 100%;
}
.tag-plugin.timeline .timenode >.header,
.tag-plugin.timeline .timenode >.body {
  box-sizing: border-box;
  max-width: 100%;
}
.tag-plugin.timeline .timenode[highlight] .header:before {
  background: var(--theme);
}
.tag-plugin.timeline .timenode+.timenode {
  margin-top: 1rem;
}
.tag-plugin.timeline .timenode:hover .header span {
  color: var(--text-p1);
}
.tag-plugin.timeline .timenode:hover .header:before {
  background: var(--theme);
  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.8125rem;
}
.tag-plugin.timeline .timenode .header a.user-info span {
  font-weight: 600;
}
.tag-plugin.timeline .timenode .header .user-info {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-p1);
  margin-right: 8px;
  line-height: 1;
  border-radius: 16px;
}
.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,
.tag-plugin.timeline .timenode .header span {
  font-weight: 500;
  color: var(--text-p3);
  line-height: 1;
}
.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(--card);
  border-radius: 16px;
  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);
}
.tag-plugin.timeline .body p {
  --fsp: calc(17px - 1px);
}
.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[data-api] a.body {
  display: block;
  color: var(--text-p1);
  line-height: 1.25;
  padding: 0.75rem 1rem;
  --fsp: calc(17px - 1px);
  font-size: var(--fsp);
}
.tag-plugin.timeline[data-api] .body p.title {
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--block-border);
}
.tag-plugin.timeline[data-api] .body p.title:only-child {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.tag-plugin.timeline[data-api] .body p.title a {
  color: inherit;
  text-decoration: none;
  padding-bottom: 0.75rem;
  display: inline-block;
  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;
}
.tag-plugin.timeline[data-api] .body p.title a:hover {
  color: var(--accent);
}
.tag-plugin.timeline[data-api] .body >p:first-child:not([class]) {
  font-size: 1rem;
  margin: 0.25rem 0 0.5rem;
}
.tag-plugin.timeline[data-api] .body a:has(img):after {
  display: none;
}
.tag-plugin.timeline[data-api] .body a img {
  margin: 0 auto;
}
.tag-plugin.timeline[data-api] .body img {
  margin: 0.5rem auto;
}
.tag-plugin.timeline[data-api] .body .lazy-box {
  margin: 0.5rem 0;
  border-radius: 20px;
}
.tag-plugin.timeline[data-api] .body .lazy-box >img {
  margin: 0 auto;
}
.tag-plugin.timeline[data-api] .body pre code {
  font-size: 0.8125rem;
}
aside .tag-plugin.timeline[data-api] .body .lazy-box {
  border-radius: 12px;
}
.tag-plugin.timeline[data-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;
}
.tag-plugin.timeline[data-api] .body .footer span {
  line-height: 1.8;
}
.tag-plugin.timeline[data-api] .body .footer:empty {
  display: none;
}
.tag-plugin.timeline[data-api] .body .footer .flex {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  align-items: stretch;
}
.tag-plugin.timeline[data-api] .body .footer .left+.right {
  margin-left: 4px;
}
.tag-plugin.timeline[data-api] .body .footer .item {
  border-width: 1px;
  border-style: solid;
  margin: 2px;
  border-radius: 4px;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  border-color: var(--link);
}
.tag-plugin.timeline[data-api] .body .footer .item:first-child {
  margin-left: 0;
}
.tag-plugin.timeline[data-api] .body .footer .item:last-child {
  margin-right: 0;
}
.tag-plugin.timeline[data-api] .body .footer a.item {
  background: var(--block);
  border-color: var(--block-border);
  color: inherit;
}
.tag-plugin.timeline[data-api] .body .footer a.item:hover {
  background: var(--block-border);
}
.tag-plugin.timeline[data-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 {
  --fsp: calc(17px - 2px);
  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;
}
.tag-plugin.timeline.ds-memos .body p:first-child {
  margin-top: 2px;
}
.tag-plugin.timeline.ds-memos .body p:last-child {
  margin-bottom: 2px;
}
.tag-plugin.timeline.ds-memos .body img {
  margin: 0.5rem 0;
  max-height: 128px;
  cursor: zoom-in;
}
.tag-plugin.timeline.ds-memos .body .tag-plugin.image {
  display: flex;
}
.tag-plugin.timeline.ds-memos .body .tag-plugin.image .image-bg+.image-bg {
  margin-left: 4px;
}
details.toc {
  background: var(--block);
  border: 1px solid var(--block-border);
  border-radius: 22px;
  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-border);
}
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;
  }
}
.tag-plugin.ds-vote {
  text-align: center;
}
.tag-plugin.ds-vote .header {
  margin: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.tag-plugin.ds-vote .body {
  width: 50%;
  min-width: 240px;
  max-width: 320px;
  margin: 1rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
.tag-plugin.ds-vote .body button {
  color: var(--text-p1);
  font-size: 1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: var(--block);
  border-radius: 8px;
  font-weight: 500;
  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;
  color: var(--theme);
  background: var(--theme-a10);
}
.tag-plugin.ds-vote .body button svg {
  font-size: 1.5em;
  margin: 8px;
}
.tag-plugin.ds-vote .body button span {
  line-height: 1;
  font-size: 1em;
  margin-bottom: 4px;
}
@media (prefers-color-scheme: dark) {
  .tag-plugin.ds-vote .body button {
    background: var(--theme-a20);
  }
}
.tag-plugin.ds-vote .body button.vote-up {
  --hue: 128.38235294117646deg;
  --sat: 53.96825396825397%;
  --light: 50.588235294117645%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
}
.tag-plugin.ds-vote .body button.vote-down {
  --hue: 4.105263157894738deg;
  --sat: 89.62264150943398%;
  --light: 58.43137254901961%;
  --alpha: 1;
  --theme: hsla(var(--hue) var(--sat) var(--light) / 1);
  --theme-a10: hsla(var(--hue) var(--sat) var(--light) / 0.1);
  --theme-a20: hsla(var(--hue) var(--sat) var(--light) / 0.2);
  --theme-a30: hsla(var(--hue) var(--sat) var(--light) / 0.3);
}
.tag-plugin.ds-vote .body button:hover,
.tag-plugin.ds-vote .body button.active {
  color: #fff;
  background: var(--theme);
}
.tag-plugin.ds-vote.voted {
  pointer-events: none;
}
.l_left footer.footer {
  margin: 0.5rem var(--gap-max) 1rem;
}
.social-wrap {
  display: grid;
  grid-gap: 0.25rem 0.25rem;
  grid-template-columns: repeat(auto-fill, 32px);
  text-align: center;
}
.social-wrap .social {
  line-height: 0;
  display: inline-block;
  padding: 6px;
  border-radius: 32px;
  filter: grayscale(100%);
  overflow: hidden;
  background: transparent;
  transition: box-shadow 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}
.social-wrap .social:hover {
  z-index: 1;
  filter: unset;
  background: var(--bg-a100);
}
.social-wrap .social img {
  border-radius: 2px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 48px;
}
.logo-wrap img.avatar {
  object-fit: cover;
}
.logo-wrap img.icon {
  object-fit: contain;
}
.logo-wrap .icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.logo-wrap a {
  color: inherit;
  display: flex;
  align-items: center;
}
.logo-wrap a.avatar {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 48px;
  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;
  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.5rem;
  font-weight: 900;
  color: inherit;
  line-height: 1.2;
  display: block;
  position: relative;
}
.logo-wrap a.title .main {
  color: var(--text);
}
.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;
}
.nav-area .menu {
  width: 100%;
  display: grid;
  margin: 8px 0;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.nav-area .menu::-webkit-scrollbar {
  display: none;
}
.nav-area .menu::-webkit-scrollbar-track-piece {
  background: transparent;
}
.nav-area .menu::-webkit-scrollbar-thumb {
  display: none;
}
.nav-area .menu .nav-item {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  border-radius: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-p3);
  text-align: center;
  background: var(--bg-a50);
  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;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-area .menu .nav-item img,
.nav-area .menu .nav-item svg {
  height: 28px;
  object-fit: contain;
  filter: grayscale(50%) brightness(0.8) opacity(0.5);
  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;
}
.nav-area .menu .nav-item span {
  text-overflow: ellipsis;
  word-break: keep-all;
}
.nav-area .menu .nav-item.active,
.nav-area .menu .nav-item:hover {
  color: var(--text-p1);
  background: var(--bg-a100);
}
.nav-area .menu .nav-item.active img,
.nav-area .menu .nav-item:hover img,
.nav-area .menu .nav-item.active svg,
.nav-area .menu .nav-item:hover svg {
  filter: unset;
}
.nav-area .menu .nav-item.active:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  bottom: 2px;
  background: currentColor;
}
.nav-area {
  margin: 1rem var(--gap-margin) 0;
}
.search-wrapper {
  padding-bottom: 32px;
  width: 100%;
  border-radius: 16px;
}
.search-wrapper >.search-form {
  position: sticky;
  top: 0;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.38s ease-out;
  z-index: 1;
  border-radius: 16px;
  color: var(--text);
}
.search-wrapper >.search-form >* {
  z-index: 1;
}
.search-wrapper >.search-form:before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  border-radius: 14px;
  background: var(--bg-a100);
  z-index: 0;
  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;
}
@media screen and (prefers-color-scheme: dark) {
  .search-wrapper >.search-form:before {
    background: var(--bg-a20);
  }
}
.search-wrapper >.search-form:hover:before,
.search-wrapper >.search-form:has(input:focus):before,
.search-wrapper >.search-form:has(input:not(:placeholder-shown)):before {
  background: var(--bg-a100);
  height: 100%;
  left: 0;
  right: 0;
}
.search-wrapper .search-input {
  width: 100%;
  box-sizing: border-box;
  font-family: "Avenir Next Rounded", "Nunito", "PingFang SC", "Microsoft Yahei", system-ui, sans-serif;
  font-size: 0.875rem;
  padding: 12px 0;
  color: var(--text);
}
.search-wrapper .search-input::placeholder {
  color: var(--text-p3);
}
@media screen and (prefers-color-scheme: dark) {
  .search-wrapper .search-input::placeholder {
    color: var(--text-p2);
  }
}
.search-wrapper .search-button {
  border-radius: 14px;
  display: flex;
  align-items: center;
  height: 40px;
}
.search-wrapper .search-button svg {
  height: 1rem;
  width: calc((var(--side-content-width) + var(--gap-padding) * 2 - 3 * 8px) * 0.25);
  color: var(--text-p2);
  fill: currentColor;
}
.search-wrapper .search-button svg path[p-id="1562"] {
  color: var(--theme);
}
.search-wrapper[searching='true'] .search-button path[p-id="1562"] {
  color: #3dc550;
}
.search-wrapper.noresult[searching='true'] .search-button path[p-id="1562"] {
  color: #f44336;
}
.search-wrapper .search-no-result {
  display: none;
  color: var(--text-p1);
  text-align: center;
  font-size: 0.875rem;
  padding: 2rem;
  margin: 8px 0;
  background: var(--bg-a20);
  border-radius: 16px;
}
.search-wrapper #search-result {
  max-height: 60vh;
  overflow: auto;
  scrollbar-width: none;
  border-radius: 14px;
}
.search-wrapper #search-result::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.search-wrapper #search-result::-webkit-scrollbar-track-piece {
  background: transparent;
}
.search-wrapper #search-result::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.search-wrapper #search-result::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.search-wrapper #search-result:empty {
  display: none;
}
.search-wrapper #search-result .search-result-list {
  padding: 0;
  margin: 8px 0;
  list-style-type: none;
}
.search-wrapper #search-result li a {
  display: block;
  background: var(--bg-a20);
  line-height: 1.2;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  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;
}
.search-wrapper #search-result li a:hover {
  background: var(--bg-a100);
}
.search-wrapper #search-result li+li {
  margin-top: 8px;
}
.search-wrapper #search-result .search-result-title {
  color: var(--text-p1);
  font-weight: 700;
  font-size: 0.9375rem;
}
.search-wrapper #search-result .search-result-content {
  overflow: hidden;
  color: var(--text-p3);
  margin: 4px 0 0;
  max-height: 13em;
  text-align: justify;
  font-size: 0.8125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.search-wrapper #search-result .search-keyword {
  color: #f44336;
  border-bottom: 1px dashed #f44336;
  font-weight: bold;
  filter: grayscale(25%);
}
.search-wrapper.noresult[searching='true'] .search-no-result {
  display: block;
  margin-bottom: 8px;
}
.l_left {
  margin: calc(var(--gap-margin) * 2) var(--gap-margin);
  max-height: calc(100vh - var(--gap-margin) * 2 - 96px);
  border-radius: 30px;
}
.l_left .header {
  margin: var(--gap-max) var(--gap-margin) 0;
}
.l_right {
  margin: calc(var(--gap-margin) * 2) 0;
  border-radius: 30px;
}
@media screen and (min-width: 2048px) {
  .l_left {
    margin-left: auto;
    margin-right: calc(2 * var(--gap-max));
  }
  .l_right {
    margin-left: var(--gap-max);
    margin-right: auto;
  }
}
.l_left .sidebg {
  pointer-events: none;
  position: absolute;
  --inset: 0;
  top: var(--inset);
  bottom: var(--inset);
  left: var(--inset);
  right: var(--inset);
  border-radius: 30px;
  --saturate: 400%;
  --blur-px: ;
  --background-opacity: 1;
  background-position: center;
  background-size: cover;
  --background-opacity: 1;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.6) 4%, rgba(255,255,255,0.3) 8%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, rgba(255,255,255,0.3) 92%, rgba(255,255,255,0.6) 96%, rgba(255,255,255,0.85) 100%), linear-gradient(135deg, #f4faf7 0%, #f0faf6 100%);
  filter: saturate(var(--saturate)) blur(var(--blur-px)) opacity(var(--background-opacity));
}
@media screen and (prefers-color-scheme: dark) {
  .l_left .sidebg {
    --background-opacity: 0.75;
  }
}
.l_left .leftbar-container {
  height: calc(100vh - var(--gap-margin) * 2 - 96px);
  display: flex;
  flex-direction: column;
  word-break: break-all;
  text-align: justify;
  border-radius: 30px;
  overflow: hidden;
}
.l_left .leftbar-container >.widgets {
  border-radius: 14px;
  mask: linear-gradient(#fff, 90%, transparent);
  -webkit-mask: linear-gradient(#fff, 90%, transparent);
}
.l_left .leftbar-container >* {
  z-index: 1;
}
.l_left .leftbar-container:before,
.l_left .leftbar-container:after {
  position: absolute;
  pointer-events: none;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
}
@media screen and (min-width: 667px) {
  .l_left .leftbar-container:before {
    background: rgba(255,255,255,0.5);
    box-shadow: inset 0 0 32px 1px rgba(255,255,255,0.5);
    backdrop-filter: saturate(300%);
    -webkit-backdrop-filter: saturate(300%);
    mask: linear-gradient(#000, rgba(0,0,0,0.5), 70%, transparent, 90%, transparent);
    -webkit-mask: linear-gradient(#000, rgba(0,0,0,0.5), 70%, transparent, 90%, transparent);
  }
}
@media screen and (prefers-color-scheme: dark) {
  .l_left .leftbar-container:before {
    background: rgba(255,255,255,0.05);
    box-shadow: inset 0 0 32px 1px rgba(255,255,255,0.1);
  }
}
@media screen and (max-width: 667px) {
  .l_left {
    overflow: hidden;
    background: var(--bg-a100);
  }
  .l_left .sidebg {
    --inset: 0;
    --saturate: 300%;
  }
  .l_left .leftbar-container:after {
    background: var(--bg-a20);
  }
}
.widget-wrapper.categories-widget .widget-body {
  border-radius: 22px;
  padding: 8px 12px;
  background: #f2f7fd;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.category {
  line-height: 1.4;
  margin: 0;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 3px 8px;
  transition: background-color 0.3s;
  font-size: 12px;
  color: var(--text-p2);
  font-family: inherit;
  text-decoration: none;
}
.category:hover {
  filter: brightness(95%);
}
.category-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
}
.category a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.category a:hover {
  text-decoration: underline;
}
.widget-body .linklist {
  display: grid;
  grid-gap: 8px;
}
.linklist .link {
  border-radius: 14px;
  color: var(--text-p2);
  min-height: 32px;
  padding: 0 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;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.linklist .link.active {
  background: var(--bg-a50);
}
.linklist .link.active svg,
.linklist .link.active img {
  filter: unset;
}
.linklist .link span {
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.linklist .link svg,
.linklist .link img {
  padding: 0 2px;
  max-height: 18px;
  width: auto;
  filter: grayscale(100%) brightness(0.8) opacity(0.8);
  transition: filter 0.2s ease-out;
  -moz-transition: filter 0.2s ease-out;
  -webkit-transition: filter 0.2s ease-out;
  -o-transition: filter 0.2s ease-out;
  flex-shrink: 0;
}
.linklist .link svg:not([class='active-icon']),
.linklist .link img:not([class='active-icon']) {
  color: var(--theme);
}
.widget-body .linklist.left {
  grid-gap: 2px;
}
.linklist.left .link {
  justify-content: space-between;
  padding: 0 16px;
}
.linklist.left .link img,
.linklist.left .link svg {
  width: 1em;
  height: 1em;
  transform: scale(1.2);
}
.linklist.left .link span {
  padding: 0 8px;
}
.linklist .link:hover {
  background: var(--bg-a100);
}
.linklist .link:hover svg {
  filter: unset;
}
.widget-wrapper.ghrepo .repo {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--text-p2);
  background: var(--card);
  border-radius: 16px;
  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;
}
:root[data-theme="light"] .widget-wrapper.ghrepo .repo {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root[data-theme="light"] .widget-wrapper.ghrepo .repo:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
:root[data-theme="dark"] .widget-wrapper.ghrepo .repo:hover {
  box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
}
:root:not([data-theme]) .widget-wrapper.ghrepo .repo {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root:not([data-theme]) .widget-wrapper.ghrepo .repo:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .widget-wrapper.ghrepo .repo:hover {
    box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
  }
}
.widget-wrapper.ghrepo .repo >div+div {
  margin-top: 0.5rem;
}
.widget-wrapper.ghrepo .repo span {
  color: var(--text-p2);
}
.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.user-card .widget-header+.widget-body {
  margin: 0.75rem 0;
}
.widget-wrapper.user-card .widget-header a {
  display: flex;
  align-items: center;
  color: var(--text-p2);
  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;
}
.widget-wrapper.user-card .widget-header a svg {
  margin-right: 4px;
  width: 1em;
  height: 1em;
}
.widget-wrapper.user-card .widget-header a:hover {
  color: var(--text);
}
.widget-wrapper.user-card .widget-body {
  text-align: center;
  background: var(--card);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
.widgets .widget-wrapper.user-card .avatar {
  display: block;
  border-radius: 100%;
  margin: 1rem auto 1.25rem auto;
  max-width: 128px;
  overflow: hidden;
}
.widgets .widget-wrapper.user-card .avatar img {
  display: block;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .widgets .widget-wrapper.user-card .avatar {
    max-width: 50%;
  }
}
.widgets .widget-wrapper.user-card p.username {
  font-weight: 900;
  font-size: calc(17px + 11px);
  color: var(--text);
  margin: 0;
}
.widgets .widget-wrapper.user-card p.bio {
  font-size: 0.8125rem;
  margin: 0;
}
.widgets .widget-wrapper.user-card .follow {
  font-weight: 500;
  border-radius: 64px;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--theme);
  color: #fff;
  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;
}
.widgets .widget-wrapper.user-card .follow svg {
  margin-right: 6px;
  height: 1.5em;
  width: auto;
}
.widgets .widget-wrapper.user-card .follow:hover {
  background: var(--accent);
}
.widgets .widget-wrapper.user-card .buttons {
  margin-top: 1rem;
  align-self: stretch;
  display: grid;
  grid-gap: 2px;
  grid-template-columns: repeat(auto-fill, calc((100% - 2 * 2px) / 3));
}
.widgets .widget-wrapper.user-card .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;
}
.widgets .widget-wrapper.user-card .btn:hover {
  background: var(--block);
}
.widgets .widget-wrapper.user-card .btn .title {
  font-size: 1rem;
  font-weight: 700;
}
.widgets .widget-wrapper.user-card .btn .desc {
  font-size: 0.75rem;
  color: var(--text-p3);
  font-weight: 500;
}
.widget-wrapper.user-card .widget-header+.widget-body {
  margin-top: 4px;
}
.widget-wrapper.post-list .widget-body a {
  font-size: 0.875rem;
  padding: 6px 16px;
  display: block;
  border-radius: 14px;
  color: var(--text-p1);
  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.post-list .widget-body a.active,
.widget-wrapper.post-list .widget-body a:hover {
  background: var(--bg-a100);
}
.widget-wrapper.post-list .widget-body a+a {
  margin-top: 2px;
}
.widget-wrapper.post-list .widget-body a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget-wrapper.post-list .widget-body a .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-wrapper.post-list .widget-body a svg {
  flex-shrink: 0;
  height: 1em;
  width: auto;
  transform: scale(1.2);
}
.widget-wrapper.post-list .widget-body+.widget-header {
  margin-top: 28px;
}
.widget-wrapper.markdown .widget-body {
  border-radius: 16px;
  padding: 0.25rem 1rem;
  background: var(--bg-a50);
}
.widget-wrapper.markdown .widget-body >*:first-child {
  margin-top: 0.75rem;
}
.widget-wrapper.markdown .linklist {
  margin: 1em 0;
}
.widget-wrapper.markdown .linklist .link {
  background: var(--bg-a50);
}
.widget-wrapper.markdown .linklist .link:hover {
  background: var(--bg-a100);
}
.l_right .widget-wrapper.markdown .linklist .link {
  background: var(--block);
}
.l_right .widget-wrapper.markdown .linklist .link:hover {
  background: var(--theme-a20);
}
.widget-wrapper.post-card .widget-body {
  max-width: 100%;
}
.widget-wrapper.post-card .widget-body .item+.item {
  margin-top: 8px;
}
.widget-wrapper.post-card .widget-body .item {
  line-height: 1.2;
  background: var(--bg-a20);
  padding: 10px 16px;
  border-radius: 16px;
  display: block;
  border-left: 0;
  box-sizing: border-box;
}
.widget-wrapper.post-card .widget-body .title {
  color: var(--text-p1);
  font-weight: 500;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  font-weight: 700;
  font-size: 0.875rem;
}
.widget-wrapper.post-card .widget-body .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;
}
.widget-wrapper.post-card .widget-body .item {
  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.post-card .widget-body .item.active {
  background: var(--bg-a50);
}
.widget-wrapper.post-card .widget-body .item:hover {
  background: var(--bg-a50);
}
.widget-wrapper.tagcloud .widget-body {
  border-radius: 22px;
  padding: 8px 12px;
  background: #fff;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 1px;
}
.widget-wrapper.tagcloud .widget-body a {
  word-break: break-word;
  color: var(--text-p2);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  padding: 1.5px 1.5px;
  border-radius: 3px;
  background-color: #f5f5f5;
  transition: background-color 0.3s;
  font-size: 11px;
  flex-shrink: 0;
}
.widget-wrapper.tagcloud .widget-body a:hover {
  background-color: #e0e0e0;
}
.widget-wrapper.tagcloud .widget-body a .tag-count {
  padding: 1.5px 1.5px;
  margin-left: 1px;
  border-radius: 2px;
  color: #fff;
  font-size: 7px;
  display: inline-block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  text-align: center;
}
.widget-wrapper.timeline .tag-plugin.timeline {
  padding-left: 0;
}
.widget-wrapper.timeline .tag-plugin.timeline:before {
  left: 6px;
}
.widget-wrapper.timeline .widget-body {
  overflow: hidden;
}
.widget-wrapper.timeline .body a {
  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;
  word-break: break-all;
  --fsp: calc(17px - 2px);
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode {
  z-index: 1;
  margin-top: 0.25rem;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header {
  margin: 0.25rem var(--gap-padding);
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header .user-info {
  background: none;
  padding-right: 0;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header img {
  display: none;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .header:before {
  left: calc(6px - var(--gap-padding));
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body {
  border-radius: 16px;
  padding: 0.5rem 1rem;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body p,
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body li {
  --fsp: calc(17px - 3px);
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body code {
  background: none;
  padding: 0;
  margin: 0;
}
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body .highlight,
.widget-wrapper.timeline .tag-plugin.timeline .timenode .body pre:not([class]):has(>code) {
  background: var(--bg-a50);
}
.widget-wrapper.timeline .tag-plugin.timeline[data-api] .body .footer {
  background: none;
}
.l_left .widget-wrapper.timeline .tag-plugin.timeline {
  padding-left: 0;
}
.l_left .widget-wrapper.timeline .tag-plugin.timeline:before {
  content: none;
}
.l_left .widget-wrapper.timeline .body {
  box-shadow: none;
  background: var(--bg-a50);
}
.widget-wrapper.toc {
  z-index: 3;
}
.widget-wrapper.toc .widget-body {
  position: relative;
}
.widget-wrapper.toc .widget-body:before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  background: var(--block);
  border-radius: 4px;
}
@media screen and (min-width: 1180px) {
  .widget-wrapper.toc {
    background: var(--background);
  }
}
@media screen and (min-width: 1180px) {
  .l_left .widget-wrapper.toc {
    background: none;
  }
}
.widget-wrapper.toc .toc {
  --fsp: calc(17px - 2px);
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
}
.widget-wrapper.toc .toc li {
  margin: 0;
  list-style: none;
}
.widget-wrapper.toc .toc a {
  --padding: calc(var(--gap-padding) / 2);
  --padding-offset: calc(0 - var(--padding));
  padding: 4px var(--padding);
  margin: 0 var(--padding);
  color: var(--text-p3);
  display: block;
  position: relative;
  border-radius: 14px;
  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;
}
.widget-wrapper.toc .toc a.active:before {
  content: '';
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: -8px;
  width: 4px;
  background: var(--theme);
  border-radius: 4px;
}
.widget-wrapper.toc .toc a:hover {
  background: var(--block-border);
  color: var(--text);
}
.l_right .widgets .widget-wrapper.toc {
  margin-top: 0;
  position: sticky;
  position: -webkit-sticky;
  top: calc(var(--gap-margin) * 1);
  padding: 16px 0;
}
.l_right .widgets .widget-wrapper.toc:first-child {
  top: calc(var(--gap-margin) * 2);
  padding-top: 1rem;
}
.l_right .widgets .widget-wrapper.toc .widget-body .toc {
  max-height: 70vh;
  overflow: auto;
}
@media screen and (max-width: 1440px) {
  .l_right .widgets .widget-wrapper.toc .widget-body .toc {
    max-height: 60vh;
  }
}
@media screen and (max-width: 1180px) {
  .l_right .widgets .widget-wrapper.toc .widget-body .toc {
    max-height: unset;
  }
}
.l_right .widgets .widget-wrapper.toc .widget-body .toc::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.l_right .widgets .widget-wrapper.toc .widget-body .toc::-webkit-scrollbar-track-piece {
  background: transparent;
}
.l_right .widgets .widget-wrapper.toc .widget-body .toc::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.l_right .widgets .widget-wrapper.toc .widget-body .toc::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.widget-wrapper.toc .toc .toc-item {
  font-weight: 500;
  --fsp: calc(17px - 1px);
}
.widget-wrapper.toc .toc .toc-item .toc-item {
  font-weight: 400;
  --fsp: calc(17px - 2px);
}
.widget-wrapper.toc .toc ol {
  padding-left: 0;
}
.widget-wrapper.toc .toc .toc-child .toc-link {
  padding-left: 1.5rem;
}
.widget-wrapper.toc .toc .toc-child .toc-child .toc-link {
  padding-left: 2.5rem;
}
.widget-wrapper.toc .toc .toc-child .toc-child .toc-child .toc-link {
  padding-left: 3.5rem;
}
.widget-wrapper.toc .toc .toc-child .toc-child .toc-child .toc-child .toc-link {
  padding-left: 4.5rem;
}
.widget-wrapper.toc .toc .toc-child .toc-child .toc-child .toc-child .toc-child .toc-link {
  padding-left: 5rem;
}
.widget-wrapper.toc .toc a.toc-link.active {
  color: var(--text);
}
.widget-wrapper.toc .toc a.toc-link.active:before,
.widget-wrapper.toc .toc a.toc-link.active:after {
  content: '';
}
.widget-wrapper.toc[collapse='true'] .toc-item a.toc-link+ol {
  display: none;
}
.widget-wrapper.toc[collapse='true'] .toc a.toc-link.active+ol {
  display: block;
}
.widget-wrapper.toc[collapse='auto'] .toc-item a.toc-link+ol {
  display: none;
}
.widget-wrapper.toc[collapse='auto'] .toc a.toc-link.active+ol {
  display: block;
}
.widget-wrapper.toc[collapse='auto']:hover a.toc-link+ol {
  display: block;
}
.widget-wrapper.toc[collapse='true'] ol:has(> .toc-item a.active) {
  display: block;
}
.widget-wrapper.toc[collapse='auto'] ol:has(> .toc-item a.active) {
  display: block;
}
.widget-wrapper.toc .widget-body {
  display: grid;
  grid-template-rows: 1fr;
  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;
}
.l_right .widgets .widget-wrapper.toc .widget-header .cap-action:hover {
  background: var(--block-border);
}
.l_right .widgets .widget-wrapper.toc.collapse .widget-header .cap-action {
  background: var(--block-border);
}
.l_right .widgets .widget-wrapper.toc.collapse .widget-body {
  grid-template-rows: 0fr;
}
.widget-wrapper.toc .widget-body+.widget-footer:before {
  content: '';
  position: absolute;
  background: var(--block-border);
  top: 0;
  height: 1px;
  left: var(--gap-padding);
  right: var(--gap-padding);
}
.widget-wrapper.toc .widget-footer {
  margin-top: 8px;
  color: var(--text-p2);
  position: relative;
  padding-top: 8px;
}
.widget-wrapper.toc .widget-footer a {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 0.875rem;
  padding: 8px var(--gap-padding);
  border-radius: 14px;
  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;
}
.widget-wrapper.toc .widget-footer a svg,
.widget-wrapper.toc .widget-footer a img {
  height: 16px;
  width: auto;
  margin-right: 8px;
}
.widget-wrapper.toc .widget-footer a:hover {
  background: var(--block-border);
  color: var(--text);
}
.widget-wrapper.toc+.widget-wrapper {
  padding-top: 32px;
}
@media screen and (max-width: 1180px) {
  .l_right {
    background-color: var(--blur-bg);
  }
  @supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
    .l_right {
      background-color: var(--blur-bg) !important;
      backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
      -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
    }
  }
  .l_right:hover {
    background-color: var(--card);
  }
  .l_right .widgets .widget-wrapper.toc {
    position: static;
    background: none;
  }
  .widget-wrapper.toc .toc a {
    color: var(--text-p2);
  }
  .widget-wrapper.toc .widget-footer a {
    background: var(--block);
  }
  .widget-wrapper.toc .widget-footer a+a {
    margin-top: 4px;
  }
}
.widgets .loading-wrap {
  margin: 0.5rem 0;
  background: var(--bg-a50);
}
.widgets {
  overflow: scroll;
  flex-grow: 1;
  scrollbar-width: none;
  z-index: 1;
  line-height: 1.2;
  margin: 0 var(--gap-margin);
}
.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-padding);
  padding-right: var(--gap-padding);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 28px;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #f00;
}
.widgets .widget-wrapper .widget-header .item {
  display: block;
}
.widgets .widget-wrapper .widget-header >span {
  text-align: left;
  opacity: 0.6;
}
.widgets .widget-wrapper .widget-header:empty {
  display: none;
}
.widgets .widget-wrapper .widget-header .cap-action {
  line-height: 0;
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out, background 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out, background 0.2s ease-out;
  border-radius: 4px;
  padding: 6px;
  margin-right: -6px;
}
.widgets .widget-wrapper .widget-header .cap-action svg {
  height: 1em;
  width: auto;
  transform: scale(1.2);
  fill: var(--text-p2);
}
.widgets .widget-wrapper .widget-header .cap-action:hover {
  color: var(--accent);
  background: var(--bg-a100);
  opacity: 1;
}
.widgets .widget-wrapper .widget-header .cap-action:hover svg {
  fill: var(--accent);
}
.widgets .widget-wrapper .widget-body {
  color: var(--text-p1);
}
.widgets .widget-wrapper .widget-body p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.widget-wrapper {
  display: block;
  padding-bottom: 32px;
}
.l_right .widgets:empty {
  display: none;
}
.l_right .widgets .widget-wrapper .widget-header {
  padding-left: var(--gap-padding);
  padding-right: var(--gap-padding);
}
@media screen and (max-width: 1180px) {
  .l_right .widgets .widget-wrapper {
    margin-top: var(--gap-margin);
    border-radius: 16px;
  }
}
@media screen and (min-width: 1180px) {
  .l_right .widgets .widget-wrapper.markdown .widget-body {
    background: var(--block);
  }
}
.leftbar-container .header+.widgets {
  margin-top: 1rem;
}
.post-list #archive {
  padding: 1rem;
}
.post-list #archive .archive-header {
  display: inline-block;
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  position: relative;
  padding: 4px 0;
  color: var(--text-p1);
}
.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(--theme);
}
.post-list #archive a.post {
  display: inline-flex;
  align-items: baseline;
  margin: 0.25rem 0;
  color: var(--text-p1);
  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;
  border-bottom: 1px dashed var(--text-meta);
}
.post-list #archive a.post time {
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  margin-right: 1em;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--text-p4);
}
.post-list #archive a.post:hover {
  border-bottom: 1px solid var(--theme);
  color: var(--text);
}
.post-list #archive a.post:hover time {
  color: var(--theme);
}
.post-list #cats {
  padding: 0;
}
.post-list #cats a.cat {
  display: flex;
  padding: 0.5em 1rem;
  border-radius: 14px;
  color: var(--text-p2);
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: calc(17px - 2px);
}
.post-list #cats a.cat.child {
  padding-left: 2rem;
}
.post-list #cats a.cat span {
  display: flex;
  align-items: center;
}
.post-list #cats a.cat svg {
  height: 1em;
  width: auto;
  transform: scale(1.2);
  margin-right: 8px;
}
.post-list #cats a.cat .badge {
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, monospace, sans-serif;
  opacity: 0.5;
  font-size: 0.75rem;
}
.post-list #cats a.cat:hover {
  background: var(--block-border);
  color: var(--text);
}
.post-list #cats a.cat:hover .badge {
  opacity: 1;
  color: var(--theme);
}
.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: 10px;
  background: var(--block);
  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);
  background: var(--block-border);
}
.post-list #tags a.tag:hover:before {
  color: var(--theme);
  opacity: 1;
}
@media screen and (min-width: 500px) {
  .post-list.author #archive {
    padding: 1rem 0;
  }
}
.l_body[text-indent] article.content p:not([class]) {
  text-indent: calc(var(--fsp) * 2);
  text-align: justify;
}
.l_body[text-indent] article.content p:not([class]) a {
  text-indent: 0;
}
.l_body[type=story] .md-text.content {
  --fsp: calc(17px + 1px);
  --gap-p: 2rem;
}
.l_body[type=story] .md-text.content >div.tag-plugin,
.l_body[type=story] .md-text.content >p>img {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.l_body[type=story] .md-text.content h1,
.l_body[type=story] .md-text.content h2,
.l_body[type=story] .md-text.content h3,
.l_body[type=story] .md-text.content h4,
.l_body[type=story] .md-text.content h5,
.l_body[type=story] .md-text.content h6 {
  color: var(--text);
  line-height: 1.2;
}
.l_body[type=story] .md-text.content h1 >a:first-child,
.l_body[type=story] .md-text.content h2 >a:first-child,
.l_body[type=story] .md-text.content h3 >a:first-child,
.l_body[type=story] .md-text.content h4 >a:first-child,
.l_body[type=story] .md-text.content h5 >a:first-child,
.l_body[type=story] .md-text.content h6 >a:first-child {
  background: var(--theme);
  border-radius: 2px;
  margin-right: 8px;
  padding: 0 2px;
  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;
}
.l_body[type=story] .md-text.content h1 >a:first-child:hover,
.l_body[type=story] .md-text.content h2 >a:first-child:hover,
.l_body[type=story] .md-text.content h3 >a:first-child:hover,
.l_body[type=story] .md-text.content h4 >a:first-child:hover,
.l_body[type=story] .md-text.content h5 >a:first-child:hover,
.l_body[type=story] .md-text.content h6 >a:first-child:hover {
  background: var(--accent);
}
.l_body[type=story] .md-text.content h1 >a:first-child:before,
.l_body[type=story] .md-text.content h2 >a:first-child:before,
.l_body[type=story] .md-text.content h3 >a:first-child:before,
.l_body[type=story] .md-text.content h4 >a:first-child:before,
.l_body[type=story] .md-text.content h5 >a:first-child:before,
.l_body[type=story] .md-text.content h6 >a:first-child:before,
.l_body[type=story] .md-text.content h1 >a:first-child:after,
.l_body[type=story] .md-text.content h2 >a:first-child:after,
.l_body[type=story] .md-text.content h3 >a:first-child:after,
.l_body[type=story] .md-text.content h4 >a:first-child:after,
.l_body[type=story] .md-text.content h5 >a:first-child:after,
.l_body[type=story] .md-text.content h6 >a:first-child:after {
  color: #fff;
  font-weight: 700;
}
.l_body[type=story] .md-text.content h1 >a:first-child:before,
.l_body[type=story] .md-text.content h2 >a:first-child:before,
.l_body[type=story] .md-text.content h3 >a:first-child:before,
.l_body[type=story] .md-text.content h4 >a:first-child:before,
.l_body[type=story] .md-text.content h5 >a:first-child:before,
.l_body[type=story] .md-text.content h6 >a:first-child:before {
  content: '';
  font-size: 0.5em;
}
.l_body[type=story] .md-text.content h1 >a:first-child:after,
.l_body[type=story] .md-text.content h2 >a:first-child:after,
.l_body[type=story] .md-text.content h3 >a:first-child:after,
.l_body[type=story] .md-text.content h4 >a:first-child:after,
.l_body[type=story] .md-text.content h5 >a:first-child:after,
.l_body[type=story] .md-text.content h6 >a:first-child:after {
  font-size: 0.25em;
}
.l_body[type=story] .md-text.content h2:not([class]):before,
.l_body[type=story] .md-text.content h2:not([class]):after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1.2em;
  background: #b27ce4;
  transform: skewX(-20deg);
  margin: 0 0.5em;
  vertical-align: top;
  position: relative;
}
.l_body[type=story] .md-text.content h3:not([class]) {
  position: relative;
}
.l_body[type=story] .md-text.content h3:not([class]):before,
.l_body[type=story] .md-text.content h3:not([class]):after {
  position: absolute;
  font-size: 1.2em;
  background-color: hsla(var(--hue) var(--sat) var(--light) / 0.5);
  width: 1em;
  height: 1em;
  content: '';
  opacity: 1;
  display: inline-block;
  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;
  vertical-align: middle;
}
.l_body[type=story] .md-text.content h3:not([class]):before {
  margin-left: -1em;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Solar by 480 Design - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M13.488 4.43a.75.75 0 0 1 .081 1.058L7.988 12l5.581 6.512a.75.75 0 1 1-1.138.976l-6-7a.75.75 0 0 1 0-.976l6-7a.75.75 0 0 1 1.057-.081' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M17.75 5a.75.75 0 0 0-1.32-.488l-6 7a.75.75 0 0 0 0 .976l6 7A.75.75 0 0 0 17.75 19z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Solar by 480 Design - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M13.488 4.43a.75.75 0 0 1 .081 1.058L7.988 12l5.581 6.512a.75.75 0 1 1-1.138.976l-6-7a.75.75 0 0 1 0-.976l6-7a.75.75 0 0 1 1.057-.081' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M17.75 5a.75.75 0 0 0-1.32-.488l-6 7a.75.75 0 0 0 0 .976l6 7A.75.75 0 0 0 17.75 19z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.l_body[type=story] .md-text.content h3:not([class]):after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Solar by 480 Design - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M10.512 4.43a.75.75 0 0 0-.081 1.058L16.012 12l-5.581 6.512a.75.75 0 1 0 1.138.976l6-7a.75.75 0 0 0 0-.976l-6-7a.75.75 0 0 0-1.057-.081' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M6.25 5a.75.75 0 0 1 1.32-.488l6 7a.75.75 0 0 1 0 .976l-6 7A.75.75 0 0 1 6.25 19z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Solar by 480 Design - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' fill-rule='evenodd' d='M10.512 4.43a.75.75 0 0 0-.081 1.058L16.012 12l-5.581 6.512a.75.75 0 1 0 1.138.976l6-7a.75.75 0 0 0 0-.976l-6-7a.75.75 0 0 0-1.057-.081' clip-rule='evenodd'/%3E%3Cpath fill='currentColor' d='M6.25 5a.75.75 0 0 1 1.32-.488l6 7a.75.75 0 0 1 0 .976l-6 7A.75.75 0 0 1 6.25 19z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.l_body[type=story] .md-text.content h4:not([class]) {
  position: relative;
}
.l_body[type=story] .md-text.content h4:not([class]):before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -12px;
  background: hsla(var(--hue) var(--sat) var(--light) / 0.3);
  border-radius: 50%;
  --blur-px: 8px;
  filter: blur(var(--blur-px));
  pointer-events: none;
  z-index: -1;
  transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
}
.l_body[type=story] .md-text.content h4:not([class]):hover:before {
  --blur-px: 24px;
  background: hsla(var(--hue) var(--sat) var(--light) / 1);
}
.l_body[type=story] .md-text.content ol,
.l_body[type=story] .md-text.content ul {
  margin-left: calc(var(--fsp) * 2);
}
.l_body[type=story] .md-text.content h1,
.l_body[type=story] .md-text.content h2,
.l_body[type=story] .md-text.content h3,
.l_body[type=story] .md-text.content h4,
.l_body[type=story] .md-text.content h5,
.l_body[type=story] .md-text.content h6 {
  text-align: center;
  margin: 2em 0 1.5em;
}
.l_body[type=story] .md-text.content h1 >a:first-child,
.l_body[type=story] .md-text.content h2 >a:first-child,
.l_body[type=story] .md-text.content h3 >a:first-child,
.l_body[type=story] .md-text.content h4 >a:first-child,
.l_body[type=story] .md-text.content h5 >a:first-child,
.l_body[type=story] .md-text.content h6 >a:first-child {
  display: none;
}
.l_body[type=story] .md-text.content .poetry p:not([class]),
.l_body[type=story] .md-text.content .okr p:not([class]),
.l_body[type=story] .md-text.content .timeline p:not([class]),
.l_body[type=story] .md-text.content li p:not([class]),
.l_body[type=story] .md-text.content .article-footer p:not([class]) {
  text-indent: 0;
  text-align: left;
}
.l_body[type=story] .md-text.content p>img,
.l_body[type=story] .md-text.content .tag-plugin.image .image-bg {
  border-radius: 28px;
}
.l_body[type=story] .md-text.content p>img >img,
.l_body[type=story] .md-text.content .tag-plugin.image .image-bg >img {
  border-radius: 28px;
}
.l_body[type=story] .md-text.content>blockquote,
.md-text.content .tag-plugin.blockquote {
  text-align: center;
  --inset: calc(var(--fsp) * 2);
  margin-left: var(--inset);
  margin-right: var(--inset);
  background: var(--block);
  padding: 1rem 2rem;
  border-radius: 22px;
}
.l_body[type=story] .md-text.content>blockquote:before,
.md-text.content .tag-plugin.blockquote:before,
.l_body[type=story] .md-text.content>blockquote:after,
.md-text.content .tag-plugin.blockquote:after {
  position: absolute;
  font-size: 2rem;
  background-color: hsla(var(--hue) var(--sat) var(--light) / 0.25);
  top: -0.3em;
  width: 1em;
  height: 1em;
  content: '';
  opacity: 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;
}
.l_body[type=story] .md-text.content>blockquote:before,
.md-text.content .tag-plugin.blockquote:before {
  left: -0.3em;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from BoxIcons Solid by Atisa - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' d='M3.691 6.292C5.094 4.771 7.217 4 10 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 6.925 10H10a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2H3a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789M20 20h-6a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789C16.094 4.771 18.217 4 21 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 17.925 10H21a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from BoxIcons Solid by Atisa - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' d='M3.691 6.292C5.094 4.771 7.217 4 10 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 6.925 10H10a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2H3a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789M20 20h-6a1 1 0 0 1-1-1v-5l.003-2.919c-.009-.111-.199-2.741 1.688-4.789C16.094 4.771 18.217 4 21 4h1v2.819l-.804.161c-1.37.274-2.323.813-2.833 1.604A2.9 2.9 0 0 0 17.925 10H21a1 1 0 0 1 1 1v7c0 1.103-.897 2-2 2'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.l_body[type=story] .md-text.content>blockquote:after,
.md-text.content .tag-plugin.blockquote:after {
  right: -0.3em;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from BoxIcons Solid by Atisa - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' d='M20.309 17.708C22.196 15.66 22.006 13.03 22 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292m-11.007 0C11.19 15.66 10.999 13.03 10.993 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from BoxIcons Solid by Atisa - https://creativecommons.org/licenses/by/4.0/ --%3E%3Cpath fill='currentColor' d='M20.309 17.708C22.196 15.66 22.006 13.03 22 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292m-11.007 0C11.19 15.66 10.999 13.03 10.993 13V5a1 1 0 0 0-1-1h-6c-1.103 0-2 .897-2 2v7a1 1 0 0 0 1 1h3.078a2.9 2.9 0 0 1-.429 1.396c-.508.801-1.465 1.348-2.846 1.624l-.803.16V20h1c2.783 0 4.906-.771 6.309-2.292'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.l_body[type=story] .md-text.content>blockquote p:not([class]),
.md-text.content .tag-plugin.blockquote p:not([class]) {
  color: var(--text-p2);
  font-size: 17px;
  text-indent: 2em;
}
.l_body[type=story] .md-text.content>blockquote:hover:before,
.md-text.content .tag-plugin.blockquote:hover:before,
.l_body[type=story] .md-text.content>blockquote:hover:after,
.md-text.content .tag-plugin.blockquote:hover:after {
  background-color: hsla(var(--hue) var(--sat) var(--light) / 0.5);
}
.l_body[type=story] .article.banner .content .bottom.only-title {
  justify-content: center;
}
.l_body[text-indent] .tag-plugin.tabs .tab-content .tab-pane>p:not([class]) {
  text-indent: calc(var(--fsp) * 2);
}
.l_body[text-indent] .tag-plugin.tabs .tab-content .tab-pane>p:not([class]) a {
  text-indent: 0;
}
.l_body[type='tech'] article.content h1,
.l_body[type='tech'] article.content h2,
.l_body[type='tech'] article.content h3,
.l_body[type='tech'] article.content h4,
.l_body[type='tech'] article.content h5,
.l_body[type='tech'] article.content h6 {
  color: var(--text);
  line-height: 1.8;
}
.l_body[type='tech'] article.content h1 >a:first-child,
.l_body[type='tech'] article.content h2 >a:first-child,
.l_body[type='tech'] article.content h3 >a:first-child,
.l_body[type='tech'] article.content h4 >a:first-child,
.l_body[type='tech'] article.content h5 >a:first-child,
.l_body[type='tech'] article.content h6 >a:first-child {
  background: var(--theme);
  border-radius: 2px;
  margin-right: 8px;
  padding: 0 2px;
  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;
}
.l_body[type='tech'] article.content h1 >a:first-child:hover,
.l_body[type='tech'] article.content h2 >a:first-child:hover,
.l_body[type='tech'] article.content h3 >a:first-child:hover,
.l_body[type='tech'] article.content h4 >a:first-child:hover,
.l_body[type='tech'] article.content h5 >a:first-child:hover,
.l_body[type='tech'] article.content h6 >a:first-child:hover {
  background: var(--accent);
}
.l_body[type='tech'] article.content h1 >a:first-child:before,
.l_body[type='tech'] article.content h2 >a:first-child:before,
.l_body[type='tech'] article.content h3 >a:first-child:before,
.l_body[type='tech'] article.content h4 >a:first-child:before,
.l_body[type='tech'] article.content h5 >a:first-child:before,
.l_body[type='tech'] article.content h6 >a:first-child:before,
.l_body[type='tech'] article.content h1 >a:first-child:after,
.l_body[type='tech'] article.content h2 >a:first-child:after,
.l_body[type='tech'] article.content h3 >a:first-child:after,
.l_body[type='tech'] article.content h4 >a:first-child:after,
.l_body[type='tech'] article.content h5 >a:first-child:after,
.l_body[type='tech'] article.content h6 >a:first-child:after {
  color: #fff;
  font-weight: 700;
}
.l_body[type='tech'] article.content h1 >a:first-child:before,
.l_body[type='tech'] article.content h2 >a:first-child:before,
.l_body[type='tech'] article.content h3 >a:first-child:before,
.l_body[type='tech'] article.content h4 >a:first-child:before,
.l_body[type='tech'] article.content h5 >a:first-child:before,
.l_body[type='tech'] article.content h6 >a:first-child:before {
  content: '';
  font-size: 0.5em;
}
.l_body[type='tech'] article.content h1 >a:first-child:after,
.l_body[type='tech'] article.content h2 >a:first-child:after,
.l_body[type='tech'] article.content h3 >a:first-child:after,
.l_body[type='tech'] article.content h4 >a:first-child:after,
.l_body[type='tech'] article.content h5 >a:first-child:after,
.l_body[type='tech'] article.content h6 >a:first-child:after {
  font-size: 0.25em;
}
.l_body[type='tech'] article.content h2 {
  font-weight: 500;
}
.l_body[type='tech'] article.content h2 >a:first-child:before {
  content: '🌷';
}
.l_body[type='tech'] article.content h3 >a:first-child:before {
  content: '🫧';
}
.l_body[type='tech'] article.content h4 >a:first-child:before {
  content: '🎐';
}
.l_body[type='tech'] article.content h5 >a:first-child:before {
  content: '🍬';
}
.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: 2px solid #000;
}
@media screen and (max-width: 768px) {
  .md-text.error-page {
    margin-top: 4rem;
  }
}
.md-text .tag-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 2rem;
}
.md-text .tag-list 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(--block);
  font-size: 0.8125rem;
  font-weight: 500;
}
.md-text .tag-list a.tag:before {
  content: "#";
  margin-left: -2px;
  margin-right: 2px;
  opacity: 0.4;
}
.md-text .tag-list a.tag:hover {
  color: var(--text);
  background: var(--block-border);
}
.md-text .tag-list a.tag:hover:before {
  color: var(--theme);
  opacity: 1;
}
.post-list .post-card .meta.cap .tag:before {
  content: "#";
  margin-left: -2px;
  margin-right: 2px;
  opacity: 0.4;
}
.widget-body.tag-tree .tag-subtree > a > .tag-switcher-wrapper {
  width: 1.75rem;
  height: 0.875rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.widget-body.tag-tree .tag-subtree > a > .tag-switcher-wrapper:hover {
  color: var(--theme);
}
.widget-body.tag-tree .tag-subtree.parent-tag > a .tag-switcher {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-width: 1px;
  border-style: none solid solid none;
  transform: translateX(-25%) rotate(-45deg);
}
.widget-body.tag-tree .tag-subtree.parent-tag.expanded > a .tag-switcher {
  transform: translateY(-25%) rotate(45deg);
}
.widget-body.tag-tree .tag-subtree.parent-tag > .tag-subtree {
  display: none;
}
.widget-body.tag-tree .tag-subtree.parent-tag.expanded > .tag-subtree {
  display: block;
}
.widget-body.tag-tree .tag-subtree .tagcon {
  font-size: smaller;
  opacity: 0.4;
  margin-right: 0.25rem;
}
.l_body {
  display: grid;
  grid-template-columns: 1fr minmax(200px, var(--width-main)) 1fr;
  grid-gap: calc(var(--gap-margin) * 4);
  margin: auto;
  font-size: var(--fsp);
}
@media screen and (max-width: 1440px) {
  .l_body {
    grid-gap: calc(var(--gap-margin) * 2);
  }
}
.l_body aside {
  z-index: 8;
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  --width-sidebar: calc(var(--gap-margin) * 2 + var(--gap-padding) * 2 + var(--side-content-width));
  width: var(--width-sidebar);
}
.l_body .l_left {
  justify-self: right;
  top: calc(var(--gap-margin) * 2);
}
.l_body .l_right {
  justify-self: left;
  max-height: calc(100% - calc(var(--gap-margin) * 2) * 2);
}
.l_body .l_right .widgets {
  height: 100%;
  overflow: visible;
}
@media screen and (max-width: 1180px) {
  .l_body .l_right {
    --gap-margin: 16px;
  }
  .laptop-only {
    display: block !important;
  }
  .l_body {
    grid-gap: calc(var(--gap-margin) * 1);
  }
  .l_body .l_right {
    position: fixed;
    transform: translateX(320px);
    transition: transform 0.38s ease-out;
    margin: 0;
    --inset: 8px;
    right: var(--inset);
    top: calc(var(--gap-margin) * 2);
    max-height: calc(100vh - var(--gap-margin) * 2 - 96px);
    box-shadow: 0 12px 16px -4px rgba(0,0,0,0.2);
    z-index: 10;
    background: var(--background);
    overflow: auto;
    --blur-bg: var(--bg-a60);
    --blur-px: 50px;
  }
  .l_body .l_right::-webkit-scrollbar {
    height: 0;
    width: 0;
  }
  .l_body .l_right::-webkit-scrollbar-track-piece {
    background: transparent;
  }
  .l_body .l_right::-webkit-scrollbar-thumb {
    background: var(--text-meta);
    cursor: pointer;
    border-radius: 0;
  }
  .l_body .l_right::-webkit-scrollbar-thumb:hover {
    background: var(--text-p3);
  }
  .l_body[rightbar] .l_right {
    transform: translateX(0px);
  }
  .l_body[rightbar] .main-mask {
    pointer-events: inherit;
  }
}
@media screen and (max-width: 667px) {
  .mobile-only {
    display: block !important;
  }
  .l_body {
    padding: 0;
    display: block;
  }
  .l_body .l_left {
    position: fixed;
    transform: translateX(-320px);
    transition: transform 0.38s ease-out;
    margin: 0;
    --inset: 8px;
    left: var(--inset);
    top: calc(var(--gap-margin) * 2);
    max-height: calc(100vh - var(--gap-margin) * 2 - 96px);
    box-shadow: 0 12px 16px -4px rgba(0,0,0,0.2);
    z-index: 10;
  }
  .l_body .l_left .leftbar-container {
    --inset: 8px;
    height: calc(100vh - var(--gap-margin) * 2 - 96px);
  }
  .l_body .l_main {
    max-width: 100%;
  }
  .l_body[leftbar] .l_left {
    transform: translateX(0px);
  }
  .l_body[leftbar] .main-mask {
    pointer-events: inherit;
  }
}
.main-mask {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  z-index: 9;
  opacity: 0;
  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;
}
.l_main .post-list {
  margin: 1rem;
}
.l_main .post-list .post-title:first-child {
  margin-top: 0.5rem;
}
.l_main .post-list .post-title {
  font-weight: 500;
  margin: 1.25rem auto 0.75rem 0;
  line-height: 1.2;
  font-size: calc(17px + 4px);
  border-bottom: none;
  color: var(--text);
  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) {
  .l_main .post-list .post-title {
    font-size: calc(17px + 2px);
    margin: 0.5rem 0;
  }
}
.l_main .post-list .wiki .post-title {
  margin-top: 0.5rem;
}
.post-list .post-card {
  display: block;
  margin: 1rem 0;
  border-radius: 30px;
  background: var(--card);
  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;
  position: relative;
  --img-br: 100%;
  --img-sat: 100%;
  --blur-px: 1em;
  --blur-height: 128px;
  --blur-sat: 120%;
}
:root[data-theme="light"] .post-list .post-card {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root[data-theme="light"] .post-list .post-card:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
:root[data-theme="dark"] .post-list .post-card:hover {
  box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
}
:root:not([data-theme]) .post-list .post-card {
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
:root:not([data-theme]) .post-list .post-card:hover {
  box-shadow: 0 12px 20px -4px rgba(0,0,0,0.15);
  transform: translate3d(0, -2px, 0);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .post-list .post-card:hover {
    box-shadow: 0 0 4px -2px var(--theme), 0 0 24px -8px var(--theme);
  }
}
.post-list .post-card:hover {
  --img-br: 75%;
  --img-sat: 120%;
  --blur-sat: 200%;
}
.post-list .post-card img {
  filter: brightness(var(--img-br)) saturate(var(--img-sat));
  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;
}
.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 {
  flex-wrap: wrap;
  margin: 0;
  line-height: 2;
  --fsp: calc(17px - 1px);
  font-size: var(--fsp);
}
.post-list .post-card .meta.cap,
.post-list .post-card .meta.cap span {
  display: flex;
  align-items: center;
}
.post-list .post-card .meta.cap svg {
  height: 1em;
  width: auto;
  line-height: 0;
  transform: scale(1.2);
  margin-right: 8px;
}
.post-list .post-card .meta.cap >span+span {
  margin-left: 1.5rem;
}
.post-list .post-card .meta.cap span.pin img {
  object-fit: contain;
}
.post-list .post-card .meta.cap span.pin svg {
  color: #f44336;
}
.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;
  aspect-ratio: 2;
}
.post-list .post-card.post.photo .cover {
  position: relative;
  line-height: 0;
}
.post-list .post-card.post.photo .cover img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2;
  z-index: 0;
}
.post-list .post-card.post.photo .cover:before {
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  height: var(--blur-height);
  backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  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;
}
.post-list .post-card.post.photo .cover[position=top]:before {
  top: 0;
  mask: linear-gradient(#000, rgba(0,0,0,0.75), transparent);
  -webkit-mask: linear-gradient(#000, rgba(0,0,0,0.75), transparent);
}
.post-list .post-card.post.photo .cover[position=bottom]:before {
  bottom: 0;
  mask: linear-gradient(transparent, rgba(0,0,0,0.75), #000);
  -webkit-mask: linear-gradient(transparent, rgba(0,0,0,0.75), #000);
}
.post-list .post-card.post.photo .cover .cover-info {
  padding: 1.5rem 1rem;
  position: absolute;
  line-height: 1.2;
  width: calc(100% - 1rem * 2);
  --text-banner: #fff;
  color: var(--text-banner);
  z-index: 2;
}
.post-list .post-card.post.photo .cover .cover-info[position=top] {
  top: 0;
  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;
  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 .text {
  color: unset;
  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;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.post-list .post-card.post.photo .cover .cover-info .topic {
  font-size: 0.8125rem;
}
.post-list .post-card.post.photo .cover .cover-info .headline {
  font-weight: 500;
  font-size: calc(17px + 7px);
}
.post-list .post-card.post.photo .cover .cover-info .caption {
  font-size: 0.875rem;
}
@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 .headline {
    font-size: calc(17px + 4px);
  }
  .post-list .post-card.post.photo .cover .cover-info .caption {
    font-size: 0.8125rem;
  }
}
.post-list .post-card.post.photo h2 {
  margin: 0.25rem 0;
  font-size: calc(17px + 4px);
}
.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;
  margin: 1rem 3rem;
  align-items: center;
}
.post-list .post-card.wiki article .preview img {
  width: 96px;
  max-height: 96px;
  object-fit: contain;
  transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -webkit-transition: all 0.75s ease-out;
  -o-transition: all 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 .caps {
  line-height: 1;
  margin-bottom: 0.75rem;
}
.post-list .post-card.wiki article .excerpt .cap {
  --theme-block: var(--block);
  background: var(--theme-block);
  padding: 2px 4px;
  border-radius: 2px;
}
.post-list .post-card.wiki article .excerpt p:last-child {
  margin-bottom: 0;
}
.post-list .post-card.wiki article .excerpt .cap+.cap {
  margin-left: 4px;
}
@media screen and (max-width: 500px) {
  .post-list.archives {
    margin: 1rem 0;
  }
}
.l_main {
  position: relative;
  padding-bottom: var(--gap-max);
}
@media screen and (min-width: 667px) {
  .l_main {
    padding-top: calc(var(--gap-margin) * 2);
  }
}
.l_main header {
  margin: 2rem 1rem 1rem;
}
.l_main header .logo-wrap {
  margin: 0;
}
@media screen and (max-width: 667px) {
  .l_body.index .l_main {
    padding-top: 0;
  }
}
body>.sitebg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
}
body>.sitebg .siteblur {
  width: 100%;
  height: 100%;
  --blur-px: 0;
  --blur-sat: 200%;
  background-color: var(--blur-bg);
  --blur-sat: 300%;
  --blur-px: 100px;
  --blur-bg: var(--bg-a75);
}
@supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
  body>.sitebg .siteblur {
    background-color: var(--blur-bg) !important;
    backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
    -webkit-backdrop-filter: saturate(var(--blur-sat)) blur(var(--blur-px));
  }
}
body>.sitebg .siteblur:hover {
  background-color: var(--card);
}
.md-text {
  max-width: 100%;
  padding: 1rem;
  color: var(--text-p1);
  line-height: 1.6;
  word-break: break-word;
}
.md-text.excerpt p {
  font-size: 0.875rem;
  margin: 1em 0;
}
.md-text.content {
  position: relative;
  padding-top: 0;
  padding-bottom: 2rem;
  overflow: hidden;
}
.md-text ul:not(:last-child),
.md-text ol:not(:last-child) {
  padding-bottom: 0.5rem;
  margin: 0 0.25rem;
}
.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 {
  --fsp: calc(17px - 1px);
  font-size: var(--fsp);
  line-height: 1.5;
}
.md-text blockquote p code,
.md-text ul p code,
.md-text ol p code,
.md-text blockquote ul code,
.md-text ul ul code,
.md-text ol ul code,
.md-text blockquote ol code,
.md-text ul ol code,
.md-text ol ol code {
  font-size: inherit;
  padding: 0;
  background: none;
}
.md-text p *,
.md-text blockquote *,
.md-text .tag-plugin *,
.md-text ul *,
.md-text ol *,
.md-text .highlight *,
.md-text table * {
  --gap-p: var(--gap-p-compact);
}
.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 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.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;
}
.md-text.content:first-child .tag-plugin:first-child {
  margin-top: 0;
}
.md-text p {
  font-size: var(--fsp);
}
.md-text pre {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
.md-text pre.mermaid {
  overflow: auto;
}
.md-text .center {
  align-self: center;
}
.md-text>div {
  margin: var(--gap-p) 0;
}
.md-text img {
  margin: auto;
  display: block;
}
.md-text.content p>img,
.md-text.content .tag-plugin.image .image-bg {
  border-radius: 20px;
}
li:not([class]) a:not([class]),
p:not([class]) a:not([class]),
table a:not([class]) {
  position: relative;
  text-decoration: none;
  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;
  border-radius: 0;
  background: linear-gradient(0deg, var(--block-border), var(--block-border)) no-repeat left 100%/100% 2px;
}
li:not([class]) a:not([class]):hover,
p:not([class]) a:not([class]):hover,
table a:not([class]):hover {
  text-decoration: none;
  color: var(--link);
  border-radius: 4px;
  background: linear-gradient(0deg, var(--link-a20), var(--link-a20)) no-repeat left 100%/100% 100%;
}
li:not([class]) a:not([class]):has(img),
p:not([class]) a:not([class]):has(img),
table a:not([class]):has(img) {
  background: none;
}
li:not([class]) a:not([class]):has(img):hover,
p:not([class]) a:not([class]):has(img):hover,
table a:not([class]):has(img):hover {
  background: none;
}
img:not([src]) {
  visibility: hidden;
}
.lazy-box {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.lazy-box.async {
  background: var(--block);
  min-height: 4rem;
}
img[data-ll-status] {
  z-index: 1;
  transition: all 0.38s ease-out;
  -moz-transition: all 0.38s ease-out;
  -webkit-transition: all 0.38s ease-out;
  -o-transition: all 0.38s ease-out;
}
img[data-ll-status]:not(.loaded) {
  opacity: 0;
}
img[data-ll-status].loaded,
img[data-ll-status].error {
  opacity: 1;
}
img[data-ll-status]+.lazy-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
img[data-ll-status].loaded+.lazy-icon {
  display: none;
}
img[data-ll-status].error {
  width: 2rem;
  height: 2rem;
}
img[data-ll-status].error+.lazy-icon {
  display: none;
}
.md-text .aplayer {
  border-radius: 22px;
}
:root {
  --swiper-theme-color: var(--theme) !important;
}
.swiper {
  width: 100%;
  border-radius: 4px;
  --gap-p: 2rem;
}
.swiper:not(.swiper-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[width='max'] .swiper-slide {
  width: 100%;
}
.swiper[width='min'] .swiper-slide {
  width: 25%;
}
.swiper[effect='cards'] .swiper-slide {
  max-width: 75%;
}
.swiper-button-prev,
.swiper-button-next {
  padding: 1rem 0.25rem;
  margin-top: -2rem !important;
  border-radius: 40px;
  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: var(--text) !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--swiper-theme-color);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff !important;
  --swiper-theme-color: var(--accent) !important;
}
.swiper-button-prev:after {
  transform: translateX(-1px);
}
.swiper-button-next:after {
  transform: translateX(1px);
}
img[data-fancybox],
a[data-fancybox] {
  cursor: zoom-in;
}
.highlight {
  position: relative;
}
.highlight .code .copy-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0px 0.5rem;
  font-weight: 700;
  visibility: hidden;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  background: var(--card);
  display: block;
  cursor: pointer;
  margin-right: 4px;
  margin-top: 4px;
  border-radius: calc(22px - 4px);
}
.highlight:hover .code:before {
  visibility: hidden;
}
.highlight:hover .copy-btn {
  visibility: visible;
}
.highlight .code .copy-btn.success {
  background: #3dc550;
  color: #fff;
  visibility: visible;
}
.highlight .code .copy-btn.warning {
  background: #fa6400;
  color: #fff;
  visibility: visible;
}
.md-text .folding[child=codeblock] .code .copy-btn {
  z-index: 1;
  margin-right: 1rem;
  border-radius: 14px;
}
.cmt-body.beaudar {
  margin: 0 -4px;
  width: calc(100% + 8px);
}
.cmt-body.twikoo {
  --twikoo-theme: var(--theme);
  margin-top: 1.5rem;
}
.cmt-body.twikoo .tk-content .vemoji,
.cmt-body.twikoo .tk-content .tk-owo-emotion {
  width: unset;
  border-radius: 12px;
  max-height: 24px;
  max-width: 100px;
  display: inline;
  margin: 0 0.25em;
}
.cmt-body.twikoo .tk-content img {
  max-width: 400px;
  max-height: 400px;
  border-radius: 12px;
}
.OwO .OwO-body {
  background-color: var(--block) !important;
  color: var(--text-p1) !important;
}
.OwO .OwO-body .OwO-items .OwO-item img {
  max-height: 26px;
  width: unset;
}
.twikoo .el-input-group__append,
.twikoo .el-input-group__prepend,
.twikoo .el-input__inner,
.twikoo .el-textarea__inner,
.twikoo .tk-preview-container {
  border-color: var(--block-border);
}
.twikoo .el-input__inner:focus,
.twikoo .el-textarea__inner:focus {
  border-color: var(--twikoo-theme) !important;
}
.twikoo .el-button:not(.el-button--primary):not(.el-button--text):active,
.twikoo .el-button:not(.el-button--primary):not(.el-button--text):focus,
.twikoo .el-button:not(.el-button--primary):not(.el-button--text):hover {
  color: var(--twikoo-theme) !important;
  border-color: var(--link-a20) !important;
  background-color: var(--block) !important;
}
.twikoo .el-button--primary.is-disabled:active,
.twikoo .el-button--primary.is-disabled:focus,
.twikoo .el-button--primary.is-disabled:hover {
  background-color: var(--link-a20) !important;
}
.twikoo .el-button:focus,
.twikoo .el-button:hover {
  border-color: var(--link-a20);
}
.twikoo .el-button:active {
  color: var(--twikoo-theme);
  border-color: var(--twikoo-theme);
}
.twikoo .el-button.is-active,
.twikoo .el-button.is-plain:active {
  color: var(--twikoo-theme);
  border-color: var(--twikoo-theme);
}
.twikoo .el-button--primary {
  background-color: var(--twikoo-theme);
  border-color: var(--twikoo-theme) !important;
}
.twikoo .el-button--primary:focus,
.twikoo .el-button--primary:hover {
  background: var(--accent);
  border-color: var(--accent) !important;
}
.twikoo .el-button--primary:active {
  background: var(--twikoo-theme);
  border-color: var(--twikoo-theme);
}
.twikoo .el-button--primary.is-active {
  background: var(--twikoo-theme);
  border-color: var(--twikoo-theme);
}
.twikoo .el-button--primary.is-disabled,
.twikoo .el-button--primary.is-disabled:active,
.twikoo .el-button--primary.is-disabled:focus,
.twikoo .el-button--primary.is-disabled:hover {
  background-color: var(--link-a20) !important;
  border-color: var(--link-a20) !important;
}
.twikoo .el-button--primary.is-plain {
  color: var(--twikoo-theme) !important;
  border-color: var(--link-a20);
}
.twikoo .el-button--primary.is-plain:focus,
.twikoo .el-button--primary.is-plain:hover {
  background: var(--twikoo-theme) !important;
  border-color: var(--twikoo-theme);
}
.twikoo .el-button--primary.is-plain:active {
  background: var(--twikoo-theme) !important;
  border-color: var(--twikoo-theme);
}
.twikoo .tk-action-icon svg {
  color: var(--text-p2);
}
.twikoo .tk-action-link {
  color: var(--text-p1);
}
.twikoo .tk-action-link:hover {
  color: var(--twikoo-theme);
}
.twikoo .el-loading-spinner .path {
  stroke: var(--twikoo-theme);
}
.twikoo .tk-icon.__comments {
  color: var(--twikoo-theme);
}
.twikoo b,
.twikoo strong {
  color: var(--text-p1);
}
.twikoo a {
  cursor: pointer;
}
.twikoo .tk-time,
.twikoo .tk-extras {
  color: var(--text-p3);
}
.twikoo .tk-expand {
  width: auto;
  border: none;
  padding: 6px 2rem;
  border-radius: 22px;
  background: var(--block);
  color: var(--text-p1);
  line-height: 2;
  font-size: 14px;
  font-weight: 500;
  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;
}
.twikoo .tk-expand:hover {
  background: var(--card);
}
.twikoo .tk-comment {
  margin-top: 0;
  margin-bottom: 1rem;
  border: 1px dashed var(--block-border);
  padding: 1rem;
  border-radius: 22px;
  background: var(--block);
}
.twikoo .tk-comment:hover {
  border-color: var(--twikoo-theme);
}
.twikoo .tk-main .tk-comment {
  margin-top: 1rem;
  margin-bottom: 0;
}
.twikoo .tk-submit {
  padding: 1rem 1rem 0 1rem;
  border-radius: 22px;
  background: var(--block);
}
.twikoo .tk-tag {
  vertical-align: 0.1em;
}
.twikoo .tk-tag-green {
  border: none;
  background-color: var(--link-a20);
  color: var(--twikoo-theme);
}
.twikoo .tk-comments-title .tk-comments-count {
  margin-top: 15px;
  color: var(--text-p1);
}
.twikoo .tk-comments-title .tk-comments-count span:nth-child(1) {
  font-size: 1.5rem;
  font-weight: 700;
}
.twikoo .tk-comments-title .tk-comments-count span:nth-child(2) {
  font-size: 1rem;
}
.twikoo .tk-comments-no {
  color: var(--text-p1);
}
.twikoo .tk-submit-action-icon {
  display: none;
}
.twikoo .tk-submit-action-icon.OwO {
  display: inline-flex;
}
.twikoo .tk-comments-no {
  display: none;
}
.cmt-body.utterances {
  margin: 0 -4px;
  width: calc(100% + 8px);
}
.related-wrap#comments .cmt-body svg.loading {
  top: 62px;
}
.cmt-body {
  --waline-font-size: 0.9375rem;
/* 常规颜色 */
  --waline-white: #fff;
  --waline-light-grey: #999;
  --waline-dark-grey: #666;
/* 主题色 */
  --waline-theme-color: var(--theme);
  --waline-active-color: var(--accent);
/* 布局颜色 */
  --waline-color: #444;
  --waline-bgcolor: #fff;
  --waline-bgcolor-light: #f8f8f8;
  --waline-bgcolor-hover: #f0f0f0;
  --waline-border-color: #ddd;
  --waline-disable-bgcolor: #f8f8f8;
  --waline-disable-color: #bbb;
  --waline-code-bgcolor: #282c34;
/* 特殊颜色 */
  --waline-bq-color: #f0f0f0;
/* 头像 */
  --waline-avatar-size: 3.25rem;
  --waline-m-avatar-size: calc(var(--waline-avatar-size) * 9 / 13);
/* 徽章 */
  --waline-badge-color: #3498db;
  --waline-badge-font-size: 0.725em;
/* 信息 */
  --waline-info-bgcolor: #f8f8f8;
  --waline-info-color: #999;
  --waline-info-font-size: 0.725em;
/* 渲染选择 */
  --waline-border: 1px solid var(--waline-border-color);
  --waline-avatar-radius: 50%;
  --waline-box-shadow: none;
}
.cmt-body .wl-panel {
  margin: 0.5em 0 !important;
}
.cmt-body .wl-meta-head {
  padding: 0 !important;
}
:root[data-theme="dark"] .cmt-body.waline {
  --waline-white: #000;
  --waline-light-grey: #666;
  --waline-dark-grey: #999;
/* 布局颜色 */
  --waline-color: #fff;
  --waline-bgcolor: var(--block);
  --waline-bgcolor-light: #272727;
  --waline-border-color: #333;
  --waline-disable-bgcolor: #444;
  --waline-disable-color: #272727;
/* 特殊颜色 */
  --waline-bq-color: #272727;
/* 其他颜色 */
  --waline-info-bgcolor: #272727;
  --waline-info-color: #666;
}
:root[data-theme="dark"] .cmt-body.waline .wl-count {
  padding: 0.375em;
  font-weight: bold;
  font-size: 1.25em;
  color: #fff;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .cmt-body.waline {
    --waline-white: #000;
    --waline-light-grey: #666;
    --waline-dark-grey: #999;
    --waline-color: #fff;
    --waline-bgcolor: var(--block);
    --waline-bgcolor-light: #272727;
    --waline-border-color: #333;
    --waline-disable-bgcolor: #444;
    --waline-disable-color: #272727;
    --waline-bq-color: #272727;
    --waline-info-bgcolor: #272727;
    --waline-info-color: #666;
  }
  :root:not([data-theme]) .cmt-body.waline .wl-count {
    padding: 0.375em;
    font-weight: bold;
    font-size: 1.25em;
    color: #fff;
  }
}
.cmt-body.artalk .artalk {
  margin-top: 1rem;
}
.cmt-body.artalk .artalk .atk-editor-plug-preview::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.cmt-body.artalk .artalk .atk-editor-plug-preview::-webkit-scrollbar-track-piece {
  background: transparent;
}
.cmt-body.artalk .artalk .atk-editor-plug-preview::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.cmt-body.artalk .artalk .atk-editor-plug-preview::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.cmt-body.artalk .artalk .atk-main-editor {
  border-radius: 22px;
}
.cmt-body.artalk .artalk .atk-main-editor .atk-header,
.cmt-body.artalk .artalk .atk-main-editor .atk-editor-user-wrap {
  border-bottom: 1px dashed var(--block-border);
  padding: 0.5rem 1rem;
  margin: 0;
}
.cmt-body.artalk .artalk .atk-main-editor .atk-header .atk-editor-user,
.cmt-body.artalk .artalk .atk-main-editor .atk-editor-user-wrap .atk-editor-user {
  padding: 0;
}
.cmt-body.artalk .artalk .atk-main-editor .atk-editor-user-wrap:empty {
  visibility: hidden;
  padding: 0;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom {
  padding: 8px;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-state-btn {
  height: 2rem;
  border-radius: 100px;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-state-btn .atk-cancel {
  background: none;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-plug-btn {
  border-radius: 32px;
  height: 2rem;
  width: 2rem;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-send-btn {
  height: 2rem;
  border-radius: 100px;
  min-width: 5em;
  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;
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-send-btn:hover {
  --at-color-main: var(--accent);
}
.cmt-body.artalk .artalk .atk-main-editor >.atk-bottom .atk-send-btn:empty {
  display: none;
}
.cmt-body.artalk .artalk .atk-list-comments-wrap>.atk-comment-wrap {
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 0 8px 0px rgba(0,0,0,0.02);
}
.cmt-body.artalk .artalk .atk-list-comments-wrap>.atk-comment-wrap >.atk-comment {
  padding: 1rem;
}
.cmt-body.artalk .artalk .atk-list-comments-wrap>.atk-comment-wrap+.atk-comment-wrap {
  margin-top: 0.5rem;
}
.cmt-body.artalk .artalk .atk-comment-children {
  border-top: 1px dashed var(--block-border);
  margin-top: 0.5rem;
}
.cmt-body.artalk .artalk .atk-avatar {
  padding: 0;
}
.cmt-body.artalk .artalk .atk-avatar img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.cmt-body.artalk .artalk .atk-comment-wrap>.atk-comment>.atk-main {
  margin-left: calc(36px + 0.5rem);
}
.cmt-body.artalk .artalk .atk-comment>.atk-main>.atk-header .atk-item.atk-nick {
  color: var(--text-p3);
  font-weight: 500;
}
.cmt-body.artalk .artalk .atk-badge-wrap span {
  border-radius: 100px;
}
.cmt-body.artalk .artalk .atk-height-limit-btn {
  padding: 0.5rem 2rem;
}
.cmt-body.artalk .artalk .atk-list-read-more {
  margin-top: 2.5rem;
  padding-bottom: 1.5rem;
}
.cmt-body.artalk .artalk .atk-list-read-more .atk-list-read-more-inner {
  padding: 1rem 2rem;
  border-radius: 8px;
  height: 3rem;
  width: 12rem;
  margin: -1.5rem auto 0;
}
.cmt-body.artalk .artalk .atk-list-read-more .atk-list-read-more-inner:hover {
  background: var(--card);
}
.cmt-body.artalk .artalk .atk-list-footer .atk-copyright {
  padding: 1rem;
}
.cmt-body.artalk .artalk .atk-error-layer {
  background: none;
}
.with-fancybox .atk-content img:not([atk-emoticon]) {
  cursor: zoom-in;
}
.cmt-body .artalk,
.cmt-body .atk-layer-wrap,
.cmt-body .artalk.atk-dark-mode,
.cmt-body .atk-layer-wrap.atk-dark-mode {
  --at-color-font: var(--text-p1);
  --at-color-deep: var(--text-p2);
  --at-color-sub: var(--text-p3);
  --at-color-grey: var(--text-p4);
  --at-color-meta: var(--text-p4);
  --at-color-border: var(--block-border);
  --at-color-light: var(--link);
  --at-color-bg: var(--card);
  --at-color-bg-transl: var(--card);
  --at-color-bg-grey: var(--block);
  --at-color-bg-grey-transl: var(--block-border);
  --at-color-bg-light: var(--theme);
  --at-color-main: var(--theme);
  --at-color-red: #f44336;
  --at-color-green: #3dc550;
  --at-color-gradient: linear-gradient(180deg, transparent, var(--card), 50%, var(--card));
}
.cmt-body.artalk .atk-comment>.atk-main>.atk-body {
  overflow: visible;
}
.cmt-body.artalk .artalk pre code,
.cmt-body.artalk .atk-layer-wrap pre code {
  background: none;
}
.cmt-body.artalk .atk-main-editor>.atk-textarea-wrap>.atk-textarea {
  background: none;
  padding: 1rem;
  margin: 0;
  border: none;
}
.cmt-body.artalk .atk-loading {
  border-radius: 22px;
}
.cmt-body.artalk .atk-main-editor .atk-editor-user-wrap .atk-editor-user .atk-user-profile-btn {
  padding: 0;
}
.cmt-body.artalk:hover {
  background: none;
}
.cmt-body.artalk .artalk>.atk-list>.atk-list-header {
  padding: 0.5rem 1rem;
}
.cmt-body.artalk .artalk>.atk-list>.atk-list-header .atk-comment-count {
  display: flex;
  align-items: baseline;
}
.cmt-body.artalk .artalk>.atk-list>.atk-list-header .atk-dropdown-wrap .atk-arrow-down-icon {
  height: 8px;
}
.cmt-body.artalk .artalk>.atk-list>.atk-list-header .atk-text {
  display: block;
}
.cmt-body.artalk .atk-notify-wrap .atk-notify {
  border-radius: 14px;
  margin: 8px;
}
.cmt-body.artalk .atk-editor-plug-emoticons>.atk-grp-wrap>.atk-grp {
  padding: 0.5rem;
  margin-bottom: 32px;
}
.cmt-body.artalk .atk-editor-plug-emoticons>.atk-grp-wrap>.atk-grp[data-type=image]>.atk-item {
  width: 3rem;
  height: 3rem;
  margin: 0;
  border-radius: 4px;
  padding: 0.5rem;
}
.cmt-body.artalk .atk-editor-plug-emoticons>.atk-grp-wrap>.atk-grp[data-type=image]>.atk-item >img {
  border-radius: 4px;
}
.md-text .cmt-body.artalk .artalk {
  --gap-p: 1rem;
}
.md-text .cmt-body.artalk .artalk p {
  line-height: 1.5;
  font-size: 0.9375rem;
}
.md-text .cmt-body.artalk .artalk p >img {
  margin: var(--gap-p) auto;
  border-radius: 12px;
}
.md-text .cmt-body.artalk .artalk a>img {
  display: inline;
}
.md-text .cmt-body.artalk .artalk img[atk-emoticon] {
  max-height: 1.5em;
  transform: scale(1.2);
  margin: 0 4px;
  vertical-align: bottom;
  border-radius: 4px;
}
.md-text .cmt-body.artalk .artalk ul li,
.md-text .cmt-body.artalk .artalk ol li {
  font-size: 0.875rem;
}
.md-text .cmt-body.artalk .artalk blockquote {
  position: relative;
  border-left: none;
  background: none;
  padding: 0.25rem 1rem;
}
.md-text .cmt-body.artalk .artalk blockquote p {
  color: var(--text-p3);
}
.md-text .cmt-body.artalk .artalk .atk-content a {
  --at-color-main: var(--link);
}
.md-text .cmt-body.artalk .artalk .atk-content pre>code {
  padding: 0;
}
:root {
  --lei-pink: #ff8fb6;
  --lei-pink-soft: #ffe4ee;
  --lei-blue: #72bfd5;
  --lei-blue-soft: #def4fa;
  --lei-lavender: #9f91df;
  --lei-lavender-soft: #ece8ff;
  --lei-mint-soft: #e1f6ee;
  --lei-yellow-soft: #fff3c9;
  --lei-ink: #39364d;
  --lei-line: rgba(129,107,158,0.14);
  --lei-shadow: 0 18px 45px rgba(83,67,120,0.11);
  --lei-shadow-hover: 0 24px 56px rgba(83,67,120,0.16);
  --background: #f9f7ff;
  --card: rgba(255,255,255,0.94);
}
html {
  background: #f9f7ff;
}
body {
/* Keep the responsive shell's top margin inside the body formatting
   * context. Without this, its 32px margin collapses through body and leaves
   * the html canvas visible as a solid strip above the site gradient. */
  display: flow-root;
  min-height: 100vh;
  color: var(--lei-ink);
  background: radial-gradient(circle at 3% 9%, rgba(255,204,226,0.68), transparent 26rem), radial-gradient(circle at 97% 18%, rgba(196,237,250,0.74), transparent 29rem), radial-gradient(circle at 80% 92%, rgba(230,222,255,0.72), transparent 27rem), linear-gradient(155deg, #fff9fc 0%, #f7f6ff 54%, #f8fdff 100%);
  background-attachment: fixed;
}
body:before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(119,95,148,0.17) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(#000, transparent 80%);
  -webkit-mask-image: linear-gradient(#000, transparent 80%);
}
::selection {
  color: #4d3146;
  background: #ffd9e8;
}
.l_body {
  --width-main: 760px;
  grid-gap: 22px;
}
@media screen and (min-width: 2048px) {
  .l_body {
    --width-main: 820px;
  }
}
.l_left {
  border: 1px solid rgba(255,255,255,0.88);
  background: rgba(255,253,255,0.72);
  box-shadow: var(--lei-shadow);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.l_left .sidebg {
  inset: 0 !important;
  border-radius: 30px;
  background-image: none !important;
  background: linear-gradient(155deg, rgba(255,245,250,0.92), rgba(247,246,255,0.88) 52%, rgba(240,252,255,0.9)) !important;
  filter: none !important;
}
.l_left .leftbar-container {
  overflow: hidden;
  border-radius: 30px;
}
.l_left .leftbar-container:before,
.l_left .leftbar-container:after {
  background: none !important;
  box-shadow: none !important;
}
.l_left .header {
  position: relative;
  margin-top: 23px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--lei-line);
}
.l_left .header:after {
  content: "🎀";
  position: absolute;
  right: 2px;
  top: 2px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 16px;
  animation: lei-bob 3.2s ease-in-out infinite;
}
.l_left .logo-wrap a.avatar {
  width: 58px;
  height: 58px;
  margin-right: 13px;
  border: 3px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  background: var(--lei-blue-soft);
  box-shadow: 0 8px 22px rgba(86,110,145,0.14);
}
.l_left .logo-wrap a.avatar img.avatar {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 17px;
}
.l_left .logo-wrap a.title {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.l_left .logo-wrap a.title .sub {
  margin-top: 5px;
  color: #82788e;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.nav-area .menu {
  margin: 10px 0 8px;
  grid-gap: 3px 12px;
}
.nav-area .menu .nav-item {
  min-height: 43px;
  padding: 6px 3px 10px;
  gap: 6px;
  flex-direction: row;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #6d647b;
  background: transparent;
  box-shadow: none;
  transition: color 0.22s ease, transform 0.22s ease;
}
.nav-area .menu .nav-item:nth-child(1) {
  transform: rotate(-0.7deg);
}
.nav-area .menu .nav-item:nth-child(2) {
  transform: rotate(0.55deg);
}
.nav-area .menu .nav-item:nth-child(3) {
  transform: rotate(0.45deg);
}
.nav-area .menu .nav-item:nth-child(4) {
  transform: rotate(-0.6deg);
}
.nav-area .menu .nav-item:hover,
.nav-area .menu .nav-item.active {
  color: #d66391;
  transform: translateY(-2px) rotate(0);
  background: transparent;
  box-shadow: none;
}
.nav-area .menu .nav-item:after,
.nav-area .menu .nav-item.active:after {
  content: "";
  width: 0;
  height: 6px;
  left: 50%;
  right: auto;
  bottom: 2px;
  transform: translateX(-50%) rotate(-2deg);
  border-radius: 0;
  opacity: 0.78;
  background: radial-gradient(circle at 4px 1px, currentColor 2.3px, transparent 2.8px) 0 100%/10px 6px repeat-x;
  transition: width 0.24s ease;
  overflow: hidden;
  color: currentColor;
  font-family: "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 8px;
  font-weight: 800;
  line-height: 6px;
  text-align: center;
  white-space: nowrap;
}
.nav-area .menu .nav-item:nth-child(1):after {
  background: radial-gradient(ellipse at 50% 15%, currentColor 0 2px, transparent 2.5px) 0 100%/10px 6px repeat-x;
}
.nav-area .menu .nav-item:nth-child(2):after {
  content: "✦ ･ ✧ ･ ✦";
  height: 8px;
  color: #62bfd9;
  background: none;
  line-height: 8px;
}
.nav-area .menu .nav-item:nth-child(3):after {
  height: 7px;
  color: #9486ed;
  background: radial-gradient(ellipse at 50% -1px, transparent 0 4px, currentColor 4.5px 5.5px, transparent 6px) 0 100%/14px 7px repeat-x;
}
.nav-area .menu .nav-item:nth-child(4):after {
  content: "❀ ･ ❀";
  height: 9px;
  color: #ee7da5;
  background: none;
  line-height: 9px;
}
.nav-area .menu .nav-item:hover:after,
.nav-area .menu .nav-item.active:after {
  width: 68%;
  max-width: 62px;
  animation: lei-nav-trim-dance 1.7s ease-in-out infinite alternate;
}
.nav-area .menu .nav-emoji {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.22s ease;
}
.nav-area .menu .nav-item:hover .nav-emoji,
.nav-area .menu .nav-item.active .nav-emoji {
  transform: rotate(-8deg) scale(1.12);
}
.nav-area .menu .nav-label {
  font-size: 10px;
  font-weight: 850;
}
.l_left .lei-sidebar-search {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  margin: 1px var(--gap-margin) 6px;
  padding: 10px 2px 12px;
}
.l_left .lei-sidebar-search:before,
.l_left .lei-sidebar-search:after {
  content: "";
  height: 5px;
  position: absolute;
  left: 5px;
  right: 5px;
  opacity: 0.42;
  pointer-events: none;
}
.l_left .lei-sidebar-search:before {
  top: 0;
  background: radial-gradient(ellipse at center, #f08eb2 0 1.5px, transparent 2px) 0 100%/12px 5px repeat-x;
}
.l_left .lei-sidebar-search:after {
  bottom: 1px;
  background: radial-gradient(ellipse at 50% -1px, transparent 0 3px, #8bd1e4 3.5px 4px, transparent 4.5px) 0 100%/15px 5px repeat-x;
}
.l_left .lei-sidebar-search .search-wrapper {
  padding-bottom: 0;
}
.l_left .lei-sidebar-search .search-form {
  position: relative;
  top: auto;
  margin: 0;
}
.l_left .lei-sidebar-search .search-form:after {
  content: "✦";
  position: absolute;
  right: 11px;
  top: 50%;
  z-index: 2;
  color: rgba(230,111,156,0.46);
  font-size: 9px;
  transform: translateY(-50%) rotate(12deg);
  pointer-events: none;
}
.l_left .lei-sidebar-search #search-result:not(:empty),
.l_left .lei-sidebar-search .search-no-result {
  position: absolute;
  z-index: 8;
  top: 51px;
  left: 0;
  right: 0;
  max-height: 46vh;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.92);
  background: rgba(255,252,254,0.97);
  box-shadow: 0 14px 34px rgba(79,63,104,0.16);
}
.widget-wrapper.lei-portal {
  margin-top: 4px;
  padding: 11px 4px 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.widget-wrapper.lei-portal .widget-header {
  padding: 0 7px 8px;
  color: #8a7182;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.lei-portal-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  padding-left: 9px;
}
.lei-portal-grid:before {
  display: none;
}
.lei-portal-item {
  min-width: 0;
  min-height: 38px;
  padding: 3px 8px 7px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  border: 0;
  border-radius: 0;
  color: #6e657a;
  background: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lei-portal-item:nth-child(1) {
  transform: translateX(0) rotate(-0.8deg);
}
.lei-portal-item:nth-child(2) {
  transform: translateX(11px) rotate(0.65deg);
}
.lei-portal-item:nth-child(3) {
  transform: translateX(3px) rotate(-0.35deg);
}
.lei-portal-item:nth-child(4) {
  transform: translateX(14px) rotate(0.8deg);
}
.lei-portal-item:nth-child(5) {
  transform: translateX(6px) rotate(-0.6deg);
}
.lei-portal-item:not(:last-child):before {
  content: "";
  width: 15px;
  height: 16px;
  position: absolute;
  z-index: 0;
  left: 12px;
  top: 27px;
  border-left: 1px dashed rgba(231,122,166,0.48);
  border-bottom: 1px dashed rgba(231,122,166,0.48);
  border-radius: 0 0 0 14px;
  transform: rotate(-14deg);
  pointer-events: none;
}
.lei-portal-item:nth-child(even):not(:last-child):before {
  left: 11px;
  border-left: 0;
  border-right: 1px dashed rgba(111,190,214,0.48);
  border-radius: 0 0 14px 0;
  transform: rotate(16deg);
}
.lei-portal-item:after {
  content: "";
  position: absolute;
  left: 39px;
  bottom: 4px;
  width: 35px;
  height: 6px;
  opacity: 0.48;
  background: radial-gradient(ellipse at center, currentColor 0 2px, transparent 2.4px) 0 100%/9px 5px repeat-x;
  transition: width 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
  overflow: hidden;
  font-family: "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 8px;
  line-height: 6px;
  text-align: center;
  white-space: nowrap;
}
.lei-portal-item:nth-child(2):after {
  content: "✦ ･ ✧";
  color: #66bfd9;
  background: none;
}
.lei-portal-item:nth-child(3):after {
  width: 42px;
  color: #b190dc;
  background: radial-gradient(ellipse at 50% -1px, transparent 0 3px, currentColor 3.5px 4px, transparent 4.5px) 0 100%/13px 6px repeat-x;
}
.lei-portal-item:nth-child(4):after {
  content: "❀ ･ ❀";
  color: #e886aa;
  background: none;
}
.lei-portal-item:nth-child(5):after {
  width: 46px;
  color: #d69b53;
  background: radial-gradient(ellipse at center, currentColor 0 1.7px, transparent 2.2px) 0 100%/10px 5px repeat-x;
}
.lei-portal-item:hover,
.lei-portal-item.active {
  color: #cf668d;
  box-shadow: none;
}
.lei-portal-item:nth-child(1):hover,
.lei-portal-item:nth-child(1).active {
  transform: translateX(4px) rotate(0.35deg);
}
.lei-portal-item:nth-child(2):hover,
.lei-portal-item:nth-child(2).active {
  transform: translateX(15px) rotate(-0.45deg);
}
.lei-portal-item:nth-child(3):hover,
.lei-portal-item:nth-child(3).active {
  transform: translateX(7px) rotate(0.5deg);
}
.lei-portal-item:nth-child(4):hover,
.lei-portal-item:nth-child(4).active {
  transform: translateX(18px) rotate(-0.45deg);
}
.lei-portal-item:nth-child(5):hover,
.lei-portal-item:nth-child(5).active {
  transform: translateX(10px) rotate(0.4deg);
}
.lei-portal-item:hover:after,
.lei-portal-item.active:after {
  width: 58px;
  opacity: 0.88;
  transform: translateY(-1px) rotate(-2deg);
  animation: lei-trim-sway 1.45s ease-in-out infinite alternate;
}
.lei-portal-item i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 18px;
  font-style: normal;
  transition: transform 0.2s ease;
}
.lei-portal-item:hover i,
.lei-portal-item.active i {
  transform: rotate(-9deg) scale(1.12);
  box-shadow: none;
}
.lei-portal-item b {
  max-width: 100%;
  overflow: hidden;
  font-size: 9px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widgets .widget-wrapper:not(.lei-portal) .widget-header {
  color: #8c7183;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.navbar-blur {
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 28px rgba(83,67,120,0.08);
}
.navbar nav a {
  font-weight: 760;
}
.navbar nav a:nth-child(2n) {
  transform: rotate(0.45deg);
}
.navbar nav a:nth-child(2n+1) {
  transform: rotate(-0.35deg);
}
.navbar nav a.active,
.navbar nav a:hover {
  transform: rotate(0) translateY(-1px);
  background: var(--lei-pink-soft);
}
.l_main .post-list {
  margin: 22px 16px;
}
.post-list .post-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 29px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--lei-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  --img-br: 100% !important;
  --img-sat: 100% !important;
}
.post-card-wrap:nth-child(6n+1) .post-card {
  transform: rotate(-0.42deg) translateX(2px);
  border-color: rgba(255,166,198,0.26);
}
.post-card-wrap:nth-child(6n+2) .post-card {
  transform: rotate(0.34deg) translateX(-1px);
  border-color: rgba(126,201,221,0.28);
}
.post-card-wrap:nth-child(6n+3) .post-card {
  transform: rotate(-0.26deg);
  border-color: rgba(162,145,224,0.25);
}
.post-card-wrap:nth-child(6n+4) .post-card {
  transform: rotate(0.4deg) translateX(2px);
  border-color: rgba(125,205,177,0.26);
}
.post-card-wrap:nth-child(6n+5) .post-card {
  transform: rotate(-0.31deg) translateX(-2px);
  border-color: rgba(239,201,94,0.3);
}
.post-card-wrap:nth-child(6n) .post-card {
  transform: rotate(0.25deg);
}
.post-card-wrap .post-card:hover {
  z-index: 2;
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-2px) rotate(0.48deg);
  box-shadow: var(--lei-shadow);
  --img-br: 100% !important;
  --img-sat: 100% !important;
}
.post-list .post-card:hover img,
.post-list .post-card img {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}
.post-list .post-card .md-text {
  position: relative;
  padding: 0;
}
.post-list .post-card .lei-post-card {
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(228px, 0.82fr);
  align-items: stretch;
}
.post-list .post-card .lei-post-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 15px 20px 14px;
  position: relative;
  box-sizing: border-box;
}
.post-list .post-card .post-cover {
  width: 100%;
  height: 100%;
  min-height: 188px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(255,255,255,0.86);
  border-radius: 0 28px 28px 0;
  background: var(--lei-blue-soft);
  box-shadow: none;
}
.post-list .post-card .post-cover:after {
  content: '';
  width: 48px;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0));
}
.post-list .post-card .post-cover img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  display: block;
  aspect-ratio: auto;
  border-radius: 0 28px 28px 0;
  object-fit: cover;
  object-position: 72% center;
}
.post-list .post-card .lei-card-sticker {
  width: 36px;
  height: 36px;
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 14px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.92);
  border-radius: 13px;
  background: rgba(255,240,247,0.88);
  box-shadow: 0 8px 18px rgba(80,60,105,0.14);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 17px;
  animation: lei-bob 3.8s ease-in-out infinite;
}
.l_body .l_main .post-list .post-card .post-title {
  max-width: calc(100% - 48px);
  margin: 0 0 7px !important;
  display: -webkit-box !important;
  max-height: 3.66em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #3d394f;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 820;
  letter-spacing: -0.025em;
}
.l_body .post-list .post-card.post .post-title .app-title-topic {
  display: inline-flex;
  width: auto;
  max-width: 42%;
  margin: 0 7px 3px 0;
  padding: 2px 7px;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
}
.l_body .post-list .post-card.post .post-title .app-title-main {
  display: inline !important;
}
.post-list .post-card .excerpt {
  margin: 0 0 8px;
  flex: 1;
  overflow: hidden;
}
.post-list .post-card .excerpt p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #777184;
  font-family: "Iowan Old Style", "Songti SC", Georgia, serif;
  font-size: 13px;
  line-height: 1.48;
}
.post-list .post-card .meta.cap {
  margin-top: auto;
  color: #888092;
  font-size: 11px;
  line-height: 1.45;
}
.post-list .post-card.wiki article {
  padding: 18px;
}
.post-list .post-card.wiki article .preview {
  margin: 12px 22px;
}
.post-list .post-card.wiki article .preview img {
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--lei-pink-soft), var(--lei-blue-soft));
  box-shadow: 0 10px 25px rgba(79,65,109,0.1);
}
.post-list #archive,
.post-list #cats,
.post-list #tags {
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 25px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 13px 34px rgba(83,67,120,0.08);
}
.post-list #archive:nth-child(odd),
.post-list #cats:nth-child(odd) {
  transform: rotate(-0.22deg);
}
.post-list #archive:nth-child(even),
.post-list #cats:nth-child(even) {
  transform: rotate(0.22deg);
}
.l_body.content .l_main > .article.banner {
/* `.l_main` already begins on the same 32px rail as both sidebars. */
  margin: 0 16px 22px;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.article.banner > img.bg {
  width: 100%;
  height: clamp(222px, 28vw, 284px);
  min-height: 0;
  display: block;
  position: relative;
  inset: auto;
  z-index: 0;
  box-sizing: border-box;
  border: 5px solid rgba(255,255,255,0.88);
  border-radius: 29px;
  object-fit: cover;
  object-position: 74% center;
  box-shadow: var(--lei-shadow);
  transition: none;
}
.article.banner > img.bg + .content {
  width: calc(100% - 48px);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  margin: -24px 24px 0;
  padding: 12px 16px 13px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  color: #4b465c;
  border: 1px solid rgba(255,179,205,0.46);
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 40px rgba(88,69,116,0.14), 0 3px 0 rgba(255,255,255,0.9) inset;
  backdrop-filter: blur(15px) saturate(115%);
  -webkit-backdrop-filter: blur(15px) saturate(115%);
}
.article.banner > img.bg + .content:before,
.article.banner > img.bg + .content:after {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  mask: none;
  -webkit-mask: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}
.article.banner > img.bg + .content:before {
  content: "🌸";
  top: -15px;
  right: 24px;
  width: 30px;
  height: 30px;
  left: auto;
  bottom: auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.95);
  border-radius: 50%;
  background: #fff0f6;
  box-shadow: 0 7px 16px rgba(112,73,104,0.13);
  font-size: 14px;
  transform: rotate(7deg);
}
.article.banner > img.bg + .content:after {
  content: "〜 〜";
  bottom: -10px;
  left: 30px;
  top: auto;
  right: auto;
  width: auto;
  height: auto;
  padding: 0 8px;
  color: #78c8dc;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.article.banner .content .top {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 7px;
  color: #888092;
  font-size: 11px;
  line-height: 1.35;
}
.article.banner .content .lei-banner-classification {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.article.banner .content .lei-banner-dates,
.article.banner .content .lei-banner-dates #post-meta {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.article.banner .content .lei-banner-dates #post-meta span.updated {
  visibility: visible;
}
.article.banner .content .lei-banner-dates #post-meta span.sep {
  margin: 0 4px;
}
.article.banner > img.bg + .content .top :is(a,
span,
time,
svg) {
  color: #888092 !important;
  fill: currentColor !important;
  text-shadow: none !important;
}
.article.banner .content .bottom {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #3d394f;
  background: none;
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.article.banner .content .bottom .title {
  margin: 0;
  padding: 0;
  color: #3d394f;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -0.025em;
  text-shadow: none;
}
.article.banner .content .bottom .text-area {
  min-width: 0;
}
.article.banner .content .bottom .subtitle {
  margin-top: 4px;
  font-size: 12px;
}
.article.banner .content .lei-banner-tags {
  min-width: 0;
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: clamp(9px, 0.78vw, 11px);
  line-height: 1.2;
}
.article.banner .content .lei-taxonomy-chip {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 4px;
  padding: 2px 6px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 999px;
  color: #6d667b;
  background: #f6f1fb;
  box-shadow: 0 3px 8px rgba(89,70,113,0.055);
  white-space: nowrap;
}
.article.banner .content .lei-taxonomy-text {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
}
.article.banner .content .lei-taxonomy-chip span[aria-hidden] {
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 11px;
}
.article.banner .content .lei-taxonomy-chip.topic {
  background: #ffe6f0;
  color: #bd5c82;
}
.article.banner .content .lei-taxonomy-chip.category {
  background: #fff3cd;
  color: #90712a;
}
.article.banner .content .lei-taxonomy-chip.tag {
  background: #eaf6ff;
  color: #557b92;
}
.article.banner .content .bottom .title .app-title-topic {
  color: #d95d8d;
  background: #ffe3ee;
  box-shadow: none;
}
.article.banner.top:hover > img.bg {
  filter: none;
  transform: none;
}
.article.banner.top:hover .content,
.article.banner.top:hover .content * {
  text-shadow: none !important;
}
.article.banner.top:hover .content .title,
.article.banner.top:hover .content .app-title-main {
  color: #3d394f !important;
}
.article.banner.top:hover .content .app-title-topic {
  color: #d95d8d !important;
}
.article.banner.top:hover > img.bg + .content,
.article.banner > img.bg + .content:hover {
  --blur-opacity: 1;
  --blur-px: 0;
  --blur-sat: 100%;
  --blur-bg: transparent;
  color: #4b465c;
  background: rgba(255,255,255,0.95);
  filter: none;
  opacity: 1;
}
.article.banner.top:hover .content .bottom,
.article.banner.top:hover .content .lei-banner-tags,
.article.banner.top:hover .content .lei-taxonomy-chip {
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.l_body.content .l_main > article.md-text.content {
  width: auto;
  margin: 0 16px 22px;
  padding: clamp(25px, 4.3vw, 46px);
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 31px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--lei-shadow);
}
.l_main > article.md-text.content {
  width: auto;
}
.l_body[type=tech] article.content h2 > a:first-child,
.l_body[type=tech] article.content h3 > a:first-child,
.l_body[type=tech] article.content h4 > a:first-child,
.l_body[type=tech] article.content h5 > a:first-child {
  min-width: 30px;
  display: inline-grid;
  place-items: center;
  margin-right: 9px;
  padding: 4px 6px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 11px;
  color: inherit;
  background: var(--lei-pink-soft);
  box-shadow: 0 5px 13px rgba(128,85,111,0.08);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}
.l_body[type=tech] article.content h3 > a:first-child {
  background: var(--lei-blue-soft);
}
.l_body[type=tech] article.content h4 > a:first-child {
  background: var(--lei-lavender-soft);
}
.l_body[type=tech] article.content h5 > a:first-child {
  background: var(--lei-yellow-soft);
}
.l_body[type=tech] article.content h2 > a:first-child:before,
.l_body[type=tech] article.content h3 > a:first-child:before,
.l_body[type=tech] article.content h4 > a:first-child:before,
.l_body[type=tech] article.content h5 > a:first-child:before {
  color: inherit;
  font-size: 0.68em;
}
.l_body article.md-text.content h2::before {
  content: "🌷" !important;
}
.l_body article.md-text.content h3::before {
  content: "🫧" !important;
}
.l_body article.md-text.content h4::before {
  content: "🎐" !important;
}
.l_body article.md-text.content h5::before {
  content: "🍬" !important;
}
.l_body article.md-text.content h6::before {
  content: "🪄" !important;
}
.l_body article.md-text.content :is(h2,
h3,
h4,
h5,
h6)::before {
  margin-right: 0.48em !important;
  padding: 0 !important;
  background: none !important;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
  font-size: 0.58em !important;
  transform: translateY(-0.04em) rotate(-5deg) !important;
}
.md-text.content p > img,
.md-text.content .tag-plugin.image .image-bg,
.md-text.content figure img {
  border-radius: 22px;
  box-shadow: 0 13px 32px rgba(67,58,95,0.12);
}
.md-text.content blockquote,
.md-text.content .tag-plugin.folding,
.md-text.content .tag-plugin.note,
.md-text.content .tag-plugin.tabs {
  border-radius: 19px;
}
.article-footer,
.related-wrap,
.comments {
  border-radius: 25px;
}
.article-footer {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 30px rgba(83,67,120,0.075);
}
.widget-wrapper.toc .widget-body:before {
  background: linear-gradient(var(--lei-pink), var(--lei-blue));
}
.l_right .widget-wrapper.toc {
  overflow: hidden;
  padding: 17px 12px 14px;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 14px 34px rgba(82,67,113,0.09);
}
.widget-wrapper.toc .toc a.active:before {
  background: var(--lei-pink);
}
.page-footer {
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-footer > hr {
  display: none;
}
.page-footer .text > p {
  margin: 0;
}
.lei-footer-badges {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}
.lei-footer-badges > p {
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}
.page-footer .lei-footer-badge {
  min-height: 31px;
  padding: 3px 9px 3px 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.94);
  border-radius: 999px;
  color: #655d72;
  background: #fff2f7;
  box-shadow: 0 6px 14px rgba(86,68,111,0.07);
  text-decoration: none;
}
.page-footer .lei-footer-badge.theme {
  background: #edf9ff;
}
.page-footer .lei-footer-badge.license {
  background: #f1edff;
}
.page-footer .lei-footer-badge > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
}
.page-footer .lei-footer-badge b {
  font-size: 9px;
}
.page-footer .lei-footer-badge em {
  color: #8b8295;
  font-size: 9px;
  font-style: normal;
}
.paginator-wrap {
  border: 1px solid rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(83,67,120,0.08);
}
.app-bottom-nav,
.app-me-menu,
.app-context-actions,
.app-search-layer,
.lei-mobile-dock,
.lei-dock-layer {
  display: none !important;
}
@media screen and (min-width: 668px) and (max-width: 1180px) {
  .l_body {
    width: calc(100% - 24px);
    max-width: 1080px;
    grid-template-columns: 230px minmax(0, 1fr);
    grid-gap: 14px;
  }
  .l_body .l_left {
    --width-sidebar: 230px;
    width: 230px;
    margin: 32px 0 16px;
    justify-self: stretch;
  }
  .l_body .l_main {
    min-width: 0;
  }
  .post-list .post-card .lei-post-card {
    grid-template-columns: minmax(0, 1.28fr) minmax(190px, 0.72fr);
  }
}
@media screen and (min-width: 668px) and (max-width: 900px) {
  .l_body {
    width: calc(100% - 20px);
    max-width: 840px;
    display: block;
  }
  .l_body .l_left,
  .l_body .l_right {
    display: none !important;
  }
  .l_body .l_main {
    width: 100%;
    max-width: none;
    padding-bottom: 92px;
  }
  .float-panel {
    display: none !important;
  }
  .post-card-wrap .post-card {
    transform: none !important;
  }
  .post-list .post-card .lei-post-card {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.72fr);
  }
  .post-list .post-card .lei-post-card__copy {
    padding-inline: 15px;
  }
  .page-footer {
    margin: 16px 8px 0;
    padding: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.94);
    border-radius: 23px 25px 21px 26px;
    background: rgba(255,255,255,0.76);
    box-shadow: 0 10px 28px rgba(83,67,120,0.08), 0 2px 0 rgba(255,255,255,0.94) inset;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
  }
  .page-footer:before {
    content: "";
    height: 5px;
    position: absolute;
    inset: 0 12px auto;
    opacity: 0.55;
    background: radial-gradient(ellipse at 50% -1px, transparent 0 2.2px, #f08ab0 2.7px 3.4px, transparent 3.8px) 0 0/12px 5px repeat-x;
  }
  .page-footer .text {
    width: 100%;
    margin: 0;
  }
  .lei-footer-badges {
    width: 100%;
    gap: 6px;
  }
  .lei-footer-badges > p {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .page-footer .lei-footer-badge {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 5px 7px;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
    border-radius: 15px 17px 14px 18px;
    box-shadow: none;
  }
  .page-footer .lei-footer-badge:nth-child(2) {
    transform: rotate(0.45deg);
  }
  .page-footer .lei-footer-badge:nth-child(3) {
    transform: rotate(-0.4deg);
  }
  .page-footer .lei-footer-badge > span {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 14px;
  }
  .page-footer .lei-footer-badge b {
    font-size: 10px;
    white-space: nowrap;
  }
  .page-footer .lei-footer-badge em {
    min-width: 0;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 668px) and (max-width: 760px) {
  .post-list .post-card .lei-post-card {
    grid-template-columns: minmax(0, 1fr) minmax(155px, 0.64fr);
  }
  .l_body .l_main .post-list .post-card .post-title {
    font-size: 17px;
  }
  .post-list .post-card .excerpt p {
    font-size: 12px;
  }
}
@media screen and (max-width: 667px) {
  body {
    background-attachment: scroll;
  }
  .float-panel {
    display: none !important;
  }
  .l_body .l_left,
  .l_body .l_right {
    display: none !important;
  }
  .l_body .l_main {
    padding-bottom: 92px;
  }
  .l_body.content .l_main > .article.banner {
    margin: 12px 8px 16px;
  }
  .l_body.content .l_main > article.md-text.content {
    margin: 0 8px 16px;
    padding: 22px 18px;
    border-radius: 24px;
  }
  .article.banner > img.bg {
    height: 184px;
    border-width: 3px;
    border-radius: 22px;
  }
  .article.banner > img.bg + .content {
    width: calc(100% - 24px);
    margin: -17px 12px 0;
    padding: 9px 11px 11px;
    border-radius: 19px;
  }
  .article.banner > img.bg + .content:before {
    width: 27px;
    height: 27px;
    top: -13px;
    right: 15px;
    font-size: 12px;
  }
  .article.banner > img.bg + .content:after {
    left: 18px;
  }
  .article.banner .content .top {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    margin-bottom: 5px;
    font-size: 9px;
  }
  .article.banner .content .lei-banner-dates,
  .article.banner .content .lei-banner-dates #post-meta {
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .article.banner .content .bottom {
    margin: 0;
    padding: 0;
  }
  .article.banner .content .bottom .title {
    font-size: 15px;
    line-height: 1.18;
  }
  .article.banner .content .lei-banner-classification,
  .article.banner .content .lei-banner-tags {
    gap: 3px;
    font-size: 8.5px;
  }
  .article.banner .content .lei-banner-tags {
    margin-top: 6px;
  }
  .article.banner .content .lei-taxonomy-chip {
    width: auto;
    max-width: 100%;
    padding: 3px 5px;
    gap: 2px;
  }
  .article.banner .content .lei-taxonomy-text {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .l_main .post-list {
    margin: 15px 8px;
  }
  .post-list .post-card {
    border-radius: 24px;
  }
  .post-list .post-card .lei-post-card {
    min-height: 178px;
    grid-template-columns: minmax(0, 1.62fr) minmax(116px, 0.78fr);
  }
  .post-list .post-card .lei-post-card__copy {
    padding: 13px 11px 12px;
  }
  .l_body .l_main .post-list .post-card .post-title {
    max-width: calc(100% - 31px);
    margin-bottom: 6px !important;
    display: -webkit-box !important;
    max-height: 3.66em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 16px;
  }
  .post-list .post-card .excerpt {
    margin-bottom: 7px;
  }
  .post-list .post-card .excerpt p {
    -webkit-line-clamp: 2;
    font-size: 12px;
    line-height: 1.45;
  }
  .post-list .post-card .meta.cap {
    font-size: 11px;
    line-height: 1.5;
  }
  .post-list .post-card .meta.cap > span + span {
    margin-left: 10px;
  }
  .post-list .post-card .lei-card-sticker {
    width: 30px;
    height: 30px;
    top: 14px;
    right: 12px;
    border-radius: 11px;
    font-size: 14px;
  }
  .post-list .post-card .post-cover {
    min-height: 178px;
    border-radius: 0 23px 23px 0;
  }
  .post-list .post-card .post-cover:after {
    width: 28px;
  }
  .post-list .post-card .post-cover img {
    min-height: 178px;
    border-radius: 0 23px 23px 0;
    object-position: 76% center;
  }
  .page-footer {
/* The fixed phone Dock already exposes the important destinations. The
     * author/theme/license credits become tiny duplicate controls here, so the
     * complete footer is intentionally omitted on the phone layout. */
    display: none;
  }
  .page-footer:before {
    content: "";
    height: 5px;
    position: absolute;
    inset: 0 12px auto;
    opacity: 0.55;
    background: radial-gradient(ellipse at 50% -1px, transparent 0 2.2px, #f08ab0 2.7px 3.4px, transparent 3.8px) 0 0/12px 5px repeat-x;
  }
  .page-footer .text {
    width: 100%;
    margin: 0;
  }
  .lei-footer-badges {
    width: 100%;
    gap: 5px;
  }
  .lei-footer-badges > p {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .page-footer .lei-footer-badge {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 5px 4px;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    overflow: hidden;
    border-radius: 15px 17px 14px 18px;
    box-shadow: none;
  }
  .page-footer .lei-footer-badge:nth-child(2) {
    transform: rotate(0.45deg);
  }
  .page-footer .lei-footer-badge:nth-child(3) {
    transform: rotate(-0.4deg);
  }
  .page-footer .lei-footer-badge > span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 14px;
  }
  .page-footer .lei-footer-badge b {
    font-size: 9px;
    line-height: 1.15;
  }
  .page-footer .lei-footer-badge em {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  html.lei-dock-open,
  html.lei-dock-open body {
    overflow: hidden;
  }
  .lei-mobile-dock {
    width: calc(100% - 20px);
    max-width: 450px;
    min-height: 64px;
    padding: 5px 7px calc(5px + env(safe-area-inset-bottom, 0px));
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    position: fixed;
    z-index: 1000200;
    left: 50%;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.94);
    border-radius: 24px 25px 22px 26px;
    color: #6b6378;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 15px 40px rgba(76,61,105,0.19), 0 2px 0 rgba(255,255,255,0.95) inset;
    transform: translateX(-50%);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
  }
  .lei-dock-item {
    min-width: 0;
    min-height: 52px;
    padding: 3px 2px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
    appearance: none;
    border: 0;
    border-radius: 17px;
    color: inherit;
    background: transparent;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .lei-dock-item:after {
    content: "";
    width: 0;
    height: 4px;
    position: absolute;
    left: 50%;
    bottom: 1px;
    opacity: 0.72;
    transform: translateX(-50%);
    background: radial-gradient(circle at 3px 1px, currentColor 1.8px, transparent 2.2px) 0 100%/8px 4px repeat-x;
    transition: width 0.2s ease;
    overflow: hidden;
    font-family: "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 7px;
    line-height: 5px;
    text-align: center;
    white-space: nowrap;
  }
  .lei-dock-item:nth-child(2):after {
    content: "✦ ･ ✧";
    height: 7px;
    color: #65bdd7;
    background: none;
    line-height: 7px;
  }
  .lei-dock-item:nth-child(3):after {
    height: 5px;
    color: #9588df;
    background: radial-gradient(ellipse at 50% -1px, transparent 0 2.5px, currentColor 3px 3.7px, transparent 4px) 0 100%/11px 5px repeat-x;
  }
  .lei-dock-item:nth-child(4):after {
    content: "❀ ･ ❀";
    height: 8px;
    color: #df719a;
    background: none;
    line-height: 8px;
  }
  .lei-dock-item:hover,
  .lei-dock-item:focus-visible,
  .lei-dock-item.is-active {
    color: #d65f8e;
    background: rgba(255,231,240,0.58);
  }
  .lei-dock-item:hover:after,
  .lei-dock-item:focus-visible:after,
  .lei-dock-item.is-active:after {
    width: 34px;
  }
  .lei-dock-item__emoji {
    display: block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    font-size: 20px;
    line-height: 1.15;
    transition: transform 0.2s ease;
  }
  .lei-dock-item:hover .lei-dock-item__emoji,
  .lei-dock-item:focus-visible .lei-dock-item__emoji,
  .lei-dock-item.is-active .lei-dock-item__emoji {
    transform: translateY(-1px) rotate(-7deg) scale(1.08);
  }
  .lei-dock-item__label {
    max-width: 100%;
    overflow: hidden;
    color: currentColor;
    font-size: 9px;
    font-weight: 820;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .lei-dock-layer {
    display: block !important;
    position: fixed;
    z-index: 1000190;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }
  .lei-dock-layer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .lei-dock-layer__backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    appearance: none;
    border: 0;
    background: rgba(68,54,84,0.23);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .lei-dock-sheet {
    width: calc(100% - 20px);
    max-width: 520px;
    max-height: calc(100vh - 104px - env(safe-area-inset-bottom, 0px));
    padding: 10px 12px 13px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.95);
    border-radius: 28px 25px 29px 24px;
    color: #5f576d;
    background: rgba(255,252,254,0.97);
    box-shadow: 0 22px 58px rgba(72,56,96,0.23), 0 2px 0 #fff inset;
    transform: translate(-50%, 18px) scale(0.97);
    transition: transform 0.23s ease;
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
  }
  .lei-dock-layer.is-open .lei-dock-sheet {
    transform: translate(-50%, 0) scale(1);
  }
  .lei-dock-sheet__header {
    min-height: 40px;
    padding: 1px 3px 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    position: relative;
    border-bottom: 0;
  }
  .lei-dock-sheet__header:after {
    content: "";
    height: 6px;
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -1px;
    opacity: 0.48;
    background: radial-gradient(ellipse at center, rgba(227,103,151,0.7) 0 1.5px, transparent 2px) 0 100%/12px 5px repeat-x, radial-gradient(ellipse at 50% -1px, transparent 0 3px, rgba(106,191,215,0.5) 3.5px 4px, transparent 4.5px) 6px 100%/18px 6px repeat-x;
  }
  .lei-dock-sheet__header > span {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    font-size: 18px;
  }
  .lei-dock-sheet__header strong {
    min-width: 0;
    flex: 1;
    font-size: 13px;
  }
  .lei-dock-sheet__close {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    appearance: none;
    border: 0;
    border-radius: 50%;
    color: #8c8095;
    background: #fff0f6;
    font-size: 17px;
    cursor: pointer;
  }
  .lei-dock-sheet__body {
    min-height: 0;
    padding: 9px 2px 2px;
    overflow: auto;
    scrollbar-width: thin;
  }
  .lei-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 16px;
    padding: 3px 5px 2px;
  }
  .lei-more-link {
    min-width: 0;
    min-height: 41px;
    padding: 5px 4px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    appearance: none;
    border: 0;
    border-radius: 0;
    color: #675f73;
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 780;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.2s ease;
  }
  .lei-more-link:nth-child(4n+1) {
    transform: translateX(4px) rotate(-0.55deg);
  }
  .lei-more-link:nth-child(4n+2) {
    transform: translateX(-2px) rotate(0.42deg);
  }
  .lei-more-link:nth-child(4n+3) {
    transform: translateX(8px) rotate(0.38deg);
  }
  .lei-more-link:nth-child(4n+4) {
    transform: translateX(1px) rotate(-0.5deg);
  }
  .lei-more-link:after {
    content: "";
    height: 4px;
    position: absolute;
    left: 31px;
    right: 8px;
    bottom: 3px;
    opacity: 0.38;
    background: radial-gradient(circle at 3px 1px, currentColor 1.5px, transparent 2px) 0 100%/9px 4px repeat-x;
    transition: opacity 0.18s ease, transform 0.18s ease;
    overflow: hidden;
    font-family: "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 8px;
    line-height: 6px;
    text-align: center;
    white-space: nowrap;
  }
  .lei-more-link:nth-child(3n+2):after {
    content: "✦ ･ ✧ ･ ✦";
    height: 7px;
    color: #62bdd7;
    background: none;
    line-height: 7px;
  }
  .lei-more-link:nth-child(3n):after {
    height: 6px;
    color: #a28bd9;
    background: radial-gradient(ellipse at 50% -1px, transparent 0 3px, currentColor 3.5px 4px, transparent 4.5px) 0 100%/13px 6px repeat-x;
  }
  .lei-more-link:nth-child(5n):after {
    content: "❀ ･ ❀";
    height: 8px;
    color: #e17a9f;
    background: none;
    line-height: 8px;
  }
  .lei-more-link:hover,
  .lei-more-link:focus-visible,
  .lei-more-link.is-active {
    color: #d45f8d;
    transform: translateY(-2px) rotate(0) scale(1.015);
  }
  .lei-more-link:hover:after,
  .lei-more-link:focus-visible:after,
  .lei-more-link.is-active:after {
    opacity: 0.8;
    transform: translateY(-1px);
    animation: lei-trim-sway 1.45s ease-in-out infinite alternate;
  }
  .lei-more-link > span:first-child {
    width: 23px;
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    font-size: 16px;
  }
  .lei-dock-sheet__body > .widget-wrapper,
  .lei-dock-sheet__body > #search-wrapper {
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 3px 2px !important;
    position: static !important;
    display: block !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .lei-dock-sheet__body .widget-wrapper.toc .widget-header,
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-header {
    display: none;
  }
  .lei-dock-sheet__body .widget-wrapper.toc .widget-body,
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body {
    max-height: none !important;
    overflow: visible !important;
  }
  .lei-dock-sheet__body #search-wrapper .search-form {
    margin-top: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .l_left .header:after,
  .post-list .post-card .lei-card-sticker {
    animation: none;
  }
  .post-card-wrap .post-card,
  .nav-area .menu .nav-item {
    transform: none !important;
  }
  .nav-area .menu .nav-item:after,
  .lei-portal-item:after,
  .lei-more-link:after {
    animation: none !important;
  }
}
.lei-portal-item b {
  max-width: calc(100% - 2px);
  padding: 4px 8px;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: visible;
  border-radius: 0;
  font-size: 9px;
  line-height: 1.1;
  text-overflow: clip;
  white-space: nowrap;
}
.lei-portal-item b:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px -5px 0 -4px;
  opacity: 0.72;
  border-radius: 62% 38% 55% 45%/43% 58% 42% 57%;
  background: rgba(255,221,234,0.72);
  transform: rotate(-2.5deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lei-portal-item:nth-child(2) b:before {
  border-radius: 31% 69% 35% 65%/59% 41% 59% 41%;
  background: rgba(214,244,250,0.82);
  transform: rotate(2.2deg);
}
.lei-portal-item:nth-child(3) b:before {
  border-radius: 54% 46% 67% 33%/36% 61% 39% 64%;
  background: rgba(240,228,255,0.82);
  transform: rotate(-1.4deg);
}
.lei-portal-item:nth-child(4) b:before {
  clip-path: polygon(4% 17%, 92% 3%, 100% 78%, 16% 100%, 0 65%);
  border-radius: 0;
  background: rgba(255,239,188,0.78);
  transform: rotate(1.7deg);
}
.lei-portal-item:nth-child(5) b:before {
  border-radius: 43% 57% 32% 68%/64% 36% 64% 36%;
  background: rgba(220,246,234,0.84);
  transform: rotate(-2deg);
}
.lei-portal-item:hover b:before,
.lei-portal-item.active b:before {
  opacity: 1;
  transform: rotate(1deg) scale(1.05);
}
.lei-portal-item:after {
  content: "✦";
  width: auto;
  height: auto;
  left: auto;
  right: 8px;
  bottom: auto;
  top: 9px;
  opacity: 0.48;
  color: #e47ea5;
  background: none;
  overflow: visible;
  font-size: 8px;
  line-height: 1;
  transform: rotate(12deg);
}
.lei-portal-item:nth-child(2):after {
  content: "♡";
  color: #68bed6;
}
.lei-portal-item:nth-child(3):after {
  content: "✿";
  width: auto;
  color: #9c88d7;
}
.lei-portal-item:nth-child(4):after {
  content: "⋆";
  color: #dda24a;
}
.lei-portal-item:nth-child(5):after {
  content: "❀";
  width: auto;
  color: #70ba99;
}
.lei-portal-item:hover:after,
.lei-portal-item.active:after {
  width: auto;
  opacity: 0.9;
  transform: translate(2px, -2px) rotate(-10deg) scale(1.15);
  animation: lei-bob 2.5s ease-in-out infinite;
}
.article.banner {
  position: relative;
}
.lei-wiki-banner-charm {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 2;
  top: 15px;
  border: 2px solid rgba(255,255,255,0.94);
  border-radius: 57% 43% 64% 36%/42% 62% 38% 58%;
  background: rgba(255,246,250,0.9);
  box-shadow: 0 8px 20px rgba(82,63,108,0.14);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 15px;
  pointer-events: none;
}
.lei-wiki-banner-charm--left {
  left: 20px;
  transform: rotate(-9deg);
}
.lei-wiki-banner-charm--right {
  right: 20px;
  transform: rotate(8deg);
}
.article.banner.lei-banner-wiki > img.bg {
  border-color: rgba(255,255,255,0.96);
  outline: 1px dashed rgba(246,143,181,0.46);
  outline-offset: -10px;
}
.article.banner.lei-banner-wiki > img.bg + .content {
  padding: 9px 16px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "title dates";
  align-items: center;
  gap: 10px 18px;
  border-radius: 22px 26px 20px 27px;
}
.article.banner.lei-banner-wiki .content .top {
  grid-area: dates;
  display: block;
  margin: 0;
  font-size: 10px;
}
.article.banner.lei-banner-wiki .content .lei-banner-classification {
  display: none;
}
.article.banner.lei-banner-wiki .content .bottom {
  grid-area: title;
  min-width: 0;
}
.article.banner.lei-banner-wiki .content .bottom .title {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.15;
}
.article.banner.lei-banner-wiki .content .lei-banner-tags {
  margin-top: 4px;
}
.post-list #cats.lei-collection-board,
.post-list #tags.lei-collection-board,
.post-list #archive.lei-archive-year {
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 38px rgba(82,65,112,0.09);
}
.post-list #cats.lei-collection-board,
.post-list #tags.lei-collection-board {
  padding: 17px 18px 19px;
}
.lei-collection-heading {
  margin: 0 2px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f586e;
}
.lei-collection-heading > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 58% 42% 61% 39%/43% 62% 38% 57%;
  background: #fff0f6;
  box-shadow: 0 6px 15px rgba(93,69,109,0.1);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 19px;
  transform: rotate(-7deg);
}
.lei-collection-heading div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.lei-collection-heading strong {
  font-size: 15px;
  line-height: 1.15;
}
.lei-collection-heading small {
  margin-top: 2px;
  color: #a098aa;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.lei-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 9px 11px;
}
.post-list #cats a.lei-category-ticket {
  min-width: 0;
  min-height: 50px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 1px dashed rgba(226,136,172,0.31);
  border-radius: 24px 14px 22px 17px;
  color: #615a6e;
  background: rgba(255,234,242,0.64);
  box-shadow: none;
  transform: rotate(-0.35deg);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.post-list #cats a.lei-category-ticket:nth-child(3n+2) {
  border-color: rgba(99,184,211,0.32);
  border-radius: 15px 25px 18px 23px;
  background: rgba(224,246,251,0.7);
  transform: rotate(0.35deg);
}
.post-list #cats a.lei-category-ticket:nth-child(3n) {
  border-color: rgba(153,134,219,0.3);
  border-radius: 23px 16px 25px 13px;
  background: rgba(239,234,255,0.74);
  transform: rotate(0);
}
.post-list #cats a.lei-category-ticket:after {
  content: "✿";
  position: absolute;
  z-index: 1;
  right: -4px;
  top: -7px;
  color: rgba(230,112,155,0.55);
  font-size: 10px;
  transform: rotate(12deg);
}
.post-list #cats a.lei-category-ticket.child {
  margin-left: 13px;
  min-height: 44px;
  background: rgba(255,250,239,0.76);
}
.post-list #cats a.lei-category-ticket.child:before {
  content: "↳";
  position: absolute;
  left: -12px;
  color: #d89bb2;
  font-size: 12px;
}
.post-list #cats a.lei-category-ticket:hover {
  color: #c95684;
  background: #fff;
  box-shadow: 0 10px 24px rgba(88,67,112,0.11);
  transform: translateY(-2px) rotate(0.7deg);
}
.lei-category-emoji {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 48% 52% 39% 61%/61% 40% 60% 39%;
  background: rgba(255,255,255,0.8);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 16px;
}
.post-list #cats .lei-category-ticket .name {
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 760;
}
.post-list #cats .lei-category-ticket .badge {
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 48% 52% 61% 39%/45% 63% 37% 55%;
  color: #8d8297;
  background: rgba(255,255,255,0.76);
  font-family: inherit;
  font-size: 9px;
  opacity: 1;
}
.lei-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 7px;
}
.post-list #tags a.lei-tag-sticker {
  min-width: 0;
  margin: 0;
  padding: 7px 9px;
  display: inline-flex;
  gap: 5px;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 63% 37% 58% 42%/42% 61% 39% 58%;
  color: #625c70;
  background: #ffe9f1;
  box-shadow: 0 5px 14px rgba(89,67,111,0.07);
  font-size: 11px;
  transform: rotate(-0.45deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.post-list #tags a.lei-tag-sticker:before {
  content: none;
}
.post-list #tags a.lei-tag-sticker:nth-child(4n+2) {
  border-radius: 19px 11px 18px 13px;
  background: #e8f7fb;
  transform: rotate(0.35deg);
}
.post-list #tags a.lei-tag-sticker:nth-child(4n+3) {
  border-radius: 13px 22px 14px 21px;
  background: #f0ebff;
  transform: rotate(0.15deg);
}
.post-list #tags a.lei-tag-sticker:nth-child(4n) {
  border-radius: 55% 45% 35% 65%/61% 35% 65% 39%;
  background: #fff4c9;
  transform: rotate(-0.2deg);
}
.post-list #tags a.lei-tag-sticker:hover {
  z-index: 2;
  color: #c85784;
  background: #fff;
  box-shadow: 0 10px 22px rgba(80,62,102,0.12);
  transform: translateY(-2px) rotate(-1deg) scale(1.025);
}
.lei-tag-charm {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 12px;
}
.lei-tag-sticker .name {
  min-width: 0;
  overflow-wrap: anywhere;
}
.lei-tag-count {
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50% 45% 55% 42%;
  color: #91889a;
  background: rgba(255,255,255,0.72);
  font-size: 8px;
}
.post-list #archive.lei-archive-year {
  padding: 15px 16px 17px;
  border-radius: 27px 20px 29px 22px;
  transform: rotate(-0.14deg);
}
.post-list #archive.lei-archive-year:nth-child(even) {
  border-radius: 19px 29px 22px 27px;
  transform: rotate(0.14deg);
}
.post-list #archive.lei-archive-year .archive-header {
  margin: -2px 0 10px;
  padding: 4px 12px 5px 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 1;
  border-radius: 57% 43% 65% 35%/46% 63% 37% 54%;
  color: #5e586b;
  background: #ffe5ef;
  transform: rotate(-1.4deg);
}
.post-list #archive.lei-archive-year .archive-header:after {
  display: none;
}
.post-list #archive.lei-archive-year .archive-header > span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 16px;
}
.post-list #archive.lei-archive-year .archive-header strong {
  font-size: 17px;
}
.post-list #archive.lei-archive-year .archive-header small {
  color: #a18c99;
  font-family: inherit;
  font-size: 8px;
  font-weight: 650;
}
.post-list #archive.lei-archive-year .archive-list {
  margin: 2px 0;
}
.post-list #archive.lei-archive-year a.post {
  width: 100%;
  margin: 0;
  padding: 6px 9px 6px 27px;
  position: relative;
  box-sizing: border-box;
  border: 0;
  border-radius: 14px 22px 13px 20px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.post-list #archive.lei-archive-year a.post:before {
  content: "✿";
  position: absolute;
  left: 8px;
  top: 7px;
  color: #eb8eaf;
  font-size: 9px;
  transform: rotate(8deg);
}
.post-list #archive.lei-archive-year .archive-list:nth-child(3n+2) a.post:before {
  content: "✦";
  color: #73bfd5;
}
.post-list #archive.lei-archive-year .archive-list:nth-child(3n) a.post:before {
  content: "♡";
  color: #9d8bdd;
}
.post-list #archive.lei-archive-year a.post:hover {
  border: 0;
  color: #c85884;
  background: linear-gradient(93deg, rgba(255,229,239,0.72), rgba(229,246,251,0.55));
  transform: translateX(4px) rotate(-0.2deg);
}
.post-list #archive.lei-archive-year a.post time {
  margin-right: 10px;
  color: #9d929f;
  font-size: 10px;
}
.post-list #archive.lei-archive-year a.post span {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 900px) {
  .lei-more-grid {
    gap: 7px 14px;
    padding: 5px 4px 4px;
  }
  .lei-more-link {
    min-height: 43px;
    padding: 4px 2px;
    overflow: visible;
  }
  .lei-more-link > span:last-child {
    min-width: 0;
    padding: 6px 9px;
    position: relative;
    z-index: 1;
    isolation: isolate;
  }
  .lei-more-link > span:last-child:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 1px -4px 0 -5px;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 61% 39% 67% 33%/41% 62% 38% 59%;
    background: rgba(255,224,236,0.72);
    transform: rotate(-2deg);
  }
  .lei-more-link:nth-child(4n+2) > span:last-child:before {
    border-radius: 18px 9px 17px 11px;
    background: rgba(219,244,250,0.8);
    transform: rotate(1.8deg);
  }
  .lei-more-link:nth-child(4n+3) > span:last-child:before {
    clip-path: polygon(3% 16%, 94% 0, 100% 76%, 12% 100%, 0 63%);
    border-radius: 0;
    background: rgba(239,232,255,0.82);
  }
  .lei-more-link:nth-child(4n) > span:last-child:before {
    border-radius: 38% 62% 33% 67%/63% 37% 63% 37%;
    background: rgba(255,242,195,0.78);
    transform: rotate(-1deg);
  }
  .lei-more-link:after {
    content: "✦";
    width: auto;
    height: auto;
    left: auto;
    right: 2px;
    bottom: auto;
    top: 4px;
    opacity: 0.55;
    color: #e27fa4;
    background: none;
    overflow: visible;
    font-size: 8px;
    line-height: 1;
  }
  .lei-more-link:nth-child(3n+2):after {
    content: "♡";
    height: auto;
    color: #61bad3;
    line-height: 1;
  }
  .lei-more-link:nth-child(3n):after {
    content: "✿";
    height: auto;
    color: #9c88da;
    background: none;
  }
  .lei-more-link:nth-child(5n):after {
    content: "⋆";
    height: auto;
    color: #dda24d;
    line-height: 1;
  }
  .lei-more-link:hover:after,
  .lei-more-link:focus-visible:after,
  .lei-more-link.is-active:after {
    opacity: 0.95;
    transform: translate(1px, -2px) rotate(-13deg) scale(1.18);
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-header {
    min-height: 32px;
    margin: 7px 3px 3px;
    padding: 5px 10px !important;
    display: flex !important;
    align-items: center;
    position: sticky;
    z-index: 2;
    top: -9px;
    border: 1px solid rgba(255,255,255,0.86);
    border-radius: 61% 39% 65% 35%/42% 59% 41% 58%;
    color: #6a6175;
    background: rgba(246,236,255,0.96);
    box-shadow: 0 5px 14px rgba(83,65,108,0.08);
    transform: rotate(-0.35deg);
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-header:nth-of-type(4n+1) {
    background: rgba(255,231,240,0.96);
    transform: rotate(0.3deg);
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-header .name {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.02em;
    white-space: normal;
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body {
    margin: 0 4px 6px 18px !important;
    padding: 2px 0 5px 10px !important;
    position: relative;
    border-left: 1px dashed rgba(229,128,168,0.42);
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link {
    min-height: 31px;
    margin: 2px 0;
    padding: 5px 8px 5px 12px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 13px 20px 12px 18px;
    color: #625b6e;
    background: transparent;
    font-size: 11px;
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link:before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: -14px;
    border: 2px solid #fff;
    border-radius: 50% 42% 58% 46%;
    background: #f4a5c2;
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link:nth-child(3n+2):before {
    background: #84cadc;
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link:nth-child(3n):before {
    background: #a99ae5;
  }
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link:hover,
  .lei-dock-sheet__body .widget-wrapper.doc-tree .widget-body .link.active {
    color: #c85884;
    background: linear-gradient(95deg, rgba(255,230,240,0.8), rgba(236,245,255,0.62));
  }
}
@media screen and (max-width: 667px) {
  .lei-wiki-banner-charm {
    width: 26px;
    height: 26px;
    top: 20px;
    font-size: 12px;
  }
  .lei-wiki-banner-charm--left {
    left: 17px;
  }
  .lei-wiki-banner-charm--right {
    right: 17px;
  }
  .article.banner.lei-banner-wiki > img.bg + .content {
    padding: 8px 10px 9px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 8px;
  }
  .article.banner.lei-banner-wiki .content .top {
    font-size: 8px;
  }
  .article.banner.lei-banner-wiki .content .bottom .title {
    font-size: 14px;
  }
  .lei-collection-heading small {
    display: none;
  }
  .lei-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .post-list #cats.lei-collection-board,
  .post-list #tags.lei-collection-board {
    padding: 14px 11px 15px;
  }
  .post-list #cats a.lei-category-ticket {
    min-height: 47px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 5px;
    padding: 7px;
  }
  .post-list #cats a.lei-category-ticket.child {
    margin-left: 7px;
  }
  .lei-category-emoji {
    width: 27px;
    height: 27px;
    font-size: 14px;
  }
  .post-list #cats .lei-category-ticket .name {
    font-size: 10px;
  }
  .post-list #archive.lei-archive-year {
    padding: 13px 10px 14px;
  }
  .post-list #archive.lei-archive-year .archive-header small {
    display: none;
  }
  .post-list #archive.lei-archive-year a.post {
    align-items: flex-start;
    padding-right: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lei-portal-item b:before,
  .lei-more-link > span:last-child:before,
  .lei-category-ticket,
  .lei-tag-sticker,
  .lei-archive-year {
    transform: none !important;
  }
}
.l_right .lei-collection-widget,
.l_right .widget-wrapper.toc {
  --lei-widget-paper: rgba(255,255,255,0.82);
  position: relative;
  isolation: isolate;
}
.l_right .lei-collection-widget .widget-header,
.l_right .widget-wrapper.toc .widget-header {
  min-height: 32px;
  padding: 0 9px 5px 7px;
  align-items: center;
  color: #776b82;
  font-size: 10px;
  letter-spacing: 0.055em;
}
.lei-widget-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.lei-widget-title__emoji {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 25px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 48% 52% 43% 57%;
  background: linear-gradient(145deg, #ffe5ef, #fff6da);
  box-shadow: 0 5px 13px rgba(95,73,118,0.09);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
  transform: rotate(-5deg);
}
.tagcloud .lei-widget-title__emoji {
  background: linear-gradient(145deg, #e6f8ff, #f0eaff);
  transform: rotate(5deg);
}
.widget-wrapper.toc .lei-widget-title__emoji {
  background: linear-gradient(145deg, #fff0d6, #ffe6f2);
  transform: rotate(-3deg);
}
.lei-widget-sprinkles,
.lei-toc-sprinkles {
  margin-left: auto;
  color: #e4a2bc;
  font-family: "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  white-space: nowrap;
  opacity: 0.72;
}
.l_right .lei-collection-widget .widget-body,
.l_right .widget-wrapper.toc {
  border: 1px solid rgba(255,255,255,0.94);
  background: radial-gradient(circle at 11% 8%, rgba(255,228,239,0.58), transparent 90px), radial-gradient(circle at 91% 92%, rgba(221,245,252,0.64), transparent 110px), var(--lei-widget-paper);
  box-shadow: 0 13px 30px rgba(82,67,113,0.09);
  backdrop-filter: blur(16px) saturate(118%);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
}
.l_right .lei-collection-widget .widget-body {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px 10px 11px;
  border-radius: 25px 20px 27px 22px;
}
.l_right .lei-collection-widget .widget-body:before {
  content: "";
  width: 54px;
  height: 9px;
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 27px;
  border-radius: 2px;
  opacity: 0.62;
  background: rgba(255,222,235,0.74);
  transform: rotate(2.4deg);
  pointer-events: none;
}
.l_right .categories-widget .lei-category-garden {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  min-width: 0;
  padding: 9px 9px 10px;
}
.l_right .categories-widget .lei-category-ticket {
  --ticket-bg: rgba(255,234,241,0.9);
  --ticket-ink: #805c6c;
  width: 100%;
  max-width: 100%;
  min-height: 32px;
  margin: 0;
  padding: 4px 8px 4px 5px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 11px 18px 12px 17px;
  color: var(--ticket-ink);
  background: var(--ticket-bg);
  box-shadow: 0 5px 12px rgba(83,67,120,0.055);
  font-size: 11px;
  line-height: 1.2;
  text-decoration: none;
  transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.l_right .categories-widget .lei-category-ticket:nth-child(3n+1) {
  border-radius: 11px 18px 12px 16px;
}
.l_right .categories-widget .lei-category-ticket:nth-child(3n+2) {
  border-radius: 17px 10px 18px 12px;
}
.l_right .categories-widget .lei-category-ticket:nth-child(3n) {
  border-radius: 13px 19px 10px 17px;
}
.l_right .categories-widget .lei-category-ticket:after {
  content: "";
  position: absolute;
  right: 33px;
  top: 50%;
  width: 24px;
  border-top: 2px dotted rgba(255,255,255,0.76);
  transform: translateY(-50%);
  pointer-events: none;
}
.l_right .categories-widget .lei-category-ticket--2 {
  --ticket-bg: rgba(255,242,214,0.9);
  --ticket-ink: #806c43;
}
.l_right .categories-widget .lei-category-ticket--3 {
  --ticket-bg: rgba(238,244,216,0.9);
  --ticket-ink: #667146;
}
.l_right .categories-widget .lei-category-ticket--4 {
  --ticket-bg: rgba(224,247,237,0.91);
  --ticket-ink: #4f7467;
}
.l_right .categories-widget .lei-category-ticket--5 {
  --ticket-bg: rgba(221,244,250,0.91);
  --ticket-ink: #4e6f7b;
}
.l_right .categories-widget .lei-category-ticket--6 {
  --ticket-bg: rgba(235,230,252,0.92);
  --ticket-ink: #675d83;
}
.l_right .categories-widget .lei-category-ticket:hover {
  z-index: 2;
  color: #c55482;
  filter: none;
  box-shadow: 0 9px 19px rgba(83,67,120,0.1);
  transform: translateY(-1px) rotate(0.2deg);
}
.l_right .categories-widget .lei-category-ticket:nth-child(3n+2):hover {
  transform: translateY(-1px) rotate(-0.2deg);
}
.lei-category-charm {
  width: 27px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 45% 55% 48% 52%;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
  transition: transform 0.2s ease;
}
.lei-category-ticket:hover .lei-category-charm {
  transform: rotate(-9deg) scale(1.08);
}
.lei-category-name {
  min-width: 0;
  overflow: hidden;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lei-category-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border: 1px dashed currentColor;
  border-radius: 50% 44% 52% 46%;
  background: rgba(255,255,255,0.58);
  font-size: 8px;
  font-weight: 850;
  opacity: 0.78;
  transform: rotate(4deg);
  position: relative;
  z-index: 1;
}
.l_right .tagcloud .widget-body,
.l_right .tagcloud .tagcloud-list {
  min-width: 0;
}
.l_right .tagcloud .tagcloud-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row dense;
  align-items: stretch;
  gap: 6px;
  width: 100%;
}
.l_right .tagcloud a.lei-tag-sticker {
  --tag-bg: #ffe7f0;
  --tag-ink: #8a5c70;
  width: 100%;
  min-width: 0;
  min-height: 32px;
  padding: 5px 5px 5px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  position: relative;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 9px 14px 8px 13px;
  color: var(--tag-ink);
  background: var(--tag-bg);
  box-shadow: 0 4px 10px rgba(83,67,120,0.055);
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.2;
  word-break: normal;
  transform: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.l_right .tagcloud a.lei-tag-sticker:before {
  content: "♡";
  position: absolute;
  left: 6px;
  top: 50%;
  color: #e790b2;
  font-size: 8px;
  transform: translateY(-52%) rotate(-8deg);
}
.l_right .tagcloud a.lei-tag-sticker:nth-child(3n+2) {
  border-radius: 15px 8px 14px 10px;
}
.l_right .tagcloud a.lei-tag-sticker:nth-child(3n) {
  border-radius: 8px 15px 10px 14px;
}
.l_right .tagcloud a.lei-tag-sticker:nth-child(4n+2):before {
  content: "✿";
}
.l_right .tagcloud a.lei-tag-sticker:nth-child(4n+3):before {
  content: "✦";
}
.l_right .tagcloud a.lei-tag-sticker:nth-child(4n):before {
  content: "◌";
}
.l_right .tagcloud a.lei-tag-sticker--2 {
  --tag-bg: #fff0cf;
  --tag-ink: #866c39;
}
.l_right .tagcloud a.lei-tag-sticker--3 {
  --tag-bg: #e8f7df;
  --tag-ink: #5e744f;
}
.l_right .tagcloud a.lei-tag-sticker--4 {
  --tag-bg: #ddf5f7;
  --tag-ink: #4d7379;
}
.l_right .tagcloud a.lei-tag-sticker--5 {
  --tag-bg: #e5efff;
  --tag-ink: #586d8c;
}
.l_right .tagcloud a.lei-tag-sticker--6 {
  --tag-bg: #eee9ff;
  --tag-ink: #6c608c;
}
.l_right .tagcloud a.lei-tag-sticker--7 {
  --tag-bg: #f8e6fa;
  --tag-ink: #7c5c82;
}
.l_right .tagcloud a.lei-tag-sticker:hover {
  z-index: 2;
  color: #c65382;
  background: var(--tag-bg);
  box-shadow: 0 8px 16px rgba(83,67,120,0.11);
  transform: translateY(-2px) rotate(0.8deg);
}
.l_right .tagcloud a.lei-tag-sticker .lei-tag-name {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.12;
}
.l_right .tagcloud a.lei-tag-sticker .tag-count {
  min-width: 16px;
  height: 16px;
  margin: 0;
  padding: 0 4px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 48% 52% 44% 56%;
  color: #776b82;
  background: rgba(255,255,255,0.72) !important;
  font-size: 7px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(83,67,120,0.07);
  flex: 0 0 auto;
}
.l_right .widget-wrapper.toc {
  overflow: visible;
  padding: 10px 8px 12px;
  border-radius: 27px 21px 29px 23px;
}
.l_right .widget-wrapper.toc:before,
.l_right .widget-wrapper.toc:after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.l_right .widget-wrapper.toc:before {
  content: "🌷";
  right: 13px;
  top: -11px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 52% 48% 45% 55%;
  background: #ffe5ef;
  box-shadow: 0 6px 14px rgba(83,67,120,0.1);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 13px;
  transform: rotate(7deg);
}
.l_right .widget-wrapper.toc:after {
  content: "〰 〰 〰";
  left: 19px;
  bottom: -8px;
  padding: 1px 8px;
  border-radius: 999px;
  color: #74c4d8;
  background: rgba(255,255,255,0.94);
  font-size: 8px;
  letter-spacing: 0.14em;
  transform: rotate(-2deg);
}
.widget-wrapper.toc .lei-toc-sprinkles {
  margin-left: auto;
  margin-right: 8px;
  color: #9ccbd8;
}
.l_right .widget-wrapper.toc .widget-body {
  padding: 3px 1px 4px;
  overflow: hidden;
}
.widget-wrapper.toc .widget-body:before {
  display: none;
}
.l_right .widget-wrapper.toc .toc a.toc-link {
  min-height: 29px;
  margin: 2px 0;
  padding: 6px 8px 6px 27px;
  position: relative;
  border: 1px solid transparent;
  border-radius: 13px 18px 13px 17px;
  color: #756f80;
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.l_right .widget-wrapper.toc .toc a.toc-link:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 11px;
  top: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 52% 48% 44% 56%;
  background: #f2a1bf;
  box-shadow: 0 1px 4px rgba(83,67,120,0.1);
  transform: translateY(-50%) rotate(12deg);
}
.l_right .widget-wrapper.toc .toc-item:nth-child(3n+2) > a.toc-link:after {
  background: #83c9db;
}
.l_right .widget-wrapper.toc .toc-item:nth-child(3n) > a.toc-link:after {
  background: #a99ae2;
}
.l_right .widget-wrapper.toc .toc-child .toc-link {
  padding-left: 39px;
}
.l_right .widget-wrapper.toc .toc-child .toc-link:after {
  left: 23px;
  width: 5px;
  height: 5px;
}
.l_right .widget-wrapper.toc .toc-child .toc-child .toc-link {
  padding-left: 51px;
}
.l_right .widget-wrapper.toc .toc-child .toc-child .toc-link:after {
  left: 35px;
}
.l_right .widget-wrapper.toc .toc-child .toc-child .toc-child .toc-link {
  padding-left: 61px;
}
.l_right .widget-wrapper.toc .toc-child .toc-child .toc-child .toc-link:after {
  left: 45px;
}
.l_right .widget-wrapper.toc .toc a.toc-link:hover {
  color: #b8557b;
  background: rgba(255,233,242,0.66);
  transform: translateX(2px) rotate(-0.18deg);
}
.l_right .widget-wrapper.toc .toc a.toc-link.active {
  color: #9c496c;
  border-color: rgba(255,255,255,0.9);
  background: linear-gradient(96deg, rgba(255,220,234,0.93), rgba(229,246,251,0.83));
  box-shadow: 0 6px 14px rgba(83,67,120,0.075);
  font-weight: 760;
  transform: translateX(3px) rotate(0.2deg);
}
.l_right .widget-wrapper.toc .toc a.toc-link.active:before {
  content: "✿";
  width: auto;
  height: auto;
  left: 8px;
  top: 50%;
  bottom: auto;
  border-radius: 0;
  color: #e77ea7;
  background: transparent;
  font-size: 10px;
  transform: translateY(-52%) rotate(-8deg);
}
.l_right .widget-wrapper.toc .toc a.toc-link.active:after {
  display: none;
}
.l_right .widget-wrapper.toc .widget-footer {
  margin-top: 7px;
  padding-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.l_right .widget-wrapper.toc .widget-footer:before {
  left: 8px;
  right: 8px;
  height: 5px;
  top: 0;
  background: radial-gradient(circle, rgba(232,150,183,0.58) 0 1.2px, transparent 1.7px) 0 50%/10px 5px repeat-x;
}
.l_right .widget-wrapper.toc .widget-footer a {
  min-width: 0;
  padding: 7px 8px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 12px 17px 12px 16px;
  color: #756b80;
  background: rgba(255,240,246,0.72);
  font-size: 9px;
}
.l_right .widget-wrapper.toc .widget-footer a:nth-child(2) {
  background: rgba(226,245,250,0.76);
  transform: rotate(0.35deg);
}
.l_right .widget-wrapper.toc .widget-footer a:hover {
  color: #c55482;
  background: #ffe5ef;
  transform: translateY(-1px) rotate(-0.25deg);
}
@media (prefers-reduced-motion: reduce) {
  .lei-widget-title__emoji,
  .l_right .categories-widget .lei-category-ticket,
  .l_right .tagcloud a.lei-tag-sticker,
  .l_right .widget-wrapper.toc .toc a.toc-link {
    transition: none !important;
    transform: none !important;
  }
}
.tag-plugin.banner.lei-profile-banner {
  height: clamp(210px, 21vw, 270px) !important;
  isolation: isolate;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.96);
  border-radius: 30px 24px 32px 26px;
  background: #f7f4ff;
  box-shadow: 0 19px 42px rgba(83,67,120,0.13);
}
.tag-plugin.banner.lei-profile-banner:before,
.tag-plugin.banner.lei-profile-banner:after {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}
.tag-plugin.banner.lei-profile-banner:before {
  content: "🫧";
  width: 35px;
  height: 35px;
  right: 14px;
  top: 13px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.94);
  border-radius: 55% 45% 58% 42%;
  background: rgba(255,239,247,0.88);
  box-shadow: 0 8px 17px rgba(83,67,120,0.1);
  font-size: 15px;
  transform: rotate(7deg);
}
.tag-plugin.banner.lei-profile-banner:after {
  content: "❀  ·  〰  ·  ✦";
  right: 19px;
  bottom: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 8px rgba(69,58,95,0.22);
  transform: rotate(-2deg);
}
.tag-plugin.banner.lei-profile-banner--friends:before {
  content: "💞";
  background: rgba(228,247,252,0.9);
}
.tag-plugin.banner.lei-profile-banner--about:before {
  content: "🌷";
  background: rgba(255,241,213,0.9);
}
.tag-plugin.banner.lei-profile-banner--moments:after {
  content: "✦  ·  🫧  ·  ✦";
}
.tag-plugin.banner.lei-profile-banner--friends:after {
  content: "♡  ·  ✿  ·  ♡";
}
.tag-plugin.banner.lei-profile-banner > img.bg {
  padding: 0;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.96) brightness(1.035);
  transform: none;
}
.tag-plugin.banner.lei-profile-banner--moments > img.bg {
  object-position: 69% 43%;
}
.tag-plugin.banner.lei-profile-banner--friends > img.bg {
  object-position: 66% 44%;
}
.tag-plugin.banner.lei-profile-banner--about > img.bg {
  object-position: 73% 45%;
}
.tag-plugin.banner.lei-profile-banner:hover > img.bg {
  transform: scale(1.006);
  filter: saturate(1) brightness(1.04);
}
.tag-plugin.banner.lei-profile-banner .content {
  color: var(--lei-ink) !important;
  background: linear-gradient(90deg, rgba(255,251,253,0.16), transparent 43%);
  text-shadow: none !important;
}
.tag-plugin.banner.lei-profile-banner .content .top {
  margin: 12px;
}
.tag-plugin.banner.lei-profile-banner .content .top .back {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 48% 52% 43% 57%;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 6px 14px rgba(83,67,120,0.08);
}
.tag-plugin.banner.lei-profile-banner .content .top .back svg {
  fill: #796e86;
}
.tag-plugin.banner.lei-profile-banner .content .bottom {
  width: max-content;
  max-width: calc(100% - 30px);
  min-height: 62px;
  margin: 0 0 14px 14px;
  padding: 9px 13px;
  align-items: center;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 20px 14px 22px 16px;
  color: #4f465c;
  background: rgba(255,252,253,0.78) !important;
  background-image: none !important;
  box-shadow: 0 10px 25px rgba(83,67,120,0.11);
  backdrop-filter: blur(11px) saturate(118%);
  -webkit-backdrop-filter: blur(11px) saturate(118%);
  text-shadow: none !important;
  transform: rotate(-0.35deg);
}
.tag-plugin.banner.lei-profile-banner .content .bottom:after {
  content: "〰 〰";
  position: absolute;
  left: 15px;
  bottom: -8px;
  padding: 0 6px;
  border-radius: 999px;
  color: #72bfd5;
  background: rgba(255,255,255,0.94);
  font-size: 8px;
  letter-spacing: 0.08em;
}
.tag-plugin.banner.lei-profile-banner .content .bottom .avatar {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.98) !important;
  border-radius: 18px;
  box-shadow: 0 6px 13px rgba(83,67,120,0.1);
}
.tag-plugin.banner.lei-profile-banner .content .bottom .title {
  color: #413a50;
  font-size: 16px;
  font-weight: 850;
}
.tag-plugin.banner.lei-profile-banner .content .bottom .subtitle {
  color: #756c80;
  font-size: 10px;
}
.post-list.wiki.lei-project-list .post-card-wrap {
  margin-bottom: 14px;
}
.post-list.wiki.lei-project-list .post-card.wiki {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.94);
  border-radius: 27px 22px 29px 24px;
  background: rgba(255,255,255,0.91);
  box-shadow: 0 14px 34px rgba(83,67,120,0.09);
}
.post-list.wiki.lei-project-list .post-card.wiki article.lei-project-card {
  min-height: 178px;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) clamp(210px, 34%, 285px);
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
}
.post-list.wiki.lei-project-list .lei-project-card__copy {
  min-width: 0;
  margin: 0 !important;
  padding: 21px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.post-list.wiki.lei-project-list .lei-project-card__copy:after {
  content: "✿  ·  ✦";
  width: max-content;
  margin-top: 9px;
  color: #e897b5;
  font-size: 8px;
  letter-spacing: 0.14em;
}
.post-list.wiki.lei-project-list .lei-project-card__copy .caps {
  max-width: 100%;
  margin: 0 0 8px;
  display: flex;
  gap: 5px;
  overflow: hidden;
  white-space: nowrap;
}
.post-list.wiki.lei-project-list .lei-project-card__copy .cap {
  max-width: 46%;
  padding: 3px 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 15px 9px 14px 10px;
  font-size: 9px;
  font-weight: 750;
  text-overflow: ellipsis;
}
.post-list.wiki.lei-project-list .lei-project-card__copy .post-title {
  margin: 0 0 7px;
  color: var(--lei-ink);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.post-list.wiki.lei-project-list .lei-project-card__copy p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #756f82;
  font-family: "Iowan Old Style", "Songti SC", Georgia, serif;
  font-size: 13px;
  line-height: 1.5;
}
.post-list.wiki.lei-project-list .lei-project-card__cover {
  min-width: 0;
  width: auto;
  height: auto;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
}
.post-list.wiki.lei-project-list .lei-project-card__cover:before {
  content: "";
  width: 42px;
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.96), transparent);
}
.post-list.wiki.lei-project-list .lei-project-card__cover img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 178px;
  max-width: none !important;
  max-height: none;
  padding: 0 !important;
  box-sizing: border-box;
  object-fit: cover !important;
  object-position: 70% center !important;
  border: 0 !important;
  border-radius: 0;
  background: #eef8fb;
  box-shadow: none;
  filter: none;
  transform: none;
}
.post-list.wiki.lei-project-list .post-card.wiki:hover .lei-project-card__cover img {
  filter: none;
  transform: none;
}
.l_left .lei-series-docs,
.l_left .lei-wiki-docs {
  margin: 10px 9px 14px;
  padding: 8px 7px 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 23px 17px 25px 19px;
  background: linear-gradient(150deg, rgba(255,250,253,0.78), rgba(241,250,255,0.72));
  box-shadow: 0 10px 25px rgba(83,67,120,0.07);
  word-break: normal;
}
.l_left .lei-series-docs .widget-header,
.l_left .lei-wiki-docs .widget-header.lei-doc-section {
  min-width: 0;
  min-height: 34px;
  margin: 2px 2px 6px;
  padding: 5px 7px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  position: relative;
  overflow: visible;
  border: 0;
  color: #6f667a;
  background: transparent;
}
.l_left .lei-series-docs .widget-header:after,
.l_left .lei-wiki-docs .widget-header.lei-doc-section:after {
  content: "";
  height: 5px;
  position: absolute;
  left: 32px;
  right: 5px;
  bottom: 0;
  opacity: 0.48;
  background: radial-gradient(circle, #e697b6 0 1.4px, transparent 1.8px) 0 50%/9px 5px repeat-x;
}
.l_left .lei-doc-heading-charm,
.l_left .lei-doc-section__charm {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 54% 46% 58% 42%;
  background: #ffe8f0;
  box-shadow: 0 4px 10px rgba(83,67,120,0.07);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 12px;
  transform: rotate(-5deg);
}
.l_left .lei-wiki-docs .lei-doc-section:nth-of-type(4n+2) .lei-doc-section__charm {
  background: #def4fa;
  transform: rotate(5deg);
}
.l_left .lei-wiki-docs .lei-doc-section:nth-of-type(4n+3) .lei-doc-section__charm {
  background: #eee8ff;
}
.l_left .lei-wiki-docs .lei-doc-section:nth-of-type(4n) .lei-doc-section__charm {
  background: #fff2c9;
  transform: rotate(4deg);
}
.l_left .lei-series-docs .widget-header .name,
.l_left .lei-wiki-docs .widget-header.lei-doc-section .name {
  min-width: 0;
  overflow: hidden;
  color: #756b80;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.l_left .lei-series-docs .widget-header .lei-doc-topic {
  grid-column: 2;
  min-width: 0;
  margin-top: -5px;
  overflow: hidden;
  color: #c76188;
  font-size: 8px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.l_left .lei-series-docs .widget-body,
.l_left .lei-wiki-docs .widget-body.lei-doc-pages {
  min-width: 0;
  margin: 0;
  padding: 0 1px 3px;
  overflow: visible;
}
.l_left .lei-series-docs .widget-body .item,
.l_left .lei-wiki-docs .widget-body .link {
  min-width: 0;
  min-height: 32px;
  margin: 2px 0;
  padding: 5px 6px;
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 13px 18px 12px 17px;
  color: #696271;
  background: transparent;
  font-size: 9px;
  line-height: 1.25;
  transform-origin: center;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.l_left .lei-series-docs .widget-body .item:nth-child(3n+1),
.l_left .lei-wiki-docs .widget-body .link:nth-child(3n+1) {
  transform: translateX(1px) rotate(-0.18deg);
}
.l_left .lei-series-docs .widget-body .item:nth-child(3n+2),
.l_left .lei-wiki-docs .widget-body .link:nth-child(3n+2) {
  transform: translateX(4px) rotate(0.2deg);
}
.l_left .lei-series-docs .lei-doc-index,
.l_left .lei-wiki-docs .lei-doc-index {
  width: 22px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 52% 48% 43% 57%;
  color: #ac7890;
  background: rgba(255,230,240,0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 850;
}
.l_left .lei-series-docs .widget-body .item:nth-child(3n+2) .lei-doc-index,
.l_left .lei-wiki-docs .widget-body .link:nth-child(3n+2) .lei-doc-index {
  color: #5f8e9b;
  background: rgba(222,244,250,0.86);
}
.l_left .lei-series-docs .widget-body .item:nth-child(3n) .lei-doc-index,
.l_left .lei-wiki-docs .widget-body .link:nth-child(3n) .lei-doc-index {
  color: #796ba3;
  background: rgba(237,232,255,0.88);
}
.l_left .lei-series-docs .widget-body .title,
.l_left .lei-wiki-docs .widget-body .toc-text {
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  white-space: normal;
}
.l_left .lei-series-docs .widget-body .item:hover,
.l_left .lei-wiki-docs .widget-body .link:hover {
  color: #bd527c;
  background: rgba(255,235,243,0.68);
  transform: translateX(3px) rotate(-0.25deg);
}
.l_left .lei-series-docs .widget-body .item.active,
.l_left .lei-wiki-docs .widget-body .link.active {
  color: #a9476d;
  border-color: rgba(255,255,255,0.9);
  background: linear-gradient(95deg, rgba(255,220,234,0.92), rgba(226,245,250,0.78));
  box-shadow: 0 5px 12px rgba(83,67,120,0.07);
  font-weight: 760;
  transform: translateX(2px) rotate(0.12deg);
}
.l_left .lei-series-docs .widget-body .item > svg,
.l_left .lei-wiki-docs .widget-body .link > svg {
  width: 12px;
  height: 12px;
  color: #e77fa6;
}
@media screen and (max-width: 1050px) {
  .post-list.wiki.lei-project-list .post-card.wiki article.lei-project-card {
    min-height: 168px;
    grid-template-columns: minmax(0, 1fr) minmax(185px, 34%);
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy {
    padding: 17px 18px 15px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__cover img {
    min-height: 168px;
  }
}
@media screen and (max-width: 667px) {
  .tag-plugin.banner.lei-profile-banner {
    height: 176px !important;
    border-width: 3px;
    border-radius: 23px 18px 25px 20px;
  }
  .tag-plugin.banner.lei-profile-banner:before {
    width: 29px;
    height: 29px;
    right: 9px;
    top: 9px;
    font-size: 12px;
  }
  .tag-plugin.banner.lei-profile-banner:after {
    right: 10px;
    bottom: 8px;
    font-size: 7px;
  }
  .tag-plugin.banner.lei-profile-banner > img.bg {
    object-position: 67% center;
  }
  .tag-plugin.banner.lei-profile-banner--friends > img.bg {
    object-position: 64% center;
  }
  .tag-plugin.banner.lei-profile-banner .content .top {
    margin: 8px;
  }
  .tag-plugin.banner.lei-profile-banner .content .bottom {
    min-height: 49px;
    max-width: calc(100% - 18px);
    margin: 0 0 9px 9px;
    padding: 6px 9px;
    border-radius: 16px 11px 18px 13px;
  }
  .tag-plugin.banner.lei-profile-banner .content .bottom .avatar {
    width: 37px;
    height: 37px;
    border-radius: 13px;
  }
  .tag-plugin.banner.lei-profile-banner .content .bottom .title {
    font-size: 13px;
  }
  .tag-plugin.banner.lei-profile-banner .content .bottom .subtitle {
    font-size: 8px;
  }
  .post-list.wiki.lei-project-list .post-card-wrap {
    margin-bottom: 11px;
  }
  .post-list.wiki.lei-project-list .post-card.wiki {
    border-radius: 22px 18px 24px 19px;
  }
  .post-list.wiki.lei-project-list .post-card.wiki article.lei-project-card {
    min-height: 158px;
    grid-template-columns: minmax(0, 62%) minmax(0, 38%);
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy {
    padding: 13px 11px 11px 13px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy .caps {
    margin-bottom: 5px;
    gap: 3px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy .cap {
    max-width: 58%;
    padding: 2px 5px;
    font-size: 7px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy .post-title {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.2;
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy p {
    -webkit-line-clamp: 2;
    font-size: 10.5px;
    line-height: 1.38;
  }
  .post-list.wiki.lei-project-list .lei-project-card__copy:after {
    margin-top: 5px;
    font-size: 6px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__cover:before {
    width: 25px;
  }
  .post-list.wiki.lei-project-list .lei-project-card__cover img {
    min-height: 158px;
    object-position: 70% center;
  }
  .lei-dock-sheet__body .lei-wiki-docs .lei-doc-section__charm {
    margin-right: 7px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  }
  .lei-dock-sheet__body .lei-wiki-docs .lei-doc-pages .link {
    display: grid;
    grid-template-columns: 23px minmax(0, 1fr) auto;
  }
  .lei-dock-sheet__body .lei-wiki-docs .lei-doc-index {
    width: 21px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 52% 48% 44% 56%;
    color: #a86d88;
    background: #ffe8f1;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 7px;
    font-weight: 850;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tag-plugin.banner.lei-profile-banner > img.bg,
  .l_left .lei-series-docs .widget-body .item,
  .l_left .lei-wiki-docs .widget-body .link {
    transition: none !important;
    transform: none !important;
  }
}
@-moz-keyframes lei-bob {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}
@-webkit-keyframes lei-bob {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}
@-o-keyframes lei-bob {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}
@keyframes lei-bob {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-3px) rotate(3deg);
  }
}
@-moz-keyframes lei-nav-trim-dance {
  from {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
    opacity: 0.62;
  }
  to {
    transform: translateX(-50%) translateY(-1px) rotate(1.5deg);
    opacity: 0.96;
  }
}
@-webkit-keyframes lei-nav-trim-dance {
  from {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
    opacity: 0.62;
  }
  to {
    transform: translateX(-50%) translateY(-1px) rotate(1.5deg);
    opacity: 0.96;
  }
}
@-o-keyframes lei-nav-trim-dance {
  from {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
    opacity: 0.62;
  }
  to {
    transform: translateX(-50%) translateY(-1px) rotate(1.5deg);
    opacity: 0.96;
  }
}
@keyframes lei-nav-trim-dance {
  from {
    transform: translateX(-50%) translateY(0) rotate(-2deg);
    opacity: 0.62;
  }
  to {
    transform: translateX(-50%) translateY(-1px) rotate(1.5deg);
    opacity: 0.96;
  }
}
@-moz-keyframes lei-trim-sway {
  from {
    transform: translateY(-1px) rotate(-2deg);
  }
  to {
    transform: translateY(0) rotate(1.5deg);
  }
}
@-webkit-keyframes lei-trim-sway {
  from {
    transform: translateY(-1px) rotate(-2deg);
  }
  to {
    transform: translateY(0) rotate(1.5deg);
  }
}
@-o-keyframes lei-trim-sway {
  from {
    transform: translateY(-1px) rotate(-2deg);
  }
  to {
    transform: translateY(0) rotate(1.5deg);
  }
}
@keyframes lei-trim-sway {
  from {
    transform: translateY(-1px) rotate(-2deg);
  }
  to {
    transform: translateY(0) rotate(1.5deg);
  }
}
