:root {
  --body-bg-color: #eee;
  --content-bg-color: #fff;
  --card-bg-color: #f5f5f5;
  --text-color: #555;
  --selection-bg: #262a30;
  --selection-color: #eee;
  --blockquote-color: #666;
  --link-color: #555;
  --link-hover-color: #222;
  --brand-color: #fff;
  --brand-hover-color: #fff;
  --table-row-odd-bg-color: #f9f9f9;
  --table-row-hover-bg-color: #f5f5f5;
  --menu-item-bg-color: #f5f5f5;
  --theme-color: #222;
  --btn-default-bg: #fff;
  --btn-default-color: #555;
  --btn-default-border-color: #555;
  --btn-default-hover-bg: #222;
  --btn-default-hover-color: #fff;
  --btn-default-hover-border-color: #222;
  --highlight-background: #f3f3f3;
  --highlight-foreground: #444;
  --highlight-gutter-background: #e1e1e1;
  --highlight-gutter-foreground: #555;
  color-scheme: light;
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background: transparent;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}
html,
body {
  height: 100%;
}
body {
  background: var(--body-bg-color);
  box-sizing: border-box;
  color: var(--text-color);
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1em;
  line-height: 2;
  min-height: 100%;
  position: relative;
  transition: padding 0.2s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px 0 15px;
}
h1 {
  font-size: 1.5em;
}
h2 {
  font-size: 1.375em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.125em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
a {
  border-bottom: 1px solid #999;
  color: var(--link-color);
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  overflow-wrap: break-word;
}
a:hover {
  border-bottom-color: var(--link-hover-color);
  color: var(--link-hover-color);
}
iframe,
img,
video,
embed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
hr {
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px);
  border: 0;
  height: 3px;
  margin: 40px 0;
}
blockquote {
  border-left: 4px solid #ddd;
  color: var(--blockquote-color);
  margin: 0;
  padding: 0 15px;
}
blockquote cite::before {
  content: '-';
  padding: 0 5px;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0;
  padding: 0;
}
.table-container {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875em;
  margin: 0 0 20px;
  width: 100%;
}
tbody tr:nth-of-type(odd) {
  background: var(--table-row-odd-bg-color);
}
tbody tr:hover {
  background: var(--table-row-hover-bg-color);
}
caption,
th,
td {
  padding: 8px;
}
th,
td {
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
}
th {
  font-weight: 700;
  padding-bottom: 10px;
}
td {
  border-bottom-width: 1px;
}
.btn {
  background: var(--btn-default-bg);
  border: 2px solid var(--btn-default-border-color);
  border-radius: 2px;
  color: var(--btn-default-color);
  display: inline-block;
  font-size: 0.875em;
  line-height: 2;
  padding: 0 20px;
  transition: background-color 0.2s ease-in-out;
}
.btn:hover {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.btn + .btn {
  margin: 0 0 8px 8px;
}
.btn .fa-fw {
  text-align: left;
  width: 1.285714285714286em;
}
.toggle {
  line-height: 0;
}
.toggle .toggle-line {
  background: #fff;
  display: block;
  height: 2px;
  left: 0;
  position: relative;
  top: 0;
  transition: 0.4s;
  transition-property: left, opacity, top, transform, width;
  width: 100%;
}
.toggle .toggle-line:first-child {
  margin-top: 1px;
}
.toggle .toggle-line:not(:first-child) {
  margin-top: 4px;
}
.toggle.toggle-arrow :first-child {
  left: 50%;
  top: 2px;
  transform: rotate(45deg);
  width: 50%;
}
.toggle.toggle-arrow :last-child {
  left: 50%;
  top: -2px;
  transform: rotate(-45deg);
  width: 50%;
}
.toggle.toggle-close :nth-child(2) {
  opacity: 0;
}
.toggle.toggle-close :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.toggle.toggle-close :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/
/*
This is left on purpose making default.css the single file that can be lifted
as-is from the repository directly without the need for a build step

Typically this "required" baseline CSS is added by `makestuff.js` during build.
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/* end baseline CSS */
.hljs {
  background: #F3F3F3;
  color: #444
}
/* Base color: saturation 0; */
.hljs-subst {
  /* default */
  
}
/* purposely ignored */
.hljs-formula,
.hljs-attr,
.hljs-property,
.hljs-params {
  
}
.hljs-comment {
  color: #697070
}
.hljs-tag,
.hljs-punctuation {
  color: #444a
}
.hljs-tag .hljs-name,
.hljs-tag .hljs-attr {
  color: #444
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-name {
  font-weight: bold
}
/* User color: hue: 0 */
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #880000
}
.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-operator,
.hljs-selector-pseudo {
  color: #ab5656
}
/* Language color: hue: 90; */
.hljs-literal {
  color: #695
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #397300
}
/* Meta color: hue: 200 */
.hljs-meta {
  color: #1f7199
}
.hljs-meta .hljs-string {
  color: #38a
}
/* Misc effects */
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
.highlight:hover .copy-btn,
.code-container:hover .copy-btn {
  opacity: 1;
}
.code-container {
  position: relative;
}
.code-lang {
  font-size: 40px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 5px;
}
.copy-btn {
  color: #333;
  cursor: pointer;
  line-height: 1.6;
  opacity: 0;
  padding: 2px 6px;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  font-size: 0.8125em;
  right: 4px;
  top: 8px;
}
.expand-btn {
  bottom: 0;
  color: var(--highlight-foreground);
  cursor: pointer;
  display: none;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
}
.fold-cover {
  background-image: linear-gradient(to top, var(--highlight-background) 0, rgba(0,0,0,0) 100%);
  bottom: 0;
  display: none;
  height: 50px;
  left: 0;
  right: 0;
  position: absolute;
}
.highlight-fold {
  max-height: 500px;
  overflow-y: hidden !important;
}
.highlight-fold .expand-btn,
.highlight-fold .fold-cover {
  display: block;
}
code,
kbd,
figure.highlight,
pre {
  background: var(--highlight-background);
  color: var(--highlight-foreground);
}
figure.highlight,
pre {
  line-height: 1.6;
  margin: 0 auto 20px;
}
figure.highlight figcaption,
pre .caption {
  background: var(--highlight-gutter-background);
  color: var(--highlight-foreground);
  display: flow-root;
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0.5em;
}
figure.highlight figcaption a,
pre .caption a {
  color: var(--highlight-foreground);
  float: right;
}
figure.highlight figcaption a:hover,
pre .caption a:hover {
  border-bottom-color: var(--highlight-foreground);
}
pre,
code {
  font-family: consolas, Menlo, monospace, 'PingFang SC', 'Microsoft YaHei';
}
code {
  border-radius: 3px;
  font-size: 0.875em;
  padding: 2px 4px;
  overflow-wrap: break-word;
}
kbd {
  border: 2px solid #ccc;
  border-radius: 0.2em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1);
  font-family: inherit;
  padding: 0.1em 0.3em;
  white-space: nowrap;
}
figure.highlight {
  overflow: auto;
  position: relative;
}
figure.highlight pre {
  border: 0;
  margin: 0;
  padding: 10px 0;
}
figure.highlight table {
  border: 0;
  margin: 0;
  width: auto;
}
figure.highlight td {
  border: 0;
  padding: 0;
}
figure.highlight .gutter {
  -webkit-user-select: none;
  user-select: none;
}
figure.highlight .gutter pre {
  background: var(--highlight-gutter-background);
  color: var(--highlight-gutter-foreground);
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}
figure.highlight .code pre {
  padding-left: 10px;
  width: 100%;
}
figure.highlight .marked {
  background: rgba(0,0,0,0.3);
}
pre .caption {
  margin-bottom: 10px;
}
.gist table {
  width: auto;
}
.gist table td {
  border: 0;
}
pre {
  overflow: auto;
  padding: 10px;
}
pre code {
  background: none;
  padding: 0;
  text-shadow: none;
}
.blockquote-center {
  border-left: 0;
  margin: 40px 0;
  padding: 0;
  position: relative;
  text-align: center;
}
.blockquote-center::before,
.blockquote-center::after {
  left: 0;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  width: 100%;
}
.blockquote-center::before {
  border-top: 1px solid #ccc;
  text-align: left;
  top: -20px;
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.blockquote-center::after {
  border-bottom: 1px solid #ccc;
  bottom: -20px;
  text-align: right;
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.blockquote-center p,
.blockquote-center div {
  text-align: center;
}
.group-picture {
  margin-bottom: 20px;
}
.group-picture .group-picture-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.group-picture .group-picture-column {
  flex: 1;
}
.group-picture .group-picture-column img {
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.post-body .label {
  color: #555;
  padding: 0 2px;
}
.post-body .label.default {
  background: #f0f0f0;
}
.post-body .label.primary {
  background: #efe6f7;
}
.post-body .label.info {
  background: #e5f2f8;
}
.post-body .label.success {
  background: #e7f4e9;
}
.post-body .label.warning {
  background: #fcf6e1;
}
.post-body .label.danger {
  background: #fae8eb;
}
.post-body .link-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 20px;
  padding: 1rem;
}
.post-body .link-grid .link-grid-container {
  border: solid #ddd;
  box-shadow: 1rem 1rem 0.5rem rgba(0,0,0,0.5);
  min-height: 5rem;
  min-width: 0;
  padding: 0.5rem;
  position: relative;
  transition: background 0.3s;
}
.post-body .link-grid .link-grid-container:hover {
  animation: next-shake 0.5s;
  background: var(--card-bg-color);
}
.post-body .link-grid .link-grid-container:active {
  box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
  transform: translate(0.2rem, 0.2rem);
}
.post-body .link-grid .link-grid-container .link-grid-image {
  border: 1px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
  height: 5rem;
  padding: 3px;
  position: absolute;
  width: 5rem;
}
.post-body .link-grid .link-grid-container p {
  margin: 0 1rem 0 6rem;
}
.post-body .link-grid .link-grid-container p:first-of-type {
  font-size: 1.2em;
}
.post-body .link-grid .link-grid-container p:last-of-type {
  font-size: 0.8em;
  line-height: 1.3rem;
  opacity: 0.7;
}
.post-body .link-grid .link-grid-container a {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@keyframes next-shake {
  0% {
    transform: translate(1pt, 1pt) rotate(0deg);
  }
  10% {
    transform: translate(-1pt, -2pt) rotate(-1deg);
  }
  20% {
    transform: translate(-3pt, 0pt) rotate(1deg);
  }
  30% {
    transform: translate(3pt, 2pt) rotate(0deg);
  }
  40% {
    transform: translate(1pt, -1pt) rotate(1deg);
  }
  50% {
    transform: translate(-1pt, 2pt) rotate(-1deg);
  }
  60% {
    transform: translate(-3pt, 1pt) rotate(0deg);
  }
  70% {
    transform: translate(3pt, 1pt) rotate(-1deg);
  }
  80% {
    transform: translate(-1pt, -1pt) rotate(1deg);
  }
  90% {
    transform: translate(1pt, 2pt) rotate(0deg);
  }
  100% {
    transform: translate(1pt, -2pt) rotate(-1deg);
  }
}
.post-body .note {
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 1em;
  position: relative;
  background: #f5f5f5;
  border: 1px solid transparent;
}
.post-body .note summary {
  cursor: pointer;
  outline: 0;
}
.post-body .note summary p {
  display: inline;
}
.post-body .note h2,
.post-body .note h3,
.post-body .note h4,
.post-body .note h5,
.post-body .note h6 {
  border-bottom: initial;
  margin: 0;
  padding-top: 0;
}
.post-body .note :first-child {
  margin-top: 0;
}
.post-body .note :last-child {
  margin-bottom: 0;
}
.post-body .note:not(.no-icon) {
  padding-left: 2.5em;
}
.post-body .note:not(.no-icon)::before {
  font-size: 1.5em;
  left: 0.3em;
  position: absolute;
  top: calc(50% - 1em);
}
.post-body .note.default {
  background: #f3f3f3;
  border-color: #e1e1e1;
  color: #666;
}
.post-body .note.default a:not(.btn) {
  border-bottom-color: #666;
  color: #666;
}
.post-body .note.default a:not(.btn):hover {
  border-bottom-color: #454545;
  color: #454545;
}
.post-body .note.default:not(.no-icon)::before {
  content: '\f0a9';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .note.primary {
  background: #f3daff;
  border-color: #e1c2ff;
  color: #6f42c1;
}
.post-body .note.primary a:not(.btn) {
  border-bottom-color: #6f42c1;
  color: #6f42c1;
}
.post-body .note.primary a:not(.btn):hover {
  border-bottom-color: #453298;
  color: #453298;
}
.post-body .note.primary:not(.no-icon)::before {
  content: '\f055';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .note.info {
  background: #d9edf7;
  border-color: #b3e5ef;
  color: #31708f;
}
.post-body .note.info a:not(.btn) {
  border-bottom-color: #31708f;
  color: #31708f;
}
.post-body .note.info a:not(.btn):hover {
  border-bottom-color: #215761;
  color: #215761;
}
.post-body .note.info:not(.no-icon)::before {
  content: '\f05a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .note.success {
  background: #dff0d8;
  border-color: #d0e6be;
  color: #3c763d;
}
.post-body .note.success a:not(.btn) {
  border-bottom-color: #3c763d;
  color: #3c763d;
}
.post-body .note.success a:not(.btn):hover {
  border-bottom-color: #32562c;
  color: #32562c;
}
.post-body .note.success:not(.no-icon)::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .note.warning {
  background: #fcf4e3;
  border-color: #fae4cd;
  color: #8a6d3b;
}
.post-body .note.warning a:not(.btn) {
  border-bottom-color: #8a6d3b;
  color: #8a6d3b;
}
.post-body .note.warning a:not(.btn):hover {
  border-bottom-color: #714f30;
  color: #714f30;
}
.post-body .note.warning:not(.no-icon)::before {
  content: '\f06a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .note.danger {
  background: #f2dfdf;
  border-color: #ebcdd2;
  color: #a94442;
}
.post-body .note.danger a:not(.btn) {
  border-bottom-color: #a94442;
  color: #a94442;
}
.post-body .note.danger a:not(.btn):hover {
  border-bottom-color: #84333f;
  color: #84333f;
}
.post-body .note.danger:not(.no-icon)::before {
  content: '\f056';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body .tabs {
  margin-bottom: 20px;
}
.post-body .tabs,
.tabs-comment {
  padding-top: 10px;
}
.post-body .tabs ul.nav-tabs,
.tabs-comment ul.nav-tabs {
  background: var(--content-bg-color);
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 5;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs,
  .tabs-comment ul.nav-tabs {
    display: block;
    margin-bottom: 5px;
  }
}
.post-body .tabs ul.nav-tabs li.tab,
.tabs-comment ul.nav-tabs li.tab {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 0 0 0 0;
  border-top: 3px solid transparent;
  flex-grow: 1;
  list-style-type: none;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-bottom: 1px solid transparent;
    border-left: 3px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
  }
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-radius: 0;
  }
}
.post-body .tabs ul.nav-tabs li.tab a,
.tabs-comment ul.nav-tabs li.tab a {
  border-bottom: initial;
  display: block;
  line-height: 1.8;
  padding: 0.25em 0.75em;
  text-align: center;
  transition: all 0.2s ease-out;
}
.post-body .tabs ul.nav-tabs li.tab a i[class^='fa'],
.tabs-comment ul.nav-tabs li.tab a i[class^='fa'] {
  width: 1.285714285714286em;
}
.post-body .tabs ul.nav-tabs li.tab.active,
.tabs-comment ul.nav-tabs li.tab.active {
  border-bottom-color: transparent;
  border-left-color: #ddd;
  border-right-color: #ddd;
  border-top-color: #fc6423;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab.active,
  .tabs-comment ul.nav-tabs li.tab.active {
    border-bottom-color: #ddd;
    border-left-color: #fc6423;
    border-right-color: #ddd;
    border-top-color: #ddd;
  }
}
.post-body .tabs ul.nav-tabs li.tab.active a,
.tabs-comment ul.nav-tabs li.tab.active a {
  cursor: default;
}
.post-body .tabs .tab-content,
.tabs-comment .tab-content {
  border: 1px solid #ddd;
  border-radius: 0 0 0 0;
  border-top-color: transparent;
}
@media (max-width: 413px) {
  .post-body .tabs .tab-content,
  .tabs-comment .tab-content {
    border-radius: 0;
    border-top-color: #ddd;
  }
}
.post-body .tabs .tab-content .tab-pane,
.tabs-comment .tab-content .tab-pane {
  padding: 20px 20px 0;
}
.post-body .tabs .tab-content .tab-pane:not(.active),
.tabs-comment .tab-content .tab-pane:not(.active) {
  display: none;
}
.pagination .prev,
.pagination .next,
.pagination .page-number,
.pagination .space {
  display: inline-block;
  margin: -1px 10px 0;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .pagination .prev,
  .pagination .next,
  .pagination .page-number,
  .pagination .space {
    margin: 0 5px;
  }
}
.pagination .page-number.current {
  background: #ccc;
  border-color: #ccc;
  color: var(--content-bg-color);
}
.pagination {
  border-top: 1px solid #eee;
  margin: 120px 0 0;
  text-align: center;
}
.pagination .prev,
.pagination .next,
.pagination .page-number {
  border-bottom: 0;
  border-top: 1px solid #eee;
  transition: border-color 0.2s ease-in-out;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-number:hover {
  border-top-color: var(--link-hover-color);
}
@media (max-width: 767px) {
  .pagination {
    border-top: 0;
  }
  .pagination .prev,
  .pagination .next,
  .pagination .page-number {
    border-bottom: 1px solid #eee;
    border-top: 0;
  }
  .pagination .prev:hover,
  .pagination .next:hover,
  .pagination .page-number:hover {
    border-bottom-color: var(--link-hover-color);
  }
}
.pagination .space {
  margin: 0;
  padding: 0;
}
.comments {
  margin-top: 60px;
  overflow: hidden;
}
.comment-button-group {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  margin: 1em 0;
}
.comment-button-group .comment-button {
  margin: 0.1em 0.2em;
}
.comment-button-group .comment-button.active {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.comment-position {
  display: none;
}
.comment-position.active {
  display: block;
}
.tabs-comment {
  margin-top: 4em;
  padding-top: 0;
}
.tabs-comment .comments {
  margin-top: 0;
  padding-top: 0;
}
.headband {
  background: var(--theme-color);
  height: 3px;
}
@media (max-width: 991px) {
  .headband {
    display: none;
  }
}
.site-brand-container {
  display: flex;
  flex-shrink: 0;
  padding: 0 10px;
}
.use-motion .column,
.use-motion .site-brand-container .toggle {
  opacity: 0;
}
.site-meta {
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .site-meta {
    text-align: center;
  }
}
.custom-logo-image {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .custom-logo-image {
    display: none;
  }
}
.brand {
  border-bottom: 0;
  color: var(--brand-color);
  display: inline-block;
  padding: 0;
}
.brand:hover {
  color: var(--brand-hover-color);
}
.site-title {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.375em;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}
.site-subtitle {
  color: #ddd;
  font-size: 0.8125em;
  margin: 10px 10px 0;
}
.use-motion .site-title,
.use-motion .site-subtitle,
.use-motion .custom-logo-image {
  opacity: 0;
  position: relative;
  top: -10px;
}
.site-nav-toggle,
.site-nav-right {
  display: none;
}
@media (max-width: 767px) {
  .site-nav-toggle,
  .site-nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.site-nav-toggle .toggle,
.site-nav-right .toggle {
  color: var(--text-color);
  padding: 10px;
  width: 22px;
}
.site-nav-toggle .toggle .toggle-line,
.site-nav-right .toggle .toggle-line {
  background: var(--text-color);
  border-radius: 1px;
}
@media (max-width: 767px) {
  .site-nav {
    --scroll-height: 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    transition-property: height, visibility;
    visibility: hidden;
  }
  body:not(.site-nav-on) .site-nav .animated {
    animation: none;
  }
  body.site-nav-on .site-nav {
    height: var(--scroll-height);
    visibility: unset;
  }
}
.menu {
  margin: 0;
  padding: 1em 0;
  text-align: center;
}
.menu-item {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .menu-item {
    display: block;
    margin-top: 10px;
  }
  .menu-item.menu-item-search {
    display: none;
  }
}
.menu-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.8125em;
  transition: border-color 0.2s ease-in-out;
}
.menu-item a:hover,
.menu-item a.menu-item-active {
  background: var(--menu-item-bg-color);
}
.menu-item i[class^='fa'] {
  margin-right: 8px;
}
.menu-item .badge {
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.use-motion .menu-item {
  visibility: hidden;
}
@media (max-width: 991px) {
  .sidebar {
    left: -320px;
  }
  .sidebar-active .sidebar {
    left: 0;
  }
  .sidebar {
    background: #222;
    bottom: 0;
    box-shadow: inset 0 2px 6px #000;
    max-height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: 0.2s ease-out;
    transition-property: left, right;
    width: 320px;
    z-index: 20;
  }
  .sidebar a {
    border-bottom-color: #555;
    color: #999;
  }
  .sidebar a:hover {
    border-bottom-color: #eee;
    color: #eee;
  }
  .links-of-author:not(:first-child) {
    margin-top: 15px;
  }
  .links-of-author a {
    border-bottom-color: #555;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
  }
  .links-of-author a::before {
    background: #3effff;
    display: inline-block;
    margin-right: 3px;
    transform: translateY(-2px);
    border-radius: 50%;
    content: ' ';
    height: 4px;
    width: 4px;
  }
  .links-of-blogroll-item {
    padding: 0 5px;
  }
  .popular-posts .popular-posts-item .popular-posts-link:hover {
    background: none;
  }
  .sidebar-dimmer {
    background: #000;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: visibility 0.4s, opacity 0.4s;
    visibility: hidden;
    width: 100%;
    z-index: 10;
  }
  .sidebar-active .sidebar-dimmer {
    opacity: 0.7;
    visibility: visible;
  }
}
.sidebar-inner {
  color: #999;
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-toggle {
  bottom: 61px;
  height: 16px;
  padding: 5px;
  width: 16px;
  background: #222;
  cursor: pointer;
  opacity: 0.6;
  position: fixed;
  z-index: 30;
  left: 30px;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    left: 20px;
  }
}
.sidebar-toggle:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    opacity: 0.8;
  }
}
.sidebar-toggle:hover .toggle-line {
  background: #fc6423;
}
@media (any-hover: hover) {
  body:not(.sidebar-active) .sidebar-toggle:hover :first-child {
    left: 50%;
    top: 2px;
    transform: rotate(45deg);
    width: 50%;
  }
  body:not(.sidebar-active) .sidebar-toggle:hover :last-child {
    left: 50%;
    top: -2px;
    transform: rotate(-45deg);
    width: 50%;
  }
}
.sidebar-active .sidebar-toggle :nth-child(2) {
  opacity: 0;
}
.sidebar-active .sidebar-toggle :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.sidebar-active .sidebar-toggle :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
.sidebar-nav {
  font-size: 0.875em;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-left: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  transition-property: height, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-nav {
  height: calc(2em + 1px);
  pointer-events: unset;
  visibility: unset;
}
.sidebar-nav li {
  border-bottom: 1px solid transparent;
  color: var(--text-color);
  cursor: pointer;
  display: inline-block;
  transition: 0.2s ease-in-out;
  transition-property: border-bottom-color, color;
}
.sidebar-nav li.sidebar-nav-overview {
  margin-left: 10px;
}
.sidebar-nav li:hover {
  color: #fc6423;
}
.sidebar-toc-active .sidebar-nav-toc,
.sidebar-overview-active .sidebar-nav-overview {
  border-bottom-color: #fc6423;
  color: #fc6423;
  transition-delay: 0.2s;
}
.sidebar-toc-active .sidebar-nav-toc:hover,
.sidebar-overview-active .sidebar-nav-overview:hover {
  color: #fc6423;
}
.sidebar-panel-container {
  align-items: start;
  display: grid;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
  transition: padding-top 0.2s ease-in-out;
}
.sidebar-nav-active .sidebar-panel-container {
  padding-top: 20px;
}
.sidebar-panel {
  animation: deactivate-sidebar-panel 0.2s ease-in-out;
  grid-area: 1/1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: 0.2s ease-in-out;
  transition-delay: 0s;
  transition-property: opacity, transform, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-panel,
.sidebar-overview-active .sidebar-panel.post-toc-wrap {
  transform: translateY(-20px);
}
.sidebar-overview-active:not(.sidebar-nav-active) .sidebar-panel.post-toc-wrap {
  transition-delay: 0s, 0.2s, 0s;
}
.sidebar-overview-active .sidebar-panel.site-overview-wrap,
.sidebar-toc-active .sidebar-panel.post-toc-wrap {
  animation-name: activate-sidebar-panel;
  height: auto;
  opacity: 1;
  pointer-events: unset;
  transform: translateY(0);
  transition-delay: 0.2s, 0.2s, 0s;
  visibility: unset;
}
.sidebar-panel.site-overview-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  justify-content: flex-start;
}
@keyframes deactivate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, 0);
  }
  to {
    height: var(--active-panel-height, 0);
  }
}
@keyframes activate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, auto);
  }
  to {
    height: var(--active-panel-height, auto);
  }
}
.post-toc {
  font-size: 0.875em;
}
.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0 2px 0 10px;
  text-align: left;
}
.post-toc ol > :last-child {
  margin-bottom: 5px;
}
.post-toc ol > ol {
  padding-left: 0;
}
.post-toc ol a {
  transition: all 0.2s ease-in-out;
}
.post-toc .nav-item {
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-toc .nav .active > a {
  border-bottom-color: #fc6423;
  color: #fc6423;
}
.post-toc .nav .active-current > a {
  color: #fc6423;
}
.post-toc .nav .active-current > a:hover {
  color: #fc6423;
}
.site-author-image {
  border: 1px solid #eee;
  max-width: 120px;
  padding: 2px;
  border-radius: 50%;
}
.site-author-name {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
}
.site-description {
  color: #999;
  font-size: 0.8125em;
  margin-top: 0;
}
.site-state {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.4;
}
.site-state-item {
  padding: 0 15px;
}
.site-state-item a {
  border-bottom: 0;
  display: block;
}
.site-state-item-count {
  display: block;
  font-size: 1em;
  font-weight: 600;
}
.site-state-item-name {
  color: #999;
  font-size: 0.8125em;
}
.sidebar .sidebar-button:not(:first-child) {
  margin-top: 15px;
}
.sidebar .sidebar-button button {
  background: transparent;
  color: #fc6423;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 1px solid #fc6423;
  border-radius: 4px;
}
.sidebar .sidebar-button button:hover {
  background: #fc6423;
  color: #fff;
}
.sidebar .sidebar-button button i[class^='fa'] {
  margin-right: 5px;
}
.links-of-author a {
  font-size: 0.8125em;
}
.cc-license .cc-opacity {
  border-bottom: 0;
  opacity: 0.7;
}
.cc-license .cc-opacity:hover {
  opacity: 0.9;
}
.cc-license img {
  display: inline-block;
}
.links-of-blogroll {
  font-size: 0.8125em;
}
.links-of-blogroll-title {
  font-size: 0.875em;
  font-weight: 600;
}
.links-of-blogroll-list {
  list-style: none;
  gap: 5px;
  margin: 5px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.links-of-blogroll-item {
  max-width: 100%;
}
.links-of-blogroll-item a {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer {
  color: #999;
  font-size: 0.875em;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  transition-property: left, right;
}
.footer.footer-fixed {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.footer-inner {
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .footer-inner {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .footer-inner {
    width: 1160px;
  }
}
@media (min-width: 1600px) {
  .footer-inner {
    width: 73%;
  }
}
.use-motion .footer {
  opacity: 0;
}
.languages {
  display: inline-block;
  font-size: 1.125em;
  position: relative;
}
.languages .lang-select-label span {
  margin: 0 0.5em;
}
.languages .lang-select {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.with-love {
  color: #f00;
  display: inline-block;
  margin: 0 5px;
  animation: icon-animate 1.33s ease-in-out infinite;
}
@keyframes icon-animate {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(0.9);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.1);
  }
  50%, 70% {
    transform: scale(1.1);
  }
}
.back-to-top {
  font-size: 12px;
  align-items: center;
  bottom: -100px;
  color: #fff;
  display: flex;
  height: 26px;
  transition: 0.2s ease-in-out;
  transition-property: bottom;
  background: #222;
  cursor: pointer;
  opacity: 0.6;
  position: fixed;
  z-index: 30;
  left: 30px;
}
.back-to-top span {
  margin-right: 8px;
}
.back-to-top .fa {
  text-align: center;
  width: 26px;
}
@media (max-width: 991px) {
  .back-to-top {
    left: 20px;
  }
}
.back-to-top:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .back-to-top {
    opacity: 0.8;
  }
}
.back-to-top:hover {
  color: #fc6423;
}
.back-to-top.back-to-top-on {
  bottom: 30px;
}
.reading-progress-bar {
  --progress: 0;
  background: #37c6c0;
  height: 3px;
  position: fixed;
  z-index: 50;
  width: var(--progress);
  left: 0;
  top: 0;
}
.rtl.post-body p,
.rtl.post-body a,
.rtl.post-body h1,
.rtl.post-body h2,
.rtl.post-body h3,
.rtl.post-body h4,
.rtl.post-body h5,
.rtl.post-body h6,
.rtl.post-body li,
.rtl.post-body ul,
.rtl.post-body ol {
  direction: rtl;
  font-family: UKIJ Ekran;
}
.rtl.post-title {
  font-family: UKIJ Ekran;
}
.post-button {
  margin-top: 40px;
  text-align: center;
}
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments {
  visibility: hidden;
}
.use-motion .post-header {
  visibility: hidden;
}
.use-motion .post-body {
  visibility: hidden;
}
.use-motion .collection-header {
  visibility: hidden;
}
.posts-collapse .post-content {
  margin-bottom: 35px;
  margin-left: 35px;
  position: relative;
}
@media (max-width: 767px) {
  .posts-collapse .post-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.posts-collapse .post-content .collection-title {
  font-size: 1.125em;
  position: relative;
}
.posts-collapse .post-content .collection-title::before {
  background: #999;
  border: 1px solid #fff;
  margin-left: -6px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 10px;
  width: 10px;
}
.posts-collapse .post-content .collection-year {
  font-size: 1.5em;
  font-weight: bold;
  margin: 60px 0;
  position: relative;
}
.posts-collapse .post-content .collection-year .collection-year-count {
  font-size: 0.75em;
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.posts-collapse .post-content .collection-year::before {
  background: #bbb;
  margin-left: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 8px;
  width: 8px;
}
.posts-collapse .post-content .collection-header {
  display: block;
  margin-left: 20px;
}
.posts-collapse .post-content .collection-header small {
  color: #bbb;
  margin-left: 5px;
}
.posts-collapse .post-content .post-header {
  border-bottom: 1px dashed #ccc;
  margin: 30px 2px 0;
  padding-left: 15px;
  position: relative;
  transition: border 0.2s ease-in-out;
}
.posts-collapse .post-content .post-header::before {
  background: #bbb;
  border: 1px solid #fff;
  left: -6px;
  position: absolute;
  top: 0.75em;
  transition: background 0.2s ease-in-out;
  border-radius: 50%;
  content: ' ';
  height: 6px;
  width: 6px;
}
.posts-collapse .post-content .post-header:hover {
  border-bottom-color: #666;
}
.posts-collapse .post-content .post-header:hover::before {
  background: #222;
}
.posts-collapse .post-content .post-meta-container {
  display: inline;
  font-size: 0.75em;
  margin-right: 10px;
}
.posts-collapse .post-content .post-title {
  display: inline;
}
.posts-collapse .post-content .post-title a {
  border-bottom: 0;
  color: var(--link-color);
}
.posts-collapse .post-content .post-title .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.posts-collapse .post-content::before {
  background: #f5f5f5;
  content: ' ';
  height: 100%;
  margin-left: -2px;
  position: absolute;
  top: 1.25em;
  width: 4px;
}
.post-body {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-wrap: break-word;
}
@media (min-width: 1200px) {
  .post-body {
    font-size: 1.125em;
  }
}
@media (min-width: 992px) {
  .post-body {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  .post-body {
    text-align: justify;
  }
}
.post-body h1 .header-anchor,
.post-body h2 .header-anchor,
.post-body h3 .header-anchor,
.post-body h4 .header-anchor,
.post-body h5 .header-anchor,
.post-body h6 .header-anchor,
.post-body h1 .headerlink,
.post-body h2 .headerlink,
.post-body h3 .headerlink,
.post-body h4 .headerlink,
.post-body h5 .headerlink,
.post-body h6 .headerlink {
  border-bottom-style: none;
  color: inherit;
  float: right;
  font-size: 0.875em;
  margin-left: 10px;
  opacity: 0;
}
.post-body h1 .header-anchor::before,
.post-body h2 .header-anchor::before,
.post-body h3 .header-anchor::before,
.post-body h4 .header-anchor::before,
.post-body h5 .header-anchor::before,
.post-body h6 .header-anchor::before,
.post-body h1 .headerlink::before,
.post-body h2 .headerlink::before,
.post-body h3 .headerlink::before,
.post-body h4 .headerlink::before,
.post-body h5 .headerlink::before,
.post-body h6 .headerlink::before {
  content: '\f0c1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.post-body h1:hover .header-anchor,
.post-body h2:hover .header-anchor,
.post-body h3:hover .header-anchor,
.post-body h4:hover .header-anchor,
.post-body h5:hover .header-anchor,
.post-body h6:hover .header-anchor,
.post-body h1:hover .headerlink,
.post-body h2:hover .headerlink,
.post-body h3:hover .headerlink,
.post-body h4:hover .headerlink,
.post-body h5:hover .headerlink,
.post-body h6:hover .headerlink {
  opacity: 0.5;
}
.post-body h1:hover .header-anchor:hover,
.post-body h2:hover .header-anchor:hover,
.post-body h3:hover .header-anchor:hover,
.post-body h4:hover .header-anchor:hover,
.post-body h5:hover .header-anchor:hover,
.post-body h6:hover .header-anchor:hover,
.post-body h1:hover .headerlink:hover,
.post-body h2:hover .headerlink:hover,
.post-body h3:hover .headerlink:hover,
.post-body h4:hover .headerlink:hover,
.post-body h5:hover .headerlink:hover,
.post-body h6:hover .headerlink:hover {
  opacity: 1;
}
.post-body .exturl .fa {
  font-size: 0.875em;
  margin-left: 4px;
}
.post-body figure:not(.highlight) figcaption {
  color: #999;
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1;
  margin: -15px auto 15px;
  text-align: center;
}
.post-body iframe,
.post-body img,
.post-body video,
.post-body embed {
  margin-bottom: 20px;
}
.post-body .video-container {
  height: 0;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  width: 100%;
}
.post-body .video-container iframe,
.post-body .video-container object,
.post-body .video-container embed {
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.post-gallery {
  display: flex;
  min-height: 200px;
}
.post-gallery .post-gallery-image {
  flex: 1;
}
.post-gallery .post-gallery-image:not(:first-child) {
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -20px;
}
.post-gallery .post-gallery-image:not(:last-child) {
  margin-right: -20px;
}
.post-gallery .post-gallery-image img {
  height: 100%;
  object-fit: cover;
  opacity: 1;
  width: 100%;
}
.posts-expand .post-gallery {
  margin-bottom: 60px;
}
.posts-collapse .post-gallery {
  margin: 15px 0;
}
.posts-expand .post-header {
  font-size: 1.125em;
  margin-bottom: 60px;
  text-align: center;
}
.posts-expand .post-title {
  font-size: 1.5em;
  font-weight: normal;
  margin: initial;
  overflow-wrap: break-word;
}
.posts-expand .post-title-link {
  border-bottom: 0;
  color: var(--link-color);
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.posts-expand .post-title-link::before {
  background: var(--link-color);
  bottom: 0;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
  width: 100%;
}
.posts-expand .post-title-link:hover::before {
  transform: scaleX(1);
}
.posts-expand .post-title-link .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.post-sticky-flag {
  display: inline-block;
  margin-right: 8px;
  transform: rotate(30deg);
}
.posts-expand .post-meta-container {
  color: #999;
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.75em;
  margin-top: 3px;
}
.posts-expand .post-meta-container .post-description {
  font-size: 0.875em;
  margin-top: 2px;
}
.posts-expand .post-meta-container time {
  border-bottom: 1px dashed #999;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
:not(.post-meta-break) + .post-meta-item::before {
  content: '|';
  margin: 0 0.5em;
}
.post-meta-item-icon {
  margin-right: 3px;
}
@media (max-width: 991px) {
  .post-meta-item-text {
    display: none;
  }
}
.post-meta-break {
  flex-basis: 100%;
  height: 0;
}
.post-nav {
  border-top: 1px solid #eee;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 1em;
  padding: 10px 5px 0;
}
.post-nav-item {
  flex: 1;
}
.post-nav-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.875em;
  line-height: 1.6;
}
.post-nav-item a:active {
  top: 2px;
}
.post-nav-item .fa {
  font-size: 0.75em;
}
.post-nav-item:first-child .fa {
  margin-right: 5px;
}
.post-nav-item:last-child {
  text-align: right;
}
.post-nav-item:last-child .fa {
  margin-left: 5px;
}
.post-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-eof {
  background: #ccc;
  height: 1px;
  margin: 80px auto 60px;
  width: 8%;
}
.post-block:last-of-type .post-eof {
  display: none;
}
.post-copyright ul {
  list-style: none;
  overflow: hidden;
  padding: 0.5em 1em;
  position: relative;
  background: var(--card-bg-color);
  border-left: 3px solid #ff2a2a;
  margin: 1em 0 0;
}
.post-copyright ul::after {
  content: '\f25e';
  font-family: 'Font Awesome 6 Brands';
  font-size: 200px;
  opacity: 0.1;
  position: absolute;
  right: -50px;
  top: -150px;
}
.post-tags {
  margin-top: 40px;
  text-align: center;
}
.post-tags a {
  display: inline-block;
  font-size: 0.8125em;
}
.post-tags a:not(:last-child) {
  margin-right: 10px;
}
.social-like {
  border-top: 1px solid #eee;
  font-size: 0.875em;
  margin-top: 1em;
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.social-like a {
  border-bottom: none;
}
.reward-container {
  margin: 1em 0 0;
  padding: 1em 0;
  text-align: center;
}
.reward-container button {
  background: transparent;
  color: #fc6423;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 2px solid #fc6423;
  border-radius: 2px;
  outline: 0;
  vertical-align: text-top;
}
.reward-container button:hover {
  background: #fc6423;
  color: #fff;
}
.post-reward {
  display: none;
  padding-top: 20px;
}
.post-reward.active {
  display: block;
}
.post-reward div {
  display: inline-block;
}
.post-reward div span {
  display: block;
}
.post-reward img {
  display: inline-block;
  margin: 0.8em 2em 0;
  max-width: 100%;
  width: 180px;
}
@keyframes next-roll {
  from {
    transform: rotateZ(30deg);
  }
  to {
    transform: rotateZ(-30deg);
  }
}
.category-all-page .category-all-title {
  text-align: center;
}
.category-all-page .category-all {
  margin-top: 20px;
}
.category-all-page .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-all-page .category-list-item {
  margin: 5px 10px;
}
.category-all-page .category-list-count {
  font-size: 0.75em;
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.category-all-page .category-list-child {
  padding-left: 10px;
}
.event-list hr {
  background: #222;
  margin: 20px 0 45px;
}
.event-list hr::after {
  background: #222;
  color: #fff;
  content: 'NOW';
  display: inline-block;
  font-weight: bold;
  padding: 0 5px;
}
.event-list .event {
  --event-background: #222;
  --event-foreground: #bbb;
  --event-title: #fff;
  background: var(--event-background);
  padding: 15px;
}
.event-list .event .event-summary {
  border-bottom: 0;
  color: var(--event-title);
  margin: 0;
  padding: 0 0 0 35px;
  position: relative;
}
.event-list .event .event-summary::before {
  animation: dot-flash 1s alternate infinite ease-in-out;
  background: var(--event-title);
  left: 0;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 12px;
  width: 12px;
}
.event-list .event:nth-of-type(odd) .event-summary::before {
  animation-delay: 0.5s;
}
.event-list .event:not(:last-child) {
  margin-bottom: 20px;
}
.event-list .event .event-relative-time {
  color: var(--event-foreground);
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 12px;
}
.event-list .event .event-details {
  color: var(--event-foreground);
  display: block;
  line-height: 18px;
  padding: 6px 0 6px 35px;
}
.event-list .event .event-details::before {
  color: var(--event-foreground);
  display: inline-block;
  margin-right: 9px;
  width: 14px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.event-list .event .event-details.event-location::before {
  content: '\f041';
}
.event-list .event .event-details.event-duration::before {
  content: '\f017';
}
.event-list .event .event-details.event-description::before {
  content: '\f024';
}
.event-list .event-past {
  --event-background: #f5f5f5;
  --event-foreground: #999;
  --event-title: #222;
}
@keyframes dot-flash {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
ul.breadcrumb {
  font-size: 0.75em;
  list-style: none;
  margin: 1em 0;
  padding: 0 2em;
  text-align: center;
}
ul.breadcrumb li {
  display: inline;
}
ul.breadcrumb li:not(:first-child)::before {
  content: '/\00a0';
  font-weight: normal;
  padding: 0.5em;
}
ul.breadcrumb li:last-child {
  font-weight: bold;
}
.tag-cloud {
  text-align: center;
}
.tag-cloud a {
  display: inline-block;
  margin: 10px;
}
.tag-cloud-0 {
  border-bottom-color: #aaa;
  color: #aaa;
}
.tag-cloud-1 {
  border-bottom-color: #9a9a9a;
  color: #9a9a9a;
}
.tag-cloud-2 {
  border-bottom-color: #8b8b8b;
  color: #8b8b8b;
}
.tag-cloud-3 {
  border-bottom-color: #7c7c7c;
  color: #7c7c7c;
}
.tag-cloud-4 {
  border-bottom-color: #6c6c6c;
  color: #6c6c6c;
}
.tag-cloud-5 {
  border-bottom-color: #5d5d5d;
  color: #5d5d5d;
}
.tag-cloud-6 {
  border-bottom-color: #4e4e4e;
  color: #4e4e4e;
}
.tag-cloud-7 {
  border-bottom-color: #3e3e3e;
  color: #3e3e3e;
}
.tag-cloud-8 {
  border-bottom-color: #2f2f2f;
  color: #2f2f2f;
}
.tag-cloud-9 {
  border-bottom-color: #202020;
  color: #202020;
}
.tag-cloud-10 {
  border-bottom-color: #111;
  color: #111;
}
.search-active {
  overflow: hidden;
  margin-right: var(--dialog-scrollgutter, 0);
}
.search-pop-overlay {
  background: rgba(0,0,0,0);
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.4s, background 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}
.search-active .search-pop-overlay {
  background: rgba(0,0,0,0.3);
  visibility: visible;
}
.search-popup {
  background: var(--card-bg-color);
  border-radius: 5px;
  height: 80%;
  margin: auto;
  transform: scale(0);
  transition: transform 0.4s;
  width: 700px;
}
.search-active .search-popup {
  transform: scale(1);
}
@media (max-width: 767px) {
  .search-popup {
    border-radius: 0;
    height: 100%;
    width: 100%;
  }
}
.search-popup .search-icon,
.search-popup .popup-btn-close {
  color: #999;
  font-size: 18px;
  padding: 0 10px;
}
.search-popup .popup-btn-close {
  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: 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-result-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 55px);
  overflow: auto;
  padding: 5px 25px;
}
.search-popup .search-result-container hr {
  flex-shrink: 0;
  margin: 5px 0 10px;
}
.search-popup .search-result-container hr:first-child {
  display: none;
}
.search-popup .search-result-list {
  margin: 0 5px;
  padding: 0;
}
.search-popup a.search-result-title {
  font-weight: bold;
}
.search-popup p.search-result {
  border-bottom: 1px dashed #ccc;
  margin: 0 0 10px;
  padding: 5px 0;
}
.search-popup .search-input-container {
  flex-grow: 1;
  padding: 2px;
}
.search-popup .search-result-icon {
  color: #ccc;
  margin: auto;
}
mark.search-keyword {
  background: transparent;
  border-bottom: 1px dashed #ff2a2a;
  color: #ff2a2a;
  font-weight: bold;
}
.use-motion .animated {
  animation-fill-mode: none;
  visibility: inherit;
}
.use-motion .sidebar .animated {
  animation-fill-mode: both;
}
header.header {
  background: var(--content-bg-color);
  border-radius: initial;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12);
}
@media (max-width: 991px) {
  header.header {
    border-radius: initial;
  }
}
.main {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .main {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .main {
    width: 1160px;
  }
}
@media (min-width: 1600px) {
  .main {
    width: 73%;
  }
}
@media (max-width: 991px) {
  .main {
    display: block;
    width: auto;
  }
}
.main-inner {
  border-radius: initial;
  box-sizing: border-box;
  width: calc(100% - 252px);
}
@media (max-width: 991px) {
  .main-inner {
    border-radius: initial;
    width: 100%;
  }
}
.footer-inner {
  padding-left: 252px;
}
@media (max-width: 991px) {
  .footer-inner {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
.column {
  width: 240px;
}
@media (max-width: 991px) {
  .column {
    width: auto;
  }
}
.site-brand-container {
  background: var(--theme-color);
}
@media (max-width: 991px) {
  .site-nav-on .site-brand-container {
    box-shadow: 0 0 16px rgba(0,0,0,0.5);
  }
}
.site-meta {
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-nav-toggle,
  .site-nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.site-nav-toggle .toggle,
.site-nav-right .toggle {
  color: #fff;
}
.site-nav-toggle .toggle .toggle-line,
.site-nav-right .toggle .toggle-line {
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-nav {
    --scroll-height: 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    transition-property: height, visibility;
    visibility: hidden;
  }
  body:not(.site-nav-on) .site-nav .animated {
    animation: none;
  }
  body.site-nav-on .site-nav {
    height: var(--scroll-height);
    visibility: unset;
  }
}
.menu .menu-item {
  display: block;
  margin: 0;
}
.menu .menu-item a {
  padding: 5px 20px;
  position: relative;
  transition-property: background-color;
  display: flex;
  align-items: center;
}
.menu .menu-item a .badge {
  margin-left: auto;
}
@media (max-width: 991px) {
  .menu .menu-item.menu-item-search {
    display: none;
  }
}
.sub-menu {
  margin: 0;
  padding: 6px 0;
}
.sub-menu .menu-item {
  display: inline-block;
}
.sub-menu .menu-item a {
  background: transparent;
  margin: 5px 10px;
  padding: initial;
}
.sub-menu .menu-item a:hover {
  background: transparent;
  color: #fc6423;
}
.sub-menu .menu-item-active {
  border-bottom-color: #fc6423;
  color: #fc6423;
}
.sub-menu .menu-item-active:hover {
  border-bottom-color: #fc6423;
}
@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 12px;
  }
  .sidebar-toggle {
    display: none;
  }
  .sidebar-inner {
    background: var(--content-bg-color);
    border-radius: initial;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12), 0 -1px 0.5px 0 rgba(0,0,0,0.09);
    box-sizing: border-box;
    color: var(--text-color);
    margin-top: 12px;
    max-height: calc(100vh - 24px);
    visibility: hidden;
  }
  .site-state-item {
    padding: 0 10px;
  }
  .sidebar .sidebar-button {
    border-bottom: 1px dotted #ccc;
    border-top: 1px dotted #ccc;
  }
  .sidebar .sidebar-button button {
    border: 0;
    color: #fc6423;
    display: block;
    width: 100%;
  }
  .sidebar .sidebar-button button:hover {
    background: none;
    border: 0;
    color: #e34603;
  }
  .links-of-author {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .links-of-author-item {
    margin: 5px 0 0;
  }
  .links-of-author-item a {
    border-bottom: 0;
    border-radius: 4px;
    display: block;
    padding: 0 5px;
    box-sizing: border-box;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .links-of-author-item a:hover {
    background: var(--body-bg-color);
  }
  .links-of-blogroll-item a {
    padding: 0 5px;
  }
}
.main-inner .sub-menu,
.main-inner .post-block,
.main-inner .tabs-comment,
.main-inner > .comments,
.main-inner .comment-position .comments,
.main-inner .pagination {
  background: var(--content-bg-color);
  border-radius: initial;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12);
}
.main-inner .post-block:not(:first-child):not(:first-child) {
  border-radius: initial;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12), 0 -1px 0.5px 0 rgba(0,0,0,0.09);
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-inner .post-block:not(:first-child):not(:first-child) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .main-inner .post-block:not(:first-child):not(:first-child) {
    margin-top: 8px;
  }
}
.main-inner .tabs-comment,
.main-inner > .comments,
.main-inner .comment-position .comments,
.main-inner .pagination {
  border-radius: initial;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12), 0 -1px 0.5px 0 rgba(0,0,0,0.09);
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-inner .tabs-comment,
  .main-inner > .comments,
  .main-inner .comment-position .comments,
  .main-inner .pagination {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .main-inner .tabs-comment,
  .main-inner > .comments,
  .main-inner .comment-position .comments,
  .main-inner .pagination {
    margin-top: 8px;
  }
}
.post-block,
.comments {
  padding: 40px;
}
.post-eof {
  display: none;
}
.pagination {
  border-top: initial;
  padding: 10px 0;
}
.post-body h1,
.post-body h2 {
  border-bottom: 1px solid #eee;
}
.post-body h3 {
  border-bottom: 1px dotted #eee;
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-inner {
    padding: 10px;
  }
  .posts-expand .post-button {
    margin-top: 20px;
  }
  .post-block {
    padding: 20px;
  }
  .comments {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .main-inner {
    padding: 8px;
  }
  .posts-expand .post-button {
    margin: 12px 0;
  }
  .post-block {
    padding: 12px;
  }
  .comments {
    padding: 10px 12px;
  }
}
/*
 * ===================================================================
 * 网站主题美化与功能增强样式
 * ===================================================================
 *
 * 说明:
 * 本文件包含了对网站主题的深度美化和功能增强样式定义。
 * 主要涵盖以下几个核心方面，旨在提升用户体验和网站的视觉吸引力：
 * 1. 全局圆角与布局的精细调整，实现现代化卡片式设计风格。
 * 2. 引入背景毛玻璃（Glassmorphism）效果，增强页面的视觉层次感。
 * 3. 针对网站内特定组件（如版权声明、Waline评论区、返回顶部按钮等）进行样式优化，
 * 确保它们与整体设计语言保持高度一致。
 * 4. 完整的日间/夜间双模式颜色适配方案，提供在不同光照条件下的舒适浏览体验。
 *
 *
 * ===================================================================
 */
/*
 * -------------------------------------------------------------------
 * 1. 全局变量定义
 * -------------------------------------------------------------------
 * 本节定义了网站中常用的CSS变量（Custom Properties）。
 * 使用这些变量能够实现样式属性的统一管理，便于后续进行快速调整、主题切换以及维护。
 * 它们作为设计系统的基础，确保了视觉元素的一致性。
 */
:root {
/* --custom-border-radius:
   * 定义了网站中主要容器元素（如页面头部、侧边栏、文章内容块等）的圆角大小。
   * 较大的圆角有助于营造柔和、现代的卡片式设计风格。
   */
  --custom-border-radius: 12px;
/* --custom-border-radius-small:
   * 定义了网站中内部较小元素（如图片、交互按钮、代码块等）的圆角大小。
   * 较小的圆角用于细节处理，保持整体圆润感的同时，区分不同层级的视觉元素。
   */
  --custom-border-radius-small: 8px;
/* Waline 评论区颜色变量 (日间模式)
   * 这些变量专门用于控制 Waline 评论组件在日间模式下的颜色方案。
   * 它们覆盖了评论区的主题色、背景色、边框色和文本颜色，确保其与网站整体主题的无缝融合。
   */
  --waline-theme-color: #3b82f6;
  --waline-theme-color-light: rgba(59,130,246,0.2);
  --waline-input-bg: rgba(255,255,255,0.3);
  --waline-border-color: #d1d5db;
  --waline-label-color: #6b7280;
  --waline-text-color: #111827;
}
/*
 * -------------------------------------------------------------------
 * 2. 整体布局与间距调整
 * -------------------------------------------------------------------
 * 本节主要负责调整网站在宽屏设备上的主干布局结构。
 * 目标是实现内容区域的居中显示，并设置最大宽度限制，以确保在不同屏幕尺寸下都能提供最佳的阅读体验。
 */
@media (min-width: 1000px) {
  .main {
    max-width: 1000px; /* 设置主内容区域的最大宽度为1000px，防止在超宽屏幕上内容过度拉伸。 */
    margin: 18px auto 0 auto !important; /* 上边距为18px，左右外边距设置为auto实现水平居中，底部外边距为0。 */
    float: none !important; /* 取消任何可能的浮动设置，确保 margin: auto 的居中效果正常工作。 */
  }
  .footer-inner {
    max-width: 1000px; /* 设置页脚内容区域的最大宽度，使其与主内容区域宽度对齐，保持页面整体的视觉平衡。 */
    margin: 0 auto; /* 左右外边距设置为auto实现水平居中。 */
  }
}
/*
 * -------------------------------------------------------------------
 * 3. 全局视觉效果定义
 * -------------------------------------------------------------------
 * 本节定义了网站的整体视觉风格，包括背景的模糊效果以及主要内容容器的毛玻璃质感。
 * 这些效果共同提升了网站的现代感和视觉吸引力。
 */
/* 3.1. 全局模糊背景效果 (body::before) */
body::before {
  content: ''; /* 创建一个伪元素作为背景层。 */
  position: fixed; /* 固定定位，确保背景图片不随页面滚动而移动。 */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; /* 使伪元素覆盖整个视口。 */
  z-index: -1; /* 将背景层置于所有页面内容之下，避免遮挡。 */
  background: url("https://s21.ax1x.com/2025/08/01/pVNEIE9.jpg"); /* 设置背景图片。 */
  background-repeat: no-repeat; /* 背景图片不重复平铺。 */
  background-attachment: fixed; /* 背景图片固定，不随滚动条滚动。 */
  background-size: cover; /* 背景图片等比例缩放，覆盖整个元素区域，可能裁剪部分图片。 */
  background-position: center; /* 背景图片居中显示。 */
  filter: blur(8px); /* 对背景图片应用8像素的模糊效果，营造景深感。 */
  transform: scale(1.05); /* 稍微放大背景图片，以避免模糊处理后边缘可能出现的空白或硬边。 */
}
/* 3.2. Body 元素的基础样式设置 */
body {
  background: none !important; /* 移除 body 元素默认的背景色，确保伪元素背景层可见。 */
  display: flex; /* 使用 Flexbox 布局模型。 */
  flex-direction: column; /* 将 body 的子元素垂直方向排列。 */
  min-height: 100vh; /* 设置 body 的最小高度为视口高度，确保即使内容较少，页脚也能保持在底部。 */
}
/* 3.3. 主内容区 (.main) 伸展设置 */
main.main {
  flex-grow: 1; /* 允许主内容区域在 Flex 容器中伸展，占据所有可用垂直空间，将页脚推至底部。 */
}
/* 3.4. 容器毛玻璃效果与圆角 (Header, Sidebar, Post Block, Waline) */
/* 对网站中主要的卡片式内容容器（如头部导航、侧边栏、文章内容块、Waline评论区）应用统一的毛玻璃效果和圆角。 */
.header,
.sidebar-inner,
.post-block,
#waline {
  border-radius: var(--custom-border-radius) !important; /* 应用全局定义的大圆角。 */
  background: rgba(255,255,255,0.9) !important; /* 设置半透明白色背景，这是毛玻璃效果的基础。 */
  -webkit-backdrop-filter: blur(10px); /* 针对 Webkit 浏览器（如 Chrome, Safari）的背景模糊效果。 */
  backdrop-filter: blur(10px); /* 标准的背景模糊效果，使背景内容透过半透明容器呈现模糊效果。 */
  overflow: hidden; /* 隐藏超出容器边界的内容，确保圆角效果的完整性。 */
  border: none; /* 移除默认的边框。 */
  box-shadow: 0 4px 15px 0 rgba(0,0,0,0.1); /* 添加柔和的阴影效果，增加元素的立体感。 */
}
/* 3.5. 清理不必要的容器背景 */
/* 移除主内容内部容器 (.main-inner) 的背景、边框和阴影。
 * 这是为了避免与外部容器的毛玻璃效果和阴影重复，导致视觉上的冗余或冲突。
 */
.main-inner {
  background: none; /* 移除背景。 */
  border: none; /* 移除边框。 */
  box-shadow: none; /* 移除阴影。 */
}
/* 3.6. 站点头部独立背景图 */
/* 为网站品牌容器 (.site-brand-container) 设置独立的背景图片。
 * 这使得网站头部能够拥有独特的视觉标识，与整体的毛玻璃效果形成对比或补充。
 */
.site-brand-container {
  background: url("https://s21.ax1x.com/2025/08/01/pVNVYVJ.jpg"); /* 设置站点头部的背景图片。 */
  background-repeat: no-repeat; /* 背景图片不重复平铺。 */
  background-size: cover; /* 背景图片覆盖整个元素区域。 */
  background-position: center; /* 背景图片居中显示。 */
}
/*
 * -------------------------------------------------------------------
 * 4. 组件与元素样式调整
 * -------------------------------------------------------------------
 * 本节针对网站中各个独立的组件和通用元素进行精细化的样式调整。
 * 旨在优化它们的视觉表现和用户体验，使其更好地融入整体设计。
 */
/* 文章块 (.post-block) 内边距 */
.post-block {
  padding: 25px; /* 增加文章内容块的内边距，为文本和图片提供更舒适的留白空间，提升阅读舒适度。 */
}
/* 文章正文 (.post-body) 字体大小 */
.post-body {
  font-size: 0.9em; /* 调整文章正文的字体大小，使其在视觉上更易于阅读和扫描。 */
}
/* 文章标题链接 (.post-title-link) 字体大小 */
.post-title-link {
  font-size: 0.95em; /* 调整文章标题链接的字体大小，使其在列表或卡片中更显眼。 */
}
/* 文章头部 (.post-header) 下边距 */
.post-header {
  margin-bottom: 0px !important; /* 移除文章头部的默认下边距，以实现更紧凑的布局或与其他元素的精确对齐。 */
}
/* 文章正文图片 (.post-body img) 圆角 */
.post-body img {
  border-radius: var(--custom-border-radius-small) !important; /* 对文章正文中的所有图片应用自定义的小圆角，保持视觉一致性。 */
}
/* 站点作者头像 (.site-author-image) 样式 */
.site-author-image {
  display: block; /* 将头像设置为块级元素，以便于使用 margin: auto 进行居中。 */
  margin: 5px auto 10px; /* 上边距5px，左右自动居中，下边距10px，用于定位头像。 */
  width: 100px; /* 设置头像的固定宽度。 */
  height: 100px; /* 设置头像的固定高度。 */
  border-radius: 50%; /* 将头像设置为完美的圆形。 */
  border: 2px solid transparent; /* 添加一个透明边框，可在悬停等状态下改变颜色，增加交互效果。 */
  box-sizing: border-box; /* 确保边框和内边距包含在元素的总宽度和高度内。 */
}
/* 文章版权信息列表 (.post-copyright ul) 样式 */
.post-copyright ul {
  list-style: none; /* 移除列表项默认的符号（如圆点）。 */
  overflow: hidden; /* 隐藏任何超出列表容器边界的内容，确保圆角效果。 */
  padding: 1em 1.5em; /* 设置列表的内边距，提供内容与边框之间的空间。 */
  background: rgba(255,255,255,0.5); /* 设置半透明白色背景，与毛玻璃主题相呼应。 */
  border-left: 4px solid #3498db; /* 添加一个醒目的左侧蓝色边框，作为版权信息的视觉强调。 */
  border-radius: var(--custom-border-radius-small); /* 应用自定义的小圆角。 */
  box-shadow: 0 2px 10px -3px rgba(0,0,0,0.05); /* 添加一个轻微的阴影效果，使其略微浮起。 */
}
/* 文章版权信息列表项 (.post-copyright li) 行高和字体大小 */
.post-copyright li {
  line-height: 1.8; /* 增加行高，提升文本的可读性。 */
  font-size: 0.95em; /* 调整字体大小。 */
}
/* 返回顶部按钮 (.back-to-top) 样式 */
/* 本节定义了“返回顶部”按钮的完整样式，包括其尺寸、定位、外观、动画效果以及内部元素的布局。 */
.back-to-top {
/* 尺寸与定位 */
  width: 50px !important; /* 强制设置按钮宽度。 */
  height: 50px !important; /* 强制设置按钮高度。 */
  left: unset !important; /* 确保按钮不被左侧定位属性影响。 */
  right: 32px !important; /* 将按钮固定在视口右侧32像素的位置。 */
  bottom: 100px !important; /* 将按钮固定在视口底部100像素的位置。 */
/* 布局与外观 */
  display: flex !important; /* 使用 Flexbox 布局，方便内部图标和文本的对齐。 */
  flex-direction: column !important; /* 内部元素垂直排列。 */
  justify-content: center !important; /* 内部元素垂直居中。 */
  align-items: center !important; /* 内部元素水平居中。 */
  padding: 0 !important; /* 移除按钮内部的内边距。 */
  border-radius: 50% !important; /* 将按钮形状设置为完美的圆形。 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.12) !important; /* 添加柔和的阴影效果。 */
  color: #333 !important; /* 设置按钮内部文本和图标的颜色。 */
  background: #fff !important; /* 设置按钮的背景色为不透明白色。 */
  -webkit-backdrop-filter: none !important; /* 移除 Webkit 浏览器的背景模糊效果，确保按钮自身清晰。 */
  backdrop-filter: none !important; /* 移除标准背景模糊效果。 */
  border: 1px solid rgba(0,0,0,0.08) !important; /* 添加一个浅色边框。 */
/* 动画效果 */
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* 定义透明度、形变和阴影的平滑过渡动画。 */
  opacity: 0; /* 默认状态下按钮是完全透明的（隐藏）。 */
  transform: translateY(20px); /* 默认状态下按钮向下偏移20px。 */
  pointer-events: none; /* 默认状态下不响应鼠标事件，防止误触。 */
  position: fixed !important; /* 确保按钮相对于视口固定定位。 */
}
/* 返回顶部按钮激活状态：当按钮可见时 */
.back-to-top.back-to-top-on {
  opacity: 1; /* 当添加 'back-to-top-on' 类时，按钮完全显示。 */
  transform: translateY(0); /* 按钮恢复到原始垂直位置。 */
  pointer-events: auto; /* 按钮开始响应鼠标事件。 */
}
/* 返回顶部按钮悬停效果 */
.back-to-top.back-to-top-on:hover {
  transform: translateY(-2px); /* 鼠标悬停时，按钮向上轻微移动，提供反馈。 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.18) !important; /* 鼠标悬停时，阴影加深，增强立体感。 */
}
/* 返回顶部按钮内部元素样式调整：箭头图标 */
.back-to-top .fa-arrow-up {
  font-size: 16px !important; /* 设置箭头图标的字体大小。 */
  line-height: 1 !important; /* 设置行高，确保图标垂直居中。 */
  margin-bottom: 2px; /* 在图标下方添加少量外边距，与百分比文本分隔。 */
}
/* 返回顶部按钮内部元素样式调整：百分比文本 */
.back-to-top span {
  font-size: 11px !important; /* 设置百分比文本的字体大小。 */
  line-height: 1 !important; /* 设置行高。 */
  display: block; /* 将文本设置为块级元素。 */
  width: 100%; /* 宽度占满父元素。 */
  text-align: center; /* 文本水平居中。 */
  margin: 0 !important; /* 移除外边距。 */
  padding: 0 !important; /* 移除内边距。 */
}
/* 日夜间切换按钮 (.darkmode-toggle) 样式 */
/* 本节定义了日夜间模式切换按钮的样式，确保其尺寸、外观和交互与“返回顶部”按钮保持一致的设计语言。 */
.darkmode-toggle {
/* 统一尺寸 */
  width: 50px !important; /* 强制设置按钮宽度。 */
  height: 50px !important; /* 强制设置按钮高度。 */
  box-sizing: border-box !important; /* 确保盒子模型一致，边框和内边距包含在尺寸内。 */
  background: #fff !important; /* 统一为不透明白色背景。 */
  -webkit-backdrop-filter: none !important; /* 移除 Webkit 模糊效果。 */
  backdrop-filter: none !important; /* 移除标准模糊效果。 */
  border: 1px solid rgba(0,0,0,0.08) !important; /* 统一浅色边框。 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.12) !important; /* 统一阴影效果。 */
  transition: all 0.3s ease; /* 定义所有属性的平滑过渡动画。 */
}
/* 日夜间切换按钮悬停效果 */
.darkmode-toggle:hover {
  transform: translateY(-2px); /* 鼠标悬停时，按钮向上轻微移动。 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.18) !important; /* 鼠标悬停时，阴影加深。 */
}
/* 页脚内部文本居中 */
.footer-inner {
  text-align: center; /* 确保页脚内部的所有文本内容水平居中显示。 */
}
/*
 * -------------------------------------------------------------------
 * 5. Waline 评论区美化
 * -------------------------------------------------------------------
 * 本节专门针对 Waline 评论组件进行样式调整。
 * 目标是使其外观与网站的整体设计风格（特别是毛玻璃和圆角主题）保持高度一致，
 * 提升评论区的视觉集成度和用户体验。
 */
/* Waline 评论区容器 (#waline) 内边距和上边距 */
#waline {
  padding: 25px; /* 设置评论区容器的内边距。 */
  margin-top: 20px; /* 设置评论区容器的上边距，与上方内容分隔。 */
}
/* Waline 面板和卡片背景与边框清理 */
/* 移除 Waline 内部默认的背景、边框和阴影，以便应用统一的毛玻璃效果。 */
#waline .wl-panel,
#waline .wl-card {
  background: none !important; /* 移除背景。 */
  border: none !important; /* 移除边框。 */
  box-shadow: none !important; /* 移除阴影。 */
}
/* Waline 评论项 (.wl-comment) 样式 */
#waline .wl-comment {
  border: none !important; /* 移除评论项的边框。 */
  padding: 0; /* 移除评论项的内边距。 */
  background-color: transparent !important; /* 设置评论项背景为透明。 */
}
/* Waline 面板 (.wl-panel) 显示方式 */
#waline .wl-panel {
  display: block !important; /* 强制面板以块级元素显示。 */
}
/* Waline 头部 (.wl-header) 布局 */
#waline .wl-header {
  display: grid; /* 使用 CSS Grid 布局来排列头部元素。 */
  grid-template-columns: repeat(3, 1fr); /* 将头部区域分为三列等宽。 */
  gap: 0; /* 列之间没有间隙。 */
  margin-bottom: 1rem; /* 头部下方留出空间。 */
  border: 1px solid var(--waline-border-color); /* 头部边框。 */
  border-radius: 8px; /* 头部圆角。 */
  overflow: hidden; /* 隐藏超出边界的内容。 */
  background-color: var(--waline-input-bg); /* 头部背景色，与输入框背景色一致。 */
}
/* Waline 头部项分隔线 */
#waline .wl-header-item:not(:last-child) {
  border-right: 1px solid var(--waline-border-color); /* 为除最后一项外的头部项添加右侧边框作为分隔线。 */
}
/* Waline 输入框 (.wl-input) 样式 */
#waline .wl-input {
  width: 100%; /* 宽度占满父容器。 */
  background: transparent !important; /* 背景透明。 */
  border: none !important; /* 移除边框。 */
  padding: 0 !important; /* 移除内边距。 */
  height: auto !important; /* 高度自适应内容。 */
  color: var(--waline-text-color); /* 文本颜色。 */
}
/* Waline 输入框焦点状态 */
#waline .wl-input:focus {
  outline: none; /* 移除默认的焦点轮廓。 */
}
/* Waline 编辑器 (.wl-editor) 样式 */
#waline .wl-editor {
  display: block; /* 块级显示。 */
  width: 100%; /* 宽度占满。 */
  box-sizing: border-box; /* 边框和内边距包含在尺寸内。 */
  margin: 0; /* 移除外边距。 */
  resize: vertical; /* 允许用户垂直方向调整编辑器大小。 */
  min-height: 120px; /* 设置编辑器的最小高度。 */
  border-radius: 8px !important; /* 应用圆角。 */
  padding: 0.75rem !important; /* 设置内边距。 */
  transition: border-color 0.3s, box-shadow 0.3s; /* 边框颜色和阴影的过渡动画。 */
  border: 1px solid var(--waline-border-color); /* 边框。 */
  background-color: var(--waline-input-bg); /* 背景色。 */
  color: var(--waline-text-color); /* 文本颜色。 */
}
/* Waline 编辑器焦点状态 */
#waline .wl-editor:focus {
  border-color: var(--waline-theme-color) !important; /* 焦点时边框颜色变为主题色。 */
  box-shadow: 0 0 0 2px var(--waline-theme-color-light); /* 焦点时添加主题色的浅色阴影。 */
}
/* Waline 主要按钮 (.wl-btn.primary) 样式 */
#waline .wl-btn.primary {
  border: none !important; /* 移除边框。 */
  transition: background-color 0.3s, transform 0.2s; /* 背景色和形变的过渡动画。 */
  background: var(--waline-theme-color) !important; /* 背景色为主题色。 */
  color: #fff !important; /* 文本颜色为白色。 */
}
/* Waline 主要按钮悬停效果 */
#waline .wl-btn.primary:hover {
  transform: translateY(-1px); /* 鼠标悬停时向上轻微移动。 */
  background: #2563eb !important; /* 悬停时背景色变深。 */
}
/* Waline 元信息标签 (.wl-meta span) 样式 */
#waline .wl-meta span {
  border: none !important; /* 移除边框。 */
  border-radius: 999px; /* 极大圆角，形成胶囊形状的标签。 */
  padding: 2px 8px; /* 内边距。 */
  color: #4b5563 !important; /* 文本颜色。 */
  background-color: rgba(0,0,0,0.05) !important; /* 半透明黑色背景。 */
}
/* Waline 昵称 (.wl-nick) 字体粗细 */
#waline .wl-nick {
  font-weight: normal !important; /* 设置昵称的字体粗细为正常。 */
}
/*
 * -------------------------------------------------------------------
 * 6. 暗黑模式适配
 * -------------------------------------------------------------------
 * 本节定义了网站在暗黑模式（夜间模式）下的所有颜色方案和视觉调整。
 * 旨在提供在低光照环境下更舒适的浏览体验，并确保所有UI元素在两种模式下都能保持和谐一致。
 */
