@charset "UTF-8";
body {
  --text-color-darker: #464646;
  --text-color-normal: #5f5f5f;
  --text-color-lighter-1: #999999;
  --text-color-lighter-2: #bbbbbb;
  --text-color-error: #e53935;
  --bg-color-darker-2: #DDDDDDAA;
  --bg-color-darker-1: #EEEEEEAA;
  --bg-color-darker-1-soild: #f4f4f4;
  --bg-color-normal: #FFFFFFAA;
  --bg-color-lighter: #f6f6f6;
  --bg-color-contrast: white;
  --border-color-darker-3: #5a5a5a;
  --border-color-darker-2: #666666;
  --border-color-darker-1: #d6d6d6;
  --border-color-normal: #f7f7f9;
  --border-color-lighter: #f2f2f2;
  --link-color: #5a5a5a;
  --link-hover-color: #4786d6;
  --navigation-bg-color: white;
  --sidebar-author-color: #424242;
  --sidebar-desc-color: #565654;
  --pagination-bg-color: #f5f5f5;
  --pagination-hover-color: #F7FAFC;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

body {
  color: rgba(0, 0, 0, 0.6);
  font-family: "LXGW WenKai Screen", "PingHei", "PingFang SC", Helvetica Neue, "Work Sans", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
  font-size: 15px;
  width: 100%;
  background-color: #fff;
  padding: 0;
  margin: 0;
  line-height: 1.6em;
}

a {
  text-decoration: none;
}

a:link, a:visited, .clickable {
  opacity: 1;
  transition: all 0.15s linear;
  color: #424242;
}

.clickable, a {
  color: var(--link-color);
}

.clickable:hover, a:hover {
  color: var(--link-hover-color) !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background: var(--text-color-lighter-1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-color-lighter-2);
}

::-webkit-scrollbar-thumb:active {
  background: var(--text-color-normal);
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: var(--bg-color-darker-1);
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 4;
  border-right: 1px solid var(--border-color-lighter);
  text-align: center;
}
.sidebar .author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sidebar .author-info h3 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}
.sidebar .author-info h3 a {
  color: var(--sidebar-author-color);
}
.sidebar .author-info h3 a:hover {
  color: var(--sidebar-author-color);
}
.sidebar .author-info .description {
  font-size: 14px;
  color: var(--sidebar-desc-color);
  line-height: 1em;
}
.sidebar .author-info .social-links {
  list-style: none;
  padding: 0;
  font-size: 17px;
  text-align: center;
  margin: 0.75em 0;
}
.sidebar .author-info .social-links li {
  display: inline;
  padding: 0 6px;
  line-height: 0;
}
.sidebar .toc-container {
  height: 30%;
}

