html {
  scrollbar-width: thin;
  scrollbar-color: #00bfff #fcf5e5;
}
html::-webkit-scrollbar {
  width: 10px;
  background-color: #fcf5e5;
}
html::-webkit-scrollbar-thumb {
  background-color: #00bfff;
  background-image: -webkit-linear-gradient(30deg, rgba(255,255,255,0.4) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.4) 75%, transparent 75%, transparent);
  -webkit-border-radius: 5em;
  -moz-border-radius: 5em;
  border-radius: 5em;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
::selection {
  background: #00bfff;
  color: #fcf5e5;
}
body {
  font-family: arial, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  position: relative;
  height: 100%;
  margin: 0;
  color: #36454f;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}
ol,
ul,
form,
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: #00bfff;
  cursor: pointer;
}
p {
  word-spacing: 0.05em;
}
pre {
  overflow-x: auto;
}
.flex-box {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  transform: unset !important;
}
.app-body {
  padding: 0 40px;
  margin: auto;
  height: 100%;
  max-width: 1200px;
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .app-body {
    padding: 0 10px;
  }
}
.hljs {
  background: none !important;
}
.wrap-active {
  background-color: rgba(255,255,255,0.9);
}
.small-icon {
  width: 16px;
  margin-right: 2px;
  border-radius: 100%;
}
.article-card .article-summary {
  font-family: system-ui, -apple-system, Arial, 'Helvetica Neue';
}
.header {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition: background 0.5s;
}
.fixed-header {
  position: fixed;
  background-color: rgba(255,255,255,0.98);
  box-shadow: 0 0 3px rgba(14,14,14,0.26);
}
.fixed-header .home-link {
  color: #00bfff;
}
.fixed-header .menu .icon-bar {
  background-color: #808080;
}
.fixed-header .item-link {
  color: #36454f !important;
}
.header-container {
  max-width: 1200px;
  height: 40px;
  margin: auto;
  padding: 10px 40px;
  position: relative;
  font-family: Tahoma, Verdana, Segoe, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;
}
@media screen and (max-width: 768px) {
  .header-container {
    padding: 0.5em 1em;
    position: relative;
  }
}
.home-link {
  display: inline-block;
  margin: auto;
  font-weight: 500;
  font-size: 1.5em;
  color: #fcf5e5;
}
.home-link .logo {
  float: left;
  margin-right: 8px;
  max-height: 1.5em;
}
.home-link .eng_mark {
  text-shadow: 1px 1px 2px #0096ff;
  margin-right: 2px;
}
.home-link .chn_mark {
  background-color: #00bfff;
  border-radius: 15%;
}
.right-list {
  list-style: none;
  float: right;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .right-list {
    display: none;
  }
}
.right-list .list-item {
  display: inline-block;
  margin: 0 8px;
}
.right-list .list-item .item-link {
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  color: #fcf5e5;
  padding-bottom: 3px;
}
.right-list .list-item .item-link:hover {
  font-weight: bold;
}
.right-list .list-item .emoji:hover {
  word-spacing: 0.5em;
}
.right-list .list-item .active {
  font-weight: bold;
  border-bottom: 3px solid #00bfff;
}
.menu {
  display: none;
  float: right;
  width: 24px;
  height: 24px;
  margin-top: 10px;
}
.menu .icon-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 1px;
  margin-top: 4px;
  background-color: #fcf5e5;
}
@media screen and (max-width: 768px) {
  .menu {
    display: block;
  }
}
.menu-mask {
  display: none;
  position: fixed;
  left: 0;
  top: 52px;
  z-index: 99;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  background: rgba(255,255,255,0.98);
  -webkit-transition: max-height 0.2s ease;
  transition: max-height 0.2s ease;
}
@media screen and (max-width: 768px) {
  .menu-mask {
    display: block;
  }
}
.menu-mask .menu-list {
  padding: 0;
}
.menu-mask .menu-list .menu-item {
  position: relative;
  list-style: none;
  text-align: center;
  padding: 10px 0;
}
.menu-mask .menu-list .menu-item:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #e5e4e2;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.menu-mask .menu-list .menu-item .menu-link {
  text-decoration: none;
  color: #808080;
}
.open {
  max-height: 1000px;
  transition-delay: 0.3s;
}
.mobile-active {
  color: #50c878 !important;
  font-weight: bold;
}
header:hover .chn_mark {
  color: #fff;
}
.nomask {
  color: #fff;
}
.app-footer {
  padding: 1em 0;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #e5e4e2;
  background-color: #faf9f6;
  text-align: center;
  font-size: 0.9em;
}
.copyright {
  color: #808080;
  line-height: 1.5;
}
.guide-pager {
  margin: 1em 3em;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}