.darkmode--activated {
/* 6.1. 重定义 Waline 颜色变量 (夜间模式)
     * 在暗黑模式下，重新定义 Waline 评论区所使用的颜色变量，以适应深色背景。
     */
  --waline-theme-color: #60a5fa;
  --waline-theme-color-light: rgba(96,165,250,0.2);
  --waline-input-bg: rgba(0,0,0,0.2);
  --waline-border-color: #4b5563;
  --waline-label-color: #9ca3af;
  --waline-text-color: #e5e7eb;
/* 6.2. 容器毛玻璃效果 (夜间模式)
     * 调整主要内容容器在夜间模式下的背景色，同时保持毛玻璃效果。
     */
/* 6.3. 组件颜色适配 (夜间模式)
     * 调整文章版权信息列表在夜间模式下的背景色。
     */
/* 6.4. Waline 评论区精细化颜色调整 (夜间模式)
     * 针对 Waline 评论区在暗黑模式下的各个元素进行详细的颜色适配。
     */
/* 6.5. SimpleBar 滚动条滑块颜色 (暗黑模式)
     * 确保在暗黑模式下，自定义滚动条的滑块颜色也适配深色背景。
     */
/* 鼠标悬停在轨道上时，滑块颜色加深 (夜间模式) */
/* 6.6. 返回顶部按钮适配 (夜间模式)
     * 调整“返回顶部”按钮在暗黑模式下的背景、文本和阴影颜色。
     */
/* 6.7. 日夜间切换按钮适配 (夜间模式)
     * 调整日夜间切换按钮在暗黑模式下的背景、边框和阴影颜色。
     */
}
.darkmode--activated .header,
.darkmode--activated .sidebar-inner,
.darkmode--activated .post-block,
.darkmode--activated #waline {
  background: rgba(40,40,40,0.85) !important; /* 设置半透明深灰色背景。 */
  border: none; /* 移除边框。 */
}
.darkmode--activated .post-copyright ul {
  background: rgba(0,0,0,0.2); /* 设置半透明黑色背景。 */
}
.darkmode--activated #waline {
  color: #d1d5db !important; /* 评论区整体文本颜色。 */
}
.darkmode--activated #waline .wl-editor::placeholder,
.darkmode--activated #waline .wl-input::placeholder {
  color: #6b7280 !important; /* 占位符文本颜色。 */
}
.darkmode--activated #waline .wl-meta-head {
  color: #d1d5db !important; /* 元信息头部文本颜色。 */
  border-bottom-color: #4b5563 !important; /* 元信息头部下边框颜色。 */
}
.darkmode--activated #waline .wl-sort li {
  color: #9ca3af; /* 排序列表项文本颜色。 */
}
.darkmode--activated #waline .wl-sort li:hover,
.darkmode--activated #waline .wl-sort li.active {
  color: #fff !important; /* 排序列表项悬停和激活状态文本颜色。 */
}
.darkmode--activated #waline .wl-content p,
.darkmode--activated #waline .wl-nick {
  color: #d1d5db !important; /* 评论内容和昵称文本颜色。 */
}
.darkmode--activated #waline .wl-meta span {
  color: #9ca3af !important; /* 元信息标签文本颜色。 */
  background-color: rgba(255,255,255,0.08) !important; /* 元信息标签背景色。 */
}
.darkmode--activated #waline .wl-time {
  color: #9ca3af !important; /* 时间文本颜色。 */
}
.darkmode--activated #waline .wl-btn {
  border: 1px solid #4b5563 !important; /* 按钮边框。 */
  color: #d1d5db !important; /* 按钮文本颜色。 */
  background: transparent !important; /* 按钮背景透明。 */
}
.darkmode--activated #waline .wl-btn:hover {
  background-color: rgba(255,255,255,0.1) !important; /* 按钮悬停背景色。 */
  border-color: #6b7280 !important; /* 按钮悬停边框颜色。 */
}
.darkmode--activated #waline .wl-btn.primary {
  background: var(--waline-theme-color) !important; /* 主要按钮背景色。 */
  color: #fff !important; /* 主要按钮文本颜色。 */
}
.darkmode--activated #waline .wl-btn.primary:hover {
  background: #3b82f6 !important; /* 主要按钮悬停背景色。 */
}
.darkmode--activated .simplebar-scrollbar::before {
  background-color: rgba(255,255,255,0.35); /* 夜间模式滚动条滑块颜色，半透明白色。 */
}
.darkmode--activated .simplebar-track.simplebar-vertical:hover .simplebar-scrollbar::before {
  background-color: rgba(255,255,255,0.5);
}
.darkmode--activated .back-to-top {
  background: #2c2c2c !important; /* 夜间模式背景色。 */
  color: #f0f0f0 !important; /* 夜间模式字体颜色。 */
  border: 1px solid rgba(255,255,255,0.1) !important; /* 夜间模式边框。 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important; /* 夜间模式阴影。 */
}
.darkmode--activated .back-to-top.back-to-top-on:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important; /* 夜间模式悬停阴影加深。 */
}
.darkmode--activated .darkmode-toggle {
  box-sizing: border-box !important; /* 确保盒子模型一致。 */
  background: #2c2c2c !important; /* 夜间模式背景色。 */
  border: 1px solid rgba(255,255,255,0.1) !important; /* 夜间模式边框。 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important; /* 夜间模式阴影。 */
}
/*
 * -------------------------------------------------------------------
 * 8. 统一按钮尺寸与盒子模型
 * -------------------------------------------------------------------
 * 本节旨在解决“返回顶部”按钮和“日夜间切换”按钮的尺寸一致性问题。
 * 通过统一设置 `box-sizing` 属性为 `border-box`，确保按钮的最终渲染尺寸
 * 不受内边距（padding）或边框（border）的影响，从而保证视觉上的一致性。
 */
