@import "plugin/fancybox.css";
@import "plugin/gitalk.css";
:root {
  color-scheme: dark light;
  --bg: #0b0d12;
  --bg-elevated: #14171f;
  --surface: #181c26;
  --surface-2: #20242f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e8eaed;
  --text-strong: #ffffff;
  --text-muted: #9aa0a8;
  --text-subtle: #6c7079;
  --accent: #f3a847;
  --accent-2: #ff6b6b;
  --accent-soft: rgba(243, 168, 71, 0.14);
  --link: #ffb968;
  --link-hover: #ffd69e;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --content-max: 1160px;
  --content-pad: 24px;
  --transition-fast: 0.18s ease;
  --transition: 0.3s ease;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #fafbfc;
    --bg-elevated: #ffffff;
    --surface: #ffffff;
    --surface-2: #f4f6fa;
    --border: rgba(18, 24, 58, 0.08);
    --border-strong: rgba(18, 24, 58, 0.16);
    --text: #12183a;
    --text-strong: #000000;
    --text-muted: #5a6072;
    --text-subtle: #898fa0;
    --accent: #d97706;
    --accent-2: #e11d48;
    --accent-soft: rgba(217, 119, 6, 0.1);
    --link: #c2410c;
    --link-hover: #9a3412;
    --shadow-sm: 0 4px 12px rgba(50, 50, 50, 0.06);
    --shadow-md: 0 10px 30px rgba(50, 50, 50, 0.1);
    --shadow-lg: 0 20px 50px rgba(50, 50, 50, 0.14);
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
}
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #fafbfc;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f6fa;
  --border: rgba(18, 24, 58, 0.08);
  --border-strong: rgba(18, 24, 58, 0.16);
  --text: #12183a;
  --text-strong: #000000;
  --text-muted: #5a6072;
  --text-subtle: #898fa0;
  --accent: #d97706;
  --accent-2: #e11d48;
  --accent-soft: rgba(217, 119, 6, 0.1);
  --link: #c2410c;
  --link-hover: #9a3412;
  --shadow-sm: 0 4px 12px rgba(50, 50, 50, 0.06);
  --shadow-md: 0 10px 30px rgba(50, 50, 50, 0.1);
  --shadow-lg: 0 20px 50px rgba(50, 50, 50, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
}
body {
  background: var(--bg);
  color: var(--text);
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
#article h1,
#article h2,
#article h3,
#article h4,
#article h5,
#article h6 {
  position: relative;
  font-weight: 600;
  outline: none;
  color: #12183A;
  cursor: pointer;
}
#article h1 {
  font-size: 32px;
  font-weight: 900;
  padding-bottom: 10px;
  border-bottom: 2px solid #e06c75;
}
#article h1 a:hover {
  border-bottom: 0;
}
#article h2 {
  font-size: 25px;
  border-left: 3px solid #73b1e0;
  padding-left: 10px;
}
#article h1,
#article h2 {
  line-height: 40px;
  margin: 20px 0 15px;
}
#article h3 {
  padding: 24px 0;
  font-size: 24px;
}
#article h4 {
  font-size: 19px;
  padding: 15px 0 10px;
}
#article h5 {
  font-size: 18px;
  padding: 15px 0 10px;
}
#article a {
  position: relative;
  color: #006aff;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}