.page-arrow {
  color: #36454f;
}
.unvisible {
  visibility: hidden;
}
.sidebar {
  position: fixed;
  box-sizing: border-box;
  right: -1.5em;
  bottom: 3em;
  width: 7.5em;
  height: 2.5em;
  padding: 0.3em;
  background-color: #00bfff;
  border-radius: 1.25em;
  transform: translate(4em, 0);
  transition: all 0.3s ease 0.5s;
  -webkit-transition: all 0.3s ease 0.5s;
  box-shadow: 0 0 0.2em 0 rgba(0,0,0,0.12), 0 0.2em 0.2em 0 rgba(0,0,0,0.24);
  z-index: 100;
}
.sidebar:hover {
  right: 1em;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
.sidebar .scroll-top {
  color: #fff;
  font-size: 2em;
  width: 0.9em;
  cursor: pointer;
}
.sidebar .share-icon {
  color: #fff;
  font-size: 2em;
  width: 1em;
  display: inline;
}
.sidebar .share-icon .list-icon {
  position: relative;
  display: block;
  width: 1em;
  bottom: 6.9em;
  left: 1em;
}
#article-banner {
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 80px 20px 25px 20px;
  font-family: sans-serif, system-ui, -apple-system, Arial, 'Helvetica Neue';
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #article-banner {
    padding: 80px 10px 25px 10px;
  }
}
#article-banner .page-title {
  margin: 0.4em 0;
  font-size: 2em;
  color: #fcf5e5;
  text-shadow: 0 0 20px #87cefa;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  #article-banner .page-title {
    font-size: 2em;
  }
}
#article-banner .page-subtitle {
  margin: 10px 0 20px 0;
  color: #f9f6ee;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s;
  transition-delay: 0.2s;
}
#article-banner .post-title {
  margin: 0.4em 0;
  font-size: 2em;
  color: #faf9f6;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #article-banner .post-title {
    font-size: 2em;
  }
}
#article-banner .post-subtitle {
  font-weight: normal;
  margin: 1.2em 0 20px 0;
  color: #fcf5e5;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
  transition-delay: 0.2s;
}
#article-banner .post-date {
  margin: 10px 0 20px 0;
  color: #fcf5e5;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
  transition-delay: 0.2s;
}
#article-banner .arrow-down {
  display: flex;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s;
  transition-delay: 0.2s;
}
#article-banner .arrow-down a {
  z-index: 4;
  display: block;
  width: 25px;
  height: 25px;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-animation-name: shine;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-name: shine;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  border-bottom: 1px solid #fcf5e5;
  border-left: 1px solid #fcf5e5;
}
.post-article {
  position: relative;
  width: 100%;
}
.post-article .front-parent {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.post-article .front-parent .front-child {
  margin: 1em 0;
  flex: fit-content;
}
.post-article .front-parent .front-child .front-label {
  font-family: initial;
  font-weight: bold;
}
.post-article .front-parent .front-child #fontsize-slider,
.post-article .front-parent .front-child #fontsize-value {
  vertical-align: middle;
}
.post-article .article-author {
  font-family: 'Calibri', 'Helvetica Neue', sans-serif, 'Arial';
  font-size: 1.5em;
  font-weight: bold;
  color: #808080;
  margin: 0;
}
.post-article .article-author .authorlogo {
  width: 1.4em;
  border-radius: 100%;
}
.post-article .markdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif, "MS PGothic";
}
.post-article .markdown-content pre,
.post-article .markdown-content code {
  font-family: 'Roboto Mono', Monaco, courier, monospace;
  font-size: 13px;
  padding-bottom: 1em;
  scrollbar-width: thin;
}
@media screen and (max-width: 768px) {
  .post-article .markdown-content pre,
  .post-article .markdown-content code {
    font-size: 12px;
  }
}
.post-article .markdown-content pre .line,
.post-article .markdown-content code .line {
  min-height: 13px;
  margin: 2px 8px 2px 0;
}
.post-article .markdown-content .gutter {
  user-select: none;
}
.post-article .markdown-content img {
  max-width: 100%;
}
.post-article .markdown-content p {
  line-height: 1.6em;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.post-article .markdown-content p code {
  background-color: #fff;
  color: #36454f;
  padding: 3px 5px;
  margin: 0 2px;
  border-radius: 2px;
  white-space: nowrap;
}
.post-article .markdown-content h1 {
  font-size: 2.5em;
  padding: 1em 0 0 0;
  border-bottom: 2px solid #fa3;
}
.post-article .markdown-content h1::first-letter {
  text-transform: capitalize;
}
.post-article .markdown-content h2 {
  font-size: 1.8em;
  background: linear-gradient(90deg, rgba(125,249,255,0.6), rgba(255,255,255,0.6));
  border-left: 20px #40e0d0 solid;
  color: #444;
  line-height: 28px;
  padding: 15px 0px 15px 20px;
}
.post-article .markdown-content h2::first-letter {
  text-transform: capitalize;
}
.post-article .markdown-content h3 {
  padding: 2em 0;
  color: #36454f;
  font-size: 1.5em;
  padding: 10px 0px 10px 10px;
  border-bottom: 1px solid #e5e4e2;
  border-left: 12px #90ee90 solid;
}
.post-article .markdown-content h3:before {
  background: linear-gradient(90deg, rgba(246,114,128,0.6), rgba(255,255,255,0.6));
  color: #0096ff;
  margin-right: 5px;
  font-weight: 700;
}
.post-article .markdown-content h4 {
  font-size: 1.4em;
}
.post-article .markdown-content h4:before {
  content: "#";
  color: #0096ff;
  margin-right: 5px;
  font-weight: 700;
}
.post-article .markdown-content h5 {
  font-size: 1.2em;
}
.post-article .markdown-content h6 {
  font-size: 1em;
}
.post-article .markdown-content a:hover {
  color: #fa3;
}
.post-article .markdown-content blockquote {
  margin: 1em 0;
  padding: 15px 20px;
  border-left: 4px solid #00bfff;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.post-article .markdown-content ul,
.post-article .markdown-content ol {
  overflow: auto;
  margin: 15px 0;
}
.post-article .markdown-content li {
  line-height: 2em;
}
.post-article .markdown-content .small-img {
  display: inline;
  margin: 0px auto;
}
.post-article .markdown-content .profile {
  display: inline;
  margin: 0px auto;
  height: 32px;
  width: 32px;
  border-radius: 100%;
}
.post-article .markdown-content img {
  max-width: 100%;
  display: block;
  margin: 20px auto;
  cursor: zoom-in;
}
.post-article .markdown-content figure {
  background: #fff;
  padding: 0 10px;
  border-radius: 2px;
  margin: 20px 0;
  overflow: auto;
  position: relative;
}
.post-article .markdown-content figure:after {
  content: attr(data-lang);
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  text-align: right;
  font-size: 0.7em;
  padding: 5px 10px 0;
  line-height: 15px;
  height: 15px;
  font-weight: 500;
}
.post-article .markdown-content > table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .post-article .markdown-content > table {
    width: 100%;
    overflow: scroll;
  }
}
.post-article .markdown-content > table thead {
  background-color: #00bfff;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e5e4e2;
}
.post-article .markdown-content > table thead th {
  padding: 5px 10px;
  color: #fcf5e5;
}
.post-article .markdown-content > table tbody tr:nth-child(even) {
  background: #e6eed6;
}
.post-article .markdown-content > table tbody tr:nth-child(odd) {
  background: #fcf5e5;
}
.post-article .markdown-content > table tbody tr td {
  padding: 5px 10px;
}
.post-article .markdown-content hr {
  border: none;
  border-bottom: 1px dashed #ccc;
  margin: 30px 0;
}
.post-article .markdown-content del {
  background-color: #000;
  color: #000;
  border-radius: 2px;
  text-decoration: none;
}
.post-article .markdown-content del a {
  color: #000;
}
.post-article .markdown-content del:hover {
  transition: color 0.13s linear;
  color: #fff;
}
.post-article .markdown-content del:hover a {
  transition: color 0.13s linear;
  color: #add8e6;
}
.post-article .markdown-content .fold .fold_hider .hider_title {
  margin: 1em 0;
  font-family: initial;
  width: fit-content;
  font-size: 1em;
  font-style: oblique;
  font-weight: bold;
  background-color: #f9f6ee;
  color: #6495ed;
  border-radius: 4px;
  cursor: pointer;
}
.post-article .markdown-content .fold .fold_content {
  padding: 1em 0.5em 0.5em 0.5em;
  background-color: #fcf5e5;
  font-family: 'Times New Roman', 'Noto Serif SC', serif;
  font-display: swap;
  font-size: smaller;
  border-radius: 4px;
}
.post-article .markdown-content .fold .fold_content p {
  line-height: 1.3em;
}
.post-article .markdown-content .heimu {
  background-color: #000;
  color: #000;
}
.post-article .markdown-content .heimu a {
  color: #000;
}
.post-article .markdown-content .heimu:hover {
  transition: color 0.13s linear;
  color: #fff;
}
.post-article .markdown-content .heimu:hover a {
  transition: color 0.13s linear;
  color: #add8e6;
}
.post-article .post-tags {
  margin-top: 2em;
}
.post-article .nav-container {
  width: 100%;
  margin-top: 1.5em;
  border-top: 1px dashed #e5e4e2;
  font-weight: 600;
}
.post-article .nav-container:after,
.post-article .nav-container:before {
  content: '';
  display: table;
  clear: both;
}
.post-article .nav-container .nav-left {
  float: left;
}
.post-article .nav-container .nav-right {
  float: right;
}
.post-article .nav-container .nav-arrow {
  color: #36454f;
}
.post-article .nav-container a {
  color: #0096ff;
}
.post-article .nav-container a:hover {
  color: #ffac1c;
}
.post-article .advertisement {
  font-size: 0.7em;
  color: #808080;
  margin: 1em auto;
}
.post-article .qrcode {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.post-article .qrcode .qrcode-image {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 1px #d3d3d3;
  cursor: crosshair;
  background-color: #c0c0c0;
  border-radius: 4px;
}
.post-article .qrcode .qrcode-notice {
  font-weight: bold;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  color: #808080;
  font-style: italic;
}
.money-like {
  padding: 2em 0 0.5em;
}
.money-like .reward-btn {
  cursor: pointer;
  font-size: 1.6em;
  line-height: 2em;
  position: relative;
  display: block;
  width: 2em;
  height: 2em;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  color: #fcf5e5;
  border: 1px solid #f1b60e;
  border-radius: 50%;
  background: linear-gradient(to bottom, #fccd60 0, #fbae12 100%, #2989d8 100%, #207cca 100%);
}
.money-like .money-code {
  position: absolute;
  top: -7em;
  left: 50%;
  display: none;
  width: 10.5em;
  height: 5.5em;
  margin-left: -5.9em;
  padding: 10px 15px;
  background: #fcf5e5;
  box-shadow: 0 0 0 1px #e5e4e2;
  border-radius: 4px;
}
.money-like .money-code span {
  display: inline-block25px;
  width: 4.5em;
  height: 4.5em;
}
.money-like .money-code .alipay-code {
  float: left;
}
.money-like .money-code .alipay-code .code-image {
  background-image: url("images/alipay.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.5em;
  height: 4.5em;
}
.money-like .money-code .wechat-code {
  float: right;
}
.money-like .money-code .wechat-code .code-image {
  background-image: url("images/wechat.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.5em;
  height: 4.5em;
}
.money-like .money-code b {
  font-size: 0.5em;
  line-height: 24px;
  display: block;
  margin: 0;
  text-align: center;
  color: #36454f;
}
.money-like .reward_notice {
  font-size: 0.8em;
  text-align: center;
  color: #808080;
  margin: 1em auto;
}
.post-share {
  width: 100%;
  text-align: center;
}
.post-share a {
  height: 1rem;
  width: 1rem;
  color: #00bfff;
  margin: 0.5rem;
  padding: 0.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
.post-share a:hover {
  border: 1px solid $main-color;
  color: $main-color;
  transform: rotate(-360deg);
}
#archive:before {
  position: absolute;
  top: 1em;
  bottom: 0;
  margin-left: 6px;
  width: 4px;
  height: auto;
  content: '';
  background-color: #00bfff;
}
.time-section {
  padding-left: 30px;
  position: relative;
}
.time-section .section-year {
  cursor: pointer;
  font-size: 2em;
  text-indent: 0.5em;
}
.time-section .section-year:before {
  position: absolute;
  left: 0px !important;
  top: 0.4em;
  content: '';
  background-color: #fcf5e5;
  width: 12px;
  height: 12px;
  border: 2px solid #00bfff;
  border-radius: 50%;
}
.time-section .section-list .section-list-item {
  margin: 20px 0 20px 0px;
  position: relative;
}
.time-section .section-list .section-list-item:before {
  position: absolute;
  left: -27px !important;
  top: 7px;
  content: '';
  background-color: #00bfff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.time-section .section-list .section-list-item .archive-title {
  color: #36454f;
  transition: all 0.3s ease;
  font-size: 1.1em;
}
.time-section .section-list .section-list-item .archive-title:hover {
  color: #00bfff;
  padding-left: 10px;
}
.time-section .section-list .section-list-item .archive-date {
  color: #808080;
  font-size: 0.9em;
  margin: 5px 0;
}
.article-card {
  padding-bottom: 1.5em;
}
.article-card .article-head {
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 0;
}
.article-card:first-child {
  margin-top: 80px;
}
.article-card .article-date {
  color: #808080;
  margin: 10px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8em;
}
.article-card .article-summary {
  font-family: 'SimSun', Serif;
  font-size: medium;
  font-style: italic;
  line-height: 1.25em;
  margin: 16px 0;
  color: #36454f;
}
.article-card .more {
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}
.article-card .more:hover {
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  .article-card {
    padding-left: 1em;
  }
}
.article-head > a {
  color: #36454f;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}
.article-head > a:before {
  content: "";
  color: #4aa2f1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-bottom: 3px solid;
  transition: all 0.2s ease-in-out;
}
.article-head > a:hover::before {
  width: 100%;
}
.image-view-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.image-view-wrap .image-view-inner {
  position: relative;
}
.image-view-wrap img {
  display: block;
  margin: 0 auto;
  cursor: zoom-out;
  transition: all 0.3s ease-in-out;
}
.sub-article {
  opacity: 0.6;
  font-size: 75%;
}
.catalog-container {
  display: block;
  flex-basis: 150px;
  -webkit-flex-basis: 150px;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .catalog-container {
    display: inline-block;
    flex-basis: 25px;
    -webkit-flex-basis: 25px;
  }
}
@media screen and (max-width: 1480px) and (min-width: 768px) {
  .catalog-container {
    display: inline-block;
    flex-basis: 25px;
    -webkit-flex-basis: 25px;
  }
}
.catalog-container .toc-main {
  padding: 1em 1em 0 0.5em;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #7df9ff #fcf5e5;
  box-sizing: border-box;
  position: absolute;
  max-height: 550px;
  max-width: calc((100% - 1200px) / 2);
}
@media screen and (max-width: 768px) {
  .catalog-container .toc-main {
    padding-left: 0.3em;
    width: auto;
    max-width: 80%;
    position: static;
  }
}
@media screen and (max-width: 1480px) and (min-width: 768px) {
  .catalog-container .toc-main {
    padding-left: 0.3em;
    width: auto;
    max-width: 80%;
    position: static;
  }
}
.catalog-container .toc-main::-webkit-scrollbar {
  height: 10px;
  background-color: #fcf5e5;
}
.catalog-container .toc-main::-webkit-scrollbar-thumb {
  background-color: #7df9ff;
  border-radius: 4px;
}
.catalog-container .toc-main .toc-title {
  font-size: 1.2em;
  position: relative;
  padding-left: 28px;
}
.catalog-container .toc-main .toc-title:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  top: 2px;
  background: url("images/catalog.png") no-repeat;
  background-size: contain;
}
.catalog-container .toc-main .toc-nav {
  padding: 0.7em 0.5em;
  color: #4169e1;
}
.catalog-container .toc-main .toc-nav .toc-nav-level-3 > a {
  color: #0096ff;
}
@media screen and (max-width: 768px) {
  .catalog-container .toc-main .toc-nav {
    max-height: 200px;
  }
}
@media screen and (max-width: 1480px) and (min-width: 768px) {
  .catalog-container .toc-main .toc-nav {
    max-height: 200px;
  }
}
.catalog-container .toc-main .toc-nav .toc-nav-child {
  font-size: smaller;
}
.catalog-container .toc-main .toc-nav .toc-nav-level-4 > a {
  color: #6495ed;
}
.catalog-container .toc-main .toc-nav .toc-nav-level-4 > a:before {
  content: '# ';
}
.catalog-container .toc-main .toc-nav .toc-nav-level-5 > a {
  color: #4169e1;
}
.catalog-container .toc-main .toc-nav .toc-nav-level-5 > a:before {
  content: '·';
}
.catalog-container .toc-main ol {
  padding-left: 8px;
}
.catalog-container .toc-main li {
  list-style-type: none;
  line-height: 1.5;
}
.catalog-container .fixed-toc {
  position: fixed;
  top: 60px /* ! modify in js */;
}
@media screen and (max-width: 768px) {
  .catalog-container .fixed-toc {
    position: static;
  }
}
@media screen and (max-width: 1480px) and (min-width: 768px) {
  .catalog-container .fixed-toc {
    position: static;
  }
}
#category-cloud {
  margin: 40px 0 30px 0;
  text-align: center;
}
#category-cloud a {
  border: none;
  line-height: 28px;
  margin: 0 4px;
  margin-bottom: 8px;
  background: #63a35c;
  display: inline-block;
  border-radius: 4px;
  padding: 0 10px;
  color: #fcf5e5;
  transition: background 0.5s;
}
#category-cloud a:hover {
  background: #0085a1;
}
#category-cloud .category0 {
  background: #0096ff;
}
#category-cloud .category1 {
  background: #6495ed;
}
#category-cloud .category2 {
  background: #4169e1;
}
.category {
  margin: 15px 0;
}
.category span:first-child {
  margin-right: 10px;
  font-weight: 600;
}
.category-code {
  font-family: 'Roboto Mono', Monaco, courier, monospace;
  font-size: 0.8em;
  display: inline-block;
  background-color: #fff;
  color: #ffac1c;
  padding: 3px 5px;
  margin: 0 2px 5px 0;
  border-radius: 2px;
  white-space: nowrap;
}
.category-list {
  margin-left: 1em;
  margin-right: 1em;
}
.category-name {
  font-size: 1.4em;
  position: relative;
}
.category-name:before {
  content: "|";
  color: #00bfff;
  position: absolute;
  left: -0.7em;
  top: -2px;
  font-size: 1.2em;
  font-weight: 700;
}
.category-preview {
  font-size: 1.1em;
  padding-left: 1em;
}
.category-preview li {
  cursor: pointer;
  margin: 10px 0;
}
#tag-cloud {
  margin: 40px 0 30px 0;
  text-align: center;
}
#tag-cloud a {
  border: none;
  line-height: 28px;
  margin: 0 4px;
  margin-bottom: 8px;
  background: #bbe;
  display: inline-block;
  border-radius: 4px;
  padding: 0 10px;
  color: #fcf5e5;
  transition: background 0.5s;
}
#tag-cloud a:hover {
  background: #0085a1;
}
#tag-cloud .tag0 {
  background: #228b22;
}
#tag-cloud .tag1 {
  background: #32cd32;
}
#tag-cloud .tag2 {
  background: #50c878;
}
#tag-cloud .tag3 {
  background: #0bda51;
}
.tag-list {
  margin-left: 2em;
  margin-right: 2em;
}
.tag-list .tag-name {
  font-size: 1.5em;
  position: relative;
}
.tag-list .tag-name:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "#";
  color: #00bfff;
  position: absolute;
  left: -0.7em;
  font-weight: 700;
}
.tag-list .tag-preview {
  font-size: 1.1em;
  padding-left: 1em;
}
.tag-list .tag-preview li {
  cursor: pointer;
  margin: 10px 0;
}
.post-tags span:first-child {
  margin-right: 10px;
  font-weight: 600;
}
.post-tags .tag-code {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.8em;
  display: inline-block;
  background-color: #fff;
  color: #fa3;
  padding: 3px 5px;
  margin: 0 2px 5px 0;
  border-radius: 2px;
  white-space: nowrap;
}
.cloudpoolmag {
  background-color: #f3f3f3;
}
#magazine-banner {
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 80px 20px 25px 20px;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #magazine-banner {
    padding: 80px 10px 25px 10px;
  }
}
#contents a {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
}
#contents a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00f;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#contents a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
#contents h3 {
  font-size: 1.2em;
  color: #008000;
  line-height: 0.5em;
}
#contents h3:before {
  content: "[";
}
#contents h3:after {
  content: "]";
}
#contents li {
  line-height: 1.5em;
}
.one {
  margin: 10px 0 20px 0;
  color: #fcf5e5;
  transform: translateY(-20px);
  transition: all 0.4s;
  transition-delay: 0.1s;
}
.one .one_main {
  align-items: center;
  display: flex;
  justify-content: center;
}
.one .one_main .one_text {
  font-size: 3em;
  color: #fcf5e5;
  font-family: "Long Cang", "STFangsong", "FangSong", "FangSong_GB2312";
}
.one .one_main .one_text:before {
  content: "『";
  padding-right: 0.5em;
  font-size: 0.5em;
}
.one .one_main .one_text:after {
  content: "』";
  padding-left: 0.5em;
  font-size: 0.5em;
}
.one .one_source {
  display: inline-block;
  text-align: left;
  font-family: 'Noto Serif SC', serif;
  font-weight: 200;
  font-size: 1.5em;
  color: #fcf5e5;
  margin: 1em auto auto 25%;
  line-height: 1.5em;
}
.one .one_source .one_buttons {
  display: inline-table;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 1em;
}
.one .one_source .one_buttons img {
  height: 1.2em;
  padding: 0 4px;
  transition-property: all;
  transition-duration: 0.2s;
}
.one .one_source .one_buttons img:hover {
  transform: scale(1.2);
}
.one .one_source .one_buttons img:active {
  transform: scale(0.9);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.options_container {
  font-weight: bold;
  color: #fcf5e5;
  opacity: 0.8 !important;
  line-height: 2;
}
.options_container .checkbox {
  padding: initial;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 2px #ddd;
  border-radius: 50%;
  position: relative;
  display: inline-block;
/*文字对齐方式*/
  vertical-align: middle;
  transition: background-color ease 0.1s;
}
.options_container .checkbox:checked {
  background-color: #50c878;
}
.options_container .checkbox:checked::after {
  content: '';
  top: 3px;
  left: 2.5px;
  position: absolute;
  border: #fff solid 3px;
  border-top: none;
  border-right: none;
  height: 6px;
  width: 10px;
  transform: rotate(-45deg);
}
.options_container label {
  padding: 0 1em 0 0.5em;
}
.options_container .options_control {
  margin-top: 0.5em;
}
.options_container .options_control input {
  background-color: #fff;
  border: none;
  color: #36454f;
  padding: 6px 15px;
  margin: 8px 16px;
  border-radius: 10%;
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition-duration: 0.2s;
}
.options_container .options_control input:hover {
  background-color: #008cba;
  color: #fff;
  opacity: 1;
  font-weight: bold;
}
.options_container .checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 2px #ddd;
  border-radius: 50%;
  position: relative;
  display: inline-block;
/*文字对齐方式*/
  vertical-align: middle;
  transition: background-color ease 0.1s;
}
.search-pop-overlay {
  background: rgba(0,0,0,0);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0s linear 0.2s, background 0.2s;
  visibility: hidden;
  width: 100%;
  z-index: 1400;
}
.search-pop-overlay.search-active {
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
  visibility: visible;
}
.search-popup {
  background: #f5f5f5;
  border-radius: 5px;
  height: 80%;
  left: calc(50% - 350px);
  position: fixed;
  top: 10%;
  transform: scale(0);
  transition: transform 0.2s;
  width: 700px;
  z-index: 1500;
}
.search-active .search-popup {
  transform: scale(1);
}
@media screen and (max-width: 768px) {
  .search-popup {
    border-radius: 0;
    height: 100%;
    left: 0;
    margin: 0;
    top: 0;
    width: 100%;
  }
}
.search-popup .search-icon {
  color: #0096ff;
  font-size: 18px;
  padding: 0 10px;
}
.search-popup .popup-btn-go {
  color: #999;
  font-size: 18px;
  padding: 0 5px;
  cursor: pointer;
}
.search-popup .popup-btn-go:hover .fa {
  color: #222;
}
.search-popup .popup-btn-close {
  color: #999;
  font-size: 18px;
  padding: 0 5px;
  cursor: pointer;
}
.search-popup .popup-btn-close:hover .fa {
  color: #222;
}
.search-popup .search-header {
  background: #eee;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  padding: 0.5em 5px;
}
.search-popup input.search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
.search-popup input.search-input::-webkit-search-cancel-button {
  display: none;
}
.search-popup .search-input-container {
  flex-grow: 1;
  padding: 2px;
}
.search-popup ul.search-result-list {
  margin: 0 5px;
  padding: 0;
  width: 100%;
}
.search-popup li.search-result-element {
  padding: 10px 0px 10px 0px;
}
.search-popup li.search-result-element::marker {
  color: #228b22;
}
.search-popup p.search-result {
  border-bottom: 1px;
  padding: 3px 0px 0px 0px;
  color: #36454f;
}
.search-popup a.search-result-title {
  font-weight: bold;
  color: #4169e1;
}
.search-popup a.search-result-title:hover,
.search-popup a.search-result-title:active {
  text-decoration: underline;
}
.search-popup a.search-result-title:active {
  color: #fa3;
}
.search-popup .search-keyword {
  border-bottom: 1px dashed #ff2a2a;
  color: #ff2a2a;
  font-weight: bold;
}
.search-popup #search-result {
  display: flex;
  height: calc(100% - 55px);
  overflow: auto;
  padding: 5px 25px;
}
.search-popup #no-result {
  color: #ccc;
  margin: auto;
}
.busuanzi_page_pv {
  font-size: 12.8px;
  color: #808080;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .busuanzi_page_pv {
    display: none;
  }
}
@media screen and (max-width: 1480px) and (min-width: 768px) {
  .busuanzi_page_pv {
    display: none;
  }
}
.wl-meta,
.vmeta {
  display: none;
}
.wl-card .wl-head {
  line-height: 2;
}
.wl-content p {
  padding-bottom: 0.5em;
}
.wl-input {
  autocomplete: true;
}
.wl-btn.primary {
  background: #00bfff !important;
  border-color: #00bfff !important;
}
.wl-tabs {
  scrollbar-width: none;
}
.wl-tab-wrapper {
  scrollbar-width: thin;
}
.wl-tab-wrapper::-webkit-scrollbar {
  width: 6px;
  background-color: #eee;
}
.wl-tab-wrapper::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
}
.wl-tab-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8;
}
.wl-tab-wrapper:active {
  background-color: #787878;
}
.wl-content .wl-emoji {
  height: 2.5em !important;
}
@media screen and (max-width: 768px) {
  .wl-editor {
    width: calc(100% - 2em) !important;
  }
}
.wl-info {
  flex: initial !important;
}
#wl-emoji-wrapper {
  height: 1.5em;
}
#wl-emoji-wrapper #wl-emoji {
  width: auto !important;
  margin-top: 0;
}
.wl-comment-actions .wl-like {
  width: min-content;
}
.wl-comment-actions .wl-reply {
  width: min-content;
}
.aplayer {
  font-family: Verdana, Geneva, sans-serif;
  font-weight: initial;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-pic {
  height: 106px !important;
  width: 106px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-pic:hover {
  height: 356px !important;
  width: 356px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info {
  height: 106px !important;
  padding-left: 20px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-music {
  padding-left: 4px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-lrc {
  height: 48px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-lrc::after {
  height: 25%;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-lrc .aplayer-lrc-contents {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 16px !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-lrc .aplayer-lrc-contents p {
  opacity: 70% !important;
}
.aplayer.aplayer-withlrc .aplayer-body .aplayer-info .aplayer-lrc .aplayer-lrc-contents .aplayer-lrc-current {
  opacity: 1 !important;
}
.aplayer.aplayer-withlrc .aplayer-list > ol {
  scrollbar-width: thin !important;
  scrollbar-color: auto;
  margin: 0;
  overflow-y: auto !important;
}
.aplayer.aplayer-withlrc .aplayer-list > ol::-webkit-scrollbar {
  display: none !important;
}
.slider {
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 15px;
  position: relative;
}
.slider input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider label {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.slider input[type="checkbox"]:checked + label {
  left: calc(100% - 30px);
}
@-moz-keyframes shine {
  0%, 100% {
    opacity: 0.1;
  }
  25%, 75% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes shine {
  0%, 100% {
    opacity: 0.1;
  }
  25%, 75% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes shine {
  0%, 100% {
    opacity: 0.1;
  }
  25%, 75% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
@keyframes shine {
  0%, 100% {
    opacity: 0.1;
  }
  25%, 75% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
