:root {
  --red-0: #f00;
  --red-1: #ff5252;
  --red-2: #ff7c7c;
  --red-3: #ffafaf;
  --red-4: #ffd0d0;
  --red-5: #ffe4e4;
  --red-5-5: #ffecec;
  --red-6: #fff3f3;
  --color-default-font: #000;
  --color-default: #555;
  --color-grey: #999;
  --color-border: var(--red-3);
  --color-link: var(--red-1);
  --color-dark-link: #ff0f0f;
  --color-background: #eee;
  --color-code-background: #f5f5f5;
  --color-sidebar-text: #777;
  --color-header-background: rgba(255,255,255,0.9);
  --color-footer-background: #fff;
  --color-mobile-nav-background: #fff;
  --color-wrap: #fff;
  --color-twitter: #00aced;
  --color-facebook: #3b5998;
  --color-pinterest: #cb2027;
  --color-linkedin: #0077b5;
  --color-dark-twitter: #008abe;
  --color-dark-facebook: #2f477a;
  --color-dark-pinterest: #a21a1f;
  --color-dark-linkedin: #005f91;
  --color-sticky: #ffecec;
  --color-h2-border: #eee;
  --color-meta-shadow: --var(--red-6);
  --color-hover-shadow: rgba(150,150,150,0.1);
  --color-h2-after: rgba(255,0,0,0.6);
  --color-h2-after-shadow: rgba(255,78,106,0.7);
  --highlight-nav: #e6e6e6;
  --highlight-scrollbar: #d6d6d6;
  --highlight-background: #f7f7f7;
  --highlight-current-line: #dadada;
  --highlight-selection: #e9e9e9;
  --highlight-foreground: #4d4d4d;
  --highlight-comment: #7d7d7d;
  --highlight-red: #c8362b;
  --highlight-orange: #b66014;
  --highlight-yellow: #cb911d;
  --highlight-green: #2ea52e;
  --highlight-aqua: #479d9d;
  --highlight-blue: #1973b8;
  --highlight-purple: #7135ac;
}
[data-theme="dark"]:root {
  --red-0: #ff5252;
  --red-1: #ff5252;
  --red-2: #ff7c7c;
  --red-3: #ffafaf;
  --red-4: rgba(255,208,208,0.5);
  --red-5: rgba(255,228,228,0.2);
  --red-5-5: rgba(255,236,236,0.1);
  --red-6: rgba(255,243,243,0.2);
  --color-default-font: #999;
  --color-default: #999;
  --color-grey: #999;
  --color-border: var(--red-5);
  --color-link: var(--red-1);
  --color-dark-link: #ff0f0f;
  --color-background: #21252b;
  --color-code-background: rgba(232,232,232,0.2);
  --color-sidebar-text: #777;
  --color-header-background: #222;
  --color-footer-background: #21252b;
  --color-mobile-nav-background: #21252b;
  --color-wrap: #272b30;
  --color-twitter: #00aced;
  --color-facebook: #3b5998;
  --color-pinterest: #cb2027;
  --color-linkedin: #0077b5;
  --color-dark-twitter: #008abe;
  --color-dark-facebook: #2f477a;
  --color-dark-pinterest: #a21a1f;
  --color-dark-linkedin: #005f91;
  --color-sticky: #ffecec;
  --color-h2-border: #47474a;
  --color-meta-shadow: rgba(0,0,0,0.2);
  --color-hover-shadow: rgba(0,0,0,0.2);
  --color-h2-after: #ff5252;
  --color-h2-after-shadow: rgba(255,78,106,0.7);
  --highlight-nav: #2e353f;
  --highlight-scrollbar: #454d59;
  --highlight-background: #22272e;
  --highlight-current-line: #393939;
  --highlight-selection: #515151;
  --highlight-foreground: #ccc;
  --highlight-comment: #999;
  --highlight-red: #f47067;
  --highlight-orange: #f69d50;
  --highlight-yellow: #fc6;
  --highlight-green: #9c9;
  --highlight-aqua: #6cc;
  --highlight-blue: #54b6ff;
  --highlight-purple: #dcbdfb;
}
[data-theme="dark"]:root img {
  filter: brightness(70%);
}
[data-theme="dark"]:root .fancybox-content img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease-in-out forwards;
  -moz-animation: blur 0.8s ease-in-out forwards;
  -o-animation: blur 0.8s ease-in-out forwards;
  -ms-animation: blur 0.8s ease-in-out forwards;
  animation: blur 0.8s ease-in-out forwards;
}
[data-theme="dark"]:root img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur-darken 0.8s ease-in-out forwards;
  -moz-animation: blur-darken 0.8s ease-in-out forwards;
  -o-animation: blur-darken 0.8s ease-in-out forwards;
  -ms-animation: blur-darken 0.8s ease-in-out forwards;
  animation: blur-darken 0.8s ease-in-out forwards;
}
body {
  zoom: 1;
  width: 100%;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
@-moz-keyframes blur {
  0% {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@-webkit-keyframes blur {
  0% {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@-o-keyframes blur {
  0% {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@keyframes blur {
  0% {
    filter: blur(10px);
  }
  to {
    filter: blur(0);
  }
}
@-moz-keyframes blur-darken {
  0% {
    filter: blur(10px) brightness(70%);
  }
  to {
    filter: blur(0) brightness(70%);
  }
}
@-webkit-keyframes blur-darken {
  0% {
    filter: blur(10px) brightness(70%);
  }
  to {
    filter: blur(0) brightness(70%);
  }
}
@-o-keyframes blur-darken {
  0% {
    filter: blur(10px) brightness(70%);
  }
  to {
    filter: blur(0) brightness(70%);
  }
}
@keyframes blur-darken {
  0% {
    filter: blur(10px) brightness(70%);
  }
  to {
    filter: blur(0) brightness(70%);
  }
}
.article-inner {
  background: var(--color-wrap);
  border-radius: 5px;
}
.article-entry h1 {
  font-size: 2em;
}
.article-entry h2 {
  font-size: 1.5em;
  position: relative;
}
.article-entry h2:before {
  content: "";
  width: 100%;
  border-bottom: 1px solid var(--color-h2-border);
  position: absolute;
  bottom: -15px;
  -webkit-box-sizing: unset;
  -moz-box-sizing: unset;
  box-sizing: unset;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-entry h2:after {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  background: var(--color-h2-after);
  width: 1em;
  height: 7px;
  bottom: -18px;
  left: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
}
.article-entry h2:hover:after {
  width: 3em;
}
.article-entry h3 {
  font-size: 1.3em;
}
.article-entry h4 {
  font-size: 1.2em;
}
.article-entry h5 {
  font-size: 1em;
}
.article-entry h6 {
  font-size: 1em;
  color: var(--color-grey);
}
.article-entry hr {
  margin: 10px 0;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  height: 3px;
  background-image: -webkit-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -moz-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -o-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -ms-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: linear-gradient(to left, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-size: 20px 3px;
  background-repeat: repeat-x;
  border: none;
  filter: drop-shadow(0px 0px 2px #f00);
}
@media screen and (max-width: 767px) {
  .article-entry hr {
    margin: 10px 0;
  }
}
.article-entry strong {
  font-weight: bold;
}
.article-entry em,
.article-entry cite {
  font-style: italic;
}
.article-entry sup,
.article-entry sub {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.article-entry sup {
  top: -0.5em;
}
.article-entry sub {
  bottom: -0.2em;
}
.article-entry small {
  font-size: 0.85em;
}
.article-entry acronym,
.article-entry abbr {
  text-decoration: none;
  border-bottom: 1px dotted;
}
.article-entry ul,
.article-entry ol,
.article-entry dl {
  margin: 0 20px;
  line-height: 1.8em;
}
.article-entry ul ul,
.article-entry ol ul,
.article-entry ul ol,
.article-entry ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
.article-entry ul {
  list-style: disc;
}
.article-entry ol {
  list-style: decimal;
}
.article-entry dt {
  font-weight: bold;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #000;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Mulish, 'Noto Serif SC', 'Noto Serif JP', Mulish, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
}
input,
button {
  margin: 0;
  padding: 0;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
html,
body,
#container {
  height: 100%;
  cursor: url("/images/cursor/reimu-cursor-default.cur"), auto;
}
body {
  background: var(--color-background);
  -webkit-text-size-adjust: 100%;
  font-family: Mulish, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
a {
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer !important;
}
.site-search input {
  cursor: url("/images/cursor/reimu-cursor-text.cur"), text !important;
}
#main span,
#main p,
#main code,
#main kbd,
#main input,
#main textarea {
  cursor: url("/images/cursor/reimu-cursor-text.cur"), text !important;
}
#main nav span {
  cursor: url("/images/cursor/reimu-cursor-default.cur"), auto !important;
}
.outer {
  zoom: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.outer:before,
.outer:after {
  content: "";
  display: table;
}
.outer:after {
  clear: both;
}
.inner {
  display: inline;
  float: left;
  width: 98.33333333333333%;
  margin: 0 0.833333333333333%;
}
.left,
.alignleft {
  float: left;
}
.right,
.alignright {
  float: right;
}
.clear {
  clear: both;
}
#container {
  position: relative;
}
.mobile-nav-on {
  overflow: hidden !important;
}
#wrap {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
  background: var(--color-background);
}
#main {
  padding: 0 5px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  #main {
    min-width: 100%;
  }
}
#content {
  position: relative;
  padding-top: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
#content.outer {
  overflow: visible;
}
@media screen and (min-width: 960px) {
  #main {
    padding: 0;
    display: inline;
    float: left;
    width: 73.33333333333333%;
    margin: 0 0.833333333333333%;
  }
}
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}
.mobile-nav-on #mask {
  display: block;
}
#header {
  height: 400px;
  position: relative;
}
#header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: -2;
  display: block;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  mask: linear-gradient(to top, transparent, #fff 50%);
}
@media screen and (max-width: 959px) {
  #header img {
    height: 120%;
  }
}
@media screen and (max-width: 767px) {
  #header img {
    height: 100%;
  }
}
#header-outer {
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: 0;
}
[data-theme="dark"] #header-nav:hover {
  background: var(--color-header-background);
}
#header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-header-background);
  -webkit-box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
  box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 200;
}
#header-nav:hover {
  background: rgba(255,255,255,0.95);
}
#header-nav.header-nav-hidden {
  top: -80px;
}
#header-title {
  font-family: Mulish, 'Noto Serif SC', 'Noto Serif JP', Mulish, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
  text-align: center;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -20px;
}
#logo,
#subtitle {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
#logo {
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 2px;
  display: inline-block;
  width: 80%;
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -o-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  text-shadow: 0 0.2rem 0.3rem rgba(0,0,0,0.5);
}
@media screen and (max-width: 959px) {
  #logo {
    width: 90%;
    font-size: 35px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #logo {
    width: 95%;
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  #logo {
    width: 100%;
    font-size: 30px;
  }
}
#subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 959px) {
  #subtitle {
    font-size: 15px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  #subtitle {
    width: 95%;
    font-size: 14px;
  }
}
@media screen and (max-width: 479px) {
  #subtitle {
    width: 100%;
    font-size: 13px;
  }
}
#subtitle-wrap {
  margin-top: 18px;
}
#main-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-left: -15px;
}
.nav-icon,
.main-nav-link-wrap,
.main-nav-link,
.main-nav-icon {
  color: var(--red-0);
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  text-decoration: none;
  text-shadow: 0 1px rgba(0,0,0,0.2);
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: block;
  padding: 20px 15px;
}
.main-nav-link-wrap {
  padding: 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-nav-link-wrap:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
@media screen and (max-width: 959px) {
  .main-nav-link-wrap {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .main-nav-link-wrap {
    padding: 0 4px;
  }
}
.nav-icon {
  text-align: center;
  font-size: 14px;
  width: 14px;
  height: 14px;
  padding: 20px 15px;
  position: relative;
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
}
[data-theme="dark"] .main-nav-link,
[data-theme="dark"] .main-nav-icon,
[data-theme="dark"] .nav-icon,
[data-theme="dark"] .main-nav-link-wrap {
  color: var(--red-2);
}
[data-theme="dark"] .main-nav-icon,
[data-theme="dark"] .nav-icon {
  filter: brightness(120%);
}
@media screen and (max-width: 479px) {
  .main-nav-link-wrap {
    display: none;
  }
}
.main-nav-link-wrap:hover .main-nav-icon {
  -webkit-transition: -webkit-transform 1s ease;
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  -ms-transition: -ms-transform 1s ease;
  transition: transform 1s ease;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.main-nav-link {
  font-weight: 400;
  letter-spacing: 1px;
}
.main-nav-icon {
  background: url("/images/taichi.png") no-repeat center/80%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 1s ease;
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  -ms-transition: -ms-transform 1s ease;
  transition: transform 1s ease;
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer !important;
}
#main-nav-toggle {
  display: none;
}
#main-nav-toggle:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0c9";
}
@media screen and (max-width: 959px) {
  #main-nav-toggle {
    display: block;
  }
}
#sub-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-right: -15px;
}
#nav-rss-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f09e";
}
#nav-search-btn:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f002";
}
#nav-sun-btn:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f185";
  font-weight: 900;
}
#nav-moon-btn:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f186";
  font-weight: 900;
}
.hr-line {
  margin: 10px 20px;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  height: 3px;
  background-image: -webkit-linear-gradient(right, var(--red-0) 50%, transparent 0%);
  background-image: -moz-linear-gradient(right, var(--red-0) 50%, transparent 0%);
  background-image: -o-linear-gradient(right, var(--red-0) 50%, transparent 0%);
  background-image: -ms-linear-gradient(right, var(--red-0) 50%, transparent 0%);
  background-image: linear-gradient(to left, var(--red-0) 50%, transparent 0%);
  background-size: 20px 3px;
  background-repeat: repeat-x;
  filter: drop-shadow(0px 0px 2px #f00);
}
.article-inner {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-meta {
  zoom: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 20px 0;
}
.article-meta:before,
.article-meta:after {
  content: "";
  display: table;
}
.article-meta:after {
  clear: both;
}
.article-date-link,
.article-category-link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--red-1);
  background: var(--red-5);
  border-radius: 20px;
  padding: 10px 18px;
  margin: 0 12px 1em;
  -webkit-box-shadow: 0 0 5px 3px var(--color-meta-shadow);
  box-shadow: 0 0 5px 3px var(--color-meta-shadow);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-date {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.article-date-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f017";
  margin-right: 10px;
}
.article-category {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.article-category-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f02e";
  font-weight: 900;
  margin-right: 10px;
}
.article-title {
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  color: var(--color-default);
  line-height: 1.2em;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -ms-transition: color 0.2s;
  transition: color 0.2s;
}
a.article-title:hover {
  color: var(--color-link);
}
.article-entry {
  zoom: 1;
  color: var(--color-default);
  padding: 0 35px;
}
.article-entry:before,
.article-entry:after {
  content: "";
  display: table;
}
.article-entry:after {
  clear: both;
}
@media screen and (max-width: 767px) {
  .article-entry {
    padding: 0 20px;
  }
}
.article-entry p,
.article-entry table {
  line-height: 1.8em;
  margin: 1.8em 0;
}
.article-entry h1,
.article-entry h2,
.article-entry h3,
.article-entry h4,
.article-entry h5,
.article-entry h6 {
  font-weight: bold;
  line-height: 1.2em;
  margin: 1.2em 0;
}
.article-entry h1:before,
.article-entry h2:before,
.article-entry h3:before,
.article-entry h4:before,
.article-entry h5:before,
.article-entry h6:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  font-weight: normal;
}
.article-entry h1 a,
.article-entry h2 a,
.article-entry h3 a,
.article-entry h4 a,
.article-entry h5 a,
.article-entry h6 a {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-entry h1 a:hover,
.article-entry h2 a:hover,
.article-entry h3 a:hover,
.article-entry h4 a:hover,
.article-entry h5 a:hover,
.article-entry h6 a:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  text-decoration: none !important;
}
.article-entry h2 {
  margin-bottom: 40px;
}
.article-entry a {
  color: var(--color-link);
  text-decoration: none;
}
.article-entry a:hover {
  text-decoration: underline;
}
.article-entry ul,
.article-entry ol,
.article-entry dl {
  margin-top: 1.8em;
  margin-bottom: 1.8em;
}
.article-entry li:hover::marker {
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: var(--red-1);
}
.article-entry img,
.article-entry video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-entry img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease-in-out forwards;
  -moz-animation: blur 0.8s ease-in-out forwards;
  -o-animation: blur 0.8s ease-in-out forwards;
  -ms-animation: blur 0.8s ease-in-out forwards;
  animation: blur 0.8s ease-in-out forwards;
}
.article-entry iframe {
  border: none;
}
.article-entry table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.article-entry th {
  font-weight: bold;
  border-bottom: 3px solid var(--color-border);
  padding-bottom: 0.5em;
}
.article-entry td {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.article-entry blockquote {
  background: var(--red-5-5);
  border-left: 6px var(--red-4) solid;
  margin: 1.8em 0;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1px 10px;
}
@media screen and (max-width: 767px) {
  .article-entry blockquote {
    margin: 1.8em 0;
  }
}
.article-entry blockquote footer {
  font-size: 14px;
  margin: 1.8em 0;
}
.article-entry blockquote footer cite:before {
  content: "—";
  padding: 0 0.5em;
}
.article-entry .pullquote {
  text-align: left;
  width: 45%;
  margin: 0;
}
.article-entry .pullquote.left {
  margin-left: 0.5em;
  margin-right: 1em;
}
.article-entry .pullquote.right {
  margin-right: 0.5em;
  margin-left: 1em;
}
.article-entry .caption {
  color: var(--color-grey);
  display: block;
  font-size: 0.9em;
  margin-top: 0.5em;
  position: relative;
  text-align: center;
}
.article-entry .video-container {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
.article-entry .video-container iframe,
.article-entry .video-container object,
.article-entry .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.article-more-link a {
  display: inline-block;
  line-height: 1em;
  padding: 6px 15px;
  border-radius: 15px;
  background: var(--red-5);
  color: var(--red-1);
  text-decoration: none;
  -webkit-box-shadow: 0 0 5px 3px var(--red-6);
  box-shadow: 0 0 5px 3px var(--red-6);
}
.article-more-link a:hover {
  background: var(--color-link);
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px var(--color-dark-link);
}
.article-footer {
  zoom: 1;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
  margin: 0 20px 20px;
}
.article-footer:before,
.article-footer:after {
  content: "";
  display: table;
}
.article-footer:after {
  clear: both;
}
.article-footer a {
  text-decoration: none;
}
.article-tag-list-link,
.article-share-link,
.article-comment-link,
.article-visitor-link {
  color: var(--red-1);
  margin-top: 20px;
}
.article-tag-list-item {
  float: left;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--red-5);
  border-radius: 20px;
  padding: 10px 18px;
  margin-top: 20px;
  margin-right: 10px;
}
.article-tag-list-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  margin-right: 10px;
  content: "\f02b";
}
.article-comment-link {
  float: right;
  background: var(--red-5);
  margin-left: 20px;
  border-radius: 20px;
  padding: 10px 18px;
}
.article-comment-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f075";
  margin-right: 10px;
}
.article-share-link {
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
  float: right;
  margin-left: 20px;
  font-size: 14px;
  background: var(--red-5);
  border-radius: 20px;
  padding: 10px 18px;
}
.article-share-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f064";
  margin-right: 10px;
}
.article-visitor-link {
  float: right;
  font-size: 14px;
  background: var(--red-5);
  border-radius: 20px;
  padding: 10px 18px;
}
#article-nav {
  zoom: 1;
  margin-top: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}