#article hr {
  margin: 24px 0 32px;
  height: 4px;
  border: none;
  background: #F1F5FB;
}
#article code {
  border-radius: 8px;
}
#article code li {
  list-style: none;
}
#article img {
  width: 100%;
  cursor: pointer;
  margin: 8px 0 0;
  text-align: center;
  border-radius: 10px;
  outline: none;
  border: 0;
}
#article pre {
  font-size: 0.85em;
  line-height: 1.5em;
  display: flex;
  max-width: 1000px;
  position: relative;
}
#article pre:after {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fc625d;
  -webkit-box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
  content: ' ';
}
#article pre code {
  flex: 1;
  text-align: left;
  width: fit-content;
  padding: 40px 20px 20px 20px;
  margin: 20px 0;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
}
#article p {
  display: block;
  margin: 4px 0 16px;
  line-height: 30px;
  text-align: justify;
  font-size: 18px;
  color: #12183A;
  box-sizing: border-box;
}
#article ol {
  padding: 10px 30px;
}
#article ol li {
  margin-left: 15px;
  padding: 7px;
}
#article ul {
  margin: 5px 0;
}
#article ul li {
  list-style: none;
  margin: 10px 16px;
  line-height: 30px;
}
#article ul li:before {
  content: "\2022";
  color: #006aff;
  float: left;
  margin-right: 10px;
  line-height: 31px;
  font-size: 18px;
  font-weight: 500;
}
#article blockquote {
  background: #fafafa;
  border-left: 4px solid #e0e2e5;
  margin: 15px 0;
  padding: 2px;
}
#article blockquote p {
  margin: 4px 20px;
  font-weight: 400;
  color: #898FA0;
  font-size: 16px;
}
#article p code,
#article ul li code {
  font-size: 1em;
  margin: 0 4px;
  display: inline;
  padding: 6px 8px;
  font-family: Menlo, Consolas, "DejaVu Sans Mono", monospace;
  color: #58586C;
  background: #F1F5FB;
  border-radius: 3px;
}
#article p strong {
  font-weight: bold;
}
#article table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.2em;
  border-radius: 8px;
  box-shadow: 0 0 2px #d4d4d4;
  word-wrap: break-word;
  table-layout: fixed;
  margin: 20px 0 15px;
  border: 1px solid rgba(153, 169, 191, 0.1);
  overflow: hidden;
}
#article table td:hover,
#article table tr:hover {
  background: rgba(153, 169, 191, 0.1);
  cursor: pointer;
}
#article table tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
#article table tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
#article table tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}
#article table tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}
#article table td {
  border-bottom: 1px solid rgba(153, 169, 191, 0.1);
  border-right: 1px solid rgba(153, 169, 191, 0.1);
}
#article table tr:first-child td {
  border-top: 1px solid rgba(153, 169, 191, 0.1);
}
#article table tr td:first-child {
  border-left: 1px solid rgba(153, 169, 191, 0.1);
}
#article thead {
  text-indent: 1em;
}
#article thead tr {
  height: 3em;
}
#article thead tr:nth-child(odd) {
  background: hsla(0, 0%, 96.5%, 0.51);
}
#article thead th {
  background: rgba(153, 169, 191, 0.1);
  font-weight: 400;
  font-size: 18px;
  text-align: left;
  color: #4c4948;
}
#article tbody tr {
  line-height: 2.5em;
}
#article tbody td {
  color: #333;
  font-weight: 400;
  padding: 0 1em;
  text-align: left;
}
/* 图片对比滑块组件样式 */
.image-compare-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f0f0f0;
  box-shadow: none;
  user-select: none;
  cursor: grab;
  line-height: 0;
  /* 滑块手柄 */
  /* 可选的标签文字 */
}
.image-compare-container img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  object-fit: contain;
}
.image-compare-container.image-load-failed {
  aspect-ratio: 16 / 9;
  min-height: 200px;
}
.image-compare-container .image-error-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  background: #f0f0f0;
  z-index: 3;
  pointer-events: none;
}
.image-compare-container .image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.image-compare-container .image-after {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}
.image-compare-container .image-after img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.image-compare-container .image-before img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.image-compare-container .jx-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  cursor: grab;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}
.image-compare-container .jx-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.image-compare-container .jx-handle::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  pointer-events: none;
}
.image-compare-container .image-label {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 5;
}
.image-compare-container .image-label.label-before {
  left: 10px;
}
.image-compare-container .image-label.label-after {
  right: 10px;
}
.image-compare-container:active {
  cursor: grabbing;
}
.image-compare-container .jx-handle:active {
  cursor: grabbing;
}
/* 响应式设计 */
@media screen and (max-width: 768px) {
  .image-compare-container .jx-handle {
    width: 3px;
  }
  .image-compare-container .jx-handle::before {
    width: 30px;
    height: 30px;
  }
  .image-compare-container .jx-handle::after {
    font-size: 10px;
  }
}
/* 图片轮播组件样式 */
.image-carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  user-select: none;
  isolation: isolate;
  /* 导航箭头 */
  /* 暂停/播放按钮 */
  /* 分页点 */
  /* 响应式设计 */
}
.image-carousel-container::before,
.image-carousel-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}
.image-carousel-container::before {
  top: 0;
  height: 34%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.22) 46%, transparent 100%);
}
.image-carousel-container::after {
  bottom: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18) 48%, transparent 100%);
}
.image-carousel-container .carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
}
.image-carousel-container .carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  height: 100%;
}
.image-carousel-container .carousel-slide {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.image-carousel-container .carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-carousel-container .carousel-slide .carousel-slide-title {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 84px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1px;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72), 0 0 2px rgba(0, 0, 0, 0.88);
}
.image-carousel-container[data-fit="contain"] .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07090d;
}
.image-carousel-container[data-fit="contain"] .carousel-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.image-carousel-container .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.image-carousel-container .carousel-nav:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.04);
}
.image-carousel-container .carousel-nav:active {
  background: rgba(0, 0, 0, 0.64);
  transform: translateY(-50%) scale(0.98);
}
.image-carousel-container .carousel-nav.carousel-prev {
  left: 18px;
}
.image-carousel-container .carousel-nav.carousel-next {
  right: 18px;
}
.image-carousel-container .carousel-nav::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.image-carousel-container .carousel-nav.carousel-prev::before {
  border-width: 7px 10px 7px 0;
  border-color: transparent #fff transparent transparent;
  margin-left: -2px;
}
.image-carousel-container .carousel-nav.carousel-next::before {
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
  margin-right: -2px;
}
.image-carousel-container .carousel-play-pause {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.image-carousel-container .carousel-play-pause:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.48);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.04);
}
.image-carousel-container .carousel-play-pause:active {
  background: rgba(0, 0, 0, 0.64);
  transform: scale(0.98);
}
.image-carousel-container .carousel-play-pause::before,
.image-carousel-container .carousel-play-pause::after {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
}
.image-carousel-container .carousel-play-pause::after {
  margin-left: 4px;
}
.image-carousel-container .carousel-play-pause.paused::before {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  background: transparent;
  border-radius: 0;
  margin-left: 3px;
}
.image-carousel-container .carousel-play-pause.paused::after {
  display: none;
}
.image-carousel-container .carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.28);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.image-carousel-container .carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: none;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  padding: 0;
  user-select: none;
  opacity: 0.82;
}
.image-carousel-container .carousel-dots .carousel-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: scale(1.12);
}
.image-carousel-container .carousel-dots .carousel-dot.active {
  width: 24px;
  background: #fff;
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 768px) {
  .image-carousel-container {
    margin: 22px 0;
    border-radius: 12px;
  }
  .image-carousel-container .carousel-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .image-carousel-container .carousel-nav {
    width: 38px;
    height: 38px;
  }
  .image-carousel-container .carousel-nav.carousel-prev {
    left: 10px;
  }
  .image-carousel-container .carousel-nav.carousel-next {
    right: 10px;
  }
  .image-carousel-container .carousel-nav.carousel-prev::before {
    border-width: 6px 9px 6px 0;
  }
  .image-carousel-container .carousel-nav.carousel-next::before {
    border-width: 6px 0 6px 9px;
  }
  .image-carousel-container .carousel-play-pause {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
  .image-carousel-container .carousel-play-pause::before,
  .image-carousel-container .carousel-play-pause::after {
    width: 3px;
    height: 12px;
  }
  .image-carousel-container .carousel-play-pause.paused::before {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }
  .image-carousel-container .carousel-dots {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    gap: 7px;
    padding: 7px 9px;
  }
  .image-carousel-container .carousel-dots .carousel-dot {
    width: 7px;
    height: 7px;
  }
  .image-carousel-container .carousel-dots .carousel-dot.active {
    width: 20px;
  }
  .image-carousel-container .carousel-slide .carousel-slide-title {
    top: 14px;
    left: 16px;
    right: 60px;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0.5px;
  }
}
.footer {
  display: flex;
  padding: 0 calc((100% - 1160px)/2);
  height: 80px;
}
.footer .Copyright {
  display: flex;
  margin-left: 18px;
  color: #898fa0;
  font-size: 14px;
  flex-basis: 0;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
}
.footer .contact {
  display: flex;
  flex-basis: 0;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.footer .contact a {
  display: flex;
  margin-left: 10px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  color: #898fa0;
  justify-content: center;
  align-items: center;
}
.footer .contact a img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 2em;
    flex-direction: column-reverse;
  }
  .footer .Copyright {
    margin: auto;
  }
  .footer .contact {
    margin: auto;
    flex-wrap: wrap;
  }
  .footer .contact a {
    margin-bottom: 10px;
  }
}
* {
  margin: 0;
  padding: 0;
}
.header {
  position: fixed;
  width: 100%;
  z-index: 199;
}
.header .header-top {
  display: flex;
  height: 100px;
  background: rgba(255, 255, 255, 0.98);
  z-index: 99;
  padding: 0 calc((100% - 1160px)/2);
}
.header .header-top .h-left {
  display: flex;
  flex-basis: 0;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
}
.header .header-top .h-left a {
  margin-left: 18px;
  width: auto;
  height: 60px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: all 0.3s ease;
}
.header .header-top .h-left a:hover {
  opacity: 0.8;
}
.header .header-top .h-left a img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.header .header-top .h-left a span {
  font-size: 20px;
  font-weight: 700;
  color: #12183A;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.header .header-top .h-right {
  display: flex;
  flex-basis: 0;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.header .header-top .h-right ul {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
}
.header .header-top .h-right ul li {
  padding: 0 18px;
  white-space: nowrap;
}
.header .header-top .h-right ul li a {
  color: #898fa0;
  text-decoration: none;
}
.header .header-top .h-right ul li a:hover {
  color: #12183A;
}
.header .header-top .h-right ul li .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: relative;
  top: -12px;
  left: 2px;
}
.header .header-top .h-right .select a {
  color: #12183A;
}
.header .header-top .h-right .select .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #006AFF;
  position: relative;
  top: -12px;
  left: 2px;
}
.header .header-move1 {
  height: 72px;
  transition: all 0.8s ease-in-out;
  box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.08);
}
.header .header-move2 {
  height: 100px;
  transition: all 0.8s ease-in-out;
}
@media screen and (min-width: 600px) {
  .header .header-top .h-right-close {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header .header-top .h-right {
    display: none;
  }
  .header .header-top .h-left a {
    gap: 8px;
  }
  .header .header-top .h-left a span {
    font-size: 16px;
  }
  .header .header-top .h-left a img {
    width: 48px;
    height: 48px;
  }
  .header .header-top .h-right-close {
    display: flex;
    flex-basis: 0;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
    margin-right: 1em;
  }
  .header .header-top .h-right-close svg {
    cursor: pointer;
    width: 2em;
    height: 2em;
  }
}
.header-body-background {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  height: 400px;
  justify-content: center;
  align-items: center;
}
.header-body-background-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 20px;
}
.header-body-background-content h2 {
  display: flex;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-strong);
  justify-content: center;
  align-items: center;
}
.header-body-background-content span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.header-body-background-content span img {
  width: 80px;
  height: 80px;
}
.home .header-body-background {
  height: 150px;
}
.home .header-body-background-content h2 {
  display: none;
}
.home .header-body-background-content span img {
  display: none;
}
.archive .header-body-background {
  height: 150px;
}
.archive .header-body-background-content h2 {
  display: none;
}
.archive .header-body-background-content span img {
  display: none;
}
.links .header-body-background {
  height: 150px;
}
.links .header-body-background-content h2 {
  display: none;
}
.links .header-body-background-content span img {
  display: none;
}
.grouping {
  display: flex;
  flex-direction: column;
  width: 900px;
  padding: 64px 40px;
  font-size: 1.1rem;
  transition: all 0.4s ease-in-out;
}
.grouping .grouping-year {
  display: none;
  font-size: 1.55rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
  color: #3C4858;
}
.grouping .grouping-item {
  display: flex;
  text-decoration: none;
  color: #3C4858;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.grouping .grouping-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.grouping .grouping-item:hover .grouping-item-title {
  color: #4CA5CE;
}
.grouping .grouping-item .grouping-item-cover {
  width: 240px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f0f0f0;
}
.grouping .grouping-item .grouping-item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.grouping .grouping-item:hover .grouping-item-cover img {
  transform: scale(1.05);
}
.grouping .grouping-item .grouping-item-content {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.grouping .grouping-item .grouping-item-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 12px 0;
  color: #3C4858;
  transition: color 0.3s ease;
}
.grouping .grouping-item .grouping-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #999;
}
.grouping .grouping-item .grouping-item-tag {
  padding: 4px 12px;
  background: #F8F9FB;
  border-radius: 4px;
  color: #666;
  font-size: 0.85rem;
}
.grouping .grouping-item .grouping-item-time {
  white-space: nowrap;
  color: #999;
}
@media screen and (max-width: 600px) {
  .grouping {
    width: 100%;
    max-width: 700px;
    padding: 50px 15px;
    font-size: 1rem;
  }
  .grouping .grouping-year {
    font-size: 1.5rem;
  }
  .grouping .grouping-item {
    flex-direction: column;
  }
  .grouping .grouping-item .grouping-item-cover {
    width: 100%;
    height: 180px;
  }
  .grouping .grouping-item .grouping-item-content {
    padding: 16px;
  }
  .grouping .grouping-item .grouping-item-title {
    font-size: 1rem;
  }
  .grouping .grouping-item .grouping-item-meta {
    font-size: 0.85rem;
  }
}
/*

Atom One Dark by Daniel Gamage
Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax

base:    #282c34
mono-1:  #abb2bf
mono-2:  #818896
mono-3:  #5c6370
hue-1:   #56b6c2
hue-2:   #61aeee
hue-3:   #c678dd
hue-4:   #98c379
hue-5:   #e06c75
hue-5-2: #be5046
hue-6:   #d19a66
hue-6-2: #e6c07b

*/
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #abb2bf;
  background: #292d3e;
}
.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}
.hljs-doctag,
.hljs-keyword,
.hljs-formula {
  color: #c678dd;
}
.hljs-section,
.hljs-name,
.hljs-selector-tag,
.hljs-deletion,
.hljs-subst {
  color: #e06c75;
}
.hljs-literal {
  color: #56b6c2;
}
.hljs-string,
.hljs-regexp,
.hljs-addition,
.hljs-attribute,
.hljs-meta-string {
  color: #98c379;
}
.hljs-built_in,
.hljs-class .hljs-title {
  color: #e6c07b;
}
.hljs-attr,
.hljs-variable,
.hljs-template-variable,
.hljs-type,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-number {
  color: #d19a66;
}
.hljs-symbol,
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-title {
  color: #61aeee;
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: bold;
}
.hljs-link {
  text-decoration: underline;
}
.about-header-background {
  display: flex;
  flex-shrink: 0;
  background: linear-gradient(to top, #f1f5fb, #f9fcff);
}
.about-header-background-content {
  display: flex;
  flex-basis: 721px;
  padding: 196px 40px 160px;
  margin: 0 auto;
}
.about-header-background-content h1 {
  display: flex;
  margin-top: 40px;
  font-size: 30px;
  font-weight: 500;
  color: #12183a;
  flex: 1;
  flex-direction: column;
}
.about-header-background-content h1 span {
  display: flex;
  font-size: 15px;
  margin-top: 10px;
  color: #898F9F;
}
.about-header-background-content img {
  display: flex;
  flex: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-top: 30px;
  margin-right: 30px;
}
.about-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.about-content-info {
  width: 100%;
  box-sizing: border-box;
  padding: 60px 150px;
  transition: all 0.4s ease-in-out;
}
.about-content-info p {
  font-size: 1.55rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 20px;
}
.about-content img {
  display: flex;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .about-content-info {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 600px) {
  .about-content-info {
    padding: 40px 20px;
  }
}
.archive-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.archive-content-data {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.categories-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.categories-content-data {
  display: flex;
  flex-direction: column;
  padding: 64px 80px;
  font-size: 18px;
  transition: padding 1s;
}
.categories-class {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.categories-class-card {
  margin: 10px;
  flex: 1;
  flex-basis: 300px;
  height: 100px;
  padding: 20px 30px 4px 30px;
  border-radius: 10px;
  background-size: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
.categories-class-card:hover {
  top: -10px;
  box-shadow: 4px 6px 14px #ddd;
}
.categories-class-card-title {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
}
.categories-class-card-number {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.categories-class-card-number .categories-length {
  position: relative;
  font-size: 50px;
  color: #fff;
  z-index: 2;
  font-style: oblique;
  font-weight: bold;
}
.categories-class-card-number span {
  position: relative;
  font-size: 20px;
  color: #fff;
  z-index: 2;
  font-style: oblique;
}
.categories-class-card:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../image/pattern.png);
  background-repeat: repeat;
  content: "";
}
@media screen and (max-width: 800px) {
  .categories-content-data {
    padding: 64px 50px;
  }
}
@media screen and (max-width: 600px) {
  .categories-content-data {
    padding: 64px 20px;
  }
}
* {
  margin: 0;
  padding: 0;
}
.home .main {
  display: flex;
  flex-grow: 1;
  flex-basis: auto;
  flex-direction: column;
  margin-top: 0px;
}
.home .main .post-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px 35px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px 20px;
  justify-items: center;
}
.home .main .post-card-display {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  width: 100%;
  transition: all 0.3s ease;
}
.home .main .post-card-display:hover {
  cursor: pointer;
  transform: translateY(-5px);
}
.home .main .post-card-display:hover a .post-card-image-wrapper img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.home .main .post-card-display a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.home .main .post-card-display a .post-card-image-wrapper {
  position: relative;
  width: 100%;
}
.home .main .post-card-display a .post-card-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.home .main .post-card-display a .post-card-image-wrapper .post-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
  text-align: left;
  pointer-events: none;
}
.home .main .post-card-display a .post-card-image-wrapper .post-card-role {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.home .main .post-card-display a .post-card-image-wrapper .post-card-description {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.home .main .post-card-display a .post-card-image-wrapper .post-card-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 28px 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  pointer-events: none;
  transition: color var(--transition-fast);
}
.home .main .post-card-display:hover a .post-card-image-wrapper .post-card-title {
  color: var(--accent);
}
.home .main .post-card-meat {
  display: none;
}
@media screen and (max-width: 1024px) {
  .home .main .post-card {
    grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
    gap: 55px 18px;
  }
}
@media screen and (max-width: 768px) {
  .home .main .post-card {
    grid-template-columns: 1fr !important;
    gap: 40px;
    padding: 40px 20px;
  }
  .home .main .post-card-display {
    max-width: 100%;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-info {
    padding: 16px 14px 12px 14px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-role {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-description {
    font-size: 13px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-title {
    font-size: 20px;
    padding: 14px 14px 24px 14px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 480px) {
  .home .main .post-card {
    grid-template-columns: 1fr !important;
    gap: 35px;
    padding: 30px 16px;
  }
  .home .main .post-card-display {
    max-width: 100%;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-info {
    padding: 14px 12px 10px 12px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-role {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-description {
    font-size: 12px;
    line-height: 1.4;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-title {
    font-size: 18px;
    padding: 12px 12px 22px 12px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 360px) {
  .home .main .post-card {
    padding: 25px 12px;
    gap: 30px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-info {
    padding: 12px 10px 8px 10px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-role {
    font-size: 13px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-description {
    font-size: 11px;
  }
  .home .main .post-card-display a .post-card-image-wrapper .post-card-title {
    font-size: 16px;
    padding: 10px 10px 20px 10px;
    letter-spacing: 0.5px;
  }
}
.home .main .post-block {
  padding: 0 calc((100% - 1160px)/2);
  margin-bottom: 50px;
}
.home .main .post-block-content {
  margin: 20px 0;
  text-decoration: none;
  display: flex;
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 20px 40px 0 rgba(50, 50, 50, 0.08);
  position: relative;
  top: 0px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.home .main .post-block-content:hover {
  cursor: pointer;
  top: -15px;
}
.home .main .post-block-content img {
  width: 456px;
  height: 258px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  object-fit: cover;
  border-radius: 15px;
}
.home .main .post-block-content-info {
  flex: 1;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}
.home .main .post-block-content-info h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 38px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home .main .post-block-content-info h2:hover {
  color: #000;
}
.home .main .post-block-content-info-excerpt {
  margin: 20px 0;
  font-size: 16px;
  line-height: 30px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #999;
  letter-spacing: 2px;
}
.home .main .post-block-content-info-exhibition {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .main .post-block-content-info-exhibition-tags {
  display: flex;
  align-items: center;
}
.home .main .post-block-content-info-exhibition-tags a {
  display: inline-block;
}
.home .main .post-block-content-info-exhibition .post-tag {
  color: #898FA0;
  margin-right: 16px;
}
@media screen and (max-width: 1300px) {
  .home .main .post-block-content {
    margin: 20px 100px;
  }
  .home .main .post-block-content img {
    width: 380px;
    height: 214px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
    object-fit: cover;
    border-radius: 15px;
  }
  .home .main .post-block-content-info-excerpt {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 1000px) {
  .home .main .post-block-content {
    margin: 20px 100px;
    flex-direction: column;
    align-items: center;
  }
  .home .main .post-block-content img {
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
    object-fit: cover;
    border-radius: 15px;
  }
  .home .main .post-block-content-info {
    width: 100%;
    padding-top: 30px;
  }
  .home .main .post-block-content-info-excerpt {
    margin: 10px 0;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 800px) {
  .home .main .post-block-content {
    margin: 20px 50px;
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .home .main .post-block-content {
    margin: 20px;
    padding: 20px;
  }
  .home .main .post-block-content img {
    height: 260px;
  }
  .home .main .post-block-content-info {
    width: 100%;
    padding-top: 20px;
  }
}
.home .main .meat-type {
  width: 32px;
  height: 32px;
  margin-top: 10px;
  background: url('https://cdn.jsdelivr.net/gh/duogongneng/MyBlogImg/imgicon-article.svg') no-repeat;
}
.home .change-page {
  height: 40px;
  display: flex;
  padding: 0 calc((100% - 1160px)/2);
  margin-bottom: 20px;
  color: var(--text);
}
.home .change-page .p-page {
  display: flex;
  flex-basis: 0;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
}
.home .change-page .p-page a {
  color: var(--text);
  text-decoration: none;
}
.home .change-page .p-page a .previous {
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 10px;
  color: #898FA0;
  margin-left: 18px;
  box-shadow: 0 20px 40px 0 rgba(50, 50, 50, 0.1);
  transition: ease-in-out;
  -moz-transition: margin-top 0.5s;
  -webkit-transition: margin-top 0.5s;
  -o-transition: margin-top 0.5s;
}
.home .change-page .p-page a .previous:hover {
  margin-top: -15px;
  cursor: pointer;
}
.home .change-page .n-page {
  display: flex;
  flex-basis: 0;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.home .change-page .n-page a {
  color: var(--text);
  text-decoration: none;
}
.home .change-page .n-page a .next {
  width: 120px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 10px;
  margin-right: 18px;
  color: #898FA0;
  box-shadow: 0 20px 40px 0 rgba(50, 50, 50, 0.1);
  transition: ease-in-out;
  -moz-transition: margin-top 0.5s;
  -webkit-transition: margin-top 0.5s;
  -o-transition: margin-top 0.5s;
}
.home .change-page .n-page a .next:hover {
  margin-top: -15px;
  cursor: pointer;
}
.links-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.links-content-data {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 64px 80px;
  font-size: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: all 0.4s ease-in-out;
}
.links-content-data img {
  display: flex;
  width: 100%;
  height: 100%;
}
.links-content-data-item {
  display: flex;
  padding: 20px;
  margin-right: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #F8F9FB;
  cursor: pointer;
  position: relative;
  top: 0;
  transition: ease-in-out;
  -moz-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.links-content-data-item:hover {
  background: #F8F9FB;
  top: -10px;
  box-shadow: 0 10px 10px 0 rgba(50, 50, 50, 0.1);
}
.links-content-data-item a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333333;
}
.links-content-data-item .card {
  display: flex;
}
.links-content-data-item .card .user-link-image {
  display: flex;
  width: 48px;
  height: 48px;
}
.links-content-data-item .card .user-link-image img {
  border-radius: 50%;
}
.links-content-data-item .card .user-link-info {
  display: flex;
  flex-direction: column;
  min-width: 166px;
  padding-left: 10px;
  padding-top: 6px;
}
.links-content-data-item .card .user-link-info h1 {
  max-width: 170px;
  color: #3C4858;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
}
.links-content-data-item .card .user-link-info span {
  max-width: 170px;
  color: #718096;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.links-content-data-info {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .links-content-data {
    padding: 64px 50px;
  }
}
@media screen and (max-width: 600px) {
  .links-content-data {
    padding: 64px 20px;
  }
}
.post #post-toc .post-toc-title {
  font-size: 20px;
}
.post #post-toc ol {
  color: red;
  list-style-type: none;
}
.post #post-toc ol a {
  display: inline;
}
.post #post-toc ol .toc-link {
  display: inline;
}
.post #post-toc ol .toc-text {
  color: #006af7;
}
.post #post-toc ol li {
  list-style-type: none;
}
.post-header-background {
  position: relative;
  display: flex;
  width: 100%;
  background: linear-gradient(0deg, #f1f5fb, #f9fcff);
  flex-shrink: 0;
}
.post-header-background-content {
  display: flex;
  margin: 0 auto;
  padding: 196px 40px 160px;
  flex-basis: 721px;
  flex-direction: column;
}
.post-header-background-content h1 {
  margin: 32px 0 24px;
  color: #12183a;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.6;
}
.post-header-background-content .post-header-tag {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.post-header-background-content .post-header-tag li {
  z-index: 4!important;
  background: #fff !important;
  color: #fff;
  display: flex;
  margin-top: 20px;
  margin-right: 16px;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(18, 24, 58, 0.06);
  line-height: 20px;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: ease-in-out;
  flex-grow: 0;
}
.post-header-background-content .post-header-tag li:hover {
  background: #bec8d3 !important;
}
.post-header-background-content .post-header-tag li a {
  position: relative;
  z-index: 4 !important;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: ease-in-out;
}
.post-header-background-content .post-header-info {
  display: flex;
}
.post-header-background-content .post-header-info-author {
  display: flex;
  align-items: center;
}
.post-header-background-content .post-header-info-author span {
  margin-left: 8px;
  color: #12183a;
  font-weight: 500;
  font-size: 15px;
}
.post-header-background-content .post-header-info-author span a {
  color: #12183a;
  text-decoration: none;
}
.post-header-background-content .post-header-info-author span a:hover {
  color: #006af7 !important;
}
.post-header-background-content .post-header-info-author p {
  color: #12183a;
  font-size: 14px;
}
.post-header-background-content .post-header-info-author-text {
  display: block;
  margin-right: 15px;
}
.post-header-background-content .post-header-info-author-categories {
  display: flex;
  align-items: center;
}
.post-header-background-content .post-header-info-author-categories a {
  display: block;
  border: 1px solid #12183a;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 12px;
  margin-right: 10px;
  color: #12183a;
  text-decoration: none;
}
.post-header-background-content .post-header-info-author-categories a:hover {
  border: 1px solid #409EFF;
  color: #409EFF;
}
.post-header-img {
  height: 100%;
  background-size: cover;
}
.post-header-img h1 {
  z-index: 2;
  color: #fff !important;
}
.post-header-img img {
  display: flex;
  width: 100%;
  height: 100%;
}
.post-header-img:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../image/pattern.png);
  background-repeat: repeat;
  content: "";
}
.post-header-img .post-header-info-author {
  position: relative;
  z-index: 4;
}
.post-header-img .post-header-info-author span a {
  color: #fff !important;
}
.post-header-img .post-header-info-author p {
  color: #fff !important;
}
.post-header-img .post-header-info-author-categories a {
  border: 1px solid #f1f5fb !important;
  color: #ffffff !important;
}
.post-header-color {
  background: linear-gradient(0deg, #f1f5fb, #f9fcff) !important;
}
.post-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}
.post-content-info {
  margin: 60px 80px;
  font-size: 1.1rem;
  transition: all 0.4s ease-in-out;
}
.post-paging {
  display: flex;
  margin: 0 auto 2em;
  max-width: 980px;
  background: hsla(0, 0%, 100%, 0.8);
}
.post-paging a,
.post-paging a .post-paging-last {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
}
.post-paging p {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 90%;
  line-height: 1.6;
  font-size: 16px;
}
.post-paging a {
  color: #12183a;
  font-size: 16px;
  text-decoration: none;
}
.post-paging a .post-paging-last {
  height: 150px;
  border-radius: 10px;
  background-size: 100% 100%;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  align-content: flex-start;
  justify-content: center;
  flex-direction: column;
}
.post-paging a .post-paging-last:hover {
  margin-top: -10px;
  box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.1);
  opacity: 0.7;
}
.post-paging a .post-paging-last span {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 90%;
  line-height: 1.6;
}
.post-paging a .post-paging-next {
  display: flex;
  height: 150px;
  border-radius: 10px;
  background-size: 100% 100%;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  align-content: flex-end;
  flex-grow: 1;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  flex-basis: 0;
}
.post-paging a .post-paging-next:hover {
  margin-top: -10px;
  box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.1);
  opacity: 0.7;
}
.post-paging a .post-paging-next span {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 90%;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .post-content-info {
    margin: 50px;
  }
}
@media screen and (max-width: 600px) {
  .post-content-info {
    margin: 40px 20px;
  }
}
.tag-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tag-content-data {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.tags-content {
  display: flex;
  max-width: var(--content-max);
  margin: 0 auto;
  margin-top: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tags-content-data {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 64px 80px;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: all 0.4s ease-in-out;
}
.tags-content-data h2 {
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
  color: #424242;
  font-size: 1.7rem;
}
.tags-content-data a {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
}
.tags-content-data a > span {
  background-color: rgba(96, 125, 139, 0.05);
  line-height: 2.4;
  transition: all 0.15s;
  padding: 0 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  position: relative;
  top: 0;
  color: #43576B;
  font-weight: 400;
  font-size: 16px;
}
.tags-content-data a > span:hover {
  top: -2px;
  background-color: #607d8b;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.tags-content-data a > span > i {
  text-align: center;
  color: #F56C6C;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .tags-content-data {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 800px) {
  .tags-content-data {
    padding: 64px 50px;
  }
}
.content-move {
  margin-top: -64px !important;
  transition: margin-top 0.8s ease-in-out;
}
