:root {
  --width-left: 256px;
  --width-main: 720px;
  --gap-l: 16px;
  --gap-p: 0.75rem;
}
@media screen and (min-width: 2048px) {
  :root {
    --gap-l: 32px;
    --width-left: 320px;
    --width-main: 780px;
  }
}
@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;
  --card-bg-color: #f5f5f5;
  --text-p0: #000;
  --text-p1: #333;
  --text-p2: #5a5a5a;
  --text-p3: #818181;
  --text-p4: #b3b3b3;
  --text-meta: #d0d0d0;
  --text-code: #111;
  --card: #fff;
  --theme-highlight: #1d80f5;
  --theme-bg: #eaf3fe;
}
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: #358ef6;
}
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);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  width: 6px;
  background: rgba(16,31,28,0.1);
  border-radius: 2em;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(144,147,153,0.5);
  background-clip: padding-box;
  min-height: 28px;
  border-radius: 2em;
  transition: background-color 0.3s;
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(144,147,153,0.3);
}
: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: #358ef6;
  color: var(--site-bg);
}
a.button.theme:hover {
  background: #358ef6;
}
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: #1d80f5;
}
.dis-select {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.l_left {
  flex: 1;
  min-width: 250px !important;
  margin-top: 73px;
}
.l_left.is-tag {
  margin-top: 5px;
}
.l_body .l_main {
  padding-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.l_body {
  background-color: #fff;
  width: 100%;
  padding-left: calc(min(max(2vw, 16px), 25px)) !important;
  padding-right: calc(min(max(2vw, 16px), 25px)) !important;
  box-sizing: border-box;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l_body {
    width: 100%;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .l_body .l_main {
    margin: 0 !important;
  }
}
.l_main.list {
  max-width: 1200px !important;
  flex: 1;
}
.l_main.list .post-list {
  flex: 4;
  margin: 0;
}
.l_main.list .post-list .top-posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.l_main.list .post-list .top-posts-list > a {
  width: 100%;
  border: 1px solid #e8eaec;
  min-width: 0;
}
.l_main.list .post-list .top-posts-list > a.post-card .md {
  padding: 30px 20px;
  display: flex;
  align-items: center;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-cover {
  width: 352px;
  margin-right: 20px;
  margin-left: 0;
  display: flex;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-cover >img {
  width: 100%;
  transform-origin: center center;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-right-box {
  flex: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-right-box .post-title {
  font-family: PingFangSC;
  color: #333;
  font-weight: 600px;
  font-size: 18px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
  margin-top: 0;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-right-box .excerpt {
  text-align: justify;
  flex: 1;
  font-family: PingFangSC;
  color: #505050;
  font-weight: 400px;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
  margin-top: 13px;
}
.l_main.list .post-list .top-posts-list > a.post-card .md .post-right-box .ys-custom-box {
  margin: 11px 0 0 0;
}
@media screen and (max-width: 768px) {
  .l_main.list .post-list .top-posts-list > a .md {
    flex-direction: column;
  }
  .l_main.list .post-list .top-posts-list > a .md .post-cover {
    width: 100% !important;
    margin-right: 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .l_main.list .post-list .top-posts-list > a .md .post-cover {
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .l_main.list {
    flex: 1 1 320px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .l_main.list .post-list >a {
    width: 100%;
  }
}
.ys-custom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 11px 0;
}
.reversal {
  flex-direction: row-reverse;
}
.blog-time {
  margin-top: 13px;
  flex-wrap: wrap;
  font-family: PingFangSC;
  color: #505050;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
  display: flex;
  align-items: center;
}
.blog-time .post-meta-item {
  flex: 1;
  min-width: 80px;
}
.blog-time .avatar {
  width: 19px;
  margin-right: 5px;
}
.blog-time .time {
  margin: 0 20px;
}
.attribute-box {
  display: flex;
  align-items: center;
  margin: 13px 0 15px 0 !important;
}
.attribute-box .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 10px 0 0;
}
.attribute-box .author {
  width: 79px;
  line-height: 20px;
  color: #333;
  font-size: 12px;
  text-align: left;
  font-family: PingFangSC-regular;
}
.attribute-box .ys-tag {
  margin-right: 0;
  margin-left: 10px;
}
.blog-cover {
  margin-top: 10px;
}
.blog-cover img {
  width: 100%;
}
.related-article-list {
  width: 200px;
  background-color: #fff;
  position: sticky;
  top: 0;
  height: calc(100vh - 3 * var(--gap-l));
  padding: 0 0 40px 0 !important;
}
.related-article-list .title.cap.theme {
  color: #101010 !important;
  line-height: 24px !important;
  font-size: 16px;
  text-align: left;
  font-family: SourceHanSansSC-regular;
}
.related-posts {
  flex-direction: column;
}
.l_left {
  background-color: #fff;
}
.l_left .widget-header {
  background-color: transparent !important;
}
.l_left .widget-header .name {
  line-height: 24px !important;
  color: #101010 !important;
  font-size: 16px !important;
  text-align: left;
  font-family: SourceHanSansSC-regular;
}
.l_main {
  margin: 0 16px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .related-article-list {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .post-list .post-card .ys-post-tags .ys-tag {
    display: none;
  }
  .post-list .post-card .ys-tag:nth-child(1) {
    display: block;
  }
}
.image-title-span {
  display: block;
  text-align: center;
  color: #999;
}
.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 !important;
  }
}
.float-panel {
  position: sticky;
  right: 0;
  bottom: 2rem;
  transform: translateX(16px);
  float: right;
  z-index: 10;
  display: flex;
  border-radius: 6px 0 0 6px;
  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: #358ef6;
  border-color: var(--block-border);
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
  .web {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .web {
    display: none;
  }
}
.links-container {
  --color_theme: #0a72ef;
  background-color: #252525;
  padding: 50px 0 38px 0;
  min-width: var(--width-mini);
}
.links-container .links-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin-bottom: 120px;
}
.links-container .links-list .links-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.links-container .links-list .links-item .links-title {
  color: #d7d8d9;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 10px;
  font-weight: 500;
  font-family: var(--fontfamily_medium);
}
.links-container .links-list .links-item > a {
  color: #9b9ea0;
  font-size: 14px;
  line-height: 25px;
  font-family: "PingFangSC-Thin", "PingFang SC Thin", "PingFang SC", sans-serif, "PingFangSC-Thin", "PingFang SC Thin", "PingFang SC", sans-serif-200;
}
.links-container .foot-content {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #939393;
}
.links-container .foot-content > a {
  color: inherit;
}
.links-container a:hover {
  color: var(--color_theme) !important;
}
.footer.mobile {
  padding: 1px 2.2568rem;
  color: #ddd;
  font-size: 0.9998rem;
}
.footrigcon {
  padding: 1.7121rem 0 0 0;
  color: #dcdfe6;
}
.footrigcon h4 {
  margin-top: 0.7877rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.40625rem;
}
.footrigcon .lia a {
  color: #ddd;
  line-height: 1.5625rem;
}
.footrigcon .lia span {
  width: 0.0625rem;
  height: 0.9375rem;
  background: #ddd;
  display: inline-block;
  margin: 0 0.3124rem;
}
:root {
  --color_theme: #0a72ef;
}
@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
  .web {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .web {
    display: none;
  }
}
.logo-login-container ul,
.links-container ul,
.logo-login-container ol,
.links-container ol {
  padding-left: 0;
  list-style-type: none;
}
.flex-y {
  display: flex;
  align-items: center;
}
.primary-button {
  width: 230px;
  height: 58px;
  font-size: 20px;
  border-radius: 150px;
  border: 0;
  color: #fff;
  background-color: var(--color_theme);
  margin: 29px auto 0 auto;
  cursor: pointer;
  transition-duration: var(--duration);
  font-family: var(--fontfamily_text);
}
.primary-button:hover {
  background-color: var(--color_hover_active) !important;
  color: #fff !important;
}
.width1200 {
  margin: 0 auto;
}
.logo-login-container.web {
  background: #111117;
  position: relative;
  --color_theme: #0a72ef;
  --color_hover_active: #358ef6;
  --duration: 0.3s;
  --border-radius: 3px;
  --width-mini: 0;
  --fontfamily_text: "PingFangSC-Regular", "PingFang SC", sans-serif, "PingFangSC-Regular", "PingFang SC", sans-serif-400;
  font-family: PingFangSC-Regular, "PingFang SC", sans-serif;
  font-style: normal;
  min-width: var(--width-mini);
  padding: 13px calc(min(max(2vw, 16px), 25px));
  transition-duration: var(--duration);
  box-sizing: border-box;
  z-index: 100;
}
.logo-login-container.web .width1200 {
  position: relative;
  z-index: 100;
}
.logo-login-container.web ul {
  list-style: none;
  margin: 0;
}
.logo-login-container.web .log-image-box {
  width: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-login-container.web .logo-image {
  height: 30px;
  cursor: pointer;
}
.logo-login-container.web .blank {
  width: 100px;
  min-width: 0;
}
.logo-login-container.web .feature-list {
  flex: 1;
  min-width: 320px;
  font-weight: 400;
  font-size: 16px;
  color: #9bafe8;
}
.logo-login-container.web .feature-list .feature-item {
  display: inline;
  width: 130px;
  line-height: 36px;
  cursor: pointer;
  text-align: center;
}
.logo-login-container.web .feature-list .feature-item span {
  display: inline;
}
.logo-login-container.web .feature-list .feature-item.active span {
  color: var(--color_theme);
  border-bottom: 2px solid var(--color_theme);
}
.logo-login-container.web .feature-list .feature-item:hover {
  color: var(--color_theme);
}
.logo-login-container.web .button-list {
  margin-right: 19px;
  justify-content: flex-end;
}
.logo-login-container.web .button-list > li {
  font-size: 13px;
  width: 91px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  font-family: var(--fontfamily_text);
  border-radius: var(--border-radius);
}
.logo-login-container.web .button-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo-login-container.web .button-list .login-button {
  background-color: #f2f2f2;
}
.logo-login-container.web .button-list .login-button:hover {
  background-color: #617986;
}
.logo-login-container.web .button-list .login-button:hover > a {
  color: #fff;
}
.logo-login-container.web .button-list .sign-button {
  color: #fff;
  background-color: var(--color_theme);
}
.logo-login-container.web .button-list .sign-button:hover {
  background-color: var(--color_hover_active);
}
.logo-login-container.web.sticky {
  background-color: #fff;
}
.l_main.list {
  padding-top: 0 !important;
}
.logo-login-container.mobile {
  padding: 0.756rem 0.9218rem 0.7104rem 0.9541rem;
  transition-duration: var(--duration);
  box-sizing: border-box;
  background: #111117;
  position: relative;
  z-index: 9;
}
.logo-login-container.mobile .logo-image {
  height: 1.0625rem !important;
}
.logo-login-container.mobile .blank {
  flex: 1;
}
.logo-login-container.mobile .github-icon {
  width: 1.872rem;
  height: 1.3125rem;
  min-height: 0;
}
.logo-login-container.mobile .github-icon img {
  width: 0.75rem;
}
.logo-login-container.mobile .github-stars {
  padding: 0 0.1875rem;
  height: 1.3125rem;
  min-height: 0;
}
.logo-login-container.mobile .lang {
  display: flex;
  align-items: center;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  height: unset;
}
.logo-login-container.mobile .lang img {
  width: 1.125rem;
  min-width: 1.125rem;
  display: block;
}
.logo-login-container.mobile .lang .intl-options-wrapper {
  width: 25vw;
  display: none;
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.625rem;
}
.logo-login-container.mobile .lang .intl-options-wrapper .intl-options {
  margin-top: 0;
  color: #606c80;
  font-size: 1rem;
  background-color: #fff;
  border-radius: 0.2vw;
  border: 1px solid #ddd;
  overflow: auto;
  padding: 1vh 0;
  line-height: 2;
  text-align: center;
}
.logo-login-container.mobile .lang .intl-options-wrapper .intl-options a {
  color: inherit;
}
.logo-login-container.mobile .lang .intl-options-wrapper .intl-options a.active,
.logo-login-container.mobile .lang .intl-options-wrapper .intl-options a:hover {
  color: #396aff;
}
.logo-login-container.mobile .lang:hover .intl-options-wrapper {
  display: block;
}
.logo-login-container.mobile .button-list {
  justify-content: flex-end;
  margin: 0;
}
.logo-login-container.mobile .button-list >li {
  font-size: 0.75rem;
  padding: 0 0.3rem;
  line-height: 1.875rem;
  text-align: center;
  cursor: pointer;
  font-family: var(--fontfamily_text);
  border-radius: 0.1249rem;
}
.logo-login-container.mobile .button-list >li >a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo-login-container.mobile .button-list .login-button {
  background: #ebf4ff;
  color: var(--color_theme);
}
.logo-login-container.mobile .button-list .login-button >a {
  color: inherit;
}
.logo-login-container.mobile .button-list .sign-button {
  color: #fff;
  margin-left: 0.78117rem;
  background-color: var(--color_theme);
}
.logo-login-container.mobile .button-list .sign-button :hover {
  background-color: var(--color_hover_active);
}
.logo-login-container.mobile .button-list .nav-button {
  padding: 0;
  width: auto;
  height: auto;
  background-color: transparent;
  line-height: 0;
  font-size: 0;
}
.logo-login-container.mobile .button-list .nav-button img {
  width: 0.875rem;
  color: #fff;
}
.logo-login-container.mobile.sticky {
  background-color: #fff;
}
.nav-list {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 8;
}
.nav-list ul {
  list-style: none;
  padding: 0;
}
.nav-list .masking {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}
.nav-list .nav-list-box {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 2.5rem;
  background-color: #f9fafb;
  font-size: 0.8749rem;
  color: #666;
  height: 7.5rem;
  transition: height 0.3s;
  overflow: hidden;
  padding-top: 0.625rem;
}
.nav-list .nav-list-box li {
  padding: 0.3rem 0.9375rem 0.625rem 0.9375rem;
  line-height: 1.2492rem;
}
.nav-list .nav-list-box li span {
  display: block;
  font-weight: 600;
}
.nav-list .nav-list-box li li {
  padding-top: 0;
  padding-bottom: 0;
}
.nav-list .nav-list-box li.active {
  color: var(--color_theme);
}
.github {
  display: flex;
  font-size: 13px;
  margin-right: 1rem;
}
.github .github-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  background: #31315e;
  min-height: 30px;
  height: 36px;
  border-radius: 3px 3px 3px 3px;
}
.github .github-icon img {
  width: 21px;
}
.github .github-stars {
  display: none;
  padding: 0 15px;
  min-height: 30px;
  height: 36px;
  background: #31315e;
  border-radius: 3px 3px 3px 3px;
  position: relative;
  margin-left: 4px;
  align-items: center;
  justify-content: center;
  line-height: 36px;
  color: #fff;
}
.github .github-stars > a:active {
  color: var(--color_theme);
}
.github .github-stars:before {
  box-sizing: border-box;
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  top: 50%;
  left: -3px;
  margin-top: -4px;
  border-width: 4px 4px 4px 0;
  border-right-color: #31315e;
}
.lang {
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 1rem;
}
.lang img {
  min-width: 26px;
  width: 26px;
  display: block;
}
.lang .intl-options-wrapper {
  width: 100px;
  display: none;
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
  padding-top: 13px;
}
.lang .intl-options-wrapper .intl-options {
  color: #606c80;
  font-size: 16px;
  background-color: #fff;
  border-radius: 0.2vw;
  border: 1px solid #ddd;
  overflow: auto;
  padding: 10px 0;
  line-height: 2;
  text-align: center;
}
.lang .intl-options-wrapper .intl-options a {
  color: inherit;
}
.lang .intl-options-wrapper .intl-options a.active,
.lang .intl-options-wrapper .intl-options a:hover {
  color: #396aff;
}
.lang:hover .intl-options-wrapper {
  display: block;
}
.site-nav-right {
  color: #fff;
}
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 .highlight {
  margin: var(--gap-p) 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: 0px;
  width: 0px;
}
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;
  color: var(--theme);
}
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;
}
.home-tag-post {
  flex: 1;
  box-sizing: border-box;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
}
.home-tag-post .col-name {
  border: 1px solid #e8eaec;
  margin-bottom: 10px;
  font-size: 18px;
  font-style: normal;
  color: #333;
  font-weight: 700;
  position: relative;
  padding: 5px 25px;
}
.home-tag-post .col-name i {
  font-size: 10px;
  top: 14px;
  position: absolute;
  left: 8px;
}
.home-tag-post .latest-release {
  margin-top: 20px;
}
.home-tag-post .tag-list-box {
  flex: 1;
  min-width: 150px;
  max-width: 300px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
  padding: 10px;
}
.home-tag-post .tag-list {
  font-size: 0;
}
.home-tag-post .tag-list .tag {
  display: inline-block;
  margin-right: 10px;
  color: var(--text-p2);
  font-size: 0.8125rem;
}
.home-tag-post .tag-list .tag span.name {
  margin-bottom: 5px;
  padding: 0 8px;
  line-height: 20px;
  border-radius: 3px;
  background-color: #e8eaec;
  color: #3d3d3d;
  font-size: 12px;
  text-align: center;
  border: 1px solid #e9e9eb;
  display: inline-block;
}
.home-tag-post .tag-list .tag span.name:hover {
  color: #2196f3 !important;
}
.home-tag-post .tag-list-block .tag {
  display: block;
  padding: 5px 0;
  color: var(--text-p2);
  font-size: 0.8125rem;
}
.home-tag-post .tag-list-block .tag span.name {
  line-height: 20px;
  display: block;
}
.home-tag-post .tag-list-block .tag span.name img {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}
.home-tag-post .tag:hover {
  color: #2196f3;
}
@media screen and (max-width: 768px) {
  .home-right {
    display: none;
  }
}
.latest-release {
  display: none;
}
.page-home {
  overflow: hidden;
  height: 350px;
  background: radial-gradient(50% 50% at 50% 50%, #2e2e57 0%, #111117 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-home .home-left-img {
  width: 431px;
  position: absolute;
  left: -75px;
  bottom: 0;
  mix-blend-mode: overlay;
}
.page-home .home-right-img {
  width: 601px;
  position: absolute;
  right: -175px;
  bottom: 0;
  mix-blend-mode: overlay;
}
.top-posts-box {
  background-color: #fff;
  padding: 15px;
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
}
.top-posts-box h1 {
  margin: 0;
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: bold;
  line-height: 20px;
  color: #3d3d3d;
}
.top-posts-list {
  display: flex;
  gap: 15px;
  min-height: 320px;
}
.top-posts-list .top-post-item {
  flex: 1;
  color: #3d3d3d;
}
.top-posts-list .top-post-item .top-post-cover {
  background-color: rgba(0,0,0,0.06);
}
.top-posts-list .top-post-item .top-post-cover img {
  display: block;
}
.top-posts-list .top-post-item .top-post-line {
  background-color: rgba(0,0,0,0.06);
  height: 20px;
  margin-block-start: 10px;
}
.top-posts-list .top-post-item .post-info {
  margin-top: 11px;
  display: flex;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}
.top-posts-list .top-post-item .post-info .author {
  margin-right: 15px;
}
.top-posts-list .top-post-item .post-info .date {
  flex: 1;
}
.top-posts-list .top-post-item .post-description {
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.skeleton .top-post-item .top-post-cover {
  height: 178px;
}
.skeleton .top-post-item .top-post-cover,
.skeleton .top-post-item .top-post-line {
  background: linear-gradient(90deg, rgba(0,0,0,0.06) 25%, rgba(0,0,0,0.15) 37%, rgba(0,0,0,0.06) 63%);
  background-size: 400% 100%;
  animation-name: css-1vr7spz-ant-skeleton-loading;
  animation-duration: 1.4s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 768px) {
  .page-home,
  .top-posts-box,
  .tag-list-box {
    display: none;
  }
  .l_main.list .post-list .top-posts-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-tag-post {
    padding: 0 15px;
  }
}
@-moz-keyframes css-1vr7spz-ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@-webkit-keyframes css-1vr7spz-ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@-o-keyframes css-1vr7spz-ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes css-1vr7spz-ant-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
* {
  outline: none;
}
html {
  font-family: "Source Han Sans CN";
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  background: #fff;
  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);
}
@media screen and (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  body .l_body {
    max-width: 1450px;
    flex: 1;
  }
  body .l_body .l_left,
  body .l_body .related-article-list {
    max-height: 100vh;
    height: auto;
    box-sizing: border-box;
    padding-top: 0;
  }
  body .l_body .related-article-list {
    max-height: 100vh;
    margin-right: 20px;
  }
  body .l_body .l_main {
    flex: 6;
    max-width: 1080px !important;
    padding-bottom: 0;
  }
  body .l_body .l_main.list {
    max-width: 1400px !important;
  }
  body .l_body .l_left {
    margin-right: 20px;
    width: 300px;
    min-width: 300px !important;
    max-width: 300px !important;
  }
  body .l_body .l_left.is_post {
    margin-left: 20px;
    margin-right: 0;
  }
  body .l_body .l_left .page-detail-left {
    border: 1px solid #e8eaec;
    margin-top: 20px;
  }
  body .l_body .home-right {
    margin-left: 0;
    margin-right: 20px;
  }
}
.page-detail-left {
  padding: 16px 13px;
}
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);
  }
}
.search-pop-overlay {
  background: rgba(0,0,0,0);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0s linear 0.2s, background 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: 1400;
}
.search-pop-overlay.search-active {
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
  visibility: visible;
}
.search-popup {
  background: var(--card-bg-color);
  border-radius: 5px;
  height: 80%;
  left: calc(50% - 350px);
  position: fixed;
  top: 10%;
  transform: scale(0);
  transition: transform 0.2s;
  width: 700px;
  z-index: 1500;
mobile()
}
.search-active .search-popup {
  transform: scale(1);
}
.search-popup .search-icon,
.search-popup .popup-btn-close {
  color: #999;
  font-size: 18px;
  padding: 0 10px;
}
.search-popup .popup-btn-close {
  cursor: pointer;
}
.search-popup .popup-btn-close:hover .fa {
  color: #222;
}
.search-popup .search-header {
  background: #eee;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  padding: 5px;
}
.search-popup input.search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
.search-popup input.search-input::-webkit-search-cancel-button {
  display: none;
}
.search-popup .search-input-container {
  flex-grow: 1;
  padding: 2px;
}
.search-popup ul.search-result-list {
  margin: 0 5px;
  padding: 0;
  width: 100%;
}
.search-popup p.search-result {
  border-bottom: 1px dashed #ccc;
  padding: 5px 0;
}
.search-popup a.search-result-title {
  font-weight: bold;
}
.search-popup .search-keyword {
  border-bottom: 1px dashed $red;
  color: $red;
  font-weight: bold;
}
.search-popup #search-result {
  display: flex;
  height: calc(100% - 55px);
  overflow: auto;
  padding: 5px 25px;
}
.search-popup #no-result {
  color: #ccc;
  margin: auto;
}
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: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
}
h2,
.h2 {
  font-size: 1.5rem;
}
h3,
.h3 {
  font-size: 1.375rem;
}
h4,
.h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 0.9375rem;
}
h6 {
  font-size: 0.75rem;
}
.fs14 {
  font-size: 0.875rem;
}
.fs14 p {
  font-size: 0.875rem !important;
}
.fs14 li {
  font-size: 0.875rem !important;
}
.fs12 {
  font-size: 0.75rem;
}
.post-list .post-title {
  line-height: 26px;
  color: #101010;
  font-size: 16px;
  font-family: PingFangSC-regular;
  margin: 9px 0 0;
  border-bottom: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  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: 700;
}
.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: #358ef6;
}
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);
}
.ys-model {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  z-index: 2001;
}
.ys-model .ys-modelmasking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50,42,42,0.38);
}
.ys-model .ys-model-contianer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  width: 18.75rem;
  padding: 0.8446rem 1.3436rem 0.88968rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fafbff;
  border: 0.0133rem solid #fff;
  border-radius: 0.0625rem;
  box-shadow: 0rem 0.0625rem 0.1875rem 0rem rgba(0,0,0,0.24);
  transition-property: transform;
  transition-duration: 0.3s;
}
.ys-model .ys-model-contianer .ys-model-contianer-title {
  font-family: "PingFangSC-Regular", "PingFang SC", sans-serif, "PingFangSC-Regular", "PingFang SC", sans-serif-400;
  font-size: 0.8749rem;
  font-weight: 400;
  text-align: center;
  color: #333;
  line-height: 1.2499rem;
}
.ys-model .ys-model-contianer .ys-model-contianer-content {
  font-size: 0.5625rem;
  font-family: "PingFangSC-Regular", "PingFang SC", sans-serif, "PingFangSC-Regular", "PingFang SC", sans-serif-400;
  font-weight: 400;
  text-align: center;
  color: #475c77;
  line-height: 0.7811rem;
  padding: 0.5313rem 0 1.3596rem;
}
.ys-model .ys-model-contianer .ys-model-contianer-content .content-link span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ys-model .ys-model-contianer .ys-model-contianer-content .content-link img {
  width: 1.125rem;
}
.ys-model .ys-model-contianer .ys-model-contianer-footer {
  font-size: 0;
}
.ys-model .ys-model-contianer .ys-model-contianer-footer .primary-button {
  margin-top: 0;
  line-height: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  font-family: "PingFangSC-Regular", "PingFang SC", sans-serif, "PingFangSC-Regular", "PingFang SC", sans-serif-400;
  font-weight: 400;
}
.ys-model #copy-content {
  position: absolute;
  top: -999999999px;
  left: -999999999px;
}
.ys-model-masking {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50,42,42,0.38);
}
.ys-toast {
  display: none;
  position: fixed;
  z-index: 2001;
  top: 0;
  line-height: 3.3124rem;
  width: 100%;
  font-size: 0.75rem;
  text-align: center;
  transition-property: transform;
  transition-duration: 0.3s;
  will-change: transform;
  background: #f0faeb;
  border: 0.0133rem solid #d3ecc5;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #67c23a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ys-toast svg {
  width: 0.75rem;
  height: 0.75rem;
}
.ys-toast span {
  margin-left: 0.1483rem;
}
.ys-toast .ys-toast.hide {
  transform: translateY(-100%);
}
.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: #358ef6;
}
.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;
  position: relative;
}
.l_cover.post {
  height: inherit;
}
.l_cover .cover-wrap {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l_cover .cover-wrap .cover-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 1rem 0;
  line-height: 1.2;
}
.l_cover .cover-wrap .description {
  margin: 1rem 0;
}
.l_cover .cover-wrap .start-wrap {
  margin: 2rem 0;
  flex-shrink: 0;
}
.l_cover .cover-wrap .start-wrap a.start {
  display: inline-block;
}
.l_cover.post .cover {
  z-index: -1;
  width: 100%;
  height: 30vh;
  max-width: 2048px;
  min-height: 150px;
  max-height: 400px;
}
@media screen and (max-width: 768px) {
  .l_cover.post .cover {
    height: 25vh;
  }
}
@media screen and (max-width: 500px) {
  .l_cover.post .cover {
    height: 20vh;
  }
}
@media screen and (min-width: 2048px) {
  .l_cover.post .cover {
    margin-top: 4rem;
  }
  .l_cover.post .cover .img {
    border-radius: 2rem;
  }
}
.l_cover.post .cover-wrap {
  z-index: 1;
}
.l_cover.post .cover-wrap .article-title {
  text-align: center;
  padding: 1rem;
  margin: 1em 0 0 0;
}
@media screen and (min-width: 2048px) {
  .l_cover.post .cover-wrap .article-title {
    font-size: 3rem;
  }
}
.l_cover.wiki .cover-wrap {
  max-width: 500px;
}
.l_cover.wiki .cover-wrap .preview {
  margin-bottom: 2rem;
}
.l_cover.wiki .cover-wrap .preview img {
  object-fit: contain;
  max-height: 35vh;
  max-width: 100%;
}
@media screen and (max-width: 500px) {
  .l_cover.wiki .cover-wrap .preview img {
    max-width: 60%;
  }
}
.l_cover.wiki .cover-wrap .cover-title:first-child {
  font-size: 3rem;
}
.page-footer {
  margin: 4rem 1rem 3rem;
  color: var(--text-p3);
}
.page-footer a {
  color: var(--text-p3);
}
.page-footer a:hover {
  color: #358ef6;
}
.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;
}
nav.cap::-webkit-scrollbar {
  height: 0;
  width: 0;
}
nav.cap::-webkit-scrollbar-track-piece {
  background: transparent;
}
nav.cap::-webkit-scrollbar-thumb {
  background: var(--text-meta);
  cursor: pointer;
  border-radius: 0;
}
nav.cap::-webkit-scrollbar-thumb:hover {
  background: var(--text-p3);
}
nav.cap >p {
  margin: 0;
}
nav.cap a {
  padding: 0.25rem 1rem;
  margin: 10px 0 8px 0;
  line-height: 2;
  color: var(--text-p3);
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
nav.cap a:after {
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 1rem;
  right: 1rem;
  background: #358ef6;
  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(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0px rgba(0,0,0,0.03);
}
.paginator-wrap:hover,
.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:hover {
  filter: unset;
}
.related-wrap {
  padding: 20px 17px;
}
.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 {
  border-top: 1px solid #d9d9d9;
  padding: 20px 0 0 0;
  margin-top: 10px;
}
.related-wrap#related-posts .cap.theme {
  font-family: PingFangSC;
  color: #505050;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
  text-align: left;
}
.related-wrap#related-posts .related-posts {
  width: 100%;
  margin: 11px 0 0 0;
  padding-bottom: 0;
  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 .link {
  font-size: 12px;
  margin: 0.5rem 0;
}
.related-wrap#related-posts .related-posts .link .time {
  display: inline-flex;
  width: 75px;
  justify-content: space-around;
  margin-right: 5px;
}
.related-wrap#related-posts .related-posts .link .time {
  font-size: 12px;
}
.related-wrap#related-posts .related-posts .link .ys-tag {
  margin: 0;
  margin-left: 5px;
  cursor: pointer;
}
.related-wrap#related-posts .related-posts a {
  vertical-align: middle;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 6px;
  max-height: 40px;
  padding-bottom: 0;
  line-height: 20px;
  border: none;
  color: var(--text-p2);
  font-size: 14px;
  font-family: SourceHanSansSC-regular;
}
.related-wrap#related-posts .related-posts a .img {
  min-width: 100%;
  min-height: 140px;
  height: calc(100% * 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 .img {
    height: calc(100% * 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:hover {
  color: #358ef6;
}
.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-p4);
  font-weight: 500;
}
.related-wrap#read-next .body >a:hover {
  color: #358ef6 !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: #358ef6;
}
.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 {
  margin-top: 1rem;
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a {
  margin: 0;
  color: #2196f3;
  background: var(--block-hover);
}
.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: #358ef6;
  background: var(--block-border);
}
.tag-plugin.about .about-body .tag-plugin.navbar:last-child nav.cap a+a {
  margin-left: 0.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:not([color]) {
  --theme: #2196f3;
}
.tag-plugin {
  --theme: var(--text-p1);
  --theme-border: var(--block-border);
  --theme-bg: var(--block);
}
.tag-plugin[color='red'] {
  --theme: #f44336;
  --theme-border: #fab3ae;
  --theme-bg: #fdecea;
}
.tag-plugin[color='orange'] {
  --theme: #fa6400;
  --theme-border: #fdc199;
  --theme-bg: #feefe5;
}
.tag-plugin[color='yellow'] {
  --theme: #ffbd2b;
  --theme-border: #ffe4aa;
  --theme-bg: #fff8e9;
}
.tag-plugin[color='green'] {
  --theme: #3dc550;
  --theme-border: #b1e7b9;
  --theme-bg: #ebf9ed;
}
.tag-plugin[color='cyan'] {
  --theme: #1bcdfc;
  --theme-border: #a3ebfd;
  --theme-bg: #e8fafe;
}
.tag-plugin[color='blue'] {
  --theme: #2196f3;
  --theme-border: #a6d5fa;
  --theme-bg: #e8f4fd;
}
.tag-plugin[color='purple'] {
  --theme: #9c27b0;
  --theme-border: #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-border: #d1453c;
    --theme-bg: #574c52;
  }
  .tag-plugin[color='orange'] {
    --theme-border: #d65f11;
    --theme-bg: #584f4d;
  }
  .tag-plugin[color='yellow'] {
    --theme-border: #daa633;
    --theme-bg: #585851;
  }
  .tag-plugin[color='green'] {
    --theme-border: #3ead51;
    --theme-bg: #455955;
  }
  .tag-plugin[color='cyan'] {
    --theme-border: #23b3da;
    --theme-bg: #415966;
  }
  .tag-plugin[color='blue'] {
    --theme-border: #2887d3;
    --theme-bg: #425465;
  }
  .tag-plugin[color='purple'] {
    --theme-border: #8a2e9e;
    --theme-bg: #4e495f;
  }
  .tag-plugin[color='light'] {
    --theme-border: #fff;
    --theme-bg: #ddd;
    color: var(--site-bg) !important;
  }
  .tag-plugin[color='dark'] {
    --theme-border: #000;
    --theme-bg: #222;
    color: var(--text-p1) !important;
  }
}
.ys-post-tags {
  display: flex;
  flex-wrap: wrap;
}
.ys-post-tags .post-card {
  display: none !important;
}
.ys-tag {
  margin-top: 5px;
  margin-right: 10px;
  padding: 0 8px;
  line-height: 20px;
  border-radius: 3px;
  background-color: #e8eaec;
  color: #3d3d3d;
  font-size: 12px;
  text-align: center;
  border: 1px solid #e9e9eb;
}
.ys-tag:hover {
  color: var(--color_theme);
}
.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);
}
.md .tag-plugin.emoji {
  display: inline-block;
  margin: -4px 2px 0;
  vertical-align: middle;
}
.md .tag-plugin.emoji img {
  display: block;
  object-fit: contain;
  height: 1.75em;
}
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-border);
}
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);
  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;
}
.users-wrap .group-body+.group-header {
  margin-top: 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 {
  text-align: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.tag-plugin.image .image-bg:hover .image-download {
  opacity: 1 !important;
}
.tag-plugin.image .image-bg img {
  display: block;
  object-fit: cover;
}
.tag-plugin.image .image-bg .image-download {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.125rem;
  padding: 6px;
  line-height: 0;
  border-radius: 4px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -moz-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -webkit-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  -o-transition: color 0.2s ease-out, opacity 0.2s ease-out, background 0.2s ease-out;
  color: var(--text-p1);
}
.tag-plugin.image .image-bg .image-download:hover {
  background: var(--card) !important;
  color: #358ef6;
}
.tag-plugin.image .image-meta {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.tag-plugin.image .image-meta .image-caption {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-p2);
  line-height: 1.5;
  text-align: justify;
}
.tag-plugin.image .image-meta .image-caption:empty {
  display: none;
}
.md u {
  text-decoration: none;
  border-bottom: 2px solid #358ef6;
}
.md emp {
  text-decoration: none;
  border-bottom: 4px dotted #358ef6;
}
.md wavy {
  text-decoration: underline wavy #358ef6;
}
.md del {
  color: var(--text-p3);
  text-decoration: line-through var(--text-p3);
}
.md 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, "Courier New", monospace, sans-serif;
  font-weight: 700;
}
.md 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 psw:hover {
  color: inherit;
  background: none;
}
.md sup,
.md sub {
  color: var(--theme);
  line-height: 1;
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
}
.md .tag-plugin.link {
  max-width: 400px;
  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.plain {
  flex-direction: row;
  align-items: center;
}
.md .link-card.rich {
  flex-direction: column;
  align-items: stretch;
  width: 400px;
}
.md .link-card {
  line-height: 1.2;
}
.md .link-card > div {
  pointer-events: none;
}
.md .link-card >.top {
  display: flex;
  margin: 0.75rem 1rem 0.25rem;
  overflow: hidden;
  max-width: calc(100% - 1rem * 2);
  align-items: center;
}
.md .link-card >.top .img {
  line-height: 0;
  height: 16px;
  width: 20px;
  margin-right: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.md .link-card >.top .desc {
  opacity: 0.75;
  line-height: 1.5;
}
.md .link-card >.top span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.md .link-card >.bottom {
  margin: 0 1rem 0.75rem 1rem;
}
.md .link-card >.bottom .title {
  font-size: 0.9375rem;
  margin: 4px 0 8px 0;
}
.md .link-card >.right {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}
.md .link-card >.left {
  overflow: hidden;
  margin: 0.5rem 0 0.5rem 1rem;
}
.md .link-card >.left .title {
  font-size: 0.875rem;
  margin: 1px 0 5px 0;
}
.md .link-card >.left .desc {
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.md .link-card span {
  margin: 0;
  display: block;
}
.md .link-card span.title {
  font-weight: 500;
  color: var(--text-p1);
}
.md .link-card span.desc {
  color: var(--text-p3);
}
.md .tag-plugin.mark {
  margin: 0 1px;
  padding: 1px 2px;
  border-radius: 4px;
  background: var(--theme-bg);
  border: 1px solid var(--theme-border);
  color: var(--text-p0);
}
.md .tag-plugin.mark[color=dark] {
  border-color: var(--theme-bg);
}
.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-border);
  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[color] code {
  background: none;
}
.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;
}
.md .tag-plugin.poetry {
  align-self: center;
}
.md .tag-plugin.poetry[align=center] {
  align-items: center;
}
.md .tag-plugin.poetry >.title {
  font-weight: 500;
  font-size: 1rem;
  margin-top: var(--gap-p);
}
.md .tag-plugin.poetry >.meta {
  color: var(--text-p2);
  font-size: 0.75rem;
  font-weight: 500;
}
.md .tag-plugin.poetry >.meta span+span {
  margin-left: 4px;
}
.md .tag-plugin.poetry >.body {
  margin: var(--gap-p) 0;
  border-top: 1px dashed var(--block-border);
  border-bottom: 1px dashed var(--block-border);
}
.md .tag-plugin.poetry >.body p {
  font-size: 0.875rem;
}
.md .tag-plugin.poetry >.footer {
  font-style: italic;
  color: var(--text-p4);
  margin: var(--gap-p) 0;
  font-size: 0.75rem;
}
.md .tag-plugin.poetry {
  padding-left: 1rem;
  position: relative;
}
.md .tag-plugin.poetry:before {
  content: '';
  position: absolute;
  width: 4px;
  left: -4px;
  top: 4px;
  bottom: 4px;
  border-radius: 4px;
  background: var(--block);
}
.md .tag-plugin.poetry >.title {
  position: relative;
}
.md .tag-plugin.poetry >.title:before {
  content: '';
  position: absolute;
  width: 4px;
  left: calc(-1rem - 4px);
  top: 6px;
  bottom: 6px;
  border-radius: 4px;
  background: #ff5722;
}
.md .tag-plugin.quot {
  text-align: center;
  position: relative;
  align-items: center;
}
.md .tag-plugin.quot:not(span) {
  display: flex;
  align-self: center;
  border-bottom: none;
  font-weight: 700;
  padding: 16px 24px 8px 24px;
  line-height: 1.2;
}
.md .tag-plugin.quot:not(span):first-child {
  margin-top: 1.5rem;
}
.md .tag-plugin.quot:not(span) a.headerlink:before {
  content: '';
}
@media screen and (max-width: 500px) {
  .md .tag-plugin.quot:not(span) {
    padding: 16px 20px 8px;
  }
}
article.md.content .quot:not(span) {
  color: var(--text-p0);
}
article.md.content h1.quot {
  font-size: 1.75rem;
  font-weight: 900;
  padding: 20px 32px 12px 32px;
}
@media screen and (max-width: 500px) {
  article.md.content h1.quot {
    padding: 20px 24px 12px;
  }
}
article.md.content h2.quot,
article.md.content h3.quot,
article.md.content h4.quot,
article.md.content h5.quot,
article.md.content h6.quot {
  font-size: 1.375rem;
}
article.md.content p.quot {
  font-size: 1.125rem;
}
.md .tag-plugin.quot[type=text]:not(span):before,
.md .tag-plugin.quot[type=text]:not(span):after {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
}
.md .tag-plugin.quot[type=text]:not(span):before {
  top: 8px;
  left: 0;
  border-top: 6px solid #ff5722;
  border-left: 6px solid #ff5722;
}
.md .tag-plugin.quot[type=text]:not(span):after {
  right: 0;
  bottom: 0;
  border-right: 6px solid #ff5722;
  border-bottom: 6px solid #ff5722;
}
article.md.content h1.quot[type=text]:before,
article.md.content h1.quot[type=text]:after {
  width: 12px;
  height: 20px;
  border-width: 8px;
}
.md .tag-plugin.quot[type=icon]:not(span) .icon {
  height: 1.5em;
  display: inline-block;
  color: #ff5722;
  border-radius: 0;
}
.md .tag-plugin.quot[type=icon]:not(span) .icon.prefix {
  margin-right: 0.5rem;
}
.md .tag-plugin.quot[type=icon]:not(span) .icon.suffix {
  margin-left: 0.5rem;
}
.md span.tag-plugin.quot {
  font-weight: 500;
}
.md span.tag-plugin.quot:before,
.md span.tag-plugin.quot:after {
  color: #ff5722;
  font-weight: 900;
}
.md span.tag-plugin.quot:before {
  content: "「";
  margin-left: -0.125em;
  margin-right: 0.125em;
}
.md span.tag-plugin.quot:after {
  content: "」";
  margin-left: 0.125em;
  margin-right: -0.125em;
}
.sites-wrap .group-header {
  margin: 1rem 0;
}
.sites-wrap .group-header p {
  margin: 0;
  font-size: 0.875rem;
}
.sites-wrap .group-header p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}
.sites-wrap .group-body {
  width: 100%;
}
.sites-wrap .group-body+.group-header {
  margin-top: 2rem;
}
.sites-wrap .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));
}
@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, 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;
}
.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);
  transform: translateY(-2px);
}
.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: #358ef6;
  height: 2px;
  bottom: -8px;
  left: 0.75rem;
  right: 0.75rem;
  border-radius: 2px;
}
.tag-plugin.tabs .tab-content {
  max-width: 100%;
  text-align: justify;
  margin-top: 0.5rem;
}
.tag-plugin.tabs .tab-content .tab-pane:not(.active) {
  display: none;
}
.tag-plugin.tabs .tab-content .tab-pane.active {
  display: block;
}
.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% - 1rem);
}
.tag-plugin.timeline .timenode >.header,
.tag-plugin.timeline .timenode >.body {
  max-width: calc(100% - 1rem);
}
.tag-plugin.timeline .timenode[highlight] .header:before {
  background: #358ef6;
}
.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: #358ef6;
  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: #358ef6;
  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 0.25rem;
}
.proj-wrap a.item {
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-p2);
  background: var(--block);
  border: 1px solid var(--block-border);
  overflow: hidden;
  padding: 0.75em;
  text-align: center;
}
.proj-wrap a.item svg {
  margin-right: 0.5em;
}
.proj-wrap a.item:hover {
  color: #358ef6;
  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 {
  background: var(--block-hover);
}
.l_left {
  display: flex;
  flex-direction: column;
  word-break: break-all;
  text-align: justify;
  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%);
  }
}
.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;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.logo-wrap a {
  color: inherit;
  display: flex;
  align-items: center;
}
.logo-wrap a.avatar {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 1rem;
}
.logo-wrap a.avatar div.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.logo-wrap a.avatar img.avatar {
  margin: 2px;
  object-fit: cover;
  width: calc(100% - 2 * 2px);
  height: calc(100% - 2 * 2px);
  border-radius: calc(100% - 2 * 2px);
}
.logo-wrap a.avatar div.bg {
  transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  position: absolute;
  opacity: 0 !important;
  z-index: -1;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.logo-wrap a.avatar:hover div.bg {
  opacity: 1 !important;
  animation: spin infinite 1s;
  animation-timing-function: linear;
}
.logo-wrap a.title {
  font-size: 1.75rem;
  font-weight: 900;
  color: inherit;
  line-height: 1.2;
  font-family: "Source Han Sans CN";
  display: block;
  position: relative;
}
.logo-wrap a.title .main {
  color: var(--text-p0);
}
.logo-wrap a.title .sub {
  color: var(--text-p1);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -webkit-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  white-space: nowrap;
}
.logo-wrap a.title .hover {
  position: absolute;
  bottom: 0;
  transform: translateY(8px);
  overflow: visible;
}
.logo-wrap a.title:hover .normal {
  opacity: 0;
  transform: translateY(-8px);
}
.logo-wrap a.title:hover .hover {
  transform: translateY(0);
  opacity: 1 !important;
}
.logo-wrap.wiki {
  margin: 1rem 0 1.5rem 0;
  flex-direction: column;
  align-items: flex-start;
}
.logo-wrap.wiki a.wiki-home {
  margin-bottom: 1rem;
  color: var(--text-p1);
}
.logo-wrap.wiki a.wiki-home svg {
  margin-right: 2px;
}
.logo-wrap.wiki a.wiki-home:hover {
  color: #358ef6;
  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.is_post .widget-wrap {
  margin: 0 0 15px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8eaec;
}
.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 .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;
  color: var(--text-p4);
  font-size: 0.875rem;
}
.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: #358ef6;
}
.l_left .widgets .widget-wrap .widget-header .cap-action:hover .icon {
  fill: #358ef6;
}
.l_left .widgets .widget-wrap .widget-body {
  color: var(--text-p1);
}
.l_left .widgets .widget-wrap .widget-body p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.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 .widget-body .more-item {
  padding: 5px 0;
}
.l_left .widgets .widget-wrap .widget-body .more-item .cap {
  margin-bottom: 0.25rem;
}
.l_left .widgets .widget-wrap .widget-body .more-item .link {
  font-size: 12px;
}
.l_left .widgets .widget-wrap .widget-body .more-item .time {
  display: inline-flex;
  width: 75px;
  justify-content: space-around;
  margin-right: 5px;
}
.l_left .widgets .widget-wrap .widget-body .more-item .ys-tag {
  margin: 0;
  margin-left: 5px;
  cursor: pointer;
}
.l_left .widgets .widget-wrap#recent .widget-body a {
  line-height: 1.2;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-p2);
}
.l_left .widgets .widget-wrap#recent .widget-body a:hover {
  color: #358ef6;
}
.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;
  background: var(--block);
}
.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#related .widget-body >a:hover {
  background: var(--block-hover);
}
.l_left .widgets .widget-wrap#related .widget-body >a.wiki {
  font-weight: 700;
}
.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#toc .widget-header {
  line-height: 2.4;
  padding-left: 4px;
}
#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 .toc {
  padding: 0;
  margin: 0;
  padding-left: 6px;
}
#toc .widget-body .toc .toc-item .toc-link {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #3d3d3d;
}
#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: #358ef6;
  border-left-color: #358ef6;
}
#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% - 10px);
  bottom: calc(50% - 10px);
  width: 2px;
  border-radius: 2px;
  background: #358ef6;
  visibility: hidden;
}
#toc a.toc-link:hover {
  background: var(--block-hover);
}
#toc a.toc-link.active {
  color: #358ef6 !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 #archive {
  padding: 1rem;
}
.post-list #archive .archive-header {
  display: inline-block;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  position: relative;
  padding: 4px 0;
  color: var(--text-p3);
}
.post-list #archive .archive-header:after {
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 4px;
  background: var(--block-border);
}
.post-list #archive a.post {
  display: inline-flex;
  align-items: baseline;
  margin: 0.25rem 0;
  color: var(--text-p1);
}
.post-list #archive a.post:hover {
  color: #358ef6;
}
.post-list #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.5;
}
.post-list #archive:hover .archive-header {
  color: var(--text-p1);
}
.post-list #archive:hover .archive-header:after {
  background: #358ef6;
}
.post-list #cats {
  padding: 0;
}
.post-list #cats a.cat {
  display: flex;
  padding: 0.5em 1rem;
  border-radius: 6px;
  color: var(--text-p2);
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 0.875rem;
}
.post-list #cats a.cat.child {
  padding-left: 2rem;
}
.post-list #cats a.cat .badge {
  font-weight: 700;
  font-family: Menlo, Monaco, Consolas, system-ui, "Courier New", monospace, sans-serif;
  opacity: 0.5;
  font-size: 0.75rem;
}
.post-list #cats a.cat:hover {
  background: var(--block-hover);
  color: var(--text-p0);
}
.post-list #cats a.cat:hover .badge {
  opacity: 1;
  color: #358ef6;
}
.post-list #tags {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -4px;
}
.post-list #tags a.tag {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--text-p2);
  margin: 4px;
  padding: 0.5em 0.75rem;
  border-radius: 4px;
  background: var(--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-p0);
  background: var(--block-hover);
}
.post-list #tags a.tag:hover:before {
  color: #358ef6;
  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);
    z-index: 9;
  }
  .l_body .l_main {
    max-width: 100%;
  }
  .l_body.mobile .l_left {
    transition: transform 0.3s ease-out;
  }
  .l_body.mobile.sidebar .l_left {
    transform: translateX(0px);
  }
}
.post-list {
  margin: 1rem;
}
.post-list .post-card {
  display: block;
  border-radius: 4px;
  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;
  background: var(--card);
  position: relative;
}
.post-list .post-card .ys-post-tags {
  flex-wrap: wrap;
}
.post-list .post-card .excerpt {
  color: #c1c1c1;
  font-size: 14px;
  font-family: PingFangSC-regular;
  margin: 5px 0 0 0;
  height: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.post-list .post-card .excerpt >p {
  margin: 0 0;
  line-height: 1.2;
}
.post-list .post-card .meta.cap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
  margin: 0 0;
  line-height: 1.5;
}
.post-list .post-card .meta.cap span+span {
  margin-left: 0.5rem;
}
.post-list .post-card .meta.cap span.pin {
  line-height: 0;
}
.post-list .post-card .meta.cap span.pin img {
  object-fit: contain;
  height: 1.5em;
}
.post-list .post-card:hover {
  box-shadow: 0 1px 4px 0px rgba(0,0,0,0.1), 0 4px 16px 0px rgba(0,0,0,0.1);
}
.post-list .post-card:first-child {
  margin-top: 0;
}
.post-list article.md {
  padding: 0 1rem;
}
.post-list article.md p {
  color: var(--text-p2);
}
@media screen and (min-width: 500px) {
  .post-list article.md p {
    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: 0;
  margin-right: -1rem;
  margin-bottom: 0;
}
.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 {
  width: 100%;
  border-radius: 0;
  height: auto;
}
.post-list .post-card.post.photo .cover {
  position: relative;
  line-height: 0;
}
.post-list .post-card.post.photo .cover img {
  width: 100%;
}
.post-list .post-card.post.photo .cover .cover-info {
  padding: 1rem;
  position: absolute;
  line-height: 1.2;
  width: calc(100% - 1rem * 2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  color: #fff;
}
.post-list .post-card.post.photo .cover .cover-info[position=top] {
  top: 0;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3), 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.3), rgba(0,0,0,0.4));
}
.post-list .post-card.post.photo .cover .cover-info div+div {
  margin-top: 8px;
}
@media screen and (max-width: 500px) {
  .post-list .post-card.post.photo .cover .cover-info div+div {
    margin-top: 4px;
  }
}
.post-list .post-card.post.photo .cover .cover-info .cap {
  color: #fff;
  font-size: 0.8125rem;
}
.post-list .post-card.post.photo .cover .cover-info .title {
  font-weight: 500;
  font-size: 1.375rem;
}
.post-list .post-card.post.photo h2 {
  margin: 0.25rem 0;
  font-size: 1.125rem;
}
.post-list .post-card.wiki article {
  display: flex;
  flex-wrap: wrap;
  transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  justify-content: center;
  padding: 1rem 0.5rem;
}
.post-list .post-card.wiki article .preview {
  display: flex;
  width: 200px;
  margin: 1rem 0.5rem;
  align-items: center;
}
@media screen and (min-width: 950px) {
  .post-list .post-card.wiki article .preview {
    margin: 1rem;
  }
}
.post-list .post-card.wiki article .preview img {
  object-fit: contain;
}
.post-list .post-card.wiki article .preview img:not(.lazy) {
  transition: transform 0.75s ease-out;
  -moz-transition: transform 0.75s ease-out;
  -webkit-transition: transform 0.75s ease-out;
  -o-transition: transform 0.75s ease-out;
}
.post-list .post-card.wiki article .excerpt {
  margin: 1rem 0.5rem;
  min-width: 280px;
  flex: 1;
  overflow: hidden;
  word-wrap: break-word;
}
@media screen and (min-width: 950px) {
  .post-list .post-card.wiki article .excerpt {
    margin-right: 2rem;
  }
}
.post-list .post-card.wiki article .excerpt p:last-child {
  margin-bottom: 0;
}
.l_main {
  position: relative;
  padding-bottom: calc(1 * var(--gap-l));
}
@media screen and (min-width: 1280px) {
  .l_main {
    margin-left: calc(2 * var(--gap-l));
    margin-right: calc(2 * var(--gap-l) + var(--width-left));
  }
}
@media screen and (min-width: 768px) {
  .l_main {
    padding-top: calc(2 * var(--gap-l));
  }
}
.l_main header {
  margin: 4rem 1rem 2rem;
}
.l_main header .logo-wrap {
  margin: 0;
}
.l_main .content {
  text-align: justify;
}
article.md {
  max-width: 100%;
  padding: 30px 0;
  color: var(--text-p1);
  line-height: 1.7;
  word-break: break-word;
}
article.md.excerpt p {
  font-size: 0.875rem;
  margin: 1em 0;
}
h1.article-title {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
  color: #333;
  font-size: 24px !important;
  text-align: left;
  font-family: PingFangSC-bold;
}
article.md.content {
  position: relative;
  display: flex;
  flex-direction: column;
}
article.md.content.indent >p:not([class]) {
  text-indent: calc(0.9375rem * 2);
  text-align: justify;
}
article.md.content.indent h1,
article.md.content.indent h2,
article.md.content.indent h3,
article.md.content.indent h4,
article.md.content.indent h5,
article.md.content.indent h6 {
  text-align: center;
}
article.md.content.indent >h2:not([class]) {
  align-self: center;
  border-bottom-style: dashed;
  border-bottom-color: #ff5722;
}
article.md.content h1 {
  font-family: PingFangSC;
  color: #333;
  font-weight: 600;
  font-size: 18px;
}
article.md.content h1:not(:first-child) {
  margin-top: 23px;
}
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: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}
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;
}
@media screen and (max-width: 768px) {
  article.md.content {
    margin-bottom: -2rem;
  }
}
.md ul:not(:last-child),
.md ol:not(:last-child) {
  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 >ul:not(:last-child),
.md >ol:not(:last-child) {
  margin-top: calc(var(--gap-p) - 4px);
  margin-bottom: calc(var(--gap-p) - 4px);
}
.md .tag-plugin,
.md iframe {
  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: 1rem;
  border-bottom: 1px solid var(--block-border);
  font-weight: 600;
}
article.md.content h3 {
  margin-top: 0.5rem;
  font-weight: 600;
}
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]),
article.md li:not([class]) >a:not([class]) {
  font-weight: 500;
}
article.md p >a:not([class]):hover,
article.md li:not([class]) >a:not([class]):hover {
  text-decoration: underline;
}
article.md p {
  font-size: 0.9375rem;
}
article.md pre {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}
article.md .center {
  align-self: center;
}
article.md blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 1rem;
  background: var(--card);
  border-left: 6px solid #358ef6;
  border-radius: 6px;
  color: var(--text-p2);
  box-shadow: 0 1px 2px 0px rgba(0,0,0,0.1);
}
article.md img {
  margin: auto;
  display: block;
}
:root {
  --swiper-theme-color: #358ef6 !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: #358ef6 !important;
}
img[fancybox='true'] {
  cursor: zoom-in;
}
.swiper-slide {
  cursor: zoom-in;
}
.overflow_hidden {
  display: -webkit-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.popup-trigger {
  cursor: pointer;
}
.share-box {
  display: flex;
}
.share-box > a {
  margin-right: 10px;
}
.share-box > a >img {
  display: block;
}
.share-box .weibo-icon {
  border-radius: 50%;
  border: 1px solid #d32024;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-box .weibo-icon >img {
  width: 25px;
}
.footer-share {
  margin-top: 20px;
}