#article-nav:before,
#article-nav:after {
  content: "";
  display: table;
}
#article-nav:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  #article-nav {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.article-nav-link-wrap {
  backgroud-color: var(--color-wrap);
  color: #fff;
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 20px;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  height: 150px;
  min-height: 150px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.article-nav-link-wrap a,
.article-nav-link-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(80%);
}
.article-nav-link-wrap img {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.article-nav-link-wrap img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease-in-out forwards;
  -moz-animation: blur 0.8s ease-in-out forwards;
  -o-animation: blur 0.8s ease-in-out forwards;
  -ms-animation: blur 0.8s ease-in-out forwards;
  animation: blur 0.8s ease-in-out forwards;
}
.article-nav-link-wrap:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.article-nav-link-right {
  -webkit-box-align: end;
  -moz-box-align: end;
  -o-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-right: 20px;
}
.article-nav-caption {
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.85em;
  font-weight: bold;
}
.article-nav-title {
  font-size: 1.2em;
  line-height: 1.8em;
  margin-top: 0.8em;
  text-shadow: 0 0.2rem 0.3rem rgba(0,0,0,0.5);
}
.article-share-box {
  position: absolute;
  display: none;
  background: #fff;
  -webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.2);
  box-shadow: 1px 2px 10px rgba(0,0,0,0.2);
  border-radius: 3px;
  margin-left: -145px;
  overflow: hidden;
  z-index: 1;
}
.article-share-box.on {
  display: block;
}
.article-share-input {
  width: 100%;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: 14px Mulish, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  padding: 0 15px;
  color: var(--color-default);
  outline: none;
  border: 1px solid var(--color-border);
  border-radius: 3px 3px 0 0;
  height: 36px;
  line-height: 36px;
}
.article-share-links {
  zoom: 1;
  background: var(--color-background);
}
.article-share-links:before,
.article-share-links:after {
  content: "";
  display: table;
}
.article-share-links:after {
  clear: both;
}
.article-share-twitter,
.article-share-facebook,
.article-share-pinterest,
.article-share-linkedin {
  width: 50px;
  height: 36px;
  display: block;
  float: left;
  position: relative;
  color: #999;
}
.article-share-twitter:before,
.article-share-facebook:before,
.article-share-pinterest:before,
.article-share-linkedin:before {
  font-size: 20px;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  text-align: center;
}
.article-share-twitter:hover,
.article-share-facebook:hover,
.article-share-pinterest:hover,
.article-share-linkedin:hover {
  color: #fff;
}
.article-share-twitter:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f099";
}
.article-share-twitter:hover {
  background: var(--color-twitter);
  text-shadow: 0 1px var(--color-dark-twitter);
}
.article-share-facebook:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f09a";
}
.article-share-facebook:hover {
  background: var(--color-facebook);
  text-shadow: 0 1px var(--color-dark-facebook);
}
.article-share-pinterest:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0d2";
}
.article-share-pinterest:hover {
  background: var(--color-pinterest);
  text-shadow: 0 1px var(--color-dark-pinterest);
}
.article-share-linkedin:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0e1";
}
.article-share-linkedin:hover {
  background: var(--color-linkedin);
  text-shadow: 0 1px var(--color-dark-linkedin);
}
.article-gallery {
  background: #000;
  position: relative;
}
.article-gallery-photos {
  position: relative;
  overflow: hidden;
}
.article-gallery-img {
  display: none;
  max-width: 100%;
}
.article-gallery-img:first-child {
  display: block;
}
.article-gallery-img.loaded {
  position: absolute;
  display: block;
}
.article-gallery-img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.katex-display {
  overflow-x: auto;
  overflow-y: hidden;
}
.post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-wrap-left,
.post-wrap-right {
  width: 100%;
  height: 230px;
  margin-bottom: 40px;
  position: relative;
  border-radius: 5px;
  background: var(--color-wrap);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .post-wrap-left:hover,
  .post-wrap-right:hover {
    -webkit-transform: scale(1.015);
    -moz-transform: scale(1.015);
    -o-transform: scale(1.015);
    -ms-transform: scale(1.015);
    transform: scale(1.015);
  }
  .post-wrap-left:hover:before,
  .post-wrap-right:hover:before {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }
  .post-wrap-left:hover img,
  .post-wrap-right:hover img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  .post-wrap-left:before,
  .post-wrap-right:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
[data-theme="dark"] .post-wrap-left {
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
[data-theme="dark"] .post-wrap-right {
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
@media screen and (max-width: 767px) {
  .post-wrap-left {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 400px;
  }
}
.post-wrap-right {
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -o-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .post-wrap-right {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 400px;
  }
}
.post-info {
  height: 100%;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.post-meta {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin: 5px 0;
}
.post-meta span {
  font-size: 14px;
  color: #777;
  margin: 0 8px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.post-meta span:before {
  margin: 0 10px;
}
.post-meta .icon-calendar:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f073";
}
.post-meta .icon-pencil:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f5ad";
}
.post-meta .icon-clock:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f252";
}
.post-article {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 30px;
  font-size: 15px;
  color: #777;
}
.post-article a {
  color: var(--color-link);
}
.post-cover-left,
.post-cover-right {
  width: 40%;
  position: relative;
  overflow: hidden;
  min-height: 95px;
  background-color: var(--color-wrap);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .post-cover-left,
  .post-cover-right {
    width: 100%;
    height: 45%;
  }
}
.post-cover-left img,
.post-cover-right img {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.post-cover-left img.lazyloaded,
.post-cover-right img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease forwards;
  -moz-animation: blur 0.8s ease forwards;
  -o-animation: blur 0.8s ease forwards;
  -ms-animation: blur 0.8s ease forwards;
  animation: blur 0.8s ease forwards;
}
@media screen and (min-width: 768px) {
  .post-cover-left {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -webkit-clip-path: polygon(0 0, 92% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 92% 0%, 100% 100%, 0% 100%);
  }
}
@media screen and (max-width: 767px) {
  .post-cover-left {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}
@media screen and (min-width: 768px) {
  .post-cover-right {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 8% 100%);
  }
}
@media screen and (max-width: 767px) {
  .post-cover-right {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}
.post-title {
  padding: 20px 0;
  color: var(--color-link);
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0,0,0,0.2);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.post-sticky {
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 70px;
  height: 35px;
  background: var(--color-sticky);
  color: var(--red-1);
  font-weight: bold;
  font-size: 15px;
  z-index: 1;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-sticky:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f087";
  margin-right: 5px;
}
.post-wrap-left .post-sticky {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.post-wrap-right .post-sticky {
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#comments {
  background: var(--color-wrap);
  padding: 20px;
  border-radius: 5px;
  margin: 10px 0;
}
#comments a {
  color: var(--color-link);
}
.archives-outer-wrap {
  background: var(--color-wrap);
  border-radius: 5px;
  padding: 15px 0;
}
.archives-wrap {
  padding: 20px 50px;
}
.archives {
  zoom: 1;
  list-style: none;
}
.archives:before,
.archives:after {
  content: "";
  display: table;
}
.archives:after {
  clear: both;
}
.archive-year-wrap {
  margin-bottom: 2em;
  position: relative;
}
.archive-year-wrap:before {
  content: "";
  width: 100%;
  border-bottom: 1px solid var(--color-background);
  position: absolute;
  bottom: -15px;
  -webkit-box-sizing: unset;
  -moz-box-sizing: unset;
  box-sizing: unset;
}
.archive-year-wrap:after {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  background: var(--color-h2-after);
  width: 1em;
  height: 7px;
  bottom: -18px;
  left: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
}
.archive-year-wrap:hover:after {
  width: 3em;
}
.archive-year {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-default-font);
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 25px;
}
.archive-article {
  padding: 15px 0;
  padding-left: 25px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.archive-article:before {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  content: "";
  width: 6px;
  height: 15px;
  background: var(--color-h2-after);
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 11px;
  margin-left: -25px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.archive-article:hover:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.archive-article:hover .archive-article-title {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.archive-article-date-wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.archive-article-date-wrap a {
  text-decoration: none;
}
.dt-published {
  color: var(--color-grey);
  margin-left: 5px;
}
.archive-article-title {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: var(--red-0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  margin-left: 15px;
}
#page-nav {
  zoom: 1;
  margin: 50px auto;
  background: var(--color-wrap);
  border-radius: 5px;
  text-align: center;
  color: var(--color-grey);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#page-nav:before,
#page-nav:after {
  content: "";
  display: table;
}
#page-nav:after {
  clear: both;
}
#page-nav:hover {
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
#page-nav a,
#page-nav span {
  padding: 10px 15px;
}
#page-nav a {
  color: var(--color-grey);
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
#page-nav a:hover {
  background: var(--red-2);
  color: #fff;
}
#page-nav .prev {
  float: left;
  padding: 15px 15px;
}
#page-nav .next {
  float: right;
  padding: 15px 15px;
}
#page-nav .page-number {
  display: inline-block;
  border-radius: 5px;
  margin: 5px 5px;
}
@media screen and (max-width: 479px) {
  #page-nav .page-number {
    display: none;
  }
}
#page-nav .current {
  background: var(--red-1);
  color: #fff;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 12px rgba(255,78,106,0.55);
  box-shadow: 0 2px 12px rgba(255,78,106,0.55);
}
@media screen and (max-width: 479px) {
  #page-nav .current {
    display: inline-block;
  }
}
#page-nav .space {
  display: inline-block;
  margin: 5px 5px;
  color: var(--color-border);
}
@media screen and (max-width: 479px) {
  #page-nav .space {
    display: none;
  }
}
.tag-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 50px;
}
.tag-wrap a {
  text-decoration: none;
}
.tag-wrap .archives-tag-list-item {
  text-decoration: none;
  text-transform: uppercase;
  background: var(--red-5);
  border-radius: 20px;
  padding: 8px 15px;
  margin: 5px;
}
.tag-wrap .archives-tag-list-link {
  color: var(--red-1);
  font-size: 12px;
}
.tag-wrap .archives-tag-list-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  margin-right: 10px;
  content: "\f02b";
}
.category-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 50px;
}
.category-wrap a {
  text-decoration: none;
}
.category-wrap .archives-category-list-item {
  text-decoration: none;
  text-transform: uppercase;
  background: var(--red-6);
  border-radius: 20px;
  padding: 10px 20px;
  margin: 5px;
}
.category-wrap .archives-category-list-link {
  color: var(--red-1);
  font-size: 14px;
}
.category-wrap .archives-category-list-link:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  margin-right: 10px;
  font-weight: 900;
  content: "\f02e";
}
#footer {
  background: -webkit-linear-gradient(bottom, var(--color-footer-background) 50%, transparent);
  background: -moz-linear-gradient(bottom, var(--color-footer-background) 50%, transparent);
  background: -o-linear-gradient(bottom, var(--color-footer-background) 50%, transparent);
  background: -ms-linear-gradient(bottom, var(--color-footer-background) 50%, transparent);
  background: linear-gradient(to top, var(--color-footer-background) 50%, transparent);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: auto;
  padding: 40px 0 20px 0;
  color: var(--color-grey);
}
#footer:hover .footer-line {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
#footer a {
  color: var(--color-link);
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
.footer-line {
  margin-top: 20px;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  width: 200%;
  height: 10px;
  background-image: -webkit-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -moz-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -o-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: -ms-linear-gradient(right, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-image: linear-gradient(to left, rgba(255,0,0,0.75) 50%, transparent 0%);
  background-size: 100px 10px;
  background-repeat: repeat-x;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-bottom: 40px;
  -webkit-animation: transform-all 3s infinite;
  -moz-animation: transform-all 3s infinite;
  -o-animation: transform-all 3s infinite;
  -ms-animation: transform-all 3s infinite;
  animation: transform-all 3s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  filter: drop-shadow(0px 0px 2px #f00);
}
#footer-info {
  line-height: 1.8em;
  font-size: 0.85em;
  width: 100%;
  margin: 0;
}
#footer-info div {
  margin: 5px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.icon-copyright:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f1f9";
}
.icon-brush {
  margin: 0 5px;
}
.icon-brush:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f1fc";
}
.icon-coffee {
  margin: 0 5px;
}
.icon-coffee:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0f4";
}
.icon-eye {
  margin: 0 5px;
}
.icon-eye:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f06e";
}
.icon-user {
  margin: 0 5px;
}
.icon-user:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f007";
}
.footer-info-sep {
  width: 25px;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  background: url("/images/taichi.png") no-repeat center/80%;
  -webkit-animation: rotate-all 3s infinite;
  -moz-animation: rotate-all 3s infinite;
  -o-animation: rotate-all 3s infinite;
  -ms-animation: rotate-all 3s infinite;
  animation: rotate-all 3s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-moz-keyframes rotate-all {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-all {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate-all {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-all {
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes transform-all {
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@-webkit-keyframes transform-all {
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@-o-keyframes transform-all {
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes transform-all {
  100% {
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@media screen and (min-width: 960px) {
  #mobile-nav {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  #mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--color-mobile-nav-background);
    z-index: 1001;
    -webkit-transition: left 0.2s ease;
    -moz-transition: left 0.2s ease;
    -o-transition: left 0.2s ease;
    -ms-transition: left 0.2s ease;
    transition: left 0.2s ease;
  }
  .mobile-nav-on #mobile-nav {
    left: 0;
  }
}
#mobile-nav .sidebar-wrap {
  background: var(--color-mobile-nav-background);
}
.article-entry pre,
.article-entry .highlight {
  background: var(--highlight-background);
  padding: 0 20px 15px;
  border-radius: 10px;
  color: var(--highlight-foreground);
  line-height: 25.2px;
}
.article-entry .highlight .gutter pre,
.article-entry .gist .gist-file .gist-data .line-numbers {
  color: #666;
  font-size: 0.85em;
}
.article-entry .mermaid {
  background: transparent;
}
.article-entry figure {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-entry figure:hover {
  -webkit-box-shadow: 0 0.3125rem 0.625rem -0.125rem var(--highlight-scrollbar);
  box-shadow: 0 0.3125rem 0.625rem -0.125rem var(--highlight-scrollbar);
}
.article-entry figure ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
}
.article-entry figure ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
.article-entry figure ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--highlight-scrollbar);
}
.article-entry pre,
.article-entry code,
.article-entry kbd {
  font-family: "Ubuntu Mono";
  font-size: 95%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.article-entry code,
.article-entry kbd {
  background: var(--color-code-background);
  padding: 1px 5px;
  border-radius: 5px;
  color: var(--color-link);
}
.article-entry pre {
  border-radius: 0;
}
.article-entry pre code {
  background: none;
  text-shadow: none;
  color: var(--highlight-foreground);
  padding: 0;
}
.article-entry .highlight pre {
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.article-entry .highlight table {
  margin: 0;
  table-layout: fixed;
}
.article-entry .highlight td {
  border: none;
  padding: 0;
}
.article-entry .highlight figcaption {
  zoom: 1;
  font-size: 0.85em;
  color: var(--highlight-comment);
  line-height: 1em;
  margin-bottom: 1em;
}
.article-entry .highlight figcaption:before,
.article-entry .highlight figcaption:after {
  content: "";
  display: table;
}
.article-entry .highlight figcaption:after {
  clear: both;
}
.article-entry .highlight figcaption a {
  float: right;
}
.article-entry .highlight .gutter {
  width: 30px;
}
.article-entry .highlight .gutter pre {
  text-align: right;
  padding-right: 20px;
}
.article-entry .highlight .line {
  height: 25.2px;
}
.article-entry .highlight .line.marked {
  background: var(--highlight-selection);
}
.article-entry .gist {
  border-style: solid;
  border-color: var(--color-border);
  border-width: 1px 0;
  background: var(--highlight-background);
  padding: 15px 20px 15px 0;
}
.article-entry .gist .gist-file {
  border: none;
  font-family: "Source Code Pro", Consolas, Monaco, Menlo, Consolas, monospace;
  margin: 0;
}
.article-entry .gist .gist-file .gist-data {
  background: none;
  border: none;
}
.article-entry .gist .gist-file .gist-data .line-numbers {
  background: none;
  border: none;
  padding: 0 20px 0 0;
}
.article-entry .gist .gist-file .gist-data .line-data {
  padding: 0 !important;
}
.article-entry .gist .gist-file .highlight {
  margin: 0;
  padding: 0;
  border: none;
}
.article-entry .gist .gist-file .gist-meta {
  background: var(--highlight-background);
  color: var(--highlight-comment);
  font: 0.85em Mulish, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-shadow: 0 0;
  padding: 0;
  margin-top: 1em;
  margin-left: 20px;
}
.article-entry .gist .gist-file .gist-meta a {
  color: var(--color-link);
  font-weight: normal;
}
.article-entry .gist .gist-file .gist-meta a:hover {
  text-decoration: underline;
}
pre .comment,
pre .title {
  color: var(--highlight-comment);
}
pre .variable,
pre .attribute,
pre .tag,
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: var(--highlight-red);
}
pre .number,
pre .preprocessor,
pre .built_in,
pre .literal,
pre .params,
pre .constant {
  color: var(--highlight-orange);
}
pre .class,
pre .ruby .class .title,
pre .css .rules .attribute {
  color: var(--highlight-green);
}
pre .string,
pre .value,
pre .inheritance,
pre .header,
pre .ruby .symbol,
pre .xml .cdata {
  color: var(--highlight-green);
}
pre .css .hexcolor {
  color: var(--highlight-aqua);
}
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: var(--highlight-blue);
}
pre .keyword,
pre .javascript .function {
  color: var(--highlight-purple);
}
.icon-copy:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0c5";
}
.icon-chevron-down:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f078";
}
.code-area {
  width: 100%;
  overflow: auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.code-figcaption {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 40px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background: -webkit-linear-gradient(left, transparent 0%, var(--highlight-nav) 50%, transparent 100%);
  background: -moz-linear-gradient(left, transparent 0%, var(--highlight-nav) 50%, transparent 100%);
  background: -o-linear-gradient(left, transparent 0%, var(--highlight-nav) 50%, transparent 100%);
  background: -ms-linear-gradient(left, transparent 0%, var(--highlight-nav) 50%, transparent 100%);
  background: linear-gradient(to right, transparent 0%, var(--highlight-nav) 50%, transparent 100%);
  margin-bottom: 10px;
}
.code-decoration {
  width: 70px;
}
.code-decoration:after {
  content: " ";
  position: absolute;
  border-radius: 50%;
  background: #ff5f56;
  width: 12px;
  height: 12px;
  -webkit-box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
  -webkit-box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
  box-shadow: 20px 0 #ffbd2e, 40px 0 #27c93f;
}
.code-left-wrap,
.code-right-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.code-copy {
  margin: 5px;
  z-index: 1;
  filter: invert(50%);
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
  color: #fff;
}
.code-lang {
  margin: 5px;
  line-height: 0;
  font-weight: bold;
  z-index: 1;
  filter: invert(50%);
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
}
.code-expand {
  margin: 5px;
  filter: invert(50%);
  z-index: 1;
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  color: #fff;
}
.code-closed .code-expand {
  -webkit-transform: rotate(-180deg) !important;
  -moz-transform: rotate(-180deg) !important;
  -o-transform: rotate(-180deg) !important;
  -ms-transform: rotate(-180deg) !important;
  transform: rotate(-180deg) !important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.code-closed pre {
  display: none;
}
.tagcloud a {
  margin-right: 5px;
  margin-top: 5px;
  display: inline-block;
}
[data-theme="dark"] .widget-wrap {
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
.widget-wrap {
  margin: 50px 0;
  background: var(--color-wrap);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget-wrap:hover {
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -o-transform: scale(1.015);
  -ms-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
.widget-title {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-grey);
  line-height: 1em;
  font-weight: bold;
  padding: 20px 20px 10px;
}
.widget {
  color: var(--color-sidebar-text);
  padding: 10px 20px;
  border-radius: 3px;
}
.widget a,
.widget span {
  color: var(--color-link);
  text-decoration: none;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget a:hover,
.widget span:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  color: var(--red-0);
}
.widget span {
  margin-left: 5px;
}
.widget ul ul,
.widget ol ul,
.widget dl ul,
.widget ul ol,
.widget ol ol,
.widget dl ol,
.widget ul dl,
.widget ol dl,
.widget dl dl {
  margin-left: 15px;
  list-style: none;
}
.widget li {
  margin: 10px 0;
}
.widget li:before {
  content: "";
  width: 5px;
  height: 10px;
  background: var(--color-h2-after);
  display: inline-block;
  vertical-align: middle;
  margin-right: 11px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget li:hover:before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.friend-wrap {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.friend-item-wrap {
  width: 48%;
  height: 100px;
  background: var(--color-wrap);
  -webkit-box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
  box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin: 1%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.friend-item-wrap:hover {
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -o-transform: scale(1.015);
  -ms-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-box-shadow: 0 0 10px 3px rgba(255,0,0,0.1);
  box-shadow: 0 0 10px 3px rgba(255,0,0,0.1);
}
@media screen and (max-width: 767px) {
  .friend-item-wrap {
    width: 98%;
  }
}
.friend-item-wrap a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.friend-icon-wrap {
  width: 100px;
  height: 100%;
  pointer-events: none;
}
.friend-icon-wrap .friend-icon {
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.friend-icon-wrap .friend-icon img {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  position: absolute;
  left: 15%;
  top: 15%;
  object-fit: cover;
  border-radius: 50%;
  width: 70%;
  height: 70%;
}
.friend-icon-wrap .friend-icon img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease forwards;
  -moz-animation: blur 0.8s ease forwards;
  -o-animation: blur 0.8s ease forwards;
  -ms-animation: blur 0.8s ease forwards;
  animation: blur 0.8s ease forwards;
}
.friend-info-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 8px;
}
.friend-info-wrap div {
  padding: 10px 0;
}
.friend-info-wrap .friend-name {
  color: var(--red-2);
  font-size: 18px;
  font-weight: bold;
}
.friend-info-wrap .friend-desc {
  color: var(--color-grey);
  font-size: 14px;
}
.popup {
  display: none;
  position: fixed;
  top: 10%;
  left: 50%;
  width: 700px;
  height: 80%;
  margin-left: -350px;
  padding: 3px 0 0 10px;
  background: var(--color-wrap);
  color: var(--color-grey);
  z-index: 9999;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .popup {
    padding: 5px;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.popoverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2080;
  background-color: rgba(0,0,0,0.3);
}
.reimu-popup {
  overflow: hidden;
  padding: 0;
}
.reimu-popup .popup-btn-close {
  position: absolute;
  right: 15px;
  color: var(--red-1);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: url("/images/cursor/reimu-cursor-pointer.cur"), pointer;
  padding-left: 15px;
  top: 10px;
}
.reimu-popup .popup-btn-close:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f057";
}
.reimu-search {
  padding: 10px 15px 5px;
  max-height: 50px;
  border-bottom: 1px solid #ccc;
  background: #f5f5f5;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.reimu-search-input-icon {
  display: inline-block;
  width: 20px;
  font-size: 18px;
}
.reimu-search-input-icon:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f002";
}
.reimu-search-input {
  display: inline-block;
  width: calc(90% - 20px);
}
.reimu-search-input input {
  padding: 5px 0;
  width: 100%;
  outline: none;
  border: none;
  background: transparent;
}
.reimu-powered {
  float: right;
  cursor: url("/images/cursor/reimu-cursor-default.cur"), auto !important;
}
.reimu-powered img {
  display: inline-block;
  height: 18px;
  vertical-align: middle;
}
.reimu-results {
  position: relative;
  overflow: auto;
  padding: 10px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: calc(100% - 50px);
}
.reimu-results hr {
  margin: 10px 0;
}
.reimu-results em {
  font-weight: bold;
  margin: 0;
  padding: 0 2px;
  color: var(--red-1);
}
#reimu-hits {
  margin-top: 10px;
  margin-left: 10px;
}
.reimu-hit-item-link {
  display: block;
  text-decoration: none;
  color: var(--red-2);
  margin-left: 15px;
  padding: 12px 0;
}
.reimu-hit-item-link:before {
  content: "";
  width: 6px;
  height: 15px;
  background: var(--color-h2-after);
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 11px;
  margin-left: -25px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.reimu-hit-item-link:hover:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.reimu-pagination {
  margin: 10px auto;
  background: var(--color-wrap);
  border-radius: 5px;
  text-align: center;
  color: var(--color-grey);
  overflow: hidden;
}
.reimu-pagination a {
  padding: 10px 15px;
  color: var(--color-grey);
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.reimu-pagination a:hover {
  background: var(--red-2);
  color: #fff;
}
.reimu-pagination .pagination-item {
  display: inline-block;
}
.reimu-pagination .page-number {
  display: inline-block;
  border-radius: 5px;
  margin: 5px 5px;
}
.reimu-pagination .current .page-number {
  color: #fff;
  background: var(--red-1);
  font-weight: bold;
  -webkit-box-shadow: 0 2px 6px rgba(255,78,106,0.55);
  box-shadow: 0 2px 6px rgba(255,78,106,0.55);
}
.reimu-pagination .disabled-item {
  display: none;
}
.ais-pagination--item__previous a:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f104";
}
.ais-pagination--item__next a:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f105";
}
@media screen and (max-width: 959px) {
  #sidebar {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  #sidebar {
    display: inline;
    float: left;
    width: 23.333333333333332%;
    margin: 0 0.833333333333333%;
    height: inherit;
  }
}
[data-theme="dark"] .sidebar-wrap {
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
[data-theme="dark"] #mobile-nav .sidebar-wrap {
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}
.sidebar-wrap {
  width: 100%;
  border-radius: 5px;
  background: var(--color-wrap);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-wrap .hidden {
  display: none;
}
.sidebar-wrap.wrap-sticky {
  position: sticky;
  top: 5px;
}
.sidebar-wrap:hover {
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -o-transform: scale(1.015);
  -ms-transform: scale(1.015);
  transform: scale(1.015);
  -webkit-box-shadow: 0 0 10px 3px var(--color-hover-shadow);
  box-shadow: 0 0 10px 3px var(--color-hover-shadow);
}
#mobile-nav .sidebar-wrap:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}
.sidebar-author {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.sidebar-author img {
  display: block;
  min-width: 100px;
  min-height: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  object-fit: cover;
  margin: 20px;
  -webkit-box-shadow: 0 0 15px 5px rgba(255,0,0,0.2);
  box-shadow: 0 0 15px 5px rgba(255,0,0,0.2);
}
.sidebar-author img.lazyloaded {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-animation: blur 0.8s ease forwards;
  -moz-animation: blur 0.8s ease forwards;
  -o-animation: blur 0.8s ease forwards;
  -ms-animation: blur 0.8s ease forwards;
  animation: blur 0.8s ease forwards;
}
.sidebar-author .sidebar-author-name {
  font-weight: bold;
  font-size: 20px;
  color: #f77;
  margin: 10px;
}
.sidebar-author .sidebar-description {
  color: #777;
}
.sidebar-state .sidebar-state-article,
.sidebar-state .sidebar-state-category,
.sidebar-state .sidebar-state-tag {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 20px;
}
.sidebar-state .sidebar-state-article div,
.sidebar-state .sidebar-state-category div,
.sidebar-state .sidebar-state-tag div {
  margin: 5px 0;
}
.sidebar-state {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 25px 0;
  color: var(--red-0);
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.sidebar-state:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-state .sidebar-state-article {
  border-right: 1px solid rgba(255,0,0,0.5);
}
.sidebar-state .sidebar-state-tag {
  border-left: 1px solid rgba(255,0,0,0.5);
}
.sidebar-state .sidebar-state-number {
  font-weight: bold;
  font-size: 20px;
}
.sidebar-social {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 70%;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.sidebar-social div a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.icon-github,
.icon-google,
.icon-facebook,
.icon-twitter,
.icon-instagram,
.icon-linkedin,
.icon-pinterest,
.icon-youtube,
.icon-vimeo,
.icon-flickr,
.icon-dribbble,
.icon-behance,
.icon-bilibili,
.icon-weibo,
.icon-zhihu,
.icon-douban,
.icon-reddit,
.icon-tumblr,
.icon-medium,
.icon-deviantart,
.icon-stackoverflow,
.icon-keybase,
.icon-telegram,
.icon-discord,
.icon-steam {
  position: relative;
  font-size: 20px;
  width: 36px;
  height: 25px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
}
.icon-github {
  color: #191717;
}
.icon-github:before {
  content: "\f09b";
}
.icon-google {
  color: #4285f4;
}
.icon-google:before {
  content: "\f0d5";
}
.icon-facebook {
  color: #3b5998;
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-twitter {
  color: #191717;
}
.icon-twitter:before {
  content: "\e61b";
}
.icon-instagram {
  color: #e1306c;
}
.icon-instagram:before {
  content: "\f16d";
}
.icon-linkedin {
  color: #0e76a8;
}
.icon-linkedin:before {
  content: "\f08c";
}
.icon-pinterest {
  color: #bd081c;
}
.icon-pinterest:before {
  content: "\f0d2";
}
.icon-youtube {
  color: #f00;
}
.icon-youtube:before {
  content: "\f167";
}
.icon-vimeo {
  color: #1ab7ea;
}
.icon-vimeo:before {
  content: "\f194";
}
.icon-flickr {
  color: #ff0084;
}
.icon-flickr:before {
  content: "\f16e";
}
.icon-dribbble {
  color: #ea4c89;
}
.icon-dribbble:before {
  content: "\f17d";
}
.icon-behance {
  color: #1769ff;
}
.icon-behance:before {
  content: "\f1b4";
}
.icon-bilibili {
  color: #00a1d6;
}
.icon-bilibili:before {
  content: "\e3d9";
}
.icon-weibo {
  color: #e6162d;
}
.icon-weibo:before {
  content: "\f18a";
}
.icon-zhihu {
  color: #0084ff;
}
.icon-zhihu:before {
  content: "\f63f";
}
.icon-douban {
  color: #072;
}
.icon-douban:before {
  content: "\f264";
}
.icon-reddit {
  color: #ff4500;
}
.icon-reddit:before {
  content: "\f1a1";
}
.icon-tumblr {
  color: #35465c;
}
.icon-tumblr:before {
  content: "\f173";
}
.icon-medium {
  color: #00ab6c;
}
.icon-medium:before {
  content: "\f23a";
}
.icon-deviantart {
  color: #05cc47;
}
.icon-deviantart:before {
  content: "\f1bd";
}
.icon-stackoverflow {
  color: #f48024;
}
.icon-stackoverflow:before {
  content: "\f16c";
}
.icon-keybase {
  color: #33a0ff;
}
.icon-keybase:before {
  content: "\f4f5";
}
.icon-telegram {
  color: #08c;
}
.icon-telegram:before {
  content: "\f2c6";
}
.icon-discord {
  color: #7289da;
}
.icon-discord:before {
  content: "\f392";
}
.icon-steam {
  color: #171a21;
}
.icon-steam:before {
  content: "\f1b6";
}
.sidebar-menu-icon,
.sidebar-menu-link {
  color: var(--red-0);
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  text-decoration: none;
  text-shadow: 0 1px rgba(0,0,0,0.2);
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: block;
  padding: 10px 15px;
}
.sidebar-menu {
  margin: 20px 0;
  width: 100%;
}
.sidebar-menu-link-wrap {
  margin: 8px 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 10px rgba(255,0,0,0.3) double;
  border-radius: 10px;
  -webkit-transition: border 0.5s ease;
  -moz-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  -ms-transition: border 0.5s ease;
  transition: border 0.5s ease;
}
.sidebar-menu-link-wrap:hover {
  border: 10px var(--color-h2-after) double;
}
.sidebar-menu-link-wrap:hover .sidebar-menu-icon {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.sidebar-menu-icon {
  background: url("/images/taichi.png") no-repeat center/80%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 1s ease;
  -moz-transition: -moz-transform 1s ease;
  -o-transition: -o-transform 1s ease;
  -ms-transition: -ms-transform 1s ease;
  transition: transform 1s ease;
}
.sidebar-menu-link-dummy {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sidebar-menu-link {
  pointer-events: none;
}
.link-active {
  background: var(--red-0);
  border: 10px var(--color-wrap) double;
  -webkit-box-shadow: 0 0 10px 3px rgba(255,0,0,0.3);
  box-shadow: 0 0 10px 3px rgba(255,0,0,0.3);
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-transition: border opacity 0.5s ease;
  -moz-transition: border opacity 0.5s ease;
  -o-transition: border opacity 0.5s ease;
  -ms-transition: border opacity 0.5s ease;
  transition: border opacity 0.5s ease;
}
.link-active:hover {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.link-active .sidebar-menu-link {
  color: #fff;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.link-active .sidebar-menu-icon {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  background: url("/images/taichi-fill.png") no-repeat center/80%;
}
.sidebar-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-wrap);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  -webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.2);
  box-shadow: 1px 2px 10px rgba(0,0,0,0.2);
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-top img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: rotate-all 3s infinite;
  -moz-animation: rotate-all 3s infinite;
  -o-animation: rotate-all 3s infinite;
  -ms-animation: rotate-all 3s infinite;
  animation: rotate-all 3s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  -ms-animation-timing-function: linear;
  animation-timing-function: linear;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-top .arrow-up {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.sidebar-top .arrow-up:before {
  width: 50px;
  height: 50px;
  position: absolute;
  content: "\f062";
  color: var(--red-1);
  font-size: 20px;
  top: 0;
  text-align: center;
  line-height: 50px;
}
.sidebar-top:hover img {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.sidebar-top:hover .arrow-up {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-toc {
  width: 100%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar-toc-wrapper {
  max-height: calc(100vh - 120px);
  overflow: auto;
}
.sidebar-toc-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.sidebar-toc-wrapper {
  color: var(--color-link);
}
.sidebar-toc-wrapper a,
.sidebar-toc-wrapper span {
  color: var(--color-link);
  text-decoration: none;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-toc-wrapper a:hover,
.sidebar-toc-wrapper span:hover {
  color: var(--red-0);
}
.sidebar-toc-wrapper ol {
  margin-left: 15px;
  list-style: none;
}
.sidebar-toc-wrapper li {
  margin: 10px 0;
}
.sidebar-toc-wrapper li:before {
  content: "";
  width: 5px;
  height: 10px;
  background: var(--color-h2-after);
  display: inline-block;
  vertical-align: middle;
  margin-right: 11px;
  -webkit-box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  box-shadow: 0 2px 12px var(--color-h2-after-shadow);
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-toc-wrapper li:hover:before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-toc-wrapper .toc-level-1 {
  list-style: none;
}
.sidebar-toc-wrapper .toc-level-1:before {
  display: none;
}
.sidebar-toc-wrapper .toc-level-1 >a {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.sidebar-toc-wrapper .toc-child {
  display: none;
}
.sidebar-toc-wrapper .active>.toc-child {
  display: block;
}
.sidebar-toc-wrapper .current>.toc-child {
  display: block;
}
.sidebar-toc-wrapper .current>.toc-child >.toc-item {
  display: block;
}
.sidebar-toc-wrapper .active>a {
  color: var(--red-0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-toc-wrapper .active>a>span {
  color: var(--red-0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-toc-wrapper .current>a {
  color: var(--red-0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.sidebar-toc-wrapper .current>a>span {
  color: var(--red-0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.toc-title {
  letter-spacing: 2px;
  color: var(--color-grey);
  line-height: 1em;
  font-weight: bold;
  padding: 10px 0;
}
.toc-item {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar-btn-wrapper .sidebar-toc-btn,
.sidebar-btn-wrapper .sidebar-common-btn {
  width: 40px;
  height: 40px;
  background: var(--red-3);
  color: #fff;
  font-weight: bold;
  -webkit-box-shadow: 0 2px 12px rgba(255,78,106,0.55);
  box-shadow: 0 2px 12px rgba(255,78,106,0.55);
  border-radius: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
[data-theme="dark"] .sidebar-btn-wrapper .sidebar-toc-btn,
[data-theme="dark"] .sidebar-btn-wrapper .sidebar-common-btn {
  filter: brightness(0.8);
}
.sidebar-btn-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.sidebar-btn-wrapper .current {
  background: var(--red-1);
}
.sidebar-btn-wrapper .sidebar-toc-btn:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\f0e8";
}
.sidebar-btn-wrapper .sidebar-common-btn:before {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
  content: "\e3af";
}
.sidebar-common-sidebar {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.sidebar-toc-sidebar {
  width: 100%;
}
[data-theme="dark"] ::-webkit-scrollbar,
[data-theme="dark"] ::-webkit-scrollbar-track {
  background-color: #616161;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #f5f5f5;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--red-3);
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: var(--red-1);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}