.navigation {
  width: 70%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3;
  background-color: var(--navigation-bg-color);
  height: 60px;
  border-bottom: 1px solid var(--border-color-lighter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation .navigation-menu {
  list-style: none;
  padding: 0 2em;
  float: left;
  font-size: 15px;
}
.navigation .navigation-menu li {
  position: relative;
  display: initial;
  padding-right: 20px;
  text-wrap: nowrap;
}
.navigation .navigation-menu a.current {
  font-weight: bold;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--border-color-darker-3);
}
.navigation .navigation-utility {
  padding: 0 30px;
}
.navigation .navigation-utility .nav-button {
  padding: 0.35em;
}

.footer {
  clear: both;
  text-align: center;
  font-size: 12.5px;
  margin: 0 auto;
  bottom: 0;
  position: fixed;
  width: 30%;
  padding-bottom: 20px;
  z-index: 5;
}
.footer a, .footer a:link {
  color: var(--link-color);
}
.footer a:hover {
  color: var(--link-hover-color);
}
.footer .moe-icp img {
  height: 17px;
  position: relative;
  top: 4px;
}

.paginator {
  display: flex;
  column-gap: 0.5em;
  align-items: center;
  justify-content: end;
  padding: 2em 0;
}
.paginator .page-number, .paginator .extend {
  padding: 0.15em 0.5em;
  text-align: center;
  background: var(--pagination-bg-color);
}
.paginator .page-number:hover, .paginator .extend:hover {
  background: var(--pagination-hover-color);
}
.paginator .page-number.current {
  background: var(--border-color-darker-3);
  color: var(--bg-color-contrast);
}

.main {
  height: auto;
  margin-left: 30%;
  margin-top: 60px;
  background-color: var(--bg-color-normal);
  padding: 1em 2em 2em 2em;
}

.post-container {
  position: relative;
}

.post-title {
  letter-spacing: 1px;
  line-height: 1;
  font-weight: 600;
  color: #464646;
  font-size: 22px;
  margin: 0;
}
.post-title a:hover {
  color: var(--text-color-darker);
  text-decoration: underline;
}
.post-title h3 {
  margin: 0.5em 0 0.25em 0;
}

.post-meta {
  max-width: 100%;
  color: var(--text-color-lighter-2);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  margin-top: 1.5em;
}
.post-meta .meta-entry a {
  text-decoration: none;
  color: var(--text-color-lighter-2);
  padding-right: 0.25em;
}
.post-meta .meta-entry a:hover {
  color: var(--link-hover-color);
}

.post-info {
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--border-color-lighter);
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
.pagination .page-button {
  display: flex;
  align-items: center;
  padding: 0.25em;
  line-height: 1.666em;
  position: relative;
  color: var(--text-color-lighter-1);
  background: var(--bg-color-contrast);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.pagination .page-button .button-icon {
  font-size: 15px;
}
.pagination .page-button .button-icon-prev {
  margin-right: 0.2em;
}
.pagination .page-button .button-icon-next {
  margin-left: 0.2em;
}

.post-list > .post-item {
  padding: 1.5em 0 1em 0;
  border-bottom: 1px solid var(--border-color-lighter);
}
.post-list > .post-item .post-summary {
  word-wrap: break-word;
  word-break: break-all;
}
.post-list > .post-item .post-summary p {
  margin: 0.6em 0 0.25em 0;
}
.post-list > .post-item .post-meta {
  margin-top: 0;
}

.post-list .list-title {
  font-size: 24px;
  color: var(--text-color-darker);
  font-weight: 600;
  line-height: 2.2em;
}
.post-list .list-item {
  display: flex;
  padding-bottom: 5px;
  justify-content: space-between;
}
.post-list .list-item a {
  color: var(--text-color-normal);
}
.post-list .list-item a:hover {
  color: var(--link-hover-color);
}
.post-list .list-item .post-time {
  color: var(--text-color-lighter-2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideTopIn {
  from {
    opacity: 0;
    transform: translateY(-2em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeftIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.navigation-menu {
  animation: slideTopIn 1s;
}

.sidebar {
  animation: slideLeftIn 1s;
}

.footer {
  animation: slideLeftIn 1s;
}

.post-list > * {
  animation: slideTopIn 0.5s;
  opacity: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.post-list > *:nth-child(1) {
  animation-delay: calc(0.2s * 1);
}

.post-list > *:nth-child(2) {
  animation-delay: calc(0.2s * 2);
}

.post-list > *:nth-child(3) {
  animation-delay: calc(0.2s * 3);
}

.post-list > *:nth-child(4) {
  animation-delay: calc(0.2s * 4);
}

.post-list > *:nth-child(5) {
  animation-delay: calc(0.2s * 5);
}

.post-list > *:nth-child(6) {
  animation-delay: calc(0.2s * 6);
}

.post-list > *:nth-child(7) {
  animation-delay: calc(0.2s * 7);
}

.post-list > *:nth-child(8) {
  animation-delay: calc(0.2s * 8);
}

.post-list > *:nth-child(9) {
  animation-delay: calc(0.2s * 9);
}

.post-list > *:nth-child(10) {
  animation-delay: calc(0.2s * 10);
}

.post-list > *:nth-child(11) {
  animation-delay: calc(0.2s * 11);
}

.post-list > *:nth-child(12) {
  animation-delay: calc(0.2s * 12);
}

.post-list > *:nth-child(13) {
  animation-delay: calc(0.2s * 13);
}

.post-list > *:nth-child(14) {
  animation-delay: calc(0.2s * 14);
}

.post-list > *:nth-child(15) {
  animation-delay: calc(0.2s * 15);
}

.post-list > *:nth-child(16) {
  animation-delay: calc(0.2s * 16);
}

.post-list > *:nth-child(17) {
  animation-delay: calc(0.2s * 17);
}

.post-list > *:nth-child(18) {
  animation-delay: calc(0.2s * 18);
}

.post-list > *:nth-child(19) {
  animation-delay: calc(0.2s * 19);
}

.post-list > *:nth-child(20) {
  animation-delay: calc(0.2s * 20);
}

.post-list > *:nth-child(21) {
  animation-delay: calc(0.2s * 21);
}

.post-list > *:nth-child(22) {
  animation-delay: calc(0.2s * 22);
}

.post-list > *:nth-child(23) {
  animation-delay: calc(0.2s * 23);
}

.post-list > *:nth-child(24) {
  animation-delay: calc(0.2s * 24);
}

.post-list > *:nth-child(25) {
  animation-delay: calc(0.2s * 25);
}

.post-list > *:nth-child(26) {
  animation-delay: calc(0.2s * 26);
}

.post-list > *:nth-child(27) {
  animation-delay: calc(0.2s * 27);
}

.post-list > *:nth-child(28) {
  animation-delay: calc(0.2s * 28);
}

.post-list > *:nth-child(29) {
  animation-delay: calc(0.2s * 29);
}

.post-list > *:nth-child(30) {
  animation-delay: calc(0.2s * 30);
}

.post-list > *:nth-child(31) {
  animation-delay: calc(0.2s * 31);
}

.post-list > *:nth-child(32) {
  animation-delay: calc(0.2s * 32);
}

.post-list > *:nth-child(33) {
  animation-delay: calc(0.2s * 33);
}

.post-list > *:nth-child(34) {
  animation-delay: calc(0.2s * 34);
}

.post-list > *:nth-child(35) {
  animation-delay: calc(0.2s * 35);
}

.post-list > *:nth-child(36) {
  animation-delay: calc(0.2s * 36);
}

.post-list > *:nth-child(37) {
  animation-delay: calc(0.2s * 37);
}

.post-list > *:nth-child(38) {
  animation-delay: calc(0.2s * 38);
}

.post-list > *:nth-child(39) {
  animation-delay: calc(0.2s * 39);
}

.post-list > *:nth-child(40) {
  animation-delay: calc(0.2s * 40);
}

.post-list > *:nth-child(41) {
  animation-delay: calc(0.2s * 41);
}

.post-list > *:nth-child(42) {
  animation-delay: calc(0.2s * 42);
}

.post-list > *:nth-child(43) {
  animation-delay: calc(0.2s * 43);
}

.post-list > *:nth-child(44) {
  animation-delay: calc(0.2s * 44);
}

.post-list > *:nth-child(45) {
  animation-delay: calc(0.2s * 45);
}

.post-list > *:nth-child(46) {
  animation-delay: calc(0.2s * 46);
}

.post-list > *:nth-child(47) {
  animation-delay: calc(0.2s * 47);
}

.post-list > *:nth-child(48) {
  animation-delay: calc(0.2s * 48);
}

.post-list > *:nth-child(49) {
  animation-delay: calc(0.2s * 49);
}

.post-list > *:nth-child(50) {
  animation-delay: calc(0.2s * 50);
}

.post {
  animation: slideTopIn 1s;
}

@media screen and (max-width: 960px) {
  body {
    font-size: 0.85rem;
  }
  .sidebar {
    width: 100%;
    position: unset;
    border-right: none;
    z-index: 1;
    height: unset;
    padding-top: 6em;
    padding-bottom: 0.5em;
  }
  .sidebar .author-info h3 {
    font-size: 1.7rem;
  }
  .sidebar .author-info img {
    width: 100px !important;
  }
  .navigation {
    width: 100%;
    height: 45px;
  }
  .navigation .navigation-menu {
    padding: 0 1.5em;
    font-size: 0.85rem;
  }
  .navigation .navigation-menu li {
    padding-right: 16px;
  }
  .navigation .navigation-menu a.current {
    padding-bottom: 11px;
  }
  .main {
    margin: 0;
    padding: 1em 1.5em;
  }
  .footer {
    position: unset;
    width: 100%;
  }
  .post-list .list-title {
    font-size: 1.4rem;
    line-height: 2em;
  }
  .post-list > .post-item .post-title {
    font-size: 1rem;
  }
  .post-title {
    font-size: 1rem;
  }
  .post-meta {
    font-size: 0.7rem;
  }
  .post-content .link-container .card {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .gt-container .gt-meta {
    font-size: 0.8rem;
  }
  .gt-container .gt-header-textarea {
    font-size: 0.75rem;
  }
  .gt-container .gt-comment .gt-comment-avatar {
    position: absolute;
    width: 2.8em;
    height: 2.8em;
  }
  .gt-container .gt-comment .gt-comment-avatar img {
    border-radius: 0 !important;
    filter: none;
    border: 1px solid var(--border-color-darker-1);
  }
  .gt-container .gt-comment .gt-comment-content {
    margin-left: 0;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header {
    line-height: 1rem;
    padding-left: 3.7em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-username {
    display: block;
    width: 100%;
    line-height: 0.8rem;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-text {
    margin-left: 0;
    font-size: 0.75em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-date {
    font-size: 0.75em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-like {
    top: 0.95em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-header .gt-comment-reply {
    top: 0.95em;
  }
  .gt-container .gt-comment .gt-comment-content .gt-comment-body {
    padding: 0.75em 1em 0.75em 1em;
    font-size: 0.85rem;
  }
  .gt-container .markdown-body h1,
  .gt-container .markdown-body h2,
  .gt-container .markdown-body h3,
  .gt-container .markdown-body h4,
  .gt-container .markdown-body h5,
  .gt-container .markdown-body h6 {
    margin: 1rem 0 0.75rem 0 !important;
  }
  .gt-container .markdown-body h1 {
    font-size: 1.6rem !important;
    line-height: 1.2em !important;
  }
  .gt-container .markdown-body h2 {
    font-size: 1.5rem !important;
    line-height: 1.2em !important;
  }
  .gt-container .markdown-body h3 {
    font-size: 1.4rem !important;
  }
  .gt-container .markdown-body h4 {
    font-size: 1.3rem !important;
  }
  .gt-container .markdown-body h5 {
    font-size: 1.2rem !important;
  }
  .gt-container .markdown-body h6 {
    font-size: 1.1rem !important;
  }
  .gt-container .markdown-body tr th, .gt-container .markdown-body tr td {
    font-size: 0.85rem !important;
  }
  .gt-container .markdown-body pre {
    font-size: 0.75rem !important;
  }
  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6 {
    margin: 1rem 0 0.75rem 0 !important;
  }
  .post-content h1 {
    font-size: 1.6rem !important;
    line-height: 1.2em !important;
  }
  .post-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.2em !important;
  }
  .post-content h3 {
    font-size: 1.4rem !important;
  }
  .post-content h4 {
    font-size: 1.3rem !important;
  }
  .post-content h5 {
    font-size: 1.2rem !important;
  }
  .post-content h6 {
    font-size: 1.1rem !important;
  }
  .post-content tr th, .post-content tr td {
    font-size: 0.85rem !important;
  }
  .post-content pre {
    font-size: 0.75rem !important;
  }
  .sidebar {
    animation: slideTopIn 1s;
  }
  .navigation-menu {
    animation: slideTopIn 1s;
  }
  .footer {
    animation: fadeIn 1s;
    opacity: 0;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
}
.post-content pre {
  background-color: #f0f0f0 !important;
  position: relative;
  font-size: 13px;
}
.post-content pre code {
  border: none;
  background: inherit;
}
.post-content pre.language-html:before,
.post-content pre.language-javascript:before,
.post-content pre.language-bash:before,
.post-content pre.language-css:before,
.post-content pre.language-scss:before,
.post-content pre.language-diff:before,
.post-content pre.language-java:before,
.post-content pre.language-xml:before,
.post-content pre.language-python:before,
.post-content pre.language-json:before,
.post-content pre.language-swift:before,
.post-content pre.language-ruby:before,
.post-content pre.language-perl:before,
.post-content pre.language-php:before,
.post-content pre.language-c:before,
.post-content pre.language-cpp:before,
.post-content pre.language-rust:before,
.post-content pre.language-markup:before,
.post-content pre.language-sql:before,
.post-content pre.language-objectivec:before,
.post-content pre.language-makefile:before,
.post-content pre.language-go:before,
.post-content pre.language-ini:before,
.post-content pre.language-groovy:before,
.post-content pre.language-yaml:before {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  color: #ccc !important;
  text-align: right !important;
  font-size: 12px !important;
  padding: 10px 10px 0 !important;
  line-height: 15px !important;
  height: 15px !important;
}
.post-content pre.language-html:before {
  content: "HTML";
}
.post-content pre.language-javascript:before {
  content: "JS";
}
.post-content pre.language-bash:before {
  content: "BASH";
}
.post-content pre.language-css:before {
  content: "CSS";
}
.post-content pre.language-scss:before {
  content: "SCSS";
}
.post-content pre.language-diff:before {
  content: "DIFF";
}
.post-content pre.language-java:before {
  content: "JAVA";
}
.post-content pre.language-xml:before {
  content: "XML";
}
.post-content pre.language-python:before {
  content: "PYTHON";
}
.post-content pre.language-json:before {
  content: "JSON";
}
.post-content pre.language-swift:before {
  content: "SWIFT";
}
.post-content pre.language-ruby:before {
  content: "RUBY";
}
.post-content pre.language-perl:before {
  content: "PERL";
}
.post-content pre.language-php:before {
  content: "PHP";
}
.post-content pre.language-c:before {
  content: "C";
}
.post-content pre.language-cpp:before {
  content: "C++";
}
.post-content pre.language-java:before {
  content: "JAVA";
}
.post-content pre.language-rust:before {
  content: "RUST";
}
.post-content pre.language-markup:before {
  content: "MARKUP";
}
.post-content pre.language-sql:before {
  content: "SQL";
}
.post-content pre.language-objectivec:before {
  content: "OBJECTIVE-C";
}
.post-content pre.language-makefile:before {
  content: "MAKEFILE";
}
.post-content pre.language-go:before {
  content: "GO";
}
.post-content pre.language-ini:before {
  content: "INI";
}
.post-content pre.language-groovy:before {
  content: "GROOVY";
}
.post-content pre.language-yaml:before {
  content: "YAML";
}
.post-content hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #efefef;
  margin: 2em 0;
  padding: 0;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin: 1em 0 1rem 0;
}
.post-content h1 {
  font-size: 2.1rem;
  line-height: 1.2em;
}
.post-content h2 {
  font-size: 1.9rem;
  line-height: 1.2em;
}
.post-content h3 {
  font-size: 1.75rem;
}
.post-content h4 {
  font-size: 1.3rem;
}
.post-content h5 {
  font-size: 1.2rem;
}
.post-content h6 {
  font-size: 1.1rem;
}
.post-content p, .post-content ul, .post-content ol, .post-content dl {
  margin: 0.75em 0;
}
.post-content ul, .post-content ol, .post-content dl {
  padding-inline-start: 0;
}
.post-content li {
  margin-left: 2em;
}
.post-content dd {
  margin-left: 2em;
}
.post-content ol ol,
.post-content ul ul,
.post-content ul ol,
.post-content ol ul {
  margin: 0.4em 0;
}
.post-content ul p, .post-content ol p, .post-content li p, .post-content blockquote p {
  margin: 0;
  overflow: visible;
}
.post-content a img {
  border: none;
}
.post-content pre {
  padding: 1em;
}
.post-content pre, .post-content code {
  font-family: "JetBrains Mono", "Roboto Mono", "Lucida Console", "Trebuchet MS", "Courier New", Monaco, courier, "PingFang SC", "Hiragino Sans GB", "Microsoft Jhenghei", "Microsoft YaHei", monospace !important;
}
.post-content :not(pre) code {
  padding: 1px 3px;
  font-family: Inconsolata, monospace, sans-serif;
  font-size: 0.9em;
  white-space: pre-wrap;
  border: 1px solid var(--border-color-normal);
  background: var(--bg-color-darker-1);
  color: #d14;
  border-radius: 2px;
}
.post-content a {
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--link-hover-color);
}
.post-content a:hover {
  filter: brightness(75%);
}
.post-content li:has(input) {
  margin-left: 0;
}
.post-content li:has(input)::marker {
  content: "";
}
.post-content blockquote {
  box-sizing: border-box;
  margin: 0.3em -1px;
  border-left: #4a4a4a 0.4em solid;
  background-color: var(--bg-color-darker-1-soild);
  color: var(--text-color-darker);
  padding-right: 0.3em;
  padding-left: 0;
}
.post-content blockquote :first-child {
  padding-top: 0.3em;
}
.post-content blockquote :last-child:not(blockquote) {
  padding-bottom: 0.3em;
}
.post-content blockquote p {
  margin: 0 0 0 1em;
}
.post-content blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  color: #ccc;
}
.post-content blockquote small:before {
  content: "— ";
}
.post-content blockquote cite {
  font-weight: bold;
}
.post-content blockquote cite a {
  font-weight: normal;
}
.post-content blockquote footer {
  margin: 0 0 0 1em;
  font-size: 13px;
}
.post-content blockquote footer cite {
  margin: 0 0 0 0.25em;
}
.post-content blockquote.pullquote.right {
  text-align: right;
  border-left: 0;
  border-right: #4a4a4a 0.4em solid;
  padding-right: 1em;
}
.post-content > blockquote {
  margin: 1.6em 0;
}
.post-content table {
  box-sizing: border-box;
  margin: 1em 0;
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  border-style: solid;
  border-spacing: 0;
  background-color: transparent;
}
.post-content table, .post-content table tr, .post-content table tr td, .post-content table tr th {
  border-color: var(--border-color-lighter);
}
.post-content table th {
  color: var(--border-color-darker-2);
  background-color: var(--bg-color-darker-2);
}
.post-content tr th {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: left;
}
.post-content tr th, .post-content tr td {
  padding: 0.15em 0.5em;
  border-right: 1px solid;
  font-size: 1rem;
}
.post-content tr th:last-child, .post-content tr td:last-child {
  border-right: 0;
}
.post-content table th {
  font-weight: bold;
}
.post-content table tbody > tr:nth-child(odd) > td, .post-content table tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.post-content img {
  max-width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}
.post-content .blur-text {
  filter: drop-shadow(0px 0px 4px black) blur(4px);
  transition: filter 0.3s;
}
.post-content .blur-text:hover {
  filter: drop-shadow(0px 0px 0 transparent) blur(0);
}
.post-content .link-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 1em;
}
.post-content .link-container .card {
  display: flex;
  padding: 0.75em;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  margin-right: 0.5em;
  transition-duration: 0.15s;
  background-color: rgba(238, 238, 238, 0.3333333333);
  align-items: center;
  width: calc(50% - 2em);
}
.post-content .link-container .card .icon {
  width: 3.5em;
  height: 3.5em;
  margin-right: 0.75em;
  margin-left: 0.1em;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
  border-radius: 50%;
}
.post-content .link-container .card:nth-child(even) {
  margin-right: 0;
  width: calc(50% - 1.5em);
}
.post-content .link-container .card:last-child {
  width: 100%;
  margin-right: 0;
}
.post-content .link-container .card:hover {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
  background-color: rgba(238, 238, 238, 0.6666666667);
}
.post-content .spoiler {
  margin: 5px 0;
  border: 1px solid #E5E5E5;
  position: relative;
  clear: both;
}
.post-content .spoiler .spoiler-title {
  background: #E5E5E5;
  padding: 5px 15px;
  color: #353535;
  font-weight: bold;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.post-content .spoiler .spoiler-title .spoiler-icon {
  display: inline-block;
  font: normal normal bold 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: rotate 0.5s ease-in-out;
  margin-right: 0.3em;
  content: "\f054" !important;
  rotate: 0;
}
.post-content .spoiler .spoiler-container {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  transition: grid-template-rows 0.5s ease-in-out;
  grid-template-rows: 0fr;
}
.post-content .spoiler .spoiler-container .spoiler-content {
  min-height: 0;
  padding: 0 15px;
}
.post-content .spoiler.expanded .spoiler-title .spoiler-icon {
  rotate: 180deg;
}
.post-content .spoiler.expanded .spoiler-container {
  overflow-x: scroll;
  grid-template-rows: 1fr;
}

.gt-container .gt-link {
  border-bottom: 1px dotted var(--border-color-darker-3) !important;
}
.gt-container .gt-header-controls-tip {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-btn-preview {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-btn {
  border: 1px solid var(--border-color-darker-3) !important;
  background-color: var(--border-color-darker-3) !important;
}
.gt-container .gt-link, .gt-container .gt-action {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-comment-username {
  color: var(--border-color-darker-3) !important;
}
.gt-container .gt-svg svg {
  fill: var(--border-color-darker-3) !important;
}
.gt-container .gt-btn-preview {
  background-color: var(--bg-color-contrast) !important;
}
.gt-container .gt-comment-admin .gt-comment-content {
  background-color: var(--bg-color-lighter) !important;
}
.gt-container .gt-avatar img {
  border-radius: 50% !important;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.3));
}
.gt-container .gt-comment-content {
  padding: 0;
}
.gt-container .gt-comment-header {
  border-bottom: 1px solid var(--border-color-darker-1);
  padding: 0.75em 1em 0.25em 1em;
  margin-bottom: 0;
}
.gt-container .gt-comment-like {
  top: 0.75em;
  right: 2.75em;
}
.gt-container .gt-comment-edit, .gt-container .gt-comment-reply {
  top: 0.75em;
  right: 1.25em;
}
.gt-container .gt-comment-body {
  padding: 0.75em 1.25em 1em 1.25em;
  font-size: 14.5px;
}
.gt-container > * {
  animation: fadeIn 1s;
}
.gt-container .markdown-body pre {
  background-color: #f0f0f0 !important;
  position: relative;
  font-size: 13px;
}
.gt-container .markdown-body pre code {
  border: none;
  background: inherit;
}
.gt-container .markdown-body pre.language-html:before,
.gt-container .markdown-body pre.language-javascript:before,
.gt-container .markdown-body pre.language-bash:before,
.gt-container .markdown-body pre.language-css:before,
.gt-container .markdown-body pre.language-scss:before,
.gt-container .markdown-body pre.language-diff:before,
.gt-container .markdown-body pre.language-java:before,
.gt-container .markdown-body pre.language-xml:before,
.gt-container .markdown-body pre.language-python:before,
.gt-container .markdown-body pre.language-json:before,
.gt-container .markdown-body pre.language-swift:before,
.gt-container .markdown-body pre.language-ruby:before,
.gt-container .markdown-body pre.language-perl:before,
.gt-container .markdown-body pre.language-php:before,
.gt-container .markdown-body pre.language-c:before,
.gt-container .markdown-body pre.language-cpp:before,
.gt-container .markdown-body pre.language-rust:before,
.gt-container .markdown-body pre.language-markup:before,
.gt-container .markdown-body pre.language-sql:before,
.gt-container .markdown-body pre.language-objectivec:before,
.gt-container .markdown-body pre.language-makefile:before,
.gt-container .markdown-body pre.language-go:before,
.gt-container .markdown-body pre.language-ini:before,
.gt-container .markdown-body pre.language-groovy:before,
.gt-container .markdown-body pre.language-yaml:before {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  color: #ccc !important;
  text-align: right !important;
  font-size: 12px !important;
  padding: 10px 10px 0 !important;
  line-height: 15px !important;
  height: 15px !important;
}
.gt-container .markdown-body pre.language-html:before {
  content: "HTML";
}
.gt-container .markdown-body pre.language-javascript:before {
  content: "JS";
}
.gt-container .markdown-body pre.language-bash:before {
  content: "BASH";
}
.gt-container .markdown-body pre.language-css:before {
  content: "CSS";
}
.gt-container .markdown-body pre.language-scss:before {
  content: "SCSS";
}
.gt-container .markdown-body pre.language-diff:before {
  content: "DIFF";
}
.gt-container .markdown-body pre.language-java:before {
  content: "JAVA";
}
.gt-container .markdown-body pre.language-xml:before {
  content: "XML";
}
.gt-container .markdown-body pre.language-python:before {
  content: "PYTHON";
}
.gt-container .markdown-body pre.language-json:before {
  content: "JSON";
}
.gt-container .markdown-body pre.language-swift:before {
  content: "SWIFT";
}
.gt-container .markdown-body pre.language-ruby:before {
  content: "RUBY";
}
.gt-container .markdown-body pre.language-perl:before {
  content: "PERL";
}
.gt-container .markdown-body pre.language-php:before {
  content: "PHP";
}
.gt-container .markdown-body pre.language-c:before {
  content: "C";
}
.gt-container .markdown-body pre.language-cpp:before {
  content: "C++";
}
.gt-container .markdown-body pre.language-java:before {
  content: "JAVA";
}
.gt-container .markdown-body pre.language-rust:before {
  content: "RUST";
}
.gt-container .markdown-body pre.language-markup:before {
  content: "MARKUP";
}
.gt-container .markdown-body pre.language-sql:before {
  content: "SQL";
}
.gt-container .markdown-body pre.language-objectivec:before {
  content: "OBJECTIVE-C";
}
.gt-container .markdown-body pre.language-makefile:before {
  content: "MAKEFILE";
}
.gt-container .markdown-body pre.language-go:before {
  content: "GO";
}
.gt-container .markdown-body pre.language-ini:before {
  content: "INI";
}
.gt-container .markdown-body pre.language-groovy:before {
  content: "GROOVY";
}
.gt-container .markdown-body pre.language-yaml:before {
  content: "YAML";
}
.gt-container .markdown-body hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #efefef;
  margin: 2em 0;
  padding: 0;
}
.gt-container .markdown-body h1,
.gt-container .markdown-body h2,
.gt-container .markdown-body h3,
.gt-container .markdown-body h4,
.gt-container .markdown-body h5,
.gt-container .markdown-body h6 {
  text-rendering: optimizeLegibility;
  line-height: 1;
  margin: 1em 0 1rem 0;
}
.gt-container .markdown-body h1 {
  font-size: 2.1rem;
  line-height: 1.2em;
}
.gt-container .markdown-body h2 {
  font-size: 1.9rem;
  line-height: 1.2em;
}
.gt-container .markdown-body h3 {
  font-size: 1.75rem;
}
.gt-container .markdown-body h4 {
  font-size: 1.3rem;
}
.gt-container .markdown-body h5 {
  font-size: 1.2rem;
}
.gt-container .markdown-body h6 {
  font-size: 1.1rem;
}
.gt-container .markdown-body p, .gt-container .markdown-body ul, .gt-container .markdown-body ol, .gt-container .markdown-body dl {
  margin: 0.75em 0;
}
.gt-container .markdown-body ul, .gt-container .markdown-body ol, .gt-container .markdown-body dl {
  padding-inline-start: 0;
}
.gt-container .markdown-body li {
  margin-left: 2em;
}
.gt-container .markdown-body dd {
  margin-left: 2em;
}
.gt-container .markdown-body ol ol,
.gt-container .markdown-body ul ul,
.gt-container .markdown-body ul ol,
.gt-container .markdown-body ol ul {
  margin: 0.4em 0;
}
.gt-container .markdown-body ul p, .gt-container .markdown-body ol p, .gt-container .markdown-body li p, .gt-container .markdown-body blockquote p {
  margin: 0;
  overflow: visible;
}
.gt-container .markdown-body a img {
  border: none;
}
.gt-container .markdown-body pre {
  padding: 1em;
}
.gt-container .markdown-body pre, .gt-container .markdown-body code {
  font-family: "JetBrains Mono", "Roboto Mono", "Lucida Console", "Trebuchet MS", "Courier New", Monaco, courier, "PingFang SC", "Hiragino Sans GB", "Microsoft Jhenghei", "Microsoft YaHei", monospace !important;
}
.gt-container .markdown-body :not(pre) code {
  padding: 1px 3px;
  font-family: Inconsolata, monospace, sans-serif;
  font-size: 0.9em;
  white-space: pre-wrap;
  border: 1px solid var(--border-color-normal);
  background: var(--bg-color-darker-1);
  color: #d14;
  border-radius: 2px;
}
.gt-container .markdown-body a {
  text-decoration: none;
  letter-spacing: 1px;
  color: var(--link-hover-color);
}
.gt-container .markdown-body a:hover {
  filter: brightness(75%);
}
.gt-container .markdown-body li:has(input) {
  margin-left: 0;
}
.gt-container .markdown-body li:has(input)::marker {
  content: "";
}
.gt-container .markdown-body blockquote {
  box-sizing: border-box;
  margin: 0.3em -1px;
  border-left: #4a4a4a 0.4em solid;
  background-color: var(--bg-color-darker-1-soild);
  color: var(--text-color-darker);
  padding-right: 0.3em;
  padding-left: 0;
}
.gt-container .markdown-body blockquote :first-child {
  padding-top: 0.3em;
}
.gt-container .markdown-body blockquote :last-child:not(blockquote) {
  padding-bottom: 0.3em;
}
.gt-container .markdown-body blockquote p {
  margin: 0 0 0 1em;
}
.gt-container .markdown-body blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  color: #ccc;
}
.gt-container .markdown-body blockquote small:before {
  content: "— ";
}
.gt-container .markdown-body blockquote cite {
  font-weight: bold;
}
.gt-container .markdown-body blockquote cite a {
  font-weight: normal;
}
.gt-container .markdown-body blockquote footer {
  margin: 0 0 0 1em;
  font-size: 13px;
}
.gt-container .markdown-body blockquote footer cite {
  margin: 0 0 0 0.25em;
}
.gt-container .markdown-body blockquote.pullquote.right {
  text-align: right;
  border-left: 0;
  border-right: #4a4a4a 0.4em solid;
  padding-right: 1em;
}
.gt-container .markdown-body > blockquote {
  margin: 1.6em 0;
}
.gt-container .markdown-body table {
  box-sizing: border-box;
  margin: 1em 0;
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  border-style: solid;
  border-spacing: 0;
  background-color: transparent;
}
.gt-container .markdown-body table, .gt-container .markdown-body table tr, .gt-container .markdown-body table tr td, .gt-container .markdown-body table tr th {
  border-color: var(--border-color-lighter);
}
.gt-container .markdown-body table th {
  color: var(--border-color-darker-2);
  background-color: var(--bg-color-darker-2);
}
.gt-container .markdown-body tr th {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: left;
}
.gt-container .markdown-body tr th, .gt-container .markdown-body tr td {
  padding: 0.15em 0.5em;
  border-right: 1px solid;
  font-size: 1rem;
}
.gt-container .markdown-body tr th:last-child, .gt-container .markdown-body tr td:last-child {
  border-right: 0;
}
.gt-container .markdown-body table th {
  font-weight: bold;
}
.gt-container .markdown-body table tbody > tr:nth-child(odd) > td, .gt-container .markdown-body table tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.gt-container .markdown-body img {
  max-width: 100%;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}
.gt-container .markdown-body > blockquote {
  margin: unset;
}

.bookmark {
  margin: 3em 2em;
  border-bottom: 1px solid var(--border-color-darker-1);
  border-top: 1px solid var(--border-color-darker-1);
}
.bookmark .bookmark-title {
  height: 25px;
}
.bookmark .bookmark-list {
  height: calc(100% - 25px);
  overflow: scroll;
}

.toc {
  margin: 0;
  padding: 0;
}
.toc > .toc-item {
  margin-left: 2em;
}
.toc .toc-item {
  text-align: start;
}