@charset "UTF-8";
/* ========================= 基建 start */
@import url(./normalize.css);
:root {
  --fontColor: #555;
  --lightFontColor: #666;
  --darkFontColor: #333;
  --bodyBgColor: #f6f6f7;
  --headerBgColor:rgba(255,255,255,1);
  --borderColor:#ddd;
  --boxShadowColor:rgba(0, 0, 0, 0.25); }

html {
  font-size: 1px; }

body {
  background-color: var(--bodyBgColor);
  color: var(--fontColor);
  font-size: 14rem;
  font-family: 'Noto Sans SC', 'Lato', "PingFang SC", "TIBch", "Classic Grotesque W01", "Helvetica Neue", Arial, "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "WenQuanYi Micro Hei", SimSun, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth; }

a,
button.submit {
  color: var(--lightFontColor);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

a:hover,
a:active {
  color: var(--fontColor); }

a:focus {
  outline: auto; }

ul {
  padding-left: 20px; }

* {
  box-sizing: border-box;
  scroll-behavior: smooth; }

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  cursor: pointer !important; }

::-webkit-scrollbar-track {
  border-radius: 3px;
  cursor: pointer !important;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08); }

::-webkit-scrollbar-thumb {
  cursor: pointer !important;
  border-radius: 3px;
  background: #ddd;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); }

/* ========================= 基建 end */
/* ========================= 主题 start */
body.dark-theme {
  background-color: var(--bodyBgColor);
  color: var(--fontColor);
  transition: all 0.2s ease;
  transition: background-color 0.1s ease; }
  body.dark-theme {
    --fontColor: #a9a9b3;
    --lightFontColor: #bbb;
    --darkFontColor: #6e7173;
    --bodyBgColor: #333438;
    --headerBgColor: #292a2d;
    --borderColor:#aaa;
    --codeBgColor:#282c34; }
  body.dark-theme img {
    filter: brightness(0.7); }
  body.dark-theme a,
  body.dark-theme .post .post-content ul a,
  body.dark-theme .post .post-content ol a {
    color: #ccc; }
  body.dark-theme a:hover,
  body.dark-theme a:active {
    color: #eee; }
  body.dark-theme #sidebar .widget .search-form input {
    background-color: var(--bodyBgColor);
    color: var(--fontColor);
    border-color: var(--fontColor); }
  body.dark-theme .realPost h1.post-title {
    color: #d8d8d8; }
  body.dark-theme .realPost .post-content ul code,
  body.dark-theme .realPost .post-content p code,
  body.dark-theme .realPost .post-content ol code {
    background-color: var(--codeBgColor);
    color: #e1911b; }
  body.dark-theme .realPost figure.highlight,
  body.dark-theme .realPost figure .gutter pre span,
  body.dark-theme .realPost .codeblock,
  body.dark-theme .realPost figure.highlight .gutter,
  body.dark-theme .realPost .codeblock .gutter {
    background: var(--codeBgColor); }
  body.dark-theme .realPost .gitment-editor-tab.gitment-selected,
  body.dark-theme .realPost .gitment-editor-body textarea {
    background-color: var(--bodyBgColor);
    color: var(--fontColor); }
  body.dark-theme .post-archive li a:hover {
    color: #0059b2; }
  body.dark-theme .post-archive li a:visited {
    color: #8e56c1; }

/* ========================= 主题 end */
/* ========================= 布局无关的样式 start */
#layout {
  scroll-behavior: smooth; }

.page-navigator {
  list-style: none;
  padding: 10px 25px 2px;
  font-size: 14px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  .page-navigator .page-number {
    display: inline-block;
    margin: 0 5px 5px 0; }
  .page-navigator a,
  .page-navigator span {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 5px;
    border: 1px solid #ddd;
    text-align: center; }
    .page-navigator a:hover,
    .page-navigator span:hover {
      background: var(--headerBgColor);
      border-bottom-color: #FFC730; }
    .page-navigator a.prev,
    .page-navigator span.prev {
      position: absolute;
      left: 25px; }
      .page-navigator a.prev:before,
      .page-navigator span.prev:before {
        font-family: "FontAwesome";
        content: "\f100";
        padding-right: 0.3em; }
    .page-navigator a.next:after,
    .page-navigator span.next:after {
      font-family: "FontAwesome";
      content: "\f101";
      padding-left: 0.3em; }
  .page-navigator .current {
    background: var(--headerBgColor);
    border-bottom-color: #FFC730; }
  .page-navigator .space {
    border: none;
    padding: 5px 5px; }

.post {
  opacity: 1 !important;
  margin: 20px 20px;
  padding: 25px 0 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: var(--headerBgColor);
  border-radius: 3px; }
  .post .post-title {
    margin: 0;
    color: #555;
    text-align: left;
    font: bold 25px/1.1 "ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif; }
    .post .post-title .status {
      cursor: pointer;
      font-size: 0.7em;
      position: relative;
      top: -0.1em;
      margin-right: 5px; }
    .post .post-title a {
      color: var(--fontColor); }
  .post .post-meta {
    padding: 0;
    margin: 15px 0 0;
    color: #6e7173;
    display: inline;
    text-indent: 0.15em; }
    .post .post-meta:before {
      font-family: "FontAwesome";
      content: "\f073";
      padding-right: 0.3em; }
    .post .post-meta .category:before {
      font-family: "FontAwesome";
      content: "\f07c";
      padding-right: 0.3em; }
    .post .post-meta #busuanzi_value_page_pv:before {
      font-family: "FontAwesome";
      content: "\f024";
      padding-right: 0.3em; }
  .post .ds-thread-count {
    padding: 0;
    margin: 15px 0 0;
    color: #6e7173;
    display: inline;
    text-indent: 0.15em; }
    .post .ds-thread-count:before {
      font-family: "FontAwesome";
      content: "\f0e5";
      padding-right: 0.3em; }
    .post .ds-thread-count:hover {
      color: var(--fontColor); }
  .post .disqus-comment-count {
    padding: 0;
    margin: 15px 0 0;
    color: #6e7173;
    display: inline;
    text-indent: 0.15em; }
    .post .disqus-comment-count:before {
      font-family: "FontAwesome";
      content: "\f0e5";
      padding-right: 0.3em; }
    .post .disqus-comment-count:hover {
      color: var(--fontColor); }
  .post .post-content {
    clear: left;
    font-size: 15px;
    line-height: 1.77;
    color: var(--fontColor);
    padding-top: 15px;
    text-align: justify;
    text-justify: distribute;
    word-break: normal; }
    .post .post-content h2 {
      margin: 1.4em 0 1.1em;
      border-bottom: 1px solid #eee;
      overflow: hidden; }
    .post .post-content h3 {
      margin: 1.4em 0 1.1em; }
    .post .post-content pre code {
      padding: 0 2em; }
    .post .post-content p {
      margin: 0 0 1.234em; }
      .post .post-content p code {
        display: inline-block;
        margin: 0 5px;
        padding: 0 5px;
        background: #f7f8f8;
        font-family: Menlo, Consolas, monospace !important; }
      .post .post-content p a {
        color: #01579f;
        padding-bottom: 2px;
        word-break: normal; }
        .post .post-content p a:hover {
          text-decoration: underline; }
    .post .post-content .caption {
      color: #888;
      display: block;
      font-size: 0.8em;
      margin-top: 0.1em;
      position: relative;
      text-align: center; }
    .post .post-content hr {
      margin: 2.4em auto;
      border: none;
      border-top: 1px solid #eee;
      position: relative; }
    .post .post-content img {
      max-width: 100%;
      padding: 0.5em 0;
      margin: auto;
      display: block; }
    .post .post-content ul,
    .post .post-content ol {
      border-radius: 3px;
      margin: 1em 0; }
      .post .post-content ul ul,
      .post .post-content ol ul {
        margin: 0; }
      .post .post-content ul code,
      .post .post-content ol code {
        display: inline-block;
        margin: 0 5px;
        padding: 0px 5px;
        background: #f7f8f8;
        font-family: Menlo, Consolas, monospace !important; }
      .post .post-content ul a,
      .post .post-content ol a {
        color: #01579f;
        padding-bottom: 2px;
        word-break: normal; }
        .post .post-content ul a:hover,
        .post .post-content ol a:hover {
          text-decoration: underline; }
  .post .tags {
    padding-bottom: 1em; }
    .post .tags a {
      margin-right: 0.5em; }
      .post .tags a:before {
        font-family: "FontAwesome";
        content: "\f0c6";
        padding-right: 0.3em; }
  .post .gallery {
    display: flex; }
    .post .gallery > .post-img {
      flex: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      max-height: 200px; }
      .post .gallery > .post-img img {
        max-width: 100%;
        max-height: 100%; }
    .post .gallery > .right {
      flex: 3;
      padding-left: 30px; }
  .post:hover .gallery .post-img {
    overflow: hidden; }
    .post:hover .gallery .post-img img {
      transform: scale(1.2);
      filter: brightness(0.8);
      transition: transform 0.3s ease; }

.realPost {
  background: var(--headerBgColor);
  margin: 20px 10px 0 0;
  padding: 20px; }
  .realPost .post-title {
    margin: 0;
    color: var(--fontColor);
    text-align: left;
    font-size: 28rem;
    font-weight: normal; }
    .realPost .post-title a {
      color: var(--fontColor); }
  .realPost .post-description {
    color: var(--fontColor); }
  .realPost .post-meta {
    padding: 10px 0;
    border-top: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
    color: #6e7173;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-indent: 0.15em; }
    .realPost .post-meta:before {
      font-family: "FontAwesome";
      content: "\f073";
      padding-right: 0.3em; }
    .realPost .post-meta .category:before {
      font-family: "FontAwesome";
      content: "\f07c";
      padding-right: 0.3em; }
    .realPost .post-meta #busuanzi_value_page_pv:before {
      font-family: "FontAwesome";
      content: "\f024";
      padding-right: 0.3em; }
    .realPost .post-meta #lighter-btn {
      display: none !important;
      display: none;
      width: 0;
      height: 0;
      visibility: hidden;
      box-sizing: border-box;
      padding: 0; }
    .realPost .post-meta #lighter-btn + label {
      display: none !important;
      margin-right: 20px;
      background-color: var(--borderColor);
      border-radius: 7px;
      cursor: pointer;
      display: inline-block;
      height: 14px;
      position: relative;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4;
      width: 30px;
      display: inline-block;
      position: relative;
      top: 2px;
      left: 20px; }
    .realPost .post-meta #lighter-btn + label:after {
      display: none !important;
      background-color: var(--headerBgColor);
      border-radius: 50%;
      content: "";
      height: 12px;
      left: 1px;
      position: absolute;
      top: 0.5px;
      width: 12px;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4; }
    .realPost .post-meta #lighter-btn:checked + label:after {
      display: none !important;
      left: 17px; }
    .realPost .post-meta #lighter-btn:checked + label {
      display: none !important;
      background-color: #ffc730;
      box-shadow: none; }
    .realPost .post-meta input[type="checkbox"]:checked + label,
    .realPost .post-meta input[type="checkbox"]:not(:checked) + label {
      display: none !important;
      transition: all 0.2s ease; }
    .realPost .post-meta input[type="checkbox"]:checked + label:after {
      display: none !important;
      transition: all 0.2s ease; }
    .realPost .post-meta input[type="checkbox"]:not(:checked) + label:after {
      display: none !important;
      transition: all 0.2s ease; }
  .realPost .ds-thread-count {
    padding: 0;
    margin: 15px 0 0;
    color: #6e7173;
    display: inline;
    text-indent: 0.15em; }
    .realPost .ds-thread-count:before {
      font-family: "FontAwesome";
      content: "\f0e5";
      padding-right: 0.3em; }
    .realPost .ds-thread-count:hover {
      color: var(--fontColor); }
  .realPost .disqus-comment-count {
    padding: 0;
    margin-left: 10px;
    color: #6e7173;
    display: inline;
    text-indent: 0.15em; }
    .realPost .disqus-comment-count:before {
      font-family: "FontAwesome";
      content: "\f0e5";
      padding-right: 0.3em; }
    .realPost .disqus-comment-count:hover {
      color: var(--fontColor); }
  .realPost .tags {
    padding-bottom: 1em; }
    .realPost .tags a {
      margin-right: 0.5em; }
      .realPost .tags a:before {
        font-family: "FontAwesome";
        content: "\f0c6";
        padding-right: 0.3em; }
  .realPost .post-copyright {
    border-left: 5px solid var(--borderColor);
    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.02);
    word-break: break-word; }
  .realPost .toc-icon {
    z-index: 2;
    line-height: 1em;
    position: fixed;
    top: 130px;
    right: 6px;
    background-color: var(--bodyBgColor);
    background-clip: padding-box;
    padding: 10px 10px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 0px 3px 1px var(--boxShadowColor); }
  .realPost .toc-icon:hover > #toc {
    visibility: visible; }
  .realPost .toc-icon:hover > i {
    visibility: hidden; }
  .realPost .toc-article {
    padding: 0.7em 0.7em 0 0.7em;
    width: 40vw; }
  .realPost .toc-title {
    font-size: 120%; }
  .realPost #toc {
    line-height: 1em;
    position: fixed;
    top: 130px;
    right: 0px;
    visibility: hidden;
    color: var(--fontColor);
    background-color: var(--bodyBgColor);
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 0px 3px 1px var(--boxShadowColor); }
    .realPost #toc .toc {
      padding: 0;
      margin: 0.5em;
      line-height: 1.8em; }
      .realPost #toc .toc li {
        list-style-type: none; }
    .realPost #toc .toc-child {
      margin-left: 1em;
      padding-left: 0; }