.back-to-top,
.darkmode-toggle {
  box-sizing: border-box !important; /* 关键修复：统一使用 border-box 模型，使宽度和高度包含内边距和边框。 */
  width: 50px !important; /* 统一设置宽度。 */
  height: 50px !important; /* 统一设置高度。 */
}
/* 确保夜间模式下统一尺寸的设置依然生效 */
.darkmode--activated .back-to-top,
.darkmode--activated .darkmode-toggle {
  box-sizing: border-box !important;
}
/*
 * -------------------------------------------------------------------
 * 9. “阅读全文”按钮圆角微调
 * -------------------------------------------------------------------
 * 本节仅对“阅读全文”按钮的圆角进行修改。
 * 目标是使其圆角样式与网站整体的视觉风格和圆角设计规范保持一致，提升细节美观度。
 */
.post-button .btn {
  border-radius: var(--custom-border-radius-small) !important; /* 应用自定义的小圆角。 */
}
/*
 * ===================================================================
 * 10. APlayer 播放器美化样式 
 * ===================================================================
 */
/* --- 1. APlayer 颜色变量定义 (与您的文件保持一致) --- */
:root {
  --aplayer-bg: rgba(255,255,255,0.96);
  --aplayer-list-bg: rgba(255,255,255,0.94);
  --aplayer-primary-text: #1f2937;
  --aplayer-secondary-text: #4b5563;
  --aplayer-border-color: rgba(0,0,0,0.06);
  --aplayer-theme-color: #3b82f6;
  --aplayer-list-item-hover: rgba(0,0,0,0.04);
  --aplayer-list-item-active: rgba(59,130,246,0.1);
  --aplayer-list-cur-bar: var(--aplayer-theme-color);
  --aplayer-scrollbar-thumb: rgba(0,0,0,0.2);
  --aplayer-scrollbar-thumb-hover: rgba(0,0,0,0.3);
  --aplayer-lrc-stroke-color: rgba(255,255,255,0.7);
}
.darkmode--activated {
  --aplayer-bg: rgba(40,40,40,0.88);
  --aplayer-list-bg: rgba(30,30,30,0.9);
  --aplayer-primary-text: #e5e7eb;
  --aplayer-secondary-text: #9ca3af;
  --aplayer-border-color: rgba(255,255,255,0.08);
  --aplayer-theme-color: #60a5fa;
  --aplayer-list-item-hover: rgba(255,255,255,0.05);
  --aplayer-list-item-active: rgba(96,165,250,0.15);
  --aplayer-scrollbar-thumb: rgba(255,255,255,0.2);
  --aplayer-scrollbar-thumb-hover: rgba(255,255,255,0.3);
  --aplayer-lrc-stroke-color: rgba(0,0,0,0.8);
}
/* --- 2. 基础与布局样式 (基本保留您的设置) --- */
.aplayer {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  margin: 0 !important;
}
.aplayer .aplayer-body {
  background: var(--aplayer-bg) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1) !important;
  overflow: hidden !important;
  transition: width 0.4s ease, height 0.4s ease, border-radius 0.4s ease !important;
}
.aplayer.aplayer-withlist:not(.aplayer-narrow) .aplayer-body {
  border-radius: 0 12px 12px 12px !important;
}
.aplayer .aplayer-pic {
  width: 50px !important;
  height: 50px !important;
  margin: 8px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
  transition: transform 0.3s ease !important;
}
.aplayer .aplayer-pic:hover {
  transform: scale(1.05) !important;
}
.aplayer.aplayer-narrow .aplayer-body {
  width: 66px !important;
  height: 66px !important;
}
.aplayer.aplayer-narrow .aplayer-list,
.aplayer.aplayer-narrow.aplayer-withlist .aplayer-list {
  display: block !important;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  max-height: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.2s ease !important;
}
.aplayer .aplayer-info {
  margin-left: 66px !important;
  padding: 10px 7px 0 0px !important;
  height: 66px !important;
  border: none !important;
}
.aplayer .aplayer-info .aplayer-music {
  margin: 0 0 5px 2px !important;
}
.aplayer .aplayer-info .aplayer-music .aplayer-title {
  color: var(--aplayer-primary-text) !important;
  font-size: 15px !important; /* 增大标题字体 */
  font-weight: 600 !important; /* 增加字体粗细 */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
  line-height: 1.3 !important;
}
.aplayer .aplayer-info .aplayer-music .aplayer-author,
.aplayer .aplayer-info .aplayer-controller .aplayer-time {
  color: var(--aplayer-secondary-text) !important;
  font-size: 12px !important; /* 增大作者名字体 */
  font-weight: 500 !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100% !important;
  background: linear-gradient(90deg, var(--aplayer-theme-color), rgba(59,130,246,0.8)) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(125,125,125,0.2) !important;
  height: 100% !important;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path {
  fill: var(--aplayer-secondary-text) !important;
  transition: fill 0.2s ease;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon:hover path {
  fill: var(--aplayer-theme-color) !important;
}
.aplayer .aplayer-pic .aplayer-button {
  background: rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}
.aplayer .aplayer-pic .aplayer-button svg,
.aplayer .aplayer-pic .aplayer-button svg path {
  fill: #fff !important;
}
.aplayer-volume {
  background-color: rgba(59,130,246,0.8) !important;
}
/* --- 3. 播放列表样式 --- */
.aplayer .aplayer-list {
  position: absolute !important;
  bottom: 100%;
  left: 0;
  width: 100%;
  margin-bottom: 8px;
  opacity: 0 !important;
  transform: translateY(20px) !important;
  max-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease !important;
}
.aplayer.aplayer-withlist .aplayer-list {
  opacity: 1 !important;
  transform: translateY(0) !important;
  max-height: 260px !important;
  pointer-events: auto !important;
}
.aplayer .aplayer-list ol {
  background: var(--aplayer-list-bg) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1) !important;
  border-radius: 12px 12px 0 0 !important;
  list-style-type: none;
  margin: 0;
  padding: 8px 0 !important;
  height: 250px;
  overflow-y: auto;
  box-sizing: border-box !important;
  transition: none !important;
}
.aplayer .aplayer-list ol li {
  position: relative;
  color: var(--aplayer-primary-text) !important;
  border-top: 1px solid var(--aplayer-border-color) !important;
  height: 34px;
  line-height: 34px;
  padding: 0 15px 0 15px;
  font-size: 13px;
  transition: background-color 0.2s ease;
}
.aplayer .aplayer-list ol li:first-child {
  border-top: none !important;
}
.aplayer .aplayer-list ol li:hover {
  background: var(--aplayer-list-item-hover) !important;
}
.aplayer .aplayer-list ol li.aplayer-list-light {
  background: var(--aplayer-list-item-active) !important;
}
.aplayer .aplayer-list ol li .aplayer-list-author {
  color: var(--aplayer-secondary-text) !important;
}
.aplayer .aplayer-list ol li.aplayer-list-light .aplayer-list-cur {
  display: block !important;
  background: var(--aplayer-list-cur-bar) !important;
  width: 4px;
  height: 24px;
  top: 5px;
  left: 0;
  border-radius: 0 2px 2px 0;
}
.aplayer .aplayer-list ol li .aplayer-list-index {
  color: var(--aplayer-secondary-text);
}
.aplayer .aplayer-list ol::-webkit-scrollbar {
  width: 6px;
}
.aplayer .aplayer-list ol::-webkit-scrollbar-track {
  background: transparent;
  margin: 8px 0;
}
.aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: var(--aplayer-scrollbar-thumb);
  transition: background-color 0.2s ease;
}
.aplayer .aplayer-list ol::-webkit-scrollbar-thumb:hover {
  background-color: var(--aplayer-scrollbar-thumb-hover);
}
/* === 6. 进度条美化 (已修复) === */
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
  padding: 7px 0 5px 0 !important;
  cursor: pointer !important;
