:root {
  --width-left: 256px;
  --width-main: 680px;
  --gap-l: 16px;
  --gap-p: 1.25rem;
}
@media screen and (min-width: 2048px) {
  :root {
    --gap-l: 32px;
    --width-left: 320px;
    --width-main: 740px;
  }
}
@media screen and (min-width: 2560px) {
  :root {
    --width-main: 860px;
    --gap-l: 64px;
  }
}
:root {
  --site-bg: #f8f8f8;
  --block: #f2f2f2;
  --block-border: #e5e5e5;
  --block-hover: #ededed;
  --text-p0: #000;
  --text-p1: #444;
  --text-p2: #686868;
  --text-p3: #8c8c8c;
  --text-p4: #b9b9b9;
  --text-meta: #d4d4d4;
  --text-code: #111;
  --card: #fff;
  --theme-highlight: #03c7fa;
  --theme-bg: #e8fafe;
}
@media (prefers-color-scheme: dark) {
  :root {
    --site-bg: #20252b;
    --block: #2e353d;
    --block-border: #444e5a;
    --block-hover: #2c323a;
    --text-p0: #fff;
    --text-p1: #c4c5c7;
    --text-p2: #b0b1b3;
    --text-p3: #7c7f82;
    --text-p4: #686b6f;
    --text-meta: #5d6165;
    --text-code: #ff7043;
    --card: #40454b;
    --theme-highlight: #1bcdfc;
    --theme-bg: #3c525c;
  }
}
@media screen and (prefers-color-scheme: dark) and (max-width: 768px) {
  :root {
    --site-bg: #000;
  }
}
pre {
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", 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: #2196f3;
}
a:hover {
  color: #ff5722;
}
hr {
  color: var(--text-meta);
  opacity: 0.1;
}
img {
  max-width: 100%;
}
li {
  font-size: 0.9375rem;
}
ul,
ol {
  padding-left: 1.5rem;
}
table:not([class]) {
  border-collapse: collapse;
  overflow: auto;
  display: block;
  margin: 1rem 0;
  max-width: 100%;
  vertical-align: text-top;
  font-size: 0.875rem;
}
table:not([class]) th {
  background: var(--block);
}
table:not([class]) td,
table:not([class]) th {
  padding: 0.5em 1em;
  border: 1px solid var(--block-hover);
  line-height: 1.5;
}
table:not([class]) tr {
  word-break: keep-all;
  white-space: nowrap;
}
table:not([class]) tr:hover {
  background: var(--block);
}
:root {
  --blur-px: 12px;
  --blur-bg: rgba(255,255,255,0.5);
}
@media (prefers-color-scheme: dark) {
  :root {
    --blur-bg: rgba(0,0,0,0.5);
  }
}
.blur {
  background: var(--blur-bg);
}
@supports ((-webkit-backdrop-filter: blur(var(--blur-px))) or (backdrop-filter: blur(var(--blur-px)))) {
  .blur {
    background: var(--blur-bg) !important;
    backdrop-filter: saturate(200%) blur(var(--blur-px));
    -webkit-backdrop-filter: saturate(200%) blur(var(--blur-px));
  }
}
.blur:hover {
  background: var(--card);
}
button {
  border: none;
  font-weight: 500;
  outline: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
a.button {
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 2rem;
  border-radius: 3px;
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  font-size: 0.9375rem;
}
a.button.theme {
  background: #1bcdfc;
  color: #fff;
}
a.button.theme:hover {
  background: #ff5722;
}
a[onclick]:hover {
  cursor: pointer;
}
.cap {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-p3);
}
.cap.blue {
  color: #0d87e9;
}
.cap.cyan {
  color: #03c3f5;
}
.cap.theme {
  color: #03c7fa;
}
.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: 768px) {
  .mobile-only {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}
.float-panel {
  position: sticky;
  right: 0;
  bottom: 2rem;
  float: right;
  z-index: 9;
  display: flex;
  border-radius: 4px 0 0 4px;
  padding-right: 1rem;
  border: 1px solid var(--block-border);
  border-right: 0;
  overflow: hidden;
  --blur-px: 24px;
  --blur-bg: rgba(234,234,234,0.6);
}
@media (prefers-color-scheme: dark) {
  .float-panel {
    --blur-bg: rgba(85,85,85,0.6);
  }
}
.sidebar-toggle.mobile {
  cursor: pointer;
  color: var(--text-p2);
  border-right: 1px solid transparent;
  background: none;
  padding: 0.5rem;
  line-height: 0;
  font-size: 20px;
  margin: 0;
}
.l_body.mobile.sidebar .sidebar-toggle.mobile {
  background: var(--card);
  color: #ff5722;
  border-color: var(--block-border);
}
article.md .highlight {
  margin: 1rem 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--block);
  border: 1px solid var(--block-border);
  line-height: 1.5;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  box-sizing: border-box;
}
@media screen and (min-width: 500px) {
  article.md .highlight {
    min-width: 280px;
  }
}
article.md .highlight {
  position: relative;
  overflow: auto;
  display: block;
}
article.md .highlight figcaption {
  color: var(--text-p2);
  font-size: 0.8125rem;
  padding: 4px 0.5rem;
  position: sticky;
  left: 0;
  background: var(--block-hover);
  border-top-left-radius: calc(6px - 1px);
  border-top-right-radius: calc(6px - 1px);
  border-bottom: 1px solid var(--block-border);
}
article.md .highlight figcaption span {
  margin-right: 4px;
}
article.md .highlight >table {
  overflow: auto;
  display: block;
  margin: 0 !important;
  background: transparent;
  border: none;
}
article.md .highlight >table td,
article.md .highlight >table th {
  padding: 0;
  border: none;
  line-height: 1.5;
}
article.md .highlight >table::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
article.md .highlight >table::-webkit-scrollbar-track-piece {
  background: transparent;
}
article.md .highlight >table::-webkit-scrollbar-thumb {
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}
article.md .highlight >table:hover::-webkit-scrollbar-thumb {
  background: var(--text-meta);
}
article.md .highlight >table:hover::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
article.md .highlight >table tr {
  background: transparent;
}
article.md .highlight >table tr:hover {
  background: transparent;
}
article.md .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;
}
article.md .highlight .gutter pre .line {
  color: var(--text-p4);
}
article.md .highlight .code pre {
  display: block;
  padding: 0.5em 1rem;
}
article.md .highlight .gutter+.code pre {
  padding-left: 0.25em;
}
table:not([class]) {
  border-collapse: collapse;
}
article.md .highlight .code {
  vertical-align: top;
}
article.md .highlight .code:before {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 0.5rem;
  opacity: 0.25;
  font-weight: 700;
}
article.md .highlight.yaml .code:before {
  content: "YAML";
}
article.md .highlight.json .code:before {
  content: "JSON";
}
article.md .highlight.diff .code:before {
  content: "diff";
}
article.md .highlight.html .code:before {
  content: "HTML";
}
article.md .highlight.js .code:before,
article.md .highlight.javascript .code:before {
  content: "JS";
}
article.md .highlight.css .code:before {
  content: "CSS";
}
article.md .highlight.less .code:before {
  content: "Less";
}
article.md .highlight.stylus .code:before {
  content: "Stylus";
}
article.md .highlight.bash .code:before {
  content: "bash";
}
article.md .highlight.shell .code:before {
  content: "shell";
}
article.md .highlight.sh .code:before {
  content: "sh";
}
article.md .highlight.ini .code:before {
  content: "ini";
}
article.md .highlight.c .code:before {
  content: "C";
}
article.md .highlight.cpp .code:before {
  content: "C++";
}
article.md .highlight.objc .code:before,
article.md .highlight.objectivec .code:before {
  content: "Objective-C";
}
article.md .highlight.swift .code:before {
  content: "Swift";
}
article.md .highlight.java .code:before {
  content: "Java";
}
article.md .highlight.python .code:before {
  content: "Python";
}
article.md .highlight.php .code:before {
  content: "PHP";
}
article.md .highlight.rust .code:before {
  content: "Rust";
}
article.md .highlight.sql .code:before {
  content: "SQL";
}
article.md .highlight.ruby .code:before {
  content: "Ruby";
}
article.md .highlight.makefile .code:before {
  content: "Makefile";
}
article.md .highlight.go .code:before {
  content: "Go";
}
article.md .highlight.typescript .code:before {
  content: "TypeScript";
}
pre .code:before {
  display: none;
}
pre .line,
pre .params {
  color: var(--text-p1);
}
pre .line .addition {
  color: #3fa33f;
}
pre .line .deletion {
  color: #ee2b29;
}
pre .marked {
  background-color: rgba(254,213,66,0.4);
  padding: 2px 8px 2px 0;
  border-radius: 2px;
  width: 100%;
}
pre .title,
pre .attr,
pre .attribute {
  color: #3f51b5;
}
pre .comment {
  color: var(--text-p4);
  font-style: italic;
}
pre .keyword,
pre .meta-keyword,
pre .javascript .function {
  color: #8959a8;
}
pre .type,
pre .built_in,
pre .tag .name {
  color: #2196f3;
}
pre .variable,
pre .regexp,
pre .ruby .constant,
pre .xml .tag .title,
pre .xml .pi,
pre .xml .doctype,
pre .html .doctype,
pre .css .id,
pre .css .class,
pre .css .pseudo {
  color: #fd8607;
}
pre .number,
pre .preprocessor,
pre .literal,
pre .constant {
  color: #fd8607;
}
pre .class,
pre .ruby .class .title,
pre .css .rules .attribute {
  color: #ff9800;
}
pre .string,
pre .meta-string {
  color: #449e48;
}
pre .value,
pre .inheritance,
pre .header,
pre .ruby .symbol,
pre .xml .cdata {
  color: #4caf50;
}
pre .css .hexcolor {
  color: #6cc;
}
pre .function,
pre .python .decorator,
pre .python .title,
pre .ruby .function .title,
pre .ruby .title .keyword,
pre .perl .sub,
pre .javascript .title,
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 {
  font-family: system-ui, "Microsoft Yahei", "Segoe UI", -apple-system, Roboto, Ubuntu, "Helvetica Neue", Arial, "WenQuanYi Micro Hei", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  background: var(--site-bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
div.lazy.img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
input {
  background: none;
  border: none;
}
input.copy-area {
  display: block;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-p3);
}
svg.loading {
  display: block;
  position: absolute;
  color: var(--text-p3);
  z-index: -1;
  width: 100%;
  height: 2rem;
  margin: auto;
  animation: spin infinite 2s;
  animation-timing-function: linear;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
span.dot,
span.sep {
  font-size: 0.9em;
  margin: 0 0.25em;
}
span.dot:before {
  content: '·';
}
span.sep:before {
  content: '/';
  padding-left: 2px;
  padding-right: 2px;
}
svg.icon {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  overflow: hidden;
}
h1,
.h1 {
  font-size: 2rem;
  font-weight: 500;
}
h2,
.h2 {
  font-size: 1.5rem;
}
h3,
.h3 {
  font-size: 1.375rem;
}
h4,
.h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 0.9375rem;
}
h6 {
  font-size: 0.75rem;
}
.fs14 {
  font-size: 0.875rem;
}
.fs14 p {
  font-size: 0.875rem !important;
}
.fs14 li {
  font-size: 0.875rem !important;
}
.fs12 {
  font-size: 0.75rem;
}
.post-list .post-title {
  font-weight: 500;
  margin: 0.5rem 0;
  line-height: 1.2;
  font-size: 1.375rem;
  border-bottom: none;
  color: var(--text-p1);
  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;
}
.post-list .wiki .post-title {
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1.75rem;
}
.widgets .post-title {
  margin: 0.75rem 0;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widgets .post-title .cap {
  margin-bottom: 2px;
  opacity: 0.5;
}
.widgets .post-title a {
  color: inherit;
  font-weight: 500;
}
.widgets .post-title a:hover {
  color: #ff5722;
}
div.toast {
  max-width: 60%;
  padding: 1rem 3rem;
  line-height: 1.5;
  color: var(--text-p1);
  font-weight: 500;
  text-align: center;
  border-radius: 12px;
  background: var(--card);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1);
}
.md .article-footer {
  margin-top: 4rem;
  padding: 1rem;
  background: var(--block);
  border-radius: 6px;
  border: 1px solid var(--block-border);
}
.md .article-footer:empty {
  display: none;
}
.md .article-footer .header {
  font-weight: 500;
  color: var(--text-p2);
  font-size: 1.125rem;
}
.md .article-footer .body input.copy-area {
  margin: 0.75rem 0;
  padding: 0;
  width: 100%;
}
.md .article-footer .body p {
  color: var(--text-p2);
  margin: 0.5em 0;
}
.md .article-footer .body p a {
  font-weight: unset;
}
.md .article-footer .body ul {
  margin: 0;
  overflow: hidden;
}
.md .article-footer .body ul a:hover {
  text-decoration: underline;
}
.md .article-footer .body .post-title {
  margin: 0.5rem 0;
  line-height: 1.2;
  word-break: break-all;
}
.md .article-footer section+section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--block-border);
}
.md .article-footer .social-wrap {
  grid-gap: 0.5rem 1rem;
  margin: 0;
}
.md .article-footer .qrcode {
  width: 128px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1), 0 0 32px 0px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: height 0.2s ease-out;
  -moz-transition: height 0.2s ease-out;
  -webkit-transition: height 0.2s ease-out;
  -o-transition: height 0.2s ease-out;
}
.md .article-footer .qrcode img {
  object-fit: contain;
}
.md .article-footer .qrcode.display {
  margin: 2rem auto 1rem;
  height: 128px !important;
  visibility: visible !important;
}
.bread-nav {
  padding: 1rem 1rem 0;
  color: var(--text-p3);
  font-weight: 500;
}
.bread-nav div#breadcrumb {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.bread-nav div#breadcrumb:not([style]) a {
  color: #2196f3;
}
.bread-nav div#breadcrumb[style] a {
  color: inherit;
}
.bread-nav div#breadcrumb span.sep {
  color: var(--text-p3);
}
.bread-nav div#breadcrumb a.cap:hover {
  color: #ff5722;
}
.bread-nav div#post-meta {
  margin-top: 2px;
}
.l_cover {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l_cover .cover-wrap {
  margin-bottom: 0;
  max-width: 500px;
}
.l_cover .cover-wrap .preview {
  margin-bottom: 2rem;
}
.l_cover .cover-wrap .preview img {
  object-fit: contain;
  max-height: 35vh;
  max-width: 100%;
}
@media screen and (max-width: 500px) {
  .l_cover .cover-wrap .preview img {
    max-width: 60%;
  }
}
.l_cover .cover-wrap .cover-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 1rem 0;
}
.l_cover .cover-wrap .cover-title:first-child {
  font-size: 3rem;
}
.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;
}
.page-footer {
  margin: 4rem 1rem 3rem;
  color: var(--text-p3);
}
.page-footer a {
  color: var(--text-p3);
}
.page-footer a:hover {
  color: #ff5722;
}
.page-footer .sitemap {
  margin: 0.5rem 0 2rem;
  display: grid;
  grid-gap: 1rem 1rem;
  grid-auto-flow: column dense;
  overflow: scroll;
}
.page-footer .sitemap::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.page-footer .sitemap::-webkit-scrollbar-track-piece {
  background: transparent;
}
.page-footer .sitemap::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.page-footer .sitemap::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.page-footer .sitemap .sitemap-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-footer .sitemap .sitemap-group >span,
.page-footer .sitemap .sitemap-group >a {
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-footer .sitemap .sitemap-group >span {
  margin: 0.5rem 0;
  font-weight: 500;
  color: var(--text-p1);
}
.page-footer .sitemap .sitemap-group >a {
  margin: 0.2rem 0;
}
.page-footer .text p {
  margin: 4px 0;
  line-height: 1.2;
}
.page-footer .text a {
  text-decoration: underline;
}
.nav-wrap {
  position: sticky;
  position: -webkit-sticky;
  margin-top: 1.75rem;
  top: -2px;
  background: var(--site-bg);
  padding: 0 1rem;
  z-index: 8;
  margin-bottom: 1px;
}
.nav-wrap:after {
  content: '';
  width: calc(100% - 2 * 1rem);
  height: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 1rem;
  background: var(--block-hover);
}
nav.cap {
  display: flex;
  overflow: scroll visible;
  padding-left: 0.25rem;
}
nav.cap::-webkit-scrollbar {
  height: 0;
  width: 0;
}
nav.cap::-webkit-scrollbar-track-piece {
  background: transparent;
}
nav.cap::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
nav.cap::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
nav.cap >p {
  margin: 0;
}
nav.cap a {
  padding: 0.25rem 0.75rem;
  margin: 10px 0 8px 0;
  line-height: 2;
  color: var(--text-p3);
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
nav.cap a:after {
  width: calc(100% - 2 * 0.5rem);
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0.5rem;
  background: #1bcdfc;
  border-radius: 2px;
  pointer-events: none;
}
nav.cap a:hover {
  background: var(--block-hover);
}
nav.cap a.active,
nav.cap a:hover {
  color: var(--text-p1);
}
nav.cap a.active {
  background: var(--card);
  box-shadow: 0 0 2px 0px rgba(0,0,0,0.04), 0 0 8px 0px rgba(0,0,0,0.04);
}
nav.cap a.active:after {
  content: '';
}
nav.cap a+a {
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .nav-wrap {
    margin-top: 0;
  }
}
.paginator-wrap {
  margin: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--block);
  border-radius: 12px;
  border: 1px solid var(--block-border);
  overflow: hidden;
}
.paginator-wrap .paginator {
  text-align: center;
}
.paginator-wrap .current {
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  color: var(--text-p3);
}
.paginator-wrap a.paginator {
  color: var(--text-p3);
  padding: 1rem;
  line-height: 0;
  filter: grayscale(100%);
}
.paginator-wrap a.paginator img {
  height: 1rem;
}
.paginator-wrap a.paginator.disable {
  pointer-events: none;
  opacity: 0.25;
}
.paginator-wrap a.paginator.prev {
  border-right: 1px solid var(--block-border);
}
.paginator-wrap a.paginator.next {
  border-left: 1px solid var(--block-border);
}
.paginator-wrap a.paginator:hover {
  background: var(--card);
  filter: unset;
}
.related-wrap {
  padding: 2rem 1rem;
}
.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: 6px;
  color: var(--text-p1);
}
.related-wrap#related-posts .related-posts {
  width: 100%;
  display: flex;
  margin: 1rem 0;
  overflow-x: scroll;
  align-items: flex-start;
  padding-bottom: 8px;
  border-radius: 6px;
}
.related-wrap#related-posts .related-posts::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
.related-wrap#related-posts .related-posts::-webkit-scrollbar-track-piece {
  background: transparent;
}
.related-wrap#related-posts .related-posts::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 4px;
}
.related-wrap#related-posts .related-posts::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.related-wrap#related-posts .related-posts a {
  flex-grow: 0;
  flex-shrink: 0;
  background: var(--card);
  border-radius: 6px;
  padding-bottom: 1rem;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 280px;
  width: 40vw;
  max-width: 460px;
  border: 1px solid var(--block-hover);
}
.related-wrap#related-posts .related-posts a .img {
  min-width: 100%;
  min-height: 140px;
  height: calc(40vw * 0.5);
  max-height: 230px;
  overflow: hidden;
}
.related-wrap#related-posts .related-posts a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-wrap#related-posts .related-posts a .img img: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;
}
@media screen and (max-width: 768px) {
  .related-wrap#related-posts .related-posts a {
    width: 70vw;
  }
  .related-wrap#related-posts .related-posts a .img {
    height: calc(70vw * 0.5);
  }
}
.related-wrap#related-posts .related-posts a .title {
  color: var(--text-p1);
  font-weight: 500;
  font-size: 0.9375rem;
  margin: 0.75rem 0.75rem 0 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.related-wrap#related-posts .related-posts a .excerpt {
  color: var(--text-p2);
  font-size: 0.8125rem;
  margin: 0.4rem 0.75rem 0 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.related-wrap#related-posts .related-posts a:hover img {
  transform: scale(1.04);
}
.related-wrap#related-posts .related-posts a+a {
  margin-left: 1rem;
}
.related-wrap#read-next .body {
  background: var(--block);
  border-radius: 6px;
  border: 1px solid var(--block-border);
  margin-top: 1rem;
  overflow: hidden;
}
.related-wrap#read-next .body .line {
  margin: 0;
  height: 1px;
  background: var(--block-border);
}
.related-wrap#read-next .body .line+.line,
.related-wrap#read-next .body .line:first-child,
.related-wrap#read-next .body .line:last-child {
  display: none;
}
.related-wrap#read-next .body >a {
  display: flex;
  margin: 0;
  line-height: 1.2;
  padding: 0.75rem 0.5rem;
  color: var(--text-p3);
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.75rem;
}
.related-wrap#read-next .body >a:first-child {
  color: var(--text-p1);
  font-size: 1.125rem;
  font-weight: 400;
}
.related-wrap#read-next .body >a .note {
  flex-shrink: 0;
  margin-left: 4px;
  font-size: 0.75rem;
  color: var(--text-meta);
  font-weight: 500;
}
.related-wrap#read-next .body >a#more {
  justify-content: center;
}
.related-wrap#read-next .body >a:hover {
  color: #ff5722 !important;
  background: var(--card);
}
.related-wrap#comments div.cmt-title p {
  margin: 0;
}
.related-wrap#comments div.cmt-title p a {
  color: inherit;
  text-decoration: underline;
}
.related-wrap#comments div.cmt-title p a:hover {
  color: #ff5722;
}
.related-wrap#comments div.cmt-body {
  min-height: 150px;
  position: relative;
}
.related-wrap#comments div.cmt-body svg.loading {
  top: 60px;
}
.tag-plugin.about {
  background: var(--block);
  border-radius: 6px;
  padding: 2rem;
}
.tag-plugin.about .about-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
}
.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 .tag-plugin.navbar:last-child nav.cap {
  padding: 0;
  background: none;
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a {
  margin: 0;
  padding: 0;
  color: #2196f3;
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a.active {
  background: none;
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a:hover {
  color: #ff5722;
  background: none;
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a+a {
  margin-left: 1.5rem;
}
.tag-plugin.about .about-header+.about-body {
  margin-top: 1.5rem;
}
@media screen and (max-width: 500px) {
  .tag-plugin.about {
    padding: 1rem;
  }
  .tag-plugin.about .about-header {
    flex-direction: column;
  }
  .tag-plugin.about .about-header .avatar {
    margin: 1rem auto;
  }
  .tag-plugin.about .about-header p {
    width: 100%;
  }
}
.md .checkbox {
  display: flex;
  font-size: 0.9375rem;
  line-height: 1.2;
  --gap-p: 0.25rem;
/* Checkbox */
/* Radio */
/* Colors */
}
.md .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 .checkbox span {
  margin-top: 1px;
}
.md .checkbox input[type=checkbox]:before,
.md .checkbox input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: var(--site-bg);
}
.md .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 .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 .checkbox input[type=checkbox]:checked:before {
  left: 0px;
  top: 7px;
  width: 6px;
  height: 2px;
}
.md .checkbox input[type=checkbox]:checked:after {
  right: 3px;
  bottom: 1px;
  width: 2px;
  height: 10px;
}
.md .checkbox[symbol=minus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md .checkbox[symbol=minus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md .checkbox[symbol=minus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md .checkbox[symbol=minus] input[type=checkbox]:checked:after {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md .checkbox[symbol=plus] input[type=checkbox]:before {
  transform: rotate(0);
  left: 1px;
  top: 5px;
  width: 0px;
  height: 2px;
}
.md .checkbox[symbol=plus] input[type=checkbox]:after {
  transform: rotate(0);
  left: 5px;
  top: 1px;
  width: 2px;
  height: 0px;
}
.md .checkbox[symbol=plus] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md .checkbox[symbol=plus] input[type=checkbox]:checked:after {
  left: 5px;
  top: 1px;
  width: 2px;
  height: 10px;
}
.md .checkbox[symbol=times] input[type=checkbox]:before {
  transform: rotate(45deg);
  left: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md .checkbox[symbol=times] input[type=checkbox]:after {
  transform: rotate(135deg);
  right: 3px;
  top: 1px;
  width: 0px;
  height: 2px;
}
.md .checkbox[symbol=times] input[type=checkbox]:checked:before {
  left: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md .checkbox[symbol=times] input[type=checkbox]:checked:after {
  right: 1px;
  top: 5px;
  width: 10px;
  height: 2px;
}
.md .checkbox input[type=radio] {
  border-radius: 50%;
  transform: translateY(-1px);
}
.md .checkbox input[type=radio]:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 2px;
  transform: scale(0);
}
.md .checkbox input[type=radio]:checked:before {
  transform: scale(1);
}
.md .checkbox input {
  border: 2px solid var(--theme);
}
.md .checkbox input[type=checkbox]:checked {
  background: var(--theme);
}
.md .checkbox input[type=radio]:checked:before {
  background: var(--theme);
}
.tag-plugin.checkbox {
  --theme: #2196f3;
}
.tag-plugin.checkbox[color='red'] {
  --theme: #f5554a;
}
.tag-plugin.checkbox[color='orange'] {
  --theme: #fa7319;
}
.tag-plugin.checkbox[color='yellow'] {
  --theme: #ffc340;
}
.tag-plugin.checkbox[color='green'] {
  --theme: #50ca61;
}
.tag-plugin.checkbox[color='cyan'] {
  --theme: #31d2fc;
}
.tag-plugin.checkbox[color='blue'] {
  --theme: #2196f3;
}
.tag-plugin.checkbox[color='purple'] {
  --theme: #a53cb7;
}
.tag-plugin {
  --theme: var(--block-border);
  --theme-bg: var(--block);
}
.tag-plugin[color='red'] {
  --theme: #fab3ae;
  --theme-bg: #fdecea;
}
.tag-plugin[color='orange'] {
  --theme: #fdc199;
  --theme-bg: #feefe5;
}
.tag-plugin[color='yellow'] {
  --theme: #ffe4aa;
  --theme-bg: #fff8e9;
}
.tag-plugin[color='green'] {
  --theme: #b1e7b9;
  --theme-bg: #ebf9ed;
}
.tag-plugin[color='cyan'] {
  --theme: #a3ebfd;
  --theme-bg: #e8fafe;
}
.tag-plugin[color='blue'] {
  --theme: #a6d5fa;
  --theme-bg: #e8f4fd;
}
.tag-plugin[color='purple'] {
  --theme: #d7a8df;
  --theme-bg: #f5e9f7;
}
.tag-plugin[color='light'] {
  --theme-bg: #fff;
}
.tag-plugin[color='dark'] {
  --theme-bg: #444;
  color: var(--card) !important;
}
@media (prefers-color-scheme: dark) {
  .tag-plugin[color='red'] {
    --theme: #d0433a;
    --theme-bg: #524448;
  }
  .tag-plugin[color='orange'] {
    --theme: #d45d0e;
    --theme-bg: #524843;
  }
  .tag-plugin[color='yellow'] {
    --theme: #d8a531;
    --theme-bg: #535147;
  }
  .tag-plugin[color='green'] {
    --theme: #3dab4f;
    --theme-bg: #3f514b;
  }
  .tag-plugin[color='cyan'] {
    --theme: #22b1d8;
    --theme-bg: #3c525c;
  }
  .tag-plugin[color='blue'] {
    --theme: #2785d1;
    --theme-bg: #3c4d5b;
  }
  .tag-plugin[color='purple'] {
    --theme: #892d9b;
    --theme-bg: #494255;
  }
  .tag-plugin[color='light'] {
    --theme: #fff;
    --theme-bg: #ddd;
    color: var(--site-bg) !important;
  }
  .tag-plugin[color='dark'] {
    --theme: #000;
    --theme-bg: #222;
    color: var(--text-p1) !important;
  }
}
.md .tag-plugin.copy {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  background: var(--block);
  border-radius: 6px;
  border: 1px solid var(--block-border);
  overflow: hidden;
  width: 320px;
  max-width: 100%;
}
.md .tag-plugin.copy[width='max'] {
  width: 100%;
}
@media screen and (max-width: 425px) {
  .md .tag-plugin.copy {
    min-width: 100%;
  }
}
.md .tag-plugin.copy input.copy-area {
  display: inline-block;
  padding: 0;
  width: 100%;
  color: var(--text-p2);
  line-height: 3;
  text-indent: 1rem;
}
.md .tag-plugin.copy button.copy-btn {
  margin: 0;
  line-height: 3;
  border-left: 1px solid var(--block-border);
  display: inline-block;
  background: var(--block-hover);
  line-height: 0;
  font-size: 1rem;
  padding: 0 0.75rem;
  color: var(--text-p2);
}
.md .tag-plugin.copy button.copy-btn:hover {
  background: var(--card);
}
details.folding {
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  font-size: 0.875rem;
  background: var(--theme-bg);
  border: 1px solid var(--theme);
}
details.folding summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  margin: -1rem;
  border-radius: 6px;
  color: var(--text-p2);
  font-weight: 500;
  position: relative;
  line-height: normal;
  outline: none;
}
details.folding summary > p,
details.folding summary > h1,
details.folding summary > h2,
details.folding summary > h3,
details.folding summary > h4,
details.folding summary > h5,
details.folding summary > h6 {
  display: inline;
  border-bottom: none !important;
}
details.folding summary:hover {
  color: var(--text-p0);
}
details.folding summary:hover:after {
  position: absolute;
  content: '+';
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
details.folding[open] >summary {
  border-bottom: 1px solid var(--theme);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--text-p1);
  margin-bottom: 0;
}
details.folding[open] >summary:hover:after {
  content: '-';
}
details.folding[open] >div.body {
  padding: 1rem;
  margin: -1rem;
  margin-top: 0;
  background: var(--card);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 0.9375rem;
}
details.folding[open] >div.body >:first-child {
  margin-top: 0;
}
details.folding[open] >div.body >:last-child {
  margin-bottom: 0;
}
details.folding[child=codeblock]>div.body {
  padding: 0;
  background: transparent;
}
details.folding[child=codeblock]>div.body .highlight {
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
}
details.folding[child=codeblock]>div.body .highlight .code:before {
  content: none;
}
.md .frame-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.md .frame-wrap img,
.md .frame-wrap video {
  border-radius: 0;
}
.md .frame-wrap .frame {
  z-index: 1;
  display: block;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.md .tag-plugin.img-wrap .frame-wrap[focus] {
  height: auto;
}
.md .frame-wrap#iphone11 img,
.md .frame-wrap#iphone11 video {
  width: 287px;
  margin-top: 19px;
  margin-bottom: 20px;
}
.md .frame-wrap#iphone11 .frame {
  background-image: url("https://cdn.jsdelivr.net/gh/cdn-x/placeholder@1.0.1/frame/iphone11.svg");
  width: 329px;
  height: 658px;
}
.md .frame-wrap[focus='top'] img,
.md .frame-wrap[focus='top'] video {
  margin-bottom: 0 !important;
}
.md .frame-wrap:not([focus='bottom']) .frame {
  top: 0;
}
.md .frame-wrap[focus='bottom'] img,
.md .frame-wrap[focus='bottom'] video {
  bottom: 0;
  margin-top: 0 !important;
}
.md .frame-wrap[focus='bottom'] .frame {
  bottom: 0;
}
@media screen and (max-width: 500px) {
  .md .frame-wrap#iphone11 img,
  .md .frame-wrap#iphone11 video {
    width: 208px;
    margin-top: 13px;
    margin-bottom: 14px;
  }
  .md .frame-wrap#iphone11 .frame {
    width: 238px;
    height: 476px;
  }
}
.users-wrap {
  overflow: hidden;
}
.users-wrap .group-header {
  margin: 0 0 1rem;
}
.users-wrap .group-header p {
  margin: 0;
  font-size: 0.875rem;
}
.users-wrap .group-header p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}
.users-wrap .group-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 2rem;
}
.users-wrap .friendsjs-wrap {
  display: block;
}
.users-wrap .friendsjs-wrap .loading-wrap {
  min-height: 50px;
  margin: 2rem 0;
  text-align: center;
}
.users-wrap .user-card {
  flex-shrink: 1;
  display: flex;
  align-items: stretch;
  width: 12.5%;
}
@media screen and (max-width: 980px) {
  .users-wrap .user-card {
    width: 14.28%;
  }
}
@media screen and (max-width: 900px) {
  .users-wrap .user-card {
    width: 16.66%;
  }
}
@media screen and (max-width: 820px) {
  .users-wrap .user-card {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .users-wrap .user-card {
    width: 16.66%;
  }
}
@media screen and (max-width: 500px) {
  .users-wrap .user-card {
    width: 25%;
  }
}
.users-wrap .user-card .card-link {
  margin: 0;
  width: 100%;
  color: var(--text-p1);
  font-size: 10px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding: 1rem 0.5rem;
}
.users-wrap .user-card .card-link img {
  object-fit: cover;
  display: block;
  width: 48px;
  height: 48px;
  background: var(--card);
  border-radius: 64px;
  margin: 0 0 0.5rem;
}
.users-wrap .user-card .card-link >img {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -webkit-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  -o-transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.users-wrap .user-card .card-link:hover {
  background: var(--block-hover);
}
.users-wrap .user-card .card-link:hover img {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
.tag-plugin.ghcard {
  line-height: 0;
}
.tag-plugin.ghcard a.ghcard {
  display: inline-block;
}
.tag-plugin.image {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.tag-plugin.image .image-bg {
  line-height: 0;
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.tag-plugin.image .image-bg:hover .image-download {
  opacity: 1 !important;
}
.tag-plugin.image .image-bg img {
  display: inline-block;
  object-fit: cover;
}
.tag-plugin.image .image-bg .image-download {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.125rem;
  padding: 6px;
  line-height: 0;
  border-radius: 4px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  color: var(--text-p1);
}
.tag-plugin.image .image-bg .image-download:hover {
  background: var(--card) !important;
  color: #ff5722;
}
.tag-plugin.image .image-meta {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.tag-plugin.image .image-meta .image-caption {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-p3);
}
.tag-plugin.image .image-meta .image-caption:empty {
  display: none;
}
.md .tag-plugin.link {
  max-width: 360px;
  margin: 1em auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 375px) {
  .md .tag-plugin.link {
    width: 100%;
  }
}
.md .link-card {
  background: var(--card);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-width: 280px;
  max-width: 100%;
  width: 320px;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
  border-radius: 6px;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}
@media screen and (max-width: 375px) {
  .md .link-card {
    width: 100%;
  }
}
.md .link-card:hover {
  box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  transform: translateY(-1px);
}
.md .link-card div.left,
.md .link-card div.right {
  pointer-events: none;
}
.md .link-card div.right {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}
.md .link-card div.left {
  overflow: hidden;
  margin-left: 1rem;
}
.md .link-card span {
  margin: 0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.md .link-card span.title {
  font-weight: 500;
  color: var(--text-p1);
}
.md .link-card span.url {
  flex-shrink: 0;
  color: var(--text-p3);
}
.md .tag-plugin.navbar nav.cap {
  margin: 0;
  padding: 1px;
  background: var(--block);
  border-radius: 6px;
  display: inline-flex;
  max-width: 100%;
}
.md .tag-plugin.navbar nav.cap a {
  margin: 1px;
  padding: 0.25em 0.75rem;
}
.md .tag-plugin.navbar nav.cap a:after {
  display: none;
}
.md .tag-plugin.navbar nav.cap a:hover,
.md .tag-plugin.navbar nav.cap a.active {
  background: var(--card);
  color: var(--text-p1);
}
.md .tag-plugin.note {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  border-radius: 6px;
  background: var(--theme-bg);
  border: 1px solid var(--theme);
  color: var(--text-p1);
}
.md .tag-plugin.note >.title {
  font-size: 0.9375rem;
  line-height: 1.2;
  margin-top: 1rem;
}
.md .tag-plugin.note >.body {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.md .tag-plugin.note >.body,
.md .tag-plugin.note >.body p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.md .tag-plugin.note >.body:only-child {
  margin: 1rem 0;
}
.md .tag-plugin.note:not([color]) .highlight {
  background: var(--block-hover);
}
.md .tag-plugin.note[child=codeblock] {
  padding: 0;
}
.md .tag-plugin.note[child=codeblock] >.title,
.md .tag-plugin.note[child=codeblock] >.body:only-child {
  margin-top: 0;
}
.md .tag-plugin.note[child=codeblock] >.body {
  margin-bottom: 0;
}
.md .tag-plugin.note[child=codeblock] .highlight {
  margin: 0;
  border: none;
  background: none;
}
.md .tag-plugin.note[child=tabs] >.body {
  margin: 0;
}
.md .tag-plugin.note[child=tabs] >.body >.tabs {
  margin-top: 0.5rem;
}
.md .tag-plugin .tag-plugin.note {
  --gap-p: 1rem;
}
.sites-wrap .group-header {
  margin: 1rem 0;
}
.sites-wrap .group-header p {
  margin: 0;
  font-size: 0.875rem;
}
.sites-wrap .group-header p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}
.sites-wrap .group-body {
  width: 100%;
  margin-bottom: 2rem;
}
.sites-wrap .sitesjs-wrap {
  display: block;
}
.sites-wrap .sitesjs-wrap .loading-wrap {
  min-height: 50px;
  margin: 2rem 0;
  text-align: center;
}
.sites-wrap .group-body {
  display: grid;
  grid-gap: 1rem 1rem;
  grid-template-columns: repeat(auto-fill, calc((100% - 3 * 1rem) / 4));
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 2 * 1rem) / 3));
  }
}
@media screen and (max-width: 900px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 1 * 1rem) / 2));
  }
}
@media screen and (max-width: 768px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 2 * 1rem) / 3));
  }
}
@media screen and (max-width: 500px) {
  .sites-wrap .group-body {
    grid-template-columns: repeat(auto-fill, calc((100% - 1 * 1rem) / 2));
  }
}
.sites-wrap .group-body .site-card .card-link {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sites-wrap .group-body .site-card .card-link >img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.2);
}
@media screen and (max-width: 1024px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 120px;
  }
}
@media screen and (max-width: 900px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .sites-wrap .group-body .site-card .card-link >img {
    height: 120px;
  }
}
.sites-wrap .group-body .site-card .card-link .info {
  margin-top: 0.5rem;
  line-height: 1.2;
}
.sites-wrap .group-body .site-card .card-link .info >img {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  float: left;
  margin-right: 8px;
  margin-top: 2px;
}
.sites-wrap .group-body .site-card .card-link .info span {
  display: block;
}
.sites-wrap .group-body .site-card .card-link .info .title {
  font-weight: 500;
  color: var(--text-p1);
  font-size: 0.875rem;
  margin-top: 1px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.sites-wrap .group-body .site-card .card-link .info .desc {
  font-size: 10px;
  margin-top: 2px;
  word-wrap: break-word;
  color: var(--text-p3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.sites-wrap .site-card .card-link >img {
  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;
}
.sites-wrap .site-card .card-link:hover >img {
  box-shadow: 0 4px 8px 0px rgba(0,0,0,0.1), 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
}
.tag-plugin.tabs {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.tag-plugin.tabs[align=left] {
  align-items: flex-start;
}
.tag-plugin.tabs[align=left] .nav-tabs {
  align-self: flex-start;
}
.tag-plugin.tabs[align=center] {
  align-items: center;
}
.tag-plugin.tabs[align=right] {
  align-items: flex-end;
}
.tag-plugin.tabs[align=right] .nav-tabs {
  align-self: flex-end;
}
.tag-plugin.tabs ul.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 ul.nav-tabs::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.tag-plugin.tabs ul.nav-tabs::-webkit-scrollbar-track-piece {
  background: transparent;
}
.tag-plugin.tabs ul.nav-tabs::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.tag-plugin.tabs ul.nav-tabs::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.tag-plugin.tabs ul.nav-tabs:after {
  content: '';
  position: absolute;
  background: var(--block-hover);
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}
.tag-plugin.tabs ul.nav-tabs li.tab {
  list-style-type: none;
}
.tag-plugin.tabs ul.nav-tabs li.tab a {
  display: block;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  font-size: 0.8125rem;
  line-height: inherit;
  font-weight: 500;
  color: var(--text-p3);
  border-radius: 4px;
  position: relative;
  margin: 0 2px;
}
.tag-plugin.tabs ul.nav-tabs li.tab a:hover {
  color: var(--text-p1);
  background: var(--block-hover);
}
.tag-plugin.tabs ul.nav-tabs li.tab a i {
  pointer-events: none;
}
.tag-plugin.tabs ul.nav-tabs li.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 ul.nav-tabs li.tab.active a:after {
  content: '';
  z-index: 1;
  position: absolute;
  background: #1bcdfc;
  width: calc(100% - 2 * 0.5rem);
  height: 2px;
  bottom: -8px;
  left: 0.5rem;
  border-radius: 2px;
}
.tag-plugin.tabs .tab-content {
  max-width: 100%;
  text-align: justify;
  margin-top: 0.5rem;
}
.tag-plugin.tabs .tab-content .tab-pane:not(.active) {
  display: none;
}
.tag-plugin.tabs .tab-content .tab-pane.active {
  display: block;
}
.tag-plugin.timeline {
  position: relative;
  margin: 1rem 0;
  padding-left: 16px;
}
.tag-plugin.timeline:before {
  content: '';
  position: absolute;
  z-index: 0;
  background: var(--block-hover);
  width: 4px;
  left: 0px;
  border-radius: 8px;
  top: 0.5rem;
  bottom: 0;
}
.tag-plugin.timeline .timenode {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: calc(100% - 16px);
}
.tag-plugin.timeline .timenode >.header,
.tag-plugin.timeline .timenode >.body {
  max-width: calc(100% - 16px);
}
.tag-plugin.timeline .timenode[highlight] .header:before {
  background: #1bcdfc;
}
.tag-plugin.timeline .timenode+.timenode {
  margin-top: 1rem;
}
.tag-plugin.timeline .timenode:hover .header p {
  color: var(--text-p1);
}
.tag-plugin.timeline .timenode:hover .header:before {
  background: #1bcdfc;
  height: 16px;
  top: calc(50% - 0.5 * 16px);
  transform: scale(1);
}
.tag-plugin.timeline .header {
  display: flex;
  align-items: center;
  position: relative;
}
.tag-plugin.timeline .header p {
  margin: 0.25rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-p3);
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  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;
}
.tag-plugin.timeline .header p a {
  color: inherit;
  font-weight: inherit;
}
.tag-plugin.timeline .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: 12px;
  border-top-left-radius: 2px;
  padding: 0.5rem 1rem;
  margin-top: 4px;
  box-shadow: 0 1px 4px 0px rgba(0,0,0,0.02), 0 2px 8px 0px rgba(0,0,0,0.02);
}
.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;
}
details.toc {
  background: var(--block);
  border: 1px solid var(--block-border);
  border-radius: 6px;
  overflow: hidden;
  color: var(--text-p2);
}
details.toc summary {
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 2;
  color: var(--text-p2);
  font-size: 0.8125rem;
  font-weight: 500;
}
details.toc summary:hover {
  background: var(--block-hover);
}
details.toc >div.body {
  margin: var(--gap-p) 1rem 1rem;
}
details.toc[open] >summary {
  border-bottom: 1px solid transparent;
}
details.toc[open] >summary:hover {
  border-bottom-color: var(--block-border);
}
details.toc[open] >div.body section+section {
  margin-top: 1rem;
}
details.toc[open] >div.body section .header {
  line-height: 2;
  font-weight: 500;
}
details.toc[open] >div.body section .header+.doc_tree {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .tag-plugin.toc[display=mobile] {
    display: block !important;
  }
}
.l_left .footer {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .l_left .footer {
    margin-bottom: 1rem;
  }
}
.social-wrap {
  display: grid;
  grid-gap: 0.25rem 0.25rem;
  grid-template-columns: repeat(auto-fill, 32px);
}
.social-wrap a.social {
  line-height: 0;
  display: inline-block;
  padding: 6px;
  border-radius: 4px;
  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 a.social:hover {
  color: #ff5722;
  z-index: 1;
  filter: unset;
  transform: translateY(-1px);
  background: linear-gradient(145deg, #ddd, #fff);
  box-shadow: 2px 4px 8px #ddd, -2px -4px 8px #fff;
}
@media (prefers-color-scheme: dark) {
  .social-wrap a.social:hover {
    box-shadow: none;
  }
}
.proj-wrap {
  display: grid;
  grid-gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.proj-wrap a.item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-p2);
  background: var(--block);
  border: 1px solid var(--block-border);
  border-radius: 6px;
  overflow: hidden;
  padding: 0.75em;
}
.proj-wrap a.item img {
  margin-right: 0.05em;
}
.proj-wrap a.item:hover {
  color: #ff5722;
  background: var(--card);
}
.widget-wrap#repo-info .widget-body >.items {
  margin: 4px 0;
  border: 1px solid var(--block-border);
  border-radius: 6px;
  background: var(--block);
  overflow: hidden;
}
.widget-wrap#repo-info .widget-body .line {
  margin: 0;
  height: 1px;
  background: var(--block-border);
}
.widget-wrap#repo-info .widget-body .line+.line,
.widget-wrap#repo-info .widget-body .line:first-child,
.widget-wrap#repo-info .widget-body .line:last-child {
  display: none;
}
.widget-wrap#repo-info .widget-body a.item-link {
  color: var(--text-p2);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.5rem;
  font-size: 0.8125rem;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.widget-wrap#repo-info .widget-body a.item-link svg {
  width: 1em;
  height: 1em;
}
.widget-wrap#repo-info .widget-body a:hover {
  color: #ff5722;
  background: var(--card);
}
.l_left {
  display: flex;
  flex-direction: column;
  word-break: break-all;
  text-align: justify;
  padding: var(--gap-l);
  padding-top: calc(2 * var(--gap-l));
  height: calc(100vh - 3 * var(--gap-l));
}
@media screen and (max-width: 768px) {
  .l_left {
    padding-top: calc(1 * var(--gap-l));
    height: calc(100% - 2 * var(--gap-l));
  }
}
.l_left[layout=wiki] {
  padding-bottom: 0;
  height: calc(100vh - 2 * var(--gap-l));
}
@media screen and (max-width: 768px) {
  .l_left[layout=wiki] {
    height: calc(100% - 1 * var(--gap-l));
  }
}
.l_left[layout=wiki] .widgets >:last-child {
  margin-bottom: 6rem;
}
.logo-wrap {
  margin: 1rem 0 0.5rem;
  display: flex;
  align-items: center;
  color: var(--text-p0);
}
.logo-wrap a {
  color: inherit;
  display: flex;
  align-items: center;
}
.logo-wrap a.avatar {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 1rem;
}
.logo-wrap a.avatar div.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.logo-wrap a.avatar img.avatar {
  margin: 2px;
  object-fit: cover;
  width: calc(100% - 2 * 2px);
  height: calc(100% - 2 * 2px);
  border-radius: calc(100% - 2 * 2px);
}
.logo-wrap a.avatar div.bg {
  transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  position: absolute;
  opacity: 0 !important;
  z-index: -1;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-wrap a.avatar:hover div.bg {
  opacity: 1 !important;
  animation: spin infinite 1s;
  animation-timing-function: linear;
}
.logo-wrap a.title {
  font-size: 1.75rem;
  font-weight: 900;
  color: inherit;
  line-height: 1.2;
  font-family: system-ui, "Microsoft Yahei", "Segoe UI", -apple-system, Roboto, Ubuntu, "Helvetica Neue", Arial, "WenQuanYi Micro Hei", sans-serif;
  display: block;
  position: relative;
}
.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;
}
.logo-wrap a.title .hover {
  position: absolute;
  bottom: 0;
  transform: translateY(8px);
}
.logo-wrap a.title:hover .normal {
  opacity: 0;
  transform: translateY(-8px);
}
.logo-wrap a.title:hover .hover {
  transform: translateY(0);
  opacity: 1 !important;
}
.logo-wrap.wiki {
  margin: 1rem 0 1.5rem 0;
  flex-direction: column;
  align-items: flex-start;
}
.logo-wrap.wiki a.wiki-home {
  margin-bottom: 0.5rem;
  color: var(--text-p1);
}
.logo-wrap.wiki a.wiki-home svg {
  margin-right: 2px;
}
.logo-wrap.wiki a.wiki-home:hover {
  color: #ff5722;
  filter: unset !important;
}
.l_left nav.menu {
  margin-bottom: 1.5rem;
}
nav.menu {
  margin: 1rem 0;
  background: var(--block);
  border-radius: 6px;
  display: flex;
  padding: 1px;
  flex-wrap: wrap;
}
nav.menu::-webkit-scrollbar {
  display: none;
}
nav.menu::-webkit-scrollbar-track-piece {
  background: transparent;
}
nav.menu::-webkit-scrollbar-thumb {
  display: none;
}
nav.menu a.nav-item {
  text-overflow: ellipsis;
  word-break: keep-all;
  margin: 1px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  padding: 0.375rem 0.75rem;
  color: var(--text-p3);
  text-align: center;
}
nav.menu a.nav-item.active,
nav.menu a.nav-item:hover {
  color: var(--text-p1);
  background: var(--card);
  box-shadow: 0 0 2px 0px rgba(0,0,0,0.04), 0 0 8px 0px rgba(0,0,0,0.04);
}
.l_left .menu a.nav-item {
  flex-grow: 1;
}
.l_left .widgets {
  overflow: scroll;
  flex-grow: 1;
  z-index: 1;
}
.l_left .widgets::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.l_left .widgets::-webkit-scrollbar-track-piece {
  background: transparent;
}
.l_left .widgets::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
.l_left .widgets::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
.l_left .widgets .widget-wrap {
  margin: 1rem 0 3rem 0;
}
.l_left .widgets .widget-wrap .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  position: sticky;
  position: -webkit-sticky;
  top: -2px;
  background: var(--site-bg);
  padding-top: 2px;
  z-index: 1;
  line-height: 2.4;
}
.l_left .widgets .widget-wrap .widget-header:empty {
  display: none;
}
.l_left .widgets .widget-wrap .widget-header .cap-action {
  border-radius: 4px;
  padding: 4px 4px;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
  line-height: 0;
  color: var(--text-meta);
  transition: color 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, background 0.2s ease-out;
}
.l_left .widgets .widget-wrap .widget-header .cap-action:hover {
  background: var(--block-hover);
}
.l_left .widgets .widget-wrap .widget-header .cap-action .icon {
  fill: var(--text-meta);
}
.l_left .widgets .widget-wrap .widget-header .cap-action:hover {
  color: #ff5722;
}
.l_left .widgets .widget-wrap .widget-header .cap-action:hover .icon {
  fill: #ff5722;
}
.l_left .widgets .widget-wrap .widget-body {
  margin: 0.5rem 0;
  color: var(--text-p1);
}
.l_left .widgets .widget-wrap .widget-body p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.l_left .widgets .widget-wrap .widget-body p >a:hover {
  text-decoration: underline;
}
.l_left .widgets .widget-wrap .widget-header+.widget-body {
  margin-top: 0;
}
.l_left .widgets .widget-wrap#recent .widget-body >a,
.l_left .widgets .widget-wrap#related .widget-body >a {
  padding: 0.5rem;
  display: block;
  line-height: 1.2;
  color: var(--text-p2);
  font-weight: 500;
  border: 1px solid var(--block-border);
  border-radius: 6px;
  margin: 4px 0;
  background: var(--block);
}
.l_left .widgets .widget-wrap#recent .widget-body >a div.cap,
.l_left .widgets .widget-wrap#related .widget-body >a div.cap {
  margin-bottom: 0.25rem;
  color: var(--text-p4);
  display: flex;
  justify-content: space-between;
}
.l_left .widgets .widget-wrap#recent .widget-body >a:hover,
.l_left .widgets .widget-wrap#related .widget-body >a:hover {
  background: var(--block-hover);
}
.l_left .widgets .widget-wrap#recent .widget-body >a.wiki,
.l_left .widgets .widget-wrap#related .widget-body >a.wiki {
  font-weight: 700;
}
.l_left .widgets .widget-wrap#recent .widget-body >a div.excerpt,
.l_left .widgets .widget-wrap#related .widget-body >a div.excerpt {
  margin-top: 0.5rem;
  color: var(--text-p3);
  font-size: 0.75rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
}
.widget-wrap.single#toc .doc-tree.active>.toc {
  border-left: 2px solid var(--block-hover);
}
.widget-wrap#toc .widget-header {
  line-height: 2.4;
}
#toc .widget-body {
  line-height: 1.2;
  margin-top: 0;
}
#toc .widget-body ul ul,
#toc .widget-body ul ol {
  padding-left: 0;
}
#toc .widget-body ol ul,
#toc .widget-body ol ol {
  padding-left: 0;
}
#toc .widget-body .doc-tree {
  margin: 4px 0;
}
#toc .widget-body .toc {
  padding: 0;
  margin: 0;
  padding-left: 0.25rem;
}
#toc .widget-body .toc .toc-item .toc-link {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-p2);
}
#toc .widget-body .toc .toc-child .toc-item .toc-link {
  padding: 0.25rem 0.5rem 0.25rem 1.3rem;
  font-weight: 400;
  color: var(--text-p2);
}
#toc .widget-body .toc .toc-child .toc-child .toc-item .toc-link {
  padding-left: 2.1rem;
  font-size: 0.75rem;
  color: var(--text-p3);
}
#toc .widget-body .toc .toc-child .toc-child .toc-child .toc-item .toc-link {
  padding-left: 2.9rem;
}
#toc .toc-item {
  color: var(--text-p2);
  font-size: 0.75rem;
  padding: 0;
  list-style: none;
}
#toc .toc-item.active {
  color: #1bcdfc;
  border-left-color: #1bcdfc;
}
#toc .toc-item .toc-child .toc-item {
  padding: 0;
}
#toc a.toc-link {
  color: inherit;
  display: block;
  line-height: 1.2;
  border-radius: 4px;
  position: relative;
}
#toc a.toc-link:before {
  content: '';
  position: absolute;
  left: -6px;
  top: calc(50% - 6px);
  bottom: calc(50% - 6px);
  width: 2px;
  border-radius: 2px;
  background: #1bcdfc;
  visibility: hidden;
}
#toc a.toc-link:hover {
  background: var(--block-hover);
}
#toc a.toc-link.active {
  color: var(--theme-highlight) !important;
}
#toc a.toc-link.active:before {
  visibility: visible;
}
.widget-wrap#toc .widget-body+.widget-header {
  margin-top: 1rem;
}
.widget-wrap.multi#toc .widget-header {
  color: var(--text-p1);
  font-size: 0.875rem;
}
.widget-wrap.multi#toc .doc-tree {
  border-radius: 6px;
  background: var(--block);
  overflow: hidden;
  border: 1px solid var(--block-border);
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link {
  color: var(--text-p2);
  padding: 0.5rem;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link:after {
  position: absolute;
  right: 0.5rem;
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link.active {
  color: var(--text-p1);
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link.active:only-child {
  background: var(--card);
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link:hover {
  background: var(--block-hover);
}
.widget-wrap.multi#toc .doc-tree a.doc-tree-link:hover:after {
  content: '+';
}
.widget-wrap.multi#toc .doc-tree.active a.doc-tree-link {
  background: var(--block);
  font-weight: 700;
}
.widget-wrap.multi#toc .doc-tree.active a.doc-tree-link:not(:only-child) {
  border-bottom: 1px solid var(--block-border);
}
.widget-wrap.multi#toc .doc-tree.active a.doc-tree-link:hover:after {
  content: none;
}
.widget-wrap.multi#toc .doc-tree.active >.toc {
  padding: 4px;
  background: var(--card);
}
.widget-wrap.multi#toc .doc-tree.active >.toc a.toc-link:before {
  left: -2px;
  width: 4px;
}
.widget-wrap.multi#toc .doc-tree.active >.toc a.toc-link:hover {
  background: var(--block);
}
.post-list .post-card#archive .archive-year {
  color: #1bcdfc;
  opacity: 0.4;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 0.5rem;
  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;
}
.post-list .post-card#archive a.post {
  display: inline-flex;
  align-items: baseline;
  margin: 0.25rem 0;
  color: var(--text-p1);
}
.post-list .post-card#archive a.post:hover {
  color: #ff5722;
}
.post-list .post-card#archive a.post time {
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  margin-right: 1em;
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.65;
}
.post-list .post-card#archive:hover .archive-year {
  opacity: 1;
}
.post-list .post-card#cats a.cat {
  display: flex;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--text-p2);
  align-items: center;
  justify-content: space-between;
}
.post-list .post-card#cats a.cat.child {
  padding-left: 2rem;
}
.post-list .post-card#cats a.cat .badge {
  color: #1bcdfc;
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  opacity: 0.5;
}
.post-list .post-card#cats a.cat:hover {
  background: var(--block);
  color: var(--text-p0);
}
.post-list .post-card#cats a.cat:hover .badge {
  opacity: 1;
}
.post-list .post-card#tags {
  display: flex;
  flex-wrap: wrap;
}
.post-list .post-card#tags a.tag {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--text-p2);
  margin: 4px 8px;
  padding: 4px 8px;
  border-radius: 64px;
}
.post-list .post-card#tags a.tag .badge {
  color: #1bcdfc;
  margin-left: 4px;
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  opacity: 0.75;
  align-self: flex-start;
}
.post-list .post-card#tags a.tag:hover {
  color: var(--text-p0);
  background: var(--block);
}
.post-list .post-card#tags a.tag:hover .badge {
  opacity: 1;
}
article.md.error-page {
  text-align: center;
  margin-top: 2rem;
}
article.md.error-page img#error {
  width: 30vw;
  max-height: 150px;
  margin-bottom: 2rem;
}
article.md.error-page h1 {
  font-size: 4rem;
  margin-bottom: 0;
}
article.md.error-page p.what,
article.md.error-page p.why {
  margin: 0.5em;
}
article.md.error-page p.why {
  font-size: 0.8125rem;
}
article.md.error-page a#back {
  margin: 2rem 0;
  display: inline-block;
  background: #fdb62f;
  color: #000;
  border-radius: 4px;
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  article.md.error-page {
    margin-top: 4rem;
  }
}
.l_body {
  display: flex;
  margin: auto;
  padding: 0 var(--gap-l);
  justify-content: center;
}
.l_body .l_left {
  z-index: 8;
  width: var(--width-left);
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}
.l_body .l_main {
  flex-shrink: 1;
  flex-grow: 1;
  width: 320px;
  max-width: var(--width-main);
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
  .l_body {
    padding: 0;
  }
  .l_body .l_left {
    position: fixed;
    transform: translateX(-320px);
    margin: 0;
    left: 0;
    background: var(--site-bg);
    box-shadow: 0 2px 4px 0px rgba(0,0,0,0.1), 0 4px 8px 0px rgba(0,0,0,0.1), 0 8px 16px 0px rgba(0,0,0,0.1);
  }
  .l_body .l_main {
    max-width: 100%;
  }
  .l_body.mobile .l_left {
    transition: transform 0.3s ease-out;
  }
  .l_body.mobile.sidebar .l_left {
    transform: translateX(0px);
  }
}
.post-list {
  margin: 1rem;
}
.post-list .post-card {
  display: block;
  margin: 1rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0px rgba(0,0,0,0.02);
  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;
  overflow: hidden;
  background: var(--card);
}
.post-list .post-card .meta.cap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.5rem;
}
.post-list .post-card .meta.cap span+span {
  margin-left: 0.5rem;
}
.post-list .post-card .meta.cap span.pin {
  line-height: 0;
}
.post-list .post-card .meta.cap span.pin img {
  object-fit: contain;
  height: 1.5em;
}
.post-list .post-card:hover {
  box-shadow: 0 1px 4px 0px rgba(0,0,0,0.08), 0 2px 8px 0px rgba(0,0,0,0.06), 0 4px 16px 0px rgba(0,0,0,0.04);
}
.post-list article {
  padding: 1rem;
}
.post-list .post-card .post-cover {
  overflow: hidden;
  margin-left: -1rem;
  margin-top: -1rem;
  margin-right: -1rem;
}
.post-list .post-card .post-cover img {
  object-fit: cover;
  width: 100%;
  border-radius: 0;
  height: 320px;
}
@media screen and (max-width: 900px) {
  .post-list .post-card .post-cover img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .post-list .post-card .post-cover img {
    height: 320px;
  }
}
@media screen and (max-width: 500px) {
  .post-list .post-card .post-cover img {
    height: 280px;
  }
}
@media screen and (max-width: 425px) {
  .post-list .post-card .post-cover img {
    height: 240px;
  }
}
@media screen and (max-width: 375px) {
  .post-list .post-card .post-cover img {
    height: 200px;
  }
}
.post-list .post-card .post-cover img: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.photo .post-cover img {
  height: 400px;
}
@media screen and (max-width: 900px) {
  .post-list .post-card.post.photo .post-cover img {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .post-list .post-card.post.photo .post-cover img {
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .post-list .post-card.post.photo .post-cover img {
    height: 320px;
  }
}
@media screen and (max-width: 425px) {
  .post-list .post-card.post.photo .post-cover img {
    height: 280px;
  }
}
@media screen and (max-width: 375px) {
  .post-list .post-card.post.photo .post-cover img {
    height: 240px;
  }
}
.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;
}
.post-list .post-card.wiki article .preview {
  display: flex;
  width: 200px;
  margin: 1rem;
  align-items: center;
}
.post-list .post-card.wiki article .preview img {
  object-fit: contain;
}
.post-list .post-card.wiki article .preview img:not(.lazy) {
  transition: transform 0.75s ease-out;
  -moz-transition: transform 0.75s ease-out;
  -webkit-transition: transform 0.75s ease-out;
  -o-transition: transform 0.75s ease-out;
}
.post-list .post-card.wiki article .excerpt {
  margin: 1rem;
  min-width: 220px;
  flex: 1;
  overflow: hidden;
  word-wrap: break-word;
}
.l_main {
  position: relative;
  padding-bottom: calc(1 * var(--gap-l));
}
@media screen and (min-width: 1200px) {
  .l_main {
    margin-left: calc(2 * var(--gap-l));
    margin-right: calc(0.75 * var(--width-left));
  }
}
@media screen and (min-width: 768px) {
  .l_main {
    padding-top: calc(2 * var(--gap-l));
  }
}
.l_main header {
  margin: 2rem 1rem;
}
article.md {
  max-width: 100%;
  padding: 1rem;
  color: var(--text-p1);
  line-height: 1.7;
  word-break: break-word;
}
article.md.excerpt p {
  font-size: 0.875rem;
  margin: 1em 0;
}
article.md.content {
  position: relative;
  margin-bottom: 2rem;
}
article.md.content >:first-child {
  margin-top: 0;
}
article.md.content h1.article-title {
  margin-top: 0.5rem;
  line-height: 1.2;
  color: var(--text-p0);
}
article.md.content h2:first-child {
  margin-top: 0;
}
article.md.content h2,
article.md.content h3,
article.md.content h4,
article.md.content h5,
article.md.content h6 {
  color: var(--text-p0);
  padding-top: 1rem;
  margin-bottom: 1em;
  line-height: 1.8;
}
article.md.content h2:hover a.headerlink:before,
article.md.content h3:hover a.headerlink:before,
article.md.content h4:hover a.headerlink:before,
article.md.content h5:hover a.headerlink:before,
article.md.content h6:hover a.headerlink:before {
  opacity: 1;
}
.md ul:not(:last-child),
.md ol:not(:last-child) {
  padding-bottom: 0.5rem;
  margin: 0;
}
.md blockquote p,
.md ul p,
.md ol p,
.md blockquote ul,
.md ul ul,
.md ol ul,
.md blockquote ol,
.md ul ol,
.md ol ol {
  font-size: 0.875rem;
  line-height: 1.5;
}
.md p *,
.md blockquote *,
.md .tag-plugin *,
.md ul *,
.md ol *,
.md .highlight *,
.md table * {
  --gap-p: 0.5rem;
}
.md p,
.md .tag-plugin {
  margin-top: var(--gap-p);
  margin-bottom: var(--gap-p);
}
.md p .highlight,
.md .tag-plugin .highlight,
.md p table,
.md .tag-plugin table {
  --gap-p: 1rem;
}
article.md.content a.headerlink:before {
  opacity: 0;
  content: '#';
  position: absolute;
  margin-left: -0.75em;
}
article.md.content h2 {
  margin-top: 3rem;
  border-bottom: 1px solid var(--block-border);
  font-weight: 400;
}
article.md.content h3 {
  margin-top: 1.5rem;
  font-weight: 400;
}
article.md.content h4,
article.md.content h5,
article.md.content h6 {
  font-weight: 500;
}
article.md.content h1+h2 {
  margin-top: -0.5rem;
}
article.md.content h2+h3 {
  margin-top: -1rem;
}
article.md.content h3+h4 {
  margin-top: -1rem;
}
article.md.content h4+h5 {
  margin-top: -1rem;
}
article.md.content h5+h6 {
  margin-top: -1rem;
}
article.md p>a:not([class]) {
  font-weight: 500;
}
article.md p>a:not([class]):hover {
  text-decoration: underline;
}
article.md p {
  font-size: 0.9375rem;
}
article.md code {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  color: var(--text-code);
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  word-break: break-all;
  font-size: 85%;
  background: var(--block);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}
article.md pre {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
article.md>div {
  margin: var(--gap-p) 0;
}
article.md blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
  background: var(--card);
  border-left: 6px solid #1bcdfc;
  border-radius: 6px;
  color: var(--text-p2);
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
article.md img {
  border-radius: 4px;
  margin: auto;
  display: block;
}
img.lazy {
  transition: transform 1s ease-out, filter 0.28s ease-out;
  -moz-transition: transform 1s ease-out, filter 0.28s ease-out;
  -webkit-transition: transform 1s ease-out, filter 0.28s ease-out;
  -o-transition: transform 1s ease-out, filter 0.28s ease-out;
}
img.lazy:not(.loaded) {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
img.lazy.loaded,
img.lazy.error {
  filter: none;
  -webkit-filter: none;
}
.group-body .site-card .card-link>img {
  transition: box-shadow 0.2s ease-out, filter 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, filter 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, filter 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, filter 0.2s ease-out;
}
.group-body .user-card .card-link>img {
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out, transform 0.2s ease-out, filter 0.2s ease-out;
}
:root {
  --swiper-theme-color: #1bcdfc !important;
}
.swiper-container {
  width: 100%;
  border-radius: 4px;
  --gap-p: 2rem;
}
.swiper-container:not(.swiper-container-initialized) {
  display: none;
}
div.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-self: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 50%;
}
div.swiper-slide img {
  border-radius: 4px;
}
.swiper-container[width='max'] div.swiper-slide {
  width: 100%;
}
.swiper-container[width='min'] div.swiper-slide {
  width: 25%;
}
.swiper-button-prev,
.swiper-button-next {
  padding: 1rem 0.5rem;
  margin-top: -2rem !important;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -webkit-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  --swiper-theme-color: #000 !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #fff !important;
  --swiper-theme-color: #ff5722 !important;
}
.reveal {
  visibility: hidden;
}
