
  :root {
    --md-text-font: "Noto serif","LXGW WenKai Screen"; 
    --md-code-font: "Consolas", "LXGW WenKai Screen";
    --md-admonition-icon--code: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6m80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3l89.3 89.4-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3"/></svg>');
    --md-admonition-icon--recommend: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8.834.066c.763.087 1.5.295 2.01.884.505.581.656 1.378.656 2.3 0 .467-.087 1.119-.157 1.637L11.328 5h1.422c.603 0 1.174.085 1.668.333.508.254.911.679 1.137 1.2.453.998.438 2.447.188 4.316l-.04.306c-.105.79-.195 1.473-.313 2.033-.131.63-.315 1.209-.668 1.672C13.97 15.847 12.706 16 11 16c-1.848 0-3.234-.333-4.388-.653q-.247-.068-.475-.133c-.658-.186-1.2-.34-1.725-.415A1.75 1.75 0 0 1 2.75 16h-1A1.75 1.75 0 0 1 0 14.25v-7.5C0 5.784.784 5 1.75 5h1a1.75 1.75 0 0 1 1.514.872c.258-.105.59-.268.918-.508C5.853 4.874 6.5 4.079 6.5 2.75v-.5c0-1.202.994-2.337 2.334-2.184M4.5 13.3c.705.088 1.39.284 2.072.478l.441.125c1.096.305 2.334.598 3.987.598 1.794 0 2.28-.223 2.528-.549.147-.193.276-.505.394-1.07.105-.502.188-1.124.295-1.93l.04-.3c.25-1.882.189-2.933-.068-3.497a.92.92 0 0 0-.442-.48c-.208-.104-.52-.174-.997-.174H11c-.686 0-1.295-.577-1.206-1.336q.036-.29.076-.586c.065-.488.13-.97.13-1.328 0-.809-.144-1.15-.288-1.316-.137-.158-.402-.304-1.048-.378C8.357 1.521 8 1.793 8 2.25v.5c0 1.922-.978 3.128-1.933 3.825a5.8 5.8 0 0 1-1.567.81ZM2.75 6.5h-1a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25"/></svg>');
  }

/* 以下是从 TonyCrane/note 仓库 custom.css 复制的 */
   @media screen and (min-width: 960px) {
    html {
      font-size: 137.5%;
    }
  }
  
  @media screen and (min-width: 100em) {
    html {
      font-size: 137.5%;
    }
  }
  
  @media screen and (min-width: 125em) {
    html {
      font-size: 137.5%;
    }
  }
  
  /* .md-typeset h1, .md-typeset h2 {
    font-weight: 600;
  }
  
  .md-typeset h3 {
    font-weight: 500;
  }
  
  .md-typeset h1, .md-typeset h2, .md-typeset h3, .md-typeset h4 {
    letter-spacing: 0;
  }
  
  .md-typeset {
    font-size: .7rem;
  }
  
  .md-typeset h3 {
    font-weight: 600;
  }
  
  @media screen and (max-width: 59.9375em) {
    .md-nav__source {
      background-color: var(--md-primary-fg-color);
    }
  }
  
  @media screen and (max-width: 76.1875em) {
    .md-nav--primary .md-nav__title {
      background-color: var(--md-primary-fg-color);
    }
  }  */
/* 以上是从 TonyCrane/note 仓库 custom.css 复制的 */
  
  /* 以下来源于 https://ronaldln.github.io/MyPamphlet-Blog/2023/10/25/mkdocs-material/ */

  /* 修改所有代码字体大小 */
  .md-typeset code {
    font-size: .65rem;
  }
  
  /* (覆盖)修改行内代码字体大小 */
  .md-typeset code:not(pre code) {
    font-size: inherit;
  }
  
  /* 修改代码块行间距 */
  .md-typeset pre {
    line-height: 1.5;
  }
  
  /* 修改分割线的宽度 */
  .md-typeset hr {
    border-bottom: .10rem solid var(--md-default-fg-color--lightest);
  }
  
  /* 以上来源于 https://ronaldln.github.io/MyPamphlet-Blog/2023/10/25/mkdocs-material/ */
  