/* 🔥 关键修复：不使用 flex: 1，而是设置具体的宽度和最大宽度 */
  width: calc(100% - 100px) !important; /* 为右侧按钮预留 100px 空间 */
  max-width: 155px !important; /* 限制进度条最大宽度 */
  margin: 0 0 0 2px !important; /* 减少左右边距 */
  display: flex;
  align-items: center;
  position: relative;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
  position: relative;
  height: 4px !important;
  width: 100%;
  background: rgba(0,0,0,0.1) !important;
  border-radius: 2px !important;
  overflow: visible !important;
  transition: height 0.2s ease;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
  position: absolute !important;
  top: -50% !important;
  right: 0 !important;
  height: 12px !important;
  width: 12px !important;
  border-radius: 50%;
  cursor: pointer;
  background: var(--aplayer-theme-color) !important;
  border: 2px solid #fff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
  transition: transform 0.2s ease-in-out !important;
  z-index: 2;
}
.aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-played .aplayer-thumb {
  transform: translate(50%, -50%) scale(1);
}
/* 🔥 关键修复：重新设计控制器布局 */
.aplayer .aplayer-controller {
  position: relative;
  display: flex !important;
  align-items: center !important;
  height: 20px;
  margin-top: 2px;
/* 确保有足够空间显示所有元素 */
  min-width: 280px !important;
}
/* 🔥 时间显示区域优化 */
.aplayer .aplayer-info .aplayer-controller .aplayer-time {
  position: relative;
  right: 0;
  bottom: 0 !important;
  padding-left: 10px !important;
  height: auto !important;
  color: var(--aplayer-secondary-text) !important;
  font-size: 12px !important; /* 保持合适的字体大小 */
  font-weight: 500 !important; /* 增加字体粗细 */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important; /* 更好的字体 */
  display: flex !important;
  align-items: center;
  white-space: nowrap;
/* 🔥 关键：为按钮组合预留足够空间 */
  min-width: 70px !important; /* 调整空间适应较小的按钮 */
  justify-content: flex-end !important;
  gap: 3px !important; /* 适中的按钮间距 */
}
/* === 修复时间抖动问题 === */
.aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-time-inner {
/* 使用等宽数字，让 1 和 8 占用相同宽度 */
  font-variant-numeric: tabular-nums;
/* 给时间一个固定的最小宽度，彻底防止抖动 */
  min-width: 70px;
/* 你可以根据喜好调整对齐方式 */
  text-align: left;
}
/* === 7. APlayer Mini Switcher (收缩/展开按钮) 美化 === */
.aplayer.aplayer-fixed .aplayer-miniswitcher {
  background: var(--aplayer-bg) !important;
  top: 0 !important;
  right: 0 !important;
  border-radius: 0 12px 12px 0 !important;
  border-left: 1px solid var(--aplayer-border-color) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.aplayer.aplayer-fixed .aplayer-miniswitcher .aplayer-icon {
  height: 20px !important;
  width: 20px !important;
}
.aplayer.aplayer-fixed .aplayer-miniswitcher .aplayer-icon path {
  fill: var(--aplayer-secondary-text) !important;
}
.aplayer.aplayer-fixed .aplayer-miniswitcher:hover .aplayer-icon path {
  fill: var(--aplayer-theme-color) !important;
}
/* === 8. 控制按钮修复与动画增强 === */
/* 基础样式 */
.aplayer .aplayer-controller .aplayer-icon {
  width: 16px !important;
  height: 16px !important;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  opacity: 0.8;
  margin: 0 1px !important;
  vertical-align: middle;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
/* ✨ 动画核心：为 transform 和 opacity 添加平滑过渡，使用 cubic-bezier 曲线使动画更自然 */
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease !important;
}
/* 保持SVG图标的视觉大小不变 */
.aplayer .aplayer-controller .aplayer-icon svg {
  width: 16px !important;
  height: 16px !important;
}
/* 🔥 SVG图标路径颜色过渡 (保留) */
.aplayer .aplayer-controller .aplayer-icon path {
  transition: fill 0.2s ease-in-out;
  fill: var(--aplayer-secondary-text) !important;
}
/* ✨ 新增：鼠标悬停时的动画效果 */
.aplayer .aplayer-controller .aplayer-icon:hover {
  opacity: 1; /* 悬停时完全不透明，更清晰 */
  transform: scale(1.2); /* 图标放大，提供强烈的视觉反馈 */
}
/* ✨ 鼠标悬停时图标颜色的变化 (保留) */
.aplayer .aplayer-controller .aplayer-icon:hover path {
  fill: var(--aplayer-theme-color) !important;
}
/* ✨ 新增：鼠标点击时的动画效果 */
.aplayer .aplayer-controller .aplayer-icon:active {
  transform: scale(1.05); /* 点击时轻微缩小，模拟真实的按压感 */
  transition: transform 0.1s ease; /* 点击动画更快，让响应感觉更即时 */
}
/* * ✨【关键修复】✨ 
 * 为“下一曲”按钮提供特定的动画规则，
 * 将它本身的 rotate(180deg) 和我们的 scale() 动画结合起来。
*/
.aplayer .aplayer-controller .aplayer-icon-forward:hover {
  transform: rotate(180deg) scale(1.2);
}
.aplayer .aplayer-controller .aplayer-icon-forward:active {
  transform: rotate(180deg) scale(1.05);
}
/* 🔥 特别确保播放顺序和循环模式按钮显示 (保留) */
.aplayer .aplayer-controller .aplayer-icon-order,
.aplayer .aplayer-controller .aplayer-icon-loop {
  display: inline-block !important;
  opacity: 0.8 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 10 !important;
}
.aplayer .aplayer-controller .aplayer-icon-order:hover,
.aplayer .aplayer-controller .aplayer-icon-loop:hover {
  opacity: 1 !important;
}
/* 播放相关按钮精确的调整 (保留) */
.aplayer.aplayer-fixed .aplayer-icon-back {
  right: 63px !important;
}
.aplayer.aplayer-fixed .aplayer-icon-play {
  right: 41px !important;
}
.aplayer.aplayer-fixed .aplayer-icon-forward {
  right: 20px !important;
}
.aplayer .aplayer-controller .aplayer-icon-order:hover,
.aplayer .aplayer-controller .aplayer-icon-loop:hover {
  opacity: 1 !important;
}
/* 防止多个 APlayer 实例重叠 */
.aplayer:not(:last-of-type) {
  display: none !important;
}
/* 隐藏重复的 meting-js 元素 */
meting-js:not(:last-of-type) {
  display: none !important;
}
/* 确保固定模式下的 APlayer 正确显示 */
.aplayer.aplayer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 99;
  background: transparent !important;
  border-top: none !important;
  max-width: none;
}
.aplayer.aplayer-fixed .aplayer-body {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 400px;
  z-index: 99;
}
/* 🔥 响应式优化：在较小屏幕上进一步优化 */
@media (max-width: 480px) {
  .aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
    width: calc(100% - 90px) !important; /* 调整为更大按钮留出空间 */
    max-width: 150px !important;
  }
  .aplayer .aplayer-info .aplayer-controller .aplayer-time {
    min-width: 70px !important;
    font-size: 11px !important;
  }
  .aplayer .aplayer-controller .aplayer-icon {
    width: 16px !important; /* 在小屏幕上稍微减小但保持清晰 */
    height: 16px !important;
    margin: 0 1px !important;
  }
}
/* === 9. 歌词美化 === */
/* 默认歌词区域可见 */
.aplayer .aplayer-lrc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: auto;
  height: 3em !important;
  overflow: hidden !important;
  padding: 1em 0 !important;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
