@import "../fonts/Fira_Code_v6.2/fira_code.css";
#postTopic {
  cursor: pointer;
  will-change: transform;
  transform: translateY(100%);
}
#postTopic p {
  color: var(--primary-text-color);
}
#postTopic.is-show-scrollToTop-tips {
  transition: transform 300ms linear 300ms;
  transform: translateY(-100%);
}
#postTopic.is-flash-scrollToTop-tips {
  transition: transform 300ms linear 900ms;
  transform: translateY(0);
}
#postTopic.is-switch-post-title {
  transition: none;
  transform: translateY(0);
}
#postTopic.is-show-post-title {
  transition: transform 300ms linear;
  transform: translateY(0);
}
#postTopic.is-hidden-topic-bar {
  transition: transform 100ms linear;
  transform: translateY(100%);
}
#postTopic.immediately-show {
  transition: none;
  transform: translateY(0);
}

.post-page .post-content blockquote footer {
  overflow-wrap: break-word;
}
.post-page .post-content table {
  width: 100%;
  display: inline-block;
  overflow: auto;
}
.post-page .post-content pre,
.post-page .post-content code {
  font-family: "Fira Code";
  background: var(--third-bg-color);
}
.post-page .post-content figure.highlight {
  margin: 2rem 0.5rem;
  text-align: left;
}
.post-page .post-content figure.highlight table {
  width: 100%;
  background: var(--third-bg-color);
  border: 1px solid var(--border-line-color);
  border-radius: 4px;
  display: table;
  table-layout: fixed;
}
.post-page .post-content figure.highlight table tr {
  display: flex;
}
.post-page .post-content figure.highlight table tr td.gutter {
  padding: 9px 0 9px 9px;
  font-size: 16px;
  line-height: 21px;
  text-align: right;
  white-space: nowrap;
  width: min-content;
}
.post-page .post-content figure.highlight table tr td.gutter pre {
  width: 100%;
  color: var(--second-text-color);
  padding: 8px 0.5em 0 0;
}
.post-page .post-content figure.highlight table tr td.code {
  width: 100%;
  padding-left: 0;
  overflow: auto;
}
.post-page .post-content figure.highlight table tr pre {
  padding: 0;
  background: transparent;
}
.post-page .post-content figure.highlight table tr pre code {
  background: transparent;
}
.post-page .post-content .hljs {
  color: var(--second-text-color);
}
.post-page .post-content img {
  display: block;
  margin: 0 auto;
  max-height: 500px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  will-change: opacity;
}
.post-page .post-content a {
  color: #3273dc;
}
.post-page .jump-container .button {
  max-width: calc(50% - 5px);
}
.post-page .jump-container .button span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.post-page .comment-container {
  border-top: 1px solid var(--border-line-color);
}
.post-page .toc {
  position: sticky;
  top: 60px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
  height: calc(100vh - 100px);
  overflow: auto;
  list-style: none !important;
  border-left: 1px solid var(--border-line-color);
}
.post-page .toc::-webkit-scrollbar {
  display: none;
}
.post-page .toc ol {
  margin-top: 5px;
  margin-left: 15px;
  list-style: none !important;
}
.post-page .toc .is-active span {
  color: #3273dc !important;
}
.post-page :target {
  padding-top: 60px;
  margin-top: -60px !important;
}