.post-nav {
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 10px;
  white-space: nowrap;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor); }
  .post-nav a {
    display: inline-block;
    line-height: 25px;
    font-size: 15px;
    color: #555;
    border-bottom: none; }
    .post-nav a.pre {
      float: left; }
      .post-nav a.pre:before {
        font-family: "FontAwesome";
        content: "\f0d9";
        padding-right: 0.3em; }
    .post-nav a.next {
      float: right; }
      .post-nav a.next:after {
        font-family: "FontAwesome";
        content: "\f0da";
        padding-left: 0.3em; }
    .post-nav a:hover {
      border-bottom: none;
      color: #222; }

.post-archive {
  font-size: 15px;
  line-height: 2;
  padding-bottom: 0.8em; }
  .post-archive h2 {
    margin: 0;
    font: bold 25px / 1.1 "ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif; }
  .post-archive .date {
    padding-right: 0.7em; }
  .post-archive .post-content {
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 0.6em;
    color: #929292; }
  .post-archive li .status {
    cursor: pointer;
    font-size: 0.7em;
    position: relative;
    top: -0.1em;
    margin-right: 5px; }
  .post-archive li .post-desc-icon {
    margin-left: 10px;
    color: #888;
    cursor: pointer; }
  .post-archive li .popup {
    display: none;
    width: 250px;
    padding: 10px;
    font-size: 12px;
    line-height: 14px;
    position: absolute;
    background: #fff;
    color: #555;
    border: 1px solid #999;
    margin-left: 10px;
    border-radius: 10px;
    box-sizing: border-box; }
    .post-archive li .popup:before {
      content: "";
      width: 0;
      display: block;
      height: 0;
      border-right: 6px solid #999;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      position: absolute;
      left: -6px; }
    .post-archive li .popup::after {
      content: "";
      width: 0;
      display: block;
      height: 0;
      border-right: 6px solid #fff;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      position: absolute;
      left: -5px;
      top: 10px; }
  .post-archive li a:hover {
    color: #0059b2; }
  .post-archive li a:visited {
    color: #551a8b; }

#slogan_img {
  height: 300px;
  box-shadow: 5px 4px 8px 2px #cec8c8;
  border-radius: 5px; }

#commentBoard {
  width: 100vw;
  margin-left: -168px;
  height: calc(100vh - 140px);
  margin-top: 30px; }

#tobottomBtn,
#totopBtn {
  position: fixed;
  right: 3vw;
  bottom: 100rem;
  font-size: 24rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  background: var(--bodyBgColor);
  color: var(--fontColor);
  box-shadow: 0px 0px 3px 1px var(--boxShadowColor);
  z-index: 1; }
  #tobottomBtn:hover,
  #totopBtn:hover {
    background: var(--fontColor);
    color: var(--bodyBgColor); }

#tobottomBtn {
  bottom: 50rem; }

/* ========================= 布局无关的样式 end */
/* ========================= 正文 md 样式 start */
.realPost .post-content {
  font-size: 16rem;
  line-height: 1.77;
  color: var(--fontColor);
  padding-top: 15px;
  text-align: justify;
  word-break: normal; }
  .realPost .post-content:after {
    content: '- END -';
    font-size: 15px;
    display: block;
    text-align: center;
    margin-top: 100px;
    color: #999;
    border-bottom: 1px solid var(--borderColor); }
  .realPost .post-content blockquote {
    border-left: 4px solid var(--borderColor);
    margin: 1.2em 0;
    padding-right: 1em;
    padding-left: 1em;
    color: #917d7d; }
  .realPost .post-content h1 {
    margin: 1.4em 0 1.1em;
    border-bottom: 1px solid #eee;
    overflow: hidden; }
  .realPost .post-content h2 {
    background-color: var(--fontColor);
    color: var(--headerBgColor);
    padding: 2px 10px;
    width: fit-content;
    font-size: 17px;
    margin: 60px auto 20px; }
    .realPost .post-content h2 a {
      color: #999; }
      .realPost .post-content h2 a:hover {
        color: #eee; }
    .realPost .post-content h2 strong {
      color: var(--headerBgColor); }
  .realPost .post-content pre code {
    padding: 0 2em; }
  .realPost .post-content p {
    margin: 0 0 1.2em; }
    .realPost .post-content p code {
      display: inline-block;
      margin: 0 5px;
      padding: 0 5px;
      background: #f7f8f8;
      font-family: Menlo, Consolas, monospace !important; }
    .realPost .post-content p a {
      color: #01579f;
      padding-bottom: 2px;
      word-break: normal; }
      .realPost .post-content p a:hover {
        text-decoration: underline; }
  .realPost .post-content .caption {
    color: #888;
    display: block;
    font-size: 0.9em;
    margin-top: 0.1em;
    margin-bottom: 30px;
    position: relative;
    text-align: center; }
  .realPost .post-content hr {
    margin: 2.4em auto;
    border: none;
    border-top: 1px solid #eee;
    position: relative; }
  .realPost .post-content img {
    max-width: 100%;
    padding: 0.5em 0;
    margin: auto;
    display: block;
    box-shadow: 0 1px 8px 1px #d2caca;
    border-radius: 5px; }
  .realPost .post-content ul,
  .realPost .post-content ol {
    border-radius: 3px;
    margin: 1em 0; }
    .realPost .post-content ul ul,
    .realPost .post-content ol ul {
      margin: 0; }
    .realPost .post-content ul code,
    .realPost .post-content ol code {
      display: inline-block;
      margin: 0 5px;
      padding: 0px 5px;
      background: #f7f8f8;
      font-family: Menlo, Consolas, monospace !important; }
    .realPost .post-content ul a,
    .realPost .post-content ol a {
      color: #01579f;
      padding-bottom: 2px;
      word-break: normal; }
      .realPost .post-content ul a:hover,
      .realPost .post-content ol a:hover {
        text-decoration: underline; }

/* ========================= 正文 md 样式 end */
/* ========================= 外部插件样式 start */
/* *******************************************************
* Process timeline, (homepage)
******************************************************* */
#process {
  padding: 80px 0;
  background-color: #fff; }

#process .col-md-2 i {
  font-size: 50px;
  position: relative;
  top: 10px; }

#process .timeline-centered {
  position: relative;
  margin-bottom: 30px; }

#process .timeline-centered::before,
#process .timeline-centered::after,
#process .timeline-centered::before,
#process .timeline-centered::after {
  content: " ";
  display: table; }

#process .timeline-centered::after {
  clear: both; }

#process .timeline-centered::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  background: #f5f5f6;
  /*left: 50%;*/
  top: 50px;
  bottom: 50px;
  margin-left: 10px; }

#process .timeline-centered .timeline-entry {
  position: relative;
  /*width: 50%;
    float: right;*/
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 10px;
  clear: both; }

#process .timeline-centered .timeline-entry::before,
#process .timeline-centered .timeline-entry::after {
  content: " ";
  display: table; }

#process .timeline-centered .timeline-entry::after {
  clear: both; }

#process .timeline-centered .timeline-entry.begin {
  margin-bottom: 0; }

#process .timeline-centered .timeline-entry.left-aligned {
  float: left; }

#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
  margin-left: 0;
  margin-right: -18px; }

#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
  left: auto;
  right: -100px;
  text-align: left; }

#process span.number {
  font-family: "Georgia", serif, Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
  font-style: italic;
  font-size: 20px;
  line-height: 0;
  color: #e7e7e5;
  position: relative;
  top: -4px; }

#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
  float: right; }

#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
  margin-left: 0;
  margin-right: 70px; }

#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label::after {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: -9px;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.timeline-label p {
  font-family: Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
  margin-bottom: 3px; }

#process .timeline-centered .timeline-entry .timeline-entry-inner {
  position: relative;
  margin-left: -20px; }

#process .timeline-centered .timeline-entry .timeline-entry-inner::before,
#process .timeline-centered .timeline-entry .timeline-entry-inner::after {
  content: " ";
  display: table; }

#process .timeline-centered .timeline-entry .timeline-entry-inner::after {
  clear: both; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
  position: absolute;
  left: -100px;
  text-align: right;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
  display: block; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
  font-size: 15px;
  font-weight: bold; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
  font-size: 12px; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
  background: #fff;
  color: #737881;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
  border: 4px solid #f5f5f6;
  line-height: 40px;
  font-size: 15px;
  float: left;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  margin-left: -9px; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
  background-color: #303641;
  color: #fff; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
  position: relative;
  background: #eee;
  padding: 30px;
  margin-left: 60px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 9px 0;
  border-color: transparent #eee transparent transparent;
  left: 0;
  top: 50%;
  margin-top: -9px;
  margin-left: -9px; }

#process .line {
  position: absolute;
  display: block;
  width: 4px;
  background: #eee;
  top: -3%;
  right: -30px;
  bottom: -3%; }

#process .present,
#process .born {
  font-size: 14px;
  font-family: "Georgia", serif, Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
  font-style: italic;
  color: #333;
  padding: 10px;
  background-color: #eee;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

#process .present::after,
#process .born::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #eee;
  border-width: 10px;
  margin-top: -10px; }

#process .present {
  position: absolute;
  top: -3%;
  right: 0;
  margin-top: -20px;
  line-height: 100%; }

#process .born {
  position: absolute;
  bottom: -3%;
  right: 0;
  margin-bottom: -20px;
  line-height: 100%; }

#process .dot_tp {
  position: absolute;
  top: -3%;
  right: -35px;
  background-color: transparent;
  height: 15px;
  width: 15px;
  margin-top: -13px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #eee; }

#process .dot_bt {
  position: absolute;
  bottom: -3%;
  right: -35px;
  background-color: transparent;
  height: 15px;
  width: 15px;
  margin-bottom: -13px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #eee; }

#sidebar .widget {
  background: var(--headerBgColor);
  padding: 10px;
  margin-top: 20px; }
  #sidebar .widget .widget-title {
    color: var(--fontColor);
    line-height: 2.7;
    margin-top: 0;
    font-size: 16px;
    border-bottom: 1px solid var(--borderColor);
    display: block;
    font-weight: normal; }
  #sidebar .widget .comments-title {
    color: var(--fontColor);
    line-height: 2.7;
    margin-top: 0;
    font-size: 16px;
    border-bottom: 0px solid var(--borderColor);
    display: block;
    font-weight: normal; }
  #sidebar .widget .tagcloud {
    margin-top: 10px; }
    #sidebar .widget .tagcloud a {
      line-height: 1.5;
      padding: 5px; }
  #sidebar .widget ul {
    list-style: none;
    padding: 0; }
    #sidebar .widget ul li {
      margin: 5px 0;
      line-height: 1.5; }
  #sidebar .widget .category-list-count {
    padding-left: 5px;
    color: #6e7173; }
  #sidebar .widget .category-list-count::before {
    content: "("; }
  #sidebar .widget .category-list-count::after {
    content: ")"; }
  #sidebar .widget .search-form {
    position: relative;
    overflow: hidden; }
    #sidebar .widget .search-form input {
      background: #fff 8px 8px no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6%2BR8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAG11AABzoAAA%2FN0AAINkAABw6AAA7GgAADA%2BAAAQkOTsmeoAAAESSURBVHjajNCxS9VRGMbxz71E4OwgoXPQxVEpXCI47%2BZqGP0LCoJO7UVD3QZzb3SwcHB7F3Uw3Zpd%2FAPCcJKG7Dj4u%2FK7Pwp94HDg5Xyf5z1Pr9YKImKANTzFXxzjU2ae6qhXaxURr%2FAFl9hHDy%2FwEK8z89sYVEp5gh84wMvMvGiSJ%2FEV85jNzLMR1McqfmN5BEBmnmMJFSvtpH7jdJiZv7q7Z%2BZPfMdcF6rN%2FT%2F1m2LGBkd4HhFT3dcRMY2FpskxaLNpayciHrWAGeziD7b%2BVfkithuTk8bkGa4wgWFmbrSTZOYeBvjc%2BucQj%2FEe6xHx4Taq1nrnKaW8K6XUUsrHWuvNevdRRLzFGwzvDbXAB9cDAHvhedDruuxSAAAAAElFTkSuQmCC);
      padding: 7px 11px 7px 28px;
      line-height: 16px;
      border: 1px solid #bbb;
      width: 65%;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }

input#local-search-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px; }

ul.search-result-list {
  padding-left: 10px; }

a.search-result-title {
  font-weight: bold;
  font-size: 15px;
  color: #555; }

p.search-result {
  color: var(--fontColor);
  text-align: justify; }

em.search-keyword {
  font-weight: bold;
  font-style: normal;
  color: #01579f; }

.label-title {
  margin-top: 1.1em;
  font-size: 20px;
  font-weight: normal;
  color: #888; }

figure.highlight,
.codeblock {
  margin: 10px 0 20px 0;
  line-height: 1.1em;
  color: #333;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.55) 0px 2px 10px;
  background-color: #282c34; }
  figure.highlight::before,
  .codeblock::before {
    content: '';
    display: block;
    background: url(https://scarsu.oss-cn-shanghai.aliyuncs.com/picgo20200915134644.png);
    height: 30px;
    width: 100%;
    background-size: 40px;
    background-repeat: no-repeat;
    background-color: #282c34;
    margin-bottom: 0px;
    border-radius: 5px;
    background-position: 10px 10px; }
  figure.highlight table,
  .codeblock table {
    display: block;
    width: 100%; }
  figure.highlight pre,
  figure.highlight .gutter,
  figure.highlight .code,
  figure.highlight .tag,
  .codeblock pre,
  .codeblock .gutter,
  .codeblock .code,
  .codeblock .tag {
    background-color: inherit;
    font-family: Menlo, Consolas, monospace;
    border: none;
    padding: 0;
    margin: 0;
    cursor: text;
    color: var(--fontColor); }
  figure.highlight .gutter,
  figure.highlight .code,
  .codeblock .gutter,
  .codeblock .code {
    vertical-align: top; }
  figure.highlight.plain .gutter,
  .codeblock.plain .gutter {
    display: none; }
  figure.highlight figcaption,
  .codeblock figcaption {
    font-size: 13px;
    padding: 0 15px 20px;
    margin: 0;
    background: #f7f8f8;
    color: #999999; }
    figure.highlight figcaption a,
    .codeblock figcaption a {
      float: right;
      color: #01579f; }
  figure.highlight .gutter,
  .codeblock .gutter {
    color: var(--fontColor);
    border-right: 1px solid var(--borderColor);
    padding: 0.3em 15px; }
  figure.highlight .code,
  .codeblock .code {
    padding: 0.3em 15px 0.3em 1em;
    width: 100%; }
    figure.highlight .code pre,
    .codeblock .code pre {
      max-width: 700px;
      overflow-x: auto;
      overflow-y: hidden; }
  figure.highlight .line,
  .codeblock .line {
    height: 1.3em;
    font-size: 13px; }

.highlight .comment {
  color: #abb2bf; }

.highlight .string {
  color: #98c379; }

.highlight .keyword {
  color: #c678dd; }

.highlight.apacheconf .code .common,
.highlight.apacheconf .code .nomarkup,
.highlight.apacheconf .code .attribute,
.highlight.apacheconf .code .variable,
.highlight.apacheconf .code .cbracket,
.highlight.apacheconf .code .keyword {
  color: #c678dd; }

.highlight.apacheconf .code .sqbracket {
  color: #df5000; }

.highlight.apacheconf .code .section,
.highlight.apacheconf .code .tag {
  color: #c678dd; }

.highlight.bash .code .shebang {
  color: #abb2bf; }

.highlight.bash .code .literal,
.highlight.bash .code .built_in {
  color: #c678dd; }

.highlight.bash .code .variable {
  color: #abb2bf; }

.highlight.bash .code .title {
  color: #795da3; }

.highlight.coffeescript .code .title {
  color: #795da3; }

.highlight.coffeescript .code .literal,
.highlight.coffeescript .code .built_in,
.highlight.coffeescript .code .number {
  color: #c678dd; }

.highlight.coffeescript .code .reserved,
.highlight.coffeescript .code .attribute {
  color: #1d3e81; }

.highlight.coffeescript .code .subst,
.highlight.coffeescript .code .regexp,
.highlight.coffeescript .code .attribute {
  color: #df5000; }

.highlight.cpp .code .preprocessor,
.highlight.c .code .preprocessor {
  color: #df5000; }

.highlight.cpp .code .meta-keyword,
.highlight.c .code .meta-keyword {
  color: #a71d5d; }

.highlight.cpp .code .title,
.highlight.c .code .title {
  color: #795da3; }

.highlight.cpp .code .number,
.highlight.cpp .code .built_in,
.highlight.c .code .number,
.highlight.c .code .built_in {
  color: #c678dd; }

.highlight.cs .code .preprocessor,
.highlight.cs .code .preprocessor .keyword {
  color: #abb2bf; }

.highlight.cs .code .title {
  color: #795da3; }

.highlight.cs .code .number,
.highlight.cs .code .built_in {
  color: #c678dd; }

.highlight.cs .code .xmlDocTag,
.highlight.cs .code .doctag {
  color: #c678dd; }

.highlight.css .code .at_rule,
.highlight.css .code .important,
.highlight.css .code .meta {
  color: #a71d5d; }

.highlight.css .code .attribute,
.highlight.css .code .hexcolor,
.highlight.css .code .number,
.highlight.css .code .function {
  color: #c678dd; }

.highlight.css .code .attr_selector,
.highlight.css .code .value {
  color: #abb2bf; }

.highlight.css .code .id,
.highlight.css .code .class,
.highlight.css .code .pseudo,
.highlight.css .code .selector-pseudo {
  color: #795da3; }

.highlight.css .code .tag,
.highlight.css .code .selector-tag {
  color: #c678dd; }

.highlight.diff .code .chunk,
.highlight.diff .code .meta {
  color: #795da3;
  font-weight: bold; }

.highlight.diff .code .addition {
  color: #55a532;
  background-color: #eaffea; }

.highlight.diff .code .deletion {
  color: #bd2c00;
  background-color: #ffecec; }

.highlight.http .code .attribute,
.highlight.http .code .attr {
  color: #183691; }

.highlight.http .code .literal {
  color: #c678dd; }

.highlight.http .code .request {
  color: #a71d5d; }

.highlight.ini .code .title,
.highlight.ini .code .section {
  color: #795da3; }

.highlight.ini .code .setting,
.highlight.ini .code .attr {
  color: #a71d5d; }

.highlight.ini .code .value,
.highlight.ini .code .keyword {
  color: #abb2bf; }

.highlight.java .code .title {
  color: #795da3; }

.highlight.java .code .javadoc {
  color: #969896; }

.highlight.java .code .meta,
.highlight.java .code .annotation,
.highlight.java .code .javadoctag {
  color: #a71d5d; }

.highlight.java .code .number {
  color: #c678dd; }

.highlight.java .code .params {
  color: #1d3e81; }

.highlight.js .code .built_in,
.highlight.js .code .title {
  color: #795da3; }

.highlight.js .code .javadoc {
  color: #969896; }

.highlight.js .code .tag,
.highlight.js .code .javadoctag {
  color: #a71d5d; }

.highlight.js .code .tag .title {
  color: #abb2bf; }

.highlight.js .code .regexp {
  color: #df5000; }

.highlight.js .code .literal,
.highlight.js .code .number {
  color: #c678dd; }

.highlight.json .code .attribute {
  color: #183691; }

.highlight.json .code .number,
.highlight.json .code .literal {
  color: #c678dd; }

.highlight.mak .code .constant {
  color: #abb2bf; }

.highlight.mak .code .title {
  color: #795da3; }

.highlight.mak .code .keyword,
.highlight.mak .code .meta-keyword {
  color: #c678dd; }

.highlight.md .code .value,
.highlight.md .code .link_label,
.highlight.md .code .strong,
.highlight.md .code .emphasis,
.highlight.md .code .blockquote,
.highlight.md .code .quote,
.highlight.md .code .section {
  color: #183691; }

.highlight.md .code .link_reference,
.highlight.md .code .symbol,
.highlight.md .code .code {
  color: #c678dd; }

.highlight.md .code .link_url,
.highlight.md .code .link {
  text-decoration: underline; }

.highlight.nginx .code .title,
.highlight.nginx .code .attribute {
  color: #a71d5d; }

.highlight.nginx .code .built_in,
.highlight.nginx .code .literal {
  color: #c678dd; }

.highlight.nginx .code .regexp {
  color: #183691; }

.highlight.nginx .code .variable {
  color: #abb2bf; }

.highlight.objectivec .code .preprocessor,
.highlight.objectivec .code .meta {
  color: #a71d5d; }
  .highlight.objectivec .code .preprocessor .title,
  .highlight.objectivec .code .meta .title {
    color: #df5000; }

.highlight.objectivec .code .meta-string {
  color: #183691; }

.highlight.objectivec .code .title {
  color: #795da3; }

.highlight.objectivec .code .literal,
.highlight.objectivec .code .number,
.highlight.objectivec .code .built_in {
  color: #c678dd; }

.highlight.perl .code .sub {
  color: #795da3; }

.highlight.perl .code .title {
  color: #795da3; }

.highlight.perl .code .regexp {
  color: #df5000; }

.highlight.php .code .phpdoc,
.highlight.php .code .doctag {
  color: #a71d5d; }

.highlight.php .code .regexp {
  color: #df5000; }

.highlight.php .code .literal,
.highlight.php .code .number {
  color: #c678dd; }

.highlight.php .code .title {
  color: #795da3; }

.highlight.python .code .decorator,
.highlight.python .code .title,
.highlight.python .code .meta {
  color: #795da3; }

.highlight.python .code .number {
  color: #c678dd; }

.highlight.ruby .code .parent,
.highlight.ruby .code .title {
  color: #795da3; }

.highlight.ruby .code .prompt,
.highlight.ruby .code .constant,
.highlight.ruby .code .number,
.highlight.ruby .code .subst .keyword,
.highlight.ruby .code .symbol {
  color: #c678dd; }

.highlight.sql .built_in {
  color: #a71d5d; }

.highlight.sql .number {
  color: #c678dd; }

.highlight.xml .tag, .highlight.html .tag {
  color: #abb2bf; }

.highlight.xml .value, .highlight.html .value {
  color: #183691; }

.highlight.xml .attribute,
.highlight.xml .attr, .highlight.html .attribute,
.highlight.html .attr {
  color: #795da3; }

.highlight.xml .title,
.highlight.xml .name, .highlight.html .title,
.highlight.html .name {
  color: #c678dd; }

.highlight.puppet .title {
  color: #795da3; }

.highlight.puppet .function {
  color: #c678dd; }

.highlight.puppet .name {
  color: #a71d5d; }

.highlight.puppet .attr {
  color: #c678dd; }

.highlight.less .tag,
.highlight.less .at_rule {
  color: #a71d5d; }

.highlight.less .number,
.highlight.less .hexcolor,
.highlight.less .function,
.highlight.less .attribute {
  color: #c678dd; }

.highlight.less .built_in {
  color: #df5000; }

.highlight.less .id,
.highlight.less .pseudo,
.highlight.less .class,
.highlight.less .selector-id,
.highlight.less .selector-class,
.highlight.less .selector-tag {
  color: #795da3; }

.highlight.scss .tag,
.highlight.scss .at_rule,
.highlight.scss .important {
  color: #a71d5d; }

.highlight.scss .number,
.highlight.scss .hexcolor,
.highlight.scss .function,
.highlight.scss .attribute {
  color: #c678dd; }

.highlight.scss .variable {
  color: #abb2bf; }

.highlight.scss .built_in {
  color: #df5000; }

.highlight.scss .id,
.highlight.scss .pseudo,
.highlight.scss .class,
.highlight.scss .preprocessor,
.highlight.scss .selector-class,
.highlight.scss .selector-id {
  color: #795da3; }

.highlight.scss .tag,
.highlight.scss .selector-tag {
  color: #c678dd; }

.highlight.stylus .at_rule {
  color: #a71d5d; }

.highlight.stylus .tag,
.highlight.stylus .selector-tag {
  color: #c678dd; }

.highlight.stylus .number,
.highlight.stylus .hexcolor,
.highlight.stylus .attribute,
.highlight.stylus .params {
  color: #c678dd; }

.highlight.stylus .class,
.highlight.stylus .id,
.highlight.stylus .pseudo,
.highlight.stylus .title,
.highlight.stylus .selector-id,
.highlight.stylus .selector-pseudo,
.highlight.stylus .selector-class {
  color: #795da3; }

.highlight.go .typename {
  color: #a71d5d; }

.highlight.go .built_in,
.highlight.go .constant {
  color: #c678dd; }

.highlight.swift .preprocessor {
  color: #a71d5d; }

.highlight.swift .title {
  color: #795da3; }

.highlight.swift .built_in,
.highlight.swift .number,
.highlight.swift .type {
  color: #c678dd; }

.highlight.yml .line,
.highlight.yml .attr {
  color: #63a35c; }

.highlight.yml .line,
.highlight.yml .string,
.highlight.yml .type,
.highlight.yml .literal,
.highlight.yml .meta {
  color: #183691; }

.highlight.yml .number {
  color: #c678dd; }

figure.highlight .code, .codeblock .code,
figure.highlight .code pre, .codeblock .code pre {
  width: fit-content !important; }

figure.highlight table,
.codeblock table {
  background: var(--codeBgColor); }

.gist .line,
.gist .line-number {
  font-family: Menlo, Consolas, monospace;
  font-size: 1em;
  margin: 0 0 5px 0; }

/* table*/
/* 
table {
  margin: auto auto 15px;
  width: 100%;
  background: transparent;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  th {
    font-weight: bold;
    padding: 5px 10px;
    border-bottom: 2px solid #909ba2;
  }
  td {
    padding: 5px 10px;
  }
  tr {
    &:nth-child(2n) {
      background: #f7f8f8;
    }
  }
} */
.article-share-link {
  cursor: pointer;
  float: right;
  margin-left: 20px; }
  .article-share-link:before {
    font-family: "FontAwesome";
    content: "\f064";
    padding-right: 6px; }

.back-home-link {
  cursor: pointer;
  float: right;
  margin-left: 20px;
  color: #01579f; }
  .back-home-link:before {
    font-family: "FontAwesome";
    content: "\f015";
    padding-right: 6px; }
  .back-home-link:hover {
    color: #fff;
    background-color: #01579f; }

.article-share-box {
  position: absolute;
  display: none;
  background: #fff;
  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;
  box-sizing: border-box;
  font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 0 15px;
  color: #555;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px 3px 0 0;
  height: 36px;
  line-height: 36px; }

.article-share-links {
  background: #eee; }

.article-share-element, .article-share-twitter, .article-share-facebook, .article-share-weibo, .article-share-qrcode {
  width: 50px;
  height: 36px;
  display: block;
  float: left;
  position: relative;
  color: #999;
  text-shadow: 0 1px #fff; }
  .article-share-element:before, .article-share-twitter:before, .article-share-facebook:before, .article-share-weibo:before, .article-share-qrcode:before {
    font-size: 20px;
    font-family: "FontAwesome";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    text-align: center; }
  .article-share-element:hover, .article-share-twitter:hover, .article-share-facebook:hover, .article-share-weibo:hover, .article-share-qrcode:hover {
    color: #fff; }

.article-share-twitter:before {
  content: "\f099"; }

.article-share-twitter:hover {
  background: #00aced; }

.article-share-facebook:before {
  content: "\f09a"; }

.article-share-facebook:hover {
  background: #3b5998; }

.article-share-weibo:before {
  content: "\f18a"; }

.article-share-weibo:hover {
  background: #d44137; }

.article-share-qrcode:before {
  content: "\f029"; }

.article-share-qrcode:hover, .article-share-qrcode:active {
  background: #38ad5a; }
  .article-share-qrcode:hover ~ .qrcode, .article-share-qrcode:active ~ .qrcode {
    display: block;
    text-align: center; }

.qrcode {
  display: none; }

.disqus_click_btn {
  line-height: 30px;
  margin: 0;
  min-width: 50px;
  padding: 0 14px;
  display: inline-block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  border: 0;
  background: rgba(158, 158, 158, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: #fff;
  background-color: #999999;
  text-shadow: 0; }

#vcomment .vpanel .vwrap {
  border-color: var(--borderColor); }

/* ========================= 外部插件样式 end */
/* ========================= 响应式样式 start */
/* ========================= 布局结构 start */
/*
  .body_container
    #header
    #layout
      .content_container
      #sidebar
    #footer
*/
/* ========================= 布局结构 end */
/* ========================= >1024 laptop-l/screen start */
@media (min-width: 1025px) {
  :root {
    --headerHeight:100px;
    --leftPercent:72%;
    --rightPercent:25%; }
  .body_container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: block;
    overflow: auto; }
  #header {
    height: var(--headerHeight);
    z-index: 2;
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--headerBgColor);
    overflow: visible; }
    #header .header-box {
      width: 90vw;
      max-width: 1230px;
      margin: 0 auto; }
  #layout {
    overflow: visible;
    width: 90vw;
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    position: relative;
    justify-content: space-between;
    padding-bottom: 50rem; }
  .content_container {
    flex: 0 0 var(--leftPercent);
    overflow-y: visible; }
    .content_container .realPost {
      margin: 20px 10px 0 0;
      padding: 20px; }
  #sidebar {
    flex: 0 0 var(--rightPercent);
    overflow-y: auto;
    position: sticky;
    top: var(--headerHeight);
    z-index: 1;
    height: calc(100vh - var(--headerHeight)); }
    #sidebar::-webkit-scrollbar {
      width: 0;
      height: 0;
      cursor: none !important; }
    #sidebar::-webkit-scrollbar-track {
      border-radius: 3px;
      cursor: pointer !important;
      background: rgba(0, 0, 0, 0.06);
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.08); }
    #sidebar::-webkit-scrollbar-thumb {
      cursor: pointer !important;
      border-radius: 3px;
      background: #ddd;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2); }
  #footer {
    height: 50px;
    width: 100%;
    padding: 0 10vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
  #header .site-name {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    height: 55px; }
    #header .site-name > h1 {
      display: none; }
    #header .site-name #logo_profile_photo {
      width: 50px;
      border-radius: 25px; }
    #header .site-name .right {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-end; }
    #header .site-name #logo {
      font: bold italic 38px/1.12 "Times New Roman", Georgia, Times, sans-serif;
      color: var(--fontColor);
      line-height: 0.8em;
      margin-right: 14rem; }
      #header .site-name #logo:hover {
        color: var(--darkFontColor); }
    #header .site-name .subtitle {
      display: none; }
    #header .site-name .head-link {
      margin: 0 10rem;
      color: var(--fontColor); }
      #header .site-name .head-link i {
        margin-right: 3rem; }
    #header .site-name #lighter-btn {
      display: none;
      width: 0;
      height: 0;
      visibility: hidden;
      box-sizing: border-box;
      padding: 0; }
    #header .site-name #lighter-btn + label {
      background-color: #e6e6e6;
      border-radius: 7px;
      cursor: pointer;
      display: inline-block;
      height: 14px;
      position: relative;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4;
      width: 30px;
      margin: 0 10rem; }
    #header .site-name #lighter-btn + label:after {
      background-color: var(--headerBgColor);
      border-radius: 50%;
      content: "";
      height: 12px;
      left: 1px;
      position: absolute;
      top: 0.5px;
      width: 12px;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4; }
    #header .site-name #lighter-btn:checked + label:after {
      left: 17px; }
    #header .site-name #lighter-btn:checked + label {
      background-color: #ffc730;
      box-shadow: none; }
    #header .site-name input[type="checkbox"]:checked + label,
    #header .site-name input[type="checkbox"]:not(:checked) + label {
      transition: all 0.2s ease; }
    #header .site-name input[type="checkbox"]:checked + label:after {
      transition: all 0.2s ease; }
    #header .site-name input[type="checkbox"]:not(:checked) + label:after {
      transition: all 0.2s ease; }
  #header #nav-menu {
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    position: absolute;
    bottom: -1px;
    line-height: 30px; }
    #header #nav-menu a {
      padding: 0 15px; }
      #header #nav-menu a.current {
        border: 1px solid var(--borderColor);
        border-bottom-color: var(--bodyBgColor);
        background-color: var(--bodyBgColor); }
  #footer span {
    font-size: 0.9em; }
  .post {
    margin: 20px 10px 0 0;
    padding: 20px; }
  .post .post-content {
    padding: 15px 0; } }

/* ========================= >1024 laptop-l/screen end */
/* ========================= <=1024 laptop start */
@media (max-width: 1024px) {
  body {
    font-size: 12rem; }
  :root {
    --headerHeight:80px;
    --sidebarWidth: 30vw;
    --sidebarWidthNeg: -30vw; }
  .body_container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: block;
    overflow: auto; }
  #header {
    height: var(--headerHeight);
    z-index: 2;
    position: sticky;
    top: 0;
    width: 100%;
    padding: 0 10vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--headerBgColor);
    overflow: visible; }
  #layout {
    overflow: visible;
    width: 100%;
    padding: 0 10vw;
    display: block;
    position: relative;
    padding-bottom: 50rem; }
  .content_container {
    overflow-y: visible; }
  #sidebar {
    padding: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    right: var(--sidebarWidthNeg);
    top: 0;
    z-index: 9;
    width: var(--sidebarWidth);
    height: 100vh;
    text-align: left;
    background: var(--bodyBgColor);
    color: var(--fontColor);
    padding: 0;
    transition: transform ease 0.2s, right ease 0.2s;
    box-shadow: -1px 1px 3px 0px rgba(0, 0, 0, 0.25); }
    #sidebar.expand {
      right: 0;
      padding: 0 10px; }
      #sidebar.expand .widget {
        margin-top: -80px; }
      #sidebar.expand ul.category-list {
        overflow-y: auto;
        padding-bottom: 30px;
        height: calc(100vh - 60px); }
      #sidebar.expand::before {
        left: -48px;
        content: "→";
        text-decoration: none;
        background-color: var(--bodyBgColor);
        font-size: 2em;
        z-index: -1;
        box-shadow: -1px 1px 2px 0px var(--boxShadowColor);
        height: 70px;
        line-height: 70px;
        width: 38px;
        top: 4px;
        transform: rotate(0);
        border-radius: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
      #sidebar.expand a {
        line-height: 22px;
        width: 80%;
        box-sizing: border-box;
        display: inline-block; }
      #sidebar.expand a:hover {
        border: none;
        border-bottom-color: var(--headerBgColor);
        background: var(--headerBgColor); }
      #sidebar.expand a.current {
        background: var(--headerBgColor); }
    #sidebar::before {
      content: "Category";
      background-color: var(--bodyBgColor);
      position: relative;
      box-sizing: border-box;
      font-style: italic;
      text-decoration: underline;
      padding: 0px;
      text-align: center;
      opacity: 1;
      font-size: 15rem;
      height: 38px;
      line-height: 38px;
      cursor: pointer;
      border-radius: 5px;
      width: 70px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      box-shadow: -1px -1px 3px 0px var(--boxShadowColor);
      transform: rotate(-90deg);
      transform-origin: 0 0;
      top: 75px;
      left: -44px; }
  #footer {
    height: 50px;
    width: 100%;
    padding: 0 10vw;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center; }
  #header .site-name {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    height: var(--headerHeight);
    padding-bottom: 7px; }
    #header .site-name > h1 {
      display: none; }
    #header .site-name #logo_profile_photo {
      width: 70px;
      border-radius: 35px; }
    #header .site-name .right {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-end; }
    #header .site-name #logo {
      font: bold italic 38px/1.12 "Times New Roman", Georgia, Times, sans-serif;
      color: var(--fontColor);
      line-height: 0.8em;
      margin-right: 14rem; }
      #header .site-name #logo:hover {
        color: var(--darkFontColor); }
    #header .site-name .subtitle {
      display: none; }
    #header .site-name .head-link {
      margin: 0 10rem;
      color: var(--fontColor); }
      #header .site-name .head-link i {
        margin-right: 3rem; }
    #header .site-name #lighter-btn {
      display: none;
      width: 0;
      height: 0;
      visibility: hidden;
      box-sizing: border-box;
      padding: 0; }
    #header .site-name #lighter-btn + label {
      background-color: #e6e6e6;
      border-radius: 7px;
      cursor: pointer;
      display: inline-block;
      height: 14px;
      position: relative;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4;
      width: 30px;
      margin: 0 10rem; }
    #header .site-name #lighter-btn + label:after {
      background-color: #fff;
      border-radius: 50%;
      content: "";
      height: 12px;
      left: 1px;
      position: absolute;
      top: 0.5px;
      width: 12px;
      box-shadow: 0.2px 0.2px 1px 0.5px #b4b4b4; }
    #header .site-name #lighter-btn:checked + label:after {
      left: 17px; }
    #header .site-name #lighter-btn:checked + label {
      background-color: #ffc730;
      box-shadow: none; }
    #header .site-name input[type="checkbox"]:checked + label,
    #header .site-name input[type="checkbox"]:not(:checked) + label {
      transition: all 0.2s ease; }
    #header .site-name input[type="checkbox"]:checked + label:after {
      transition: all 0.2s ease; }
    #header .site-name input[type="checkbox"]:not(:checked) + label:after {
      transition: all 0.2s ease; }
  #header #nav-menu {
    min-height: 40px;
    padding: 0;
    position: relative;
    right: 0;
    bottom: -3px;
    position: fixed;
    display: flex;
    flex-direction: column;
    left: -50vw;
    top: 0;
    width: 50vw;
    height: 100vh;
    text-align: left;
    background: var(--headerBgColor);
    color: #000;
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.25);
    transition: transform ease 0.2s, left ease 0.2s; }
    #header #nav-menu a {
      display: inline-block;
      padding: 3px 20px 3px;
      line-height: 30px;
      color: var(--fontColor);
      font-size: 13px;
      border: 1px solid transparent; }
      #header #nav-menu a:hover {
        color: var(--fontColor); }
      #header #nav-menu a.current {
        border: 1px solid var(--headerBgColor);
        border-bottom-color: var(--headerBgColor); }
    #header #nav-menu a:first-of-type {
      margin-top: -70px; }
    #header #nav-menu.expand {
      left: 0;
      background-color: var(--bodyBgColor); }
      #header #nav-menu.expand::before {
        content: "←";
        border-left: none;
        text-decoration: none;
        background-color: var(--bodyBgColor);
        font-size: 2em;
        z-index: -1;
        box-shadow: 1px 1px 2px 0px var(--boxShadowColor);
        height: 70px;
        line-height: 70px;
        width: 38px;
        top: 4px;
        transform: rotate(0);
        border-radius: 5px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
      #header #nav-menu.expand a {
        line-height: 37px;
        height: 37px;
        box-sizing: border-box; }
      #header #nav-menu.expand a:hover {
        border: 1px solid var(--headerBgColor);
        border-bottom-color: var(--headerBgColor);
        background: var(--headerBgColor); }
      #header #nav-menu.expand a.current {
        background: var(--headerBgColor); }
    #header #nav-menu::before {
      content: "NAV";
      color: var(--fontColor);
      background-color: var(--bodyBgColor);
      position: relative;
      box-sizing: border-box;
      left: 50vw;
      font-style: italic;
      opacity: 1;
      font-size: 15rem;
      cursor: pointer;
      box-shadow: var(--boxShadowColor) 2px -1px 5px 0px;
      transform: rotate(90deg);
      transform-origin: 0 100%;
      top: -33px;
      width: 70px;
      height: 38px;
      line-height: 38px;
      text-align: center;
      text-decoration: underline;
      border-radius: 5px 5px 0px 0px;
      padding: 0px; }
  #footer span {
    font-size: 0.9em; }
  .post {
    margin: 20px 0;
    padding: 20px; }
    .post .post-title {
      font-size: 18rem; }
    .post .post-content {
      font-size: 12rem; }
  .post .gallery > .post-img {
    flex: 1; }
  .post .gallery > .right {
    flex: 1;
    position: relative; }
    .post .gallery > .right .post-meta {
      position: absolute;
      bottom: 0;
      right: 0; }
  #sidebar .widget {
    background: inherit; }
  .realPost {
    margin-right: 0; } }

/* ========================= <=1024 laptop-l/screen 布局 end */
/* ========================= <=768 mobile-l start */
@media (max-width: 768px) {
  :root {
    --headerHeight:80px;
    --sidebarWidth: 40vw;
    --sidebarWidthNeg: -40vw; }
  .post {
    padding: 10px; }
  .post .post-title {
    font-size: 15rem; }
  .post .post-content {
    padding: 5px 0;
    line-height: 1.2; }
  .post .gallery > .right {
    display: flex;
    flex-direction: column; }
    .post .gallery > .right .post-title {
      flex: 0; }
    .post .gallery > .right .post-content {
      flex: 1; }
    .post .gallery > .right .post-meta {
      position: relative;
      flex: 0; }
  .realPost {
    font-size: 12rem; }
    .realPost .post-title {
      font-size: 17rem;
      font-weight: bold; }
    .realPost .post-content {
      font-size: 12rem; }
    .realPost .toc-icon {
      top: 85px; }
    .realPost #toc {
      top: 85px; } }

/* ========================= <=768 mobile-l end */
/* ========================= <=428 mobile start */
@media (max-width: 480px) {
  body {
    font-size: 12rem; }
  :root {
    --headerHeight:50px;
    --sidebarWidth: 50vw;
    --sidebarWidthNeg: -50vw; }
  #layout {
    padding: 10px 0 50rem 0; }
  #sidebar.expand {
    padding: 0; }
  #sidebar::before {
    top: 70px;
    height: 10vw;
    line-height: 10vw;
    left: calc(-10vw + -6px); }
  #sidebar.expand::before {
    top: 0;
    width: 10vw;
    left: -10vw; }
  #header #nav-menu.expand::before {
    top: 0;
    width: 10vw; }
  #header #nav-menu::before {
    top: -10vw;
    height: 10vw;
    line-height: 10vw; }
  #header .site-name #lighter-btn + label {
    margin: 0; }
  .realPost {
    font-size: 12rem;
    padding: 15px 10px; }
    .realPost .post-title {
      font-size: 15rem;
      font-weight: bold; }
    .realPost .lighter-btn {
      display: none !important; }
    .realPost .post-content {
      font-size: 12rem;
      font-size: 12rem; }
      .realPost .post-content ul {
        padding-left: 20px; }
      .realPost .post-content figcaption {
        font-size: 12rem; }
      .realPost .post-content p {
        font-size: 12rem; }
      .realPost .post-content h2 {
        background-color: #000;
        color: #fff;
        padding: 2px 10px;
        width: fit-content;
        font-size: 17px;
        margin: 40px auto 10px; }
      .realPost .post-content h2 strong {
        color: #fff; }
      .realPost .post-content h3 {
        font-size: 15rem; }
      .realPost .post-content img {
        box-shadow: rgba(84, 70, 35, 0.15) 0px 2px 8px, rgba(84, 70, 35, 0.15) 0px 1px 3px, rgba(255, 255, 255, 0.5) 0px 0px 0px 1px;
        width: 90%;
        border-radius: 4px;
        margin-top: 10px; }
      .realPost .post-content p code,
      .realPost .post-content li code {
        color: #d5ab86; }
      .realPost .post-content:after {
        content: "- END -";
        font-size: 15rem;
        display: block;
        text-align: center;
        margin-top: 50px;
        color: #999;
        border-bottom: 1px solid #eee; }
    .realPost .post-nav a {
      font-size: 12rem; }
    .realPost ::-webkit-scrollbar-thumb {
      background: #5a5a5a; }
    .realPost #vcomment {
      font-size: 12rem; }
    .realPost .gitment-root-container,
    .realPost .gitment-editor-header,
    .realPost .gitment-container {
      font-size: 12px; }
    .realPost .gitment-root-container .gitment-comment-avatar, .realPost .gitment-root-container .gitment-comment-avatar-img, .realPost .gitment-root-container .gitment-comment-avatar, .realPost .gitment-root-container .gitment-editor-avatar-img, .realPost .gitment-root-container .gitment-editor-avatar svg {
      width: 34px;
      height: 34px; }
    .realPost .gitment-root-container .gitment-comment, .realPost .gitment-root-container .gitment-editor-container {
      padding-left: 30px; }
    .realPost .gitment-root-container .gitment-comment-avatar, .realPost .gitment-root-container .gitment-editor-avatar {
      margin-left: -40px; }
    .realPost .gitment-editor-body textarea {
      min-height: 50px; }
    .realPost .gitment-editor-submit {
      margin-top: 10px;
      font-size: 12px; }
  #header .site-name #logo_profile_photo {
    width: 40px; }
  #header .site-name #logo {
    font-size: 18rem;
    margin-right: 4rem; }
  #header .site-name .head-link {
    margin: 0 7rem; }
  #header .head-link a[title=GitHub] {
    display: none; }
  #header .head-link i.fa-github {
    font-size: 15rem; }
  .post {
    margin: 15px 0;
    padding: 0; }
  .post .post-title {
    font-size: 14rem; }
  .post .post-content {
    font-size: 12rem;
    padding: 10px 0; }
  .post .post-meta {
    margin: 0; }
  .post .post-archive {
    padding-left: 10px; }
  .post {
    padding: 10px; }
  .post .gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0; }
    .post .gallery > .post-img {
      flex: 0 0 100%;
      max-height: 25vh; }
    .post .gallery > .right {
      flex: 0 0 100%;
      position: relative;
      padding: 0; }
      .post .gallery > .right .post-meta {
        position: relative;
        margin-top: 10px; }
    .post .gallery .post-content {
      font-size: 12rem; }
    .post .gallery .post-meta {
      margin: 10px 0; } }

/* ========================= <=428 mobile end */
/* ========================= 响应式样式 end */
/* =========================  取消全局遮罩 start */
#global_loading_mask {
  display: none; }

/* =========================  取消全局遮罩 end */