/* 当需要“隐藏歌词”时，加这个类 */
.aplayer .aplayer-lrc.lyric-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
/* 歌词滚动内容 */
.aplayer .aplayer-lrc-contents {
  transition: transform 0.3s ease-out !important;
  will-change: transform;
}
/* 所有歌词行（默认状态） */
.aplayer .aplayer-lrc-contents p {
  font-size: 15px !important;
  font-weight: 600;
  margin: 0 0 0.4em 0 !important;
  line-height: 1.8em !important;
  color: var(--aplayer-primary-text) !important;
  opacity: 0.3;
  filter: blur(1px);
  transform: scale(1);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
  text-shadow: -1px -1px 0 var(--aplayer-lrc-stroke-color), 1px -1px 0 var(--aplayer-lrc-stroke-color), -1px 1px 0 var(--aplayer-lrc-stroke-color), 1px 1px 0 var(--aplayer-lrc-stroke-color);
}
/* 当前播放歌词 */
.aplayer .aplayer-lrc-contents p.aplayer-lrc-current {
  font-size: 15px !important;
  font-weight: 600;
  opacity: 1;
  filter: blur(0);
  transform: scale(1.02); /* 微放大，不跳动 */
}
/* === 10. 切换音乐封面动画优化 (最终修复版) === */
/* 封面容器基础样式 */
.aplayer .aplayer-pic {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.3s ease, background-color 0.3s ease, background-image 0.1s ease-in !important;
  overflow: hidden;
}
/* 确保封面上的播放按钮始终在最上层 */
.aplayer .aplayer-pic .aplayer-button {
  position: relative;
  z-index: 2;
/* 修复：简化过渡，只控制透明度 */
  transition: opacity 0.2s ease;
}
/* 旧封面伪元素：用于实现交叉淡入淡出动画的核心 */
.aplayer .aplayer-pic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--aplayer-bg);
  background-image: var(--aplayer-old-pic);
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
/* 加载动画层 */
.aplayer .aplayer-pic::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  border-left-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  animation: aplayer-loading-spin 0.8s linear infinite;
  pointer-events: none;
}
/* 动画触发状态：当 JS 添加 .is-crossfading 类时 */
.aplayer .aplayer-pic.is-crossfading {
  background-image: none !important;
  background-color: var(--aplayer-bg) !important;
}
.aplayer .aplayer-pic.is-crossfading::before {
  opacity: 1;
  transition: none;
}
/* ✨ 新增：切换时显示旋转动画，并隐藏播放按钮 (已修复) */
.aplayer .aplayer-pic.is-crossfading::after {
  opacity: 1;
  visibility: visible;
}
.aplayer .aplayer-pic.is-crossfading .aplayer-button {
/* 修复：只用透明度控制，不再缩放，避免动画干扰 */
  opacity: 1;
}
/* 旋转动画定义 */
@keyframes aplayer-loading-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
