@charset "utf-8";

/*
Theme Name: THYUU/星度
Theme URI: https://theme.thyuu.com
Author: THYUU
Author URI: https://www.thyuu.com
Description: 感受它与文字的温度。
License: THYUU
License URI: https://theme.thyuu.com/license.html
Version: 25.9.1
Tested up to: 6.8.2
Requires at least: 6.0.0
Requires PHP: 8.0
Requires Chromium: 130
Text Domain: thyuu
Tags: blog, photography, portfolio, news, one-column, two-columns, editor-style, block-patterns, block-styles, style-variations, sidebar, sticky-post, featured-images, post-formats, theme-options, wide-blocks, custom-colors, custom-header, custom-logo
*/

/* =Site area
----------------------------------------------- */
.header-area,
.entry-layout,
.site-header,
.site-footer {
  padding-inline: var(--thyuu--size-edgelr);
  margin-inline: auto;
}
.header-area {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  inset: 0 0 auto;
  font-size: var(--thyuu--size-medium);
  height: var(--thyuu--height-head);
  gap: var(--thyuu--size-divs);
  border-radius: 0 0 var(--thyuu--size-radius) var(--thyuu--size-radius);
  z-index: 30;
  transition: 0.5s, inset 0s;
}
.nav-fixed .header-area {
  opacity: 1;
}
.header-area:before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--thyuu--color-back-shift, hsl(0 0% 98% / 0.8));
  box-shadow: var(--thyuu--shadow-normal);
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  outline: var(--thyuu--border);
  transform: var(--header-bg-transform, translateY(-100%));
  transition: inherit;
}
.nav-fixed:not(.nav-hided) .header-area:before {
  transform: none;
  opacity: 1;
}
.header-area > *:not(.site-logo) {
  transition: inherit;
}
.nav-hided .header-area > *:not(.site-logo) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.nav-fixed .site-logo:before {
  --back: radial-gradient(farthest-side at top, #000 50%, #0000);
  content: '';
  position: absolute;
  inset: -100% -150%;
  -webkit-backdrop-filter: blur(2em);
  backdrop-filter: blur(2em);
  -webkit-mask: var(--back);
  mask: var(--back);
  pointer-events: none;
  z-index: 0;
}
.site-header {
  position: relative;
  width: 100%;
  height: calc(40vh - var(--thyuu--size-edgetb));
  border-radius: var(--thyuu--size-radius);
}
.site-main {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  padding: calc(var(--thyuu--size-edgetb) + var(--thyuu--size-span)) var(--thyuu--size-edgelr) var(--thyuu--size-edgelr);
  gap: var(--thyuu--size-divs);
}
body.single .site-main {
  display: block;
  padding: 0;
}
/* =Head
----------------------------------------------- */
.site-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: none;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.5, 0, 0, 1.4);
}
.site-logo .logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-color, hsl(var(--thyuu--main-color)));
  font-size: 1.5em;
  font-weight: var(--thyuu--font-weight-title);
  gap: 0.25em;
  transition: none;
}
.site-logo :where(img, svg) {
  min-height: 1em;
  max-height: var(--custom-logo-size, 3em);
  height: var(--custom-logo-size, 1em);
  width: auto;
  fill: currentColor;
  animation: none !important;
  filter: none !important;
}
.site-logo svg * {
  transition: inherit;
}
.site-logo header {
  display: flex;
  letter-spacing: -0.1em;
  white-space: nowrap;
  opacity: 0.7;
}
.site-logo footer {
  font-size: 45%;
  white-space: pre;
  opacity: 0.5;
}
.menu-out .menu {
  display: grid;
  grid: auto / auto-flow max-content;
}
.menu-out .menu a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: none;
}
.menu-out .menu > li > a {
  color: var(--thyuu--color-font-head);
  font-weight: var(--thyuu--font-weight-title);
  line-height: calc(var(--thyuu--height-head) + var(--thyuu--size-divs));
  margin: 0 1em 0 -0.5em;
}
.menu-out .menu > li > ul > li > a {
  font-weight: var(--thyuu--font-weight-title);
}
:where(.menu-out .menu):hover > li:not(:hover) > a {
  opacity: 0.5;
}
.menu-out .menu li {
  position: relative;
  padding: 0.5em;
  border-radius: var(--thyuu--size-radius);
  transition: 0.3s;
}
.menu-out .menu li ul {
  display: grid;
  align-items: start;
}
.menu-out .menu li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  will-change: transform;
}
.menu-out .menu li ul > li ul {
  grid: auto / repeat(auto-fill, minmax(min(var(--thyuu--size-card-normal) / 2 - 3em, 100%), 1fr));
  margin: 0.5em -0.5em -0.5em;
}
.menu-out .sub-menu li::before {
  position: absolute;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  transition: inherit;
}
.menu-out .menu > li > ul li:hover {
  background: hsl(var(--thyuu--main-color) / 5%);
}
.menu-out .menu > li > ul > li::before {
  background: hsl(var(--thyuu--color-font) / 0.05);
}
.menu-out .menu > li > ul > li:hover::before {
  color: hsl(var(--thyuu--main-color) / 0.7);
  background: hsl(var(--thyuu--main-color) / 0.1);
}
.menu-out .sub-menu a::before {
  content: '';
  flex: 0 0 2em;
}
.menu-out a::after {
  opacity: 0.3;
  font-size: var(--thyuu--size-small);
  font-family: thyuu-iconfont;
  transition: transform 1s;
}
.menu-out a[target='_blank']:after {
  content: '\e667';
}
.menu-out .sub-menu .current-menu-item > a::after {
  content: '\e657';
}
.menu-out .sub-menu .menu-item-has-children > a::after {
  content: '\e627';
}
.menu-out .sub-menu .menu-item-has-children:hover > a:not(:hover)::after {
  transform: rotate(90deg);
}
.site-icon {
  flex: 1;
  order: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25em;
}
.header-area :where(.thyuu-iconfont) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--thyuu--color-font-head);
  font-size: var(--thyuu--size-icon);
  font-variant-numeric: tabular-nums;
  height: 1em;
  width: 1em;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  background: none;
  z-index: 29;
  transition: 0.7s;
}
.header-area button.thyuu-iconfont:active {
  scale: none;
}
.header-area .thyuu-iconfont:hover {
  color: hsl(var(--thyuu--main-color));
}
.header-area :where(.thyuu-iconfont) .num {
  transform: scale(0.5);
  position: absolute;
  color: var(--thyuu--color-font-fill);
  white-space: nowrap;
  transition: inherit;
}
.header-area .post-menu {
  position: absolute;
  inset: auto 0;
  margin: 0 auto;
  transform: translateY(-1em);
  width: max(var(--thyuu--size-content) / 2, 30%);
  height: var(--thyuu--height-head);
  visibility: hidden;
  opacity: 0;
  z-index: unset;
  font-size: var(--thyuu--size-small);
}
.header-area .has-tip {
  --timf: cubic-bezier(0.5, 0, 0, 1.4);
  --trfm: scale(0.9) translateY(-110%);
}
.header-area .has-tip::after {
  content: attr(title);
  position: fixed;
  color: var(--thyuu--color-font-fill);
  font-size: var(--thyuu--size-small);
  width: fit-content;
  margin: auto;
  padding: 0.75em 2em;
  inset: calc((var(--thyuu--height-head) - 2.5em) / 2) 0 auto;
  white-space: nowrap;
  border-radius: 2em;
  background: var(--thyuu--color-font-head);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  transform: var(--trfm);
  transition: 0.5s var(--timf);
}
.header-area .has-tip:not(.post-menu, .logo):hover::after {
  animation: opacity 0.5s var(--timf) 1s alternate-reverse forwards, transform 0.5s var(--timf) 1s alternate-reverse forwards;
}
.header-area .post-menu .site-title {
  opacity: 0.3;
  transition: 0.5s var(--timf), color 0s;
}
.header-area :is(.has-tip:hover ~ .post-menu, .post-menu:hover) .site-title {
  --trfm: translateX(-1em);
  transform: var(--trfm);
  opacity: 0;
}
#theme-toggle:before {
  content: ' ';
  width: 1em;
  height: 1em;
  background: currentColor;
  box-shadow: -0.7em 0 0 -0.4em, -0.5em 0.5em 0 -0.4em, 0 -0.7em 0 -0.4em, 0.5em -0.5em 0 -0.4em, 0.7em 0 0 -0.4em, 0.5em 0.5em 0 -0.4em, 0 0.7em 0 -0.4em,
    -0.5em -0.5em 0 -0.4em, inset 0 0;
  border-radius: 50%;
  transform: scale(0.65) rotate(0deg);
  transition: 0.7s, color 0s;
}
#theme-toggle:hover:before {
  transform: scale(0.8) rotate(-180deg);
}
:root[theme='dark'] #theme-toggle:before {
  box-shadow: 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, 0 0 0 -0.4em, inset -0.4em -0.4em;
  background: none;
  transform: none;
}
.go-top {
  margin-inline: -1em;
  background: currentColor;
  border-radius: 50%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.dark-page #theme-toggle {
  display: none;
}
.header-area .has-tip:hover::after,
.nav-fixed .header-area .post-menu,
.nav-fixed .go-top {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.nav-fixed .go-top {
  margin: 0;
}
.go-top:hover .num:not(.btn),
.go-top:not(:hover) .none {
  opacity: 0;
  transform: translateY(1em);
}
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  width: min(var(--thyuu--size-card-normal), 100%);
}
.search-form input {
  border-radius: 2em;
  padding-right: 3.5em;
}
.search-form button {
  position: absolute;
  right: 0.25em;
}

/* =Limited mode
----------------------------------------------- */
.header-area .season-btn {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: inherit;
}
.header-area .season-btn img {
  position: absolute;
  width: var(--season-icon-size);
  min-height: auto;
  max-height: none;
  height: auto;
  inset: var(--season-icon-plac);
  transform: var(--season-icon-turn);
  pointer-events: auto;
}
[season='true'] .header-area .season-btn:after {
  content: '已开启限定主题';
}

/* =Content list
----------------------------------------------- */
.page-article {
  display: grid;
  grid: auto-flow dense / repeat(auto-fill, minmax(min(var(--thyuu--size-card-normal), 100%), 1fr));
  align-content: center;
  gap: var(--thyuu--size-divs);
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--thyuu--size-small);
  gap: 1em;
}
.post-mark {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 1em;
  opacity: 0.6;
}
.post-mark .tag {
  flex: none;
}
.post-mark .tag-list a + a {
  margin: 0 0 0 0.5em;
}
.entry-preview {
  position: relative;
  display: flex;
  flex-flow: column;
  color: hsl(var(--thyuu--color-font) / var(--thyuu--alpha-font));
  text-align: center;
  text-wrap: balance;
  border-radius: var(--thyuu--size-radius);
  background: var(--mask-color, var(--thyuu--color-back-white));
  box-shadow: var(--thyuu--shadow-white);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  backdrop-filter: saturate(1.8) blur(20px);
  overflow: hidden;
  transition: 0.5s;
}
.entry-preview:hover {
  box-shadow: var(--thyuu--shadow-color);
}
.entry-preview .post-mark {
  position: relative;
  justify-content: center;
  flex: 100%;
  padding: 0.5em 1em;
  opacity: 1;
}
.entry-preview .post-mark > * {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.thyuupost {
  --line-num: 2;
  --a-line-trans: 50%;
  position: relative;
  display: flex;
  flex: auto;
  flex-flow: column;
  justify-content: center;
  gap: 0.5em;
  padding: 1em;
  transition: 0.5s;
}
.entry-preview .post-note {
  font-size: var(--thyuu--size-small);
  margin: auto;
  opacity: 0.4;
}
.entry-preview .thumbnail {
  --thyuu--color-font: 0deg 0% 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  place-content: space-between;
  width: 100%;
  flex: 1;
  min-height: calc(var(--thyuu--size-card-normal));
  font-size: var(--thyuu--size-small);
  color: hsl(var(--thyuu--color-font) / 0.5);
  border-bottom: thin solid hsl(var(--thyuu--color-font) / 5%);
  padding: 0.5em;
  gap: 0.5em;
  overflow: hidden;
  transition: 1s;
}
.entry-preview .thumbnail:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(hsl(0deg 0% 0% / 20%), #0000 4em, #0000 50%, var(--mask-color, #222));
}
.no-thumbnail {
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 225% at 100% 0%, #0000 0%, #000 100%), linear-gradient(220deg, hsl(var(--thyuu--main-color) / 1) 0%, #000 100%),
    linear-gradient(
      135deg,
      hsl(var(--thyuu--subs-color) / 1) 0%,
      hsl(var(--thyuu--subs-color) / 0.5) 36%,
      hsl(var(--thyuu--main-color) / 1) 36%,
      #000 60%,
      #000 67%,
      #000 100%
    );
  background-blend-mode: overlay, hard-light, normal;
  background-size: 100%, 50%, 200%;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.entry-preview:hover .no-thumbnail {
  background-size: 100%, 100%, 210%;
}
.entry-preview .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: -1;
}
.entry-preview:not(:hover) .thumbnail img {
  transform: scale(1.1);
}
.entry-preview .thumbnail .button {
  position: relative;
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
}
.entry-preview .thumbnail .button:hover {
  background: hsl(var(--thyuu--main-color) / 0.3);
  color: white;
}
.entry-preview:hover .thumbnail .button {
  opacity: 1;
  transform: none;
}
.fast-read {
  display: none;
  gap: 1em;
  max-width: var(--thyuu--size-content);
  width: 100%;
  padding-inline: 0 !important;
}
.fast-read header {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  gap: 0.5em 1em;
}
.fast-read .entry-content {
  border-radius: var(--thyuu--size-radius);
  background: var(--thyuu--color-back-have);
  box-shadow: var(--thyuu--shadow-normal);
  padding: var(--thyuu--size-edgelr);
}
.fast-read button.close {
  position: sticky;
  bottom: var(--thyuu--size-span);
  width: fit-content;
  align-self: center;
  z-index: 30;
}
.entry-preview .thumbnail a.thyuu-icon-pinglun {
  margin: 0 0 0 auto;
}
/* 特殊 */
.entry-preview:is(.format-image, .format-gallery, .format-quote, .format-video, .format-audio) {
  --mask-color: var(--thyuu--color-back-shift, #222);
  --thyuu--color-font: 0deg 0% 100%;
  --thyuu--alpha-font: 0.8;
}

/* =Archives
----------------------------------------------- */
.page-header {
  position: relative;
  display: grid;
  text-wrap: balance;
  gap: 0.5em;
  font-size: var(--thyuu--size-medium);
}
.page-header > * {
  --trfm: translateX(1rem);
  min-width: 0;
}
.page-title {
  color: hsl(var(--thyuu--main-color));
  font-family: var(--thyuu--font-family-slogn);
  line-height: 1.5;
}
.page-title .num {
  position: absolute;
  font-size: 30%;
  margin: 1ch;
  opacity: 0;
  display: -webkit-inline-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transform: translateX(0.5em);
  transition: 0.3s 1.3s;
  overflow: hidden;
}
.page-title.fade-after .num {
  opacity: 1;
  transform: none;
}
.page-title::after {
  content: '';
  display: inline-block;
  font-size: 0.25em;
  width: 3em;
  height: 1em;
  margin: 0 0 -1ch 1ch;
  border-radius: 1em;
  background: linear-gradient(90deg, hsl(var(--thyuu--main-color) / 20%), #0000) no-repeat 0 50% / 100% 100%,
    radial-gradient(circle, currentColor 45%, #0000 50%) no-repeat 0 50% / 1em 1em;
  opacity: 0;
  transform: rotate(0) scale(2);
  transform-origin: left;
  transition: 0.5s ease-in 0.7s;
}
.page-title.fade-after::after {
  opacity: 1;
  transform: rotate(-45deg);
}
.page-title:hover::after {
  transform: rotate(-30deg) scale(1.2);
  transition: 0.5s;
}
.term-post-format-audio .page-title::before {
  content: '\e63b';
}
.term-post-format-video .page-title::before {
  content: '\e8af';
}
.term-post-format-image .page-title::before,
.term-post-format-gallery .page-title::before {
  content: '\ec2a';
}
.post-mark .tag a:first-child::before {
  content: '\e634';
}
.taxonomy-sub {
  position: relative;
  display: flex;
  font-variant-numeric: tabular-nums;
  margin: -0.5em -1em -1em;
  padding: 1em;
  gap: 0.75em;
  max-width: 100vw;
  max-height: 50vh;
  mask: linear-gradient(90deg, #0000, #000 1em, #000 calc(100% - 1em), #0000);
  scroll-snap-type: both mandatory;
  scroll-padding: 1em;
  overscroll-behavior: contain;
  overflow: auto;
}
.taxonomy-sub li {
  color: hsl(var(--thyuu--color-font) / 0.7);
  background: var(--thyuu--color-back-font);
  border-radius: var(--thyuu--size-radius);
  padding: 0.5em 1em;
  line-height: 2;
  flex: none;
  scroll-snap-align: start;
}
.taxonomy-sub li.current-cat {
  color: hsl(var(--thyuu--main-color) / 0.8);
  outline: thin solid;
  background: none;
}
.taxonomy-num {
  font-size: var(--thyuu--size-small);
  opacity: 0.4;
}
.page-section-title {
  font-family: var(--thyuu--font-family-slogn);
  font-size: 2.5em;
  color: hsl(var(--thyuu--color-font) / 0.3);
  -webkit-text-fill-color: #0000;
  -webkit-text-stroke: thin;
  height: 0.8em;
  line-height: 1.1;
  overflow: hidden;
}
/* =Single
----------------------------------------------- */
.entry-content {
  counter-reset: h2;
  line-height: 2.25;
  font-synthesis: initial;
}
:where(.entry-content) ul {
  list-style: disc;
  margin-left: 1.25em;
}
:where(.entry-content) ol {
  list-style: decimal inside;
  padding-left: 0.25em;
}
:where(.entry-content) li {
  list-style: inherit;
}
:where(.entry-content) > :where(thyuu-embed, p, pre, address, blockquote, figure, details, iframe, audio, video, h1, h2, h3, h4, h5, h6, ul, ol) {
  margin-block: 1em;
}
:where(.entry-content) :where(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.5em;
  font-synthesis: initial;
}
:where(.entry-content) > :first-child {
  margin-top: 0;
}
:where(.entry-content) > :last-child {
  margin-bottom: 0;
}
:where(.entry-content) a {
  color: hsl(var(--thyuu--main-color));
}
:where(.entry-content) a[target='_blank']:not(:has(*))::before {
  content: '\e667';
  display: inline-block;
  text-indent: 0;
  margin: 0 0.25em 0 0;
  rotate: 45deg;
  scale: 0.75;
  transition: rotate 0.5s;
}
:where(.entry-content) a[target='_blank']:not(:has(*)):hover::before {
  rotate: 0deg;
}
:where(.entry-content) sup.fn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5em;
  line-height: 1.5em;
  margin: 0 0.25em;
  vertical-align: middle;
  color: hsl(var(--thyuu--main-color));
  background: hsl(var(--thyuu--subs-color) / 0.1);
  border-radius: 1em;
}
:where(.entry-content) sup.fn a:is(:hover, :target) {
  color: white;
  background: hsl(var(--thyuu--main-color));
}
:where(.entry-content) sup.fn a::before {
  display: none !important;
}
.single .site-header {
  display: flex;
  flex-flow: column;
  justify-content: var(--cover-justify, flex-end);
  width: var(--cover-width, 100%);
  height: auto;
  min-height: var(--thyuu--height-cover);
  color: var(--cover-text-color, hsl(0deg 0% 100% / 0.9));
  text-shadow: var(--cover-text-shadow, var(--thyuu--shadow-text));
  padding-block: var(--thyuu--size-cover-top) 1.5em;
  margin: 0;
  gap: 1.5em;
}
.single .site-header figure {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background: var(--cover-bglg, #222);
  z-index: var(--cover-index, 0);
  overflow: hidden;
}
@supports (animation-timeline: view()) {
  .single .site-header figure {
    --trfm: scale(1.1);
    --filter-in: brightness(0.5);
    --animation: transform, filter;
    animation: var(--cover-anime, var(--animation));
    animation-fill-mode: forwards;
    animation-timeline: view(block 0 100vh);
  }
}
.single .site-header figure::after {
  content: var(--mask-area, '');
  position: absolute;
  inset: 0;
  background: linear-gradient(#0000004d, #0000 var(--thyuu--height-head));
  pointer-events: none;
}
.single .site-header figure img {
  width: calc(100% + var(--cover-inset, 0%) * 2);
  height: calc(100% + var(--cover-inset, 0%) * 2);
  max-width: none;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: top;
  opacity: 0;
  filter: var(--cover-filter, none);
  transition: opacity 0.5s cubic-bezier(0.6, 0.2, 0.25, 1), transform 1s cubic-bezier(0.6, 0.2, 0.25, 1);
}
.single .site-header figure img.loaded {
  opacity: 1;
  transform: none;
  animation: none;
}
.single .site-header figure thyuu-loaed {
  inset: var(--thyuu--height-head) 0 auto;
  animation-delay: 1s;
}
.single .site-header figure img:not(.loaded) ~ thyuu-loaed {
  --loaed-play: running;
}
.nav-fixed .site-header figure thyuu-loaed,
.single .site-header figure img.loaded ~ thyuu-loaed {
  transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
}
.single.nav-fixed .site-header figure img {
  pointer-events: none;
}
.single .site-header hgroup {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: var(--thyuu--align-cover);
  text-align: var(--thyuu--align-cover);
  gap: 1em;
  font-size: var(--thyuu--size-small);
  text-wrap: balance;
  z-index: 2;
}
.single .site-header hgroup::before {
  --back: var(--mask-back, radial-gradient(farthest-side at bottom, #000 50%, #0000));
  --drop: var(--mask-drop, blur(1em));
  content: var(--mask-area, '');
  position: absolute;
  inset: -100% 0 -50%;
  background: var(--mask-bglg, linear-gradient(#0000 50%, #222));
  -webkit-backdrop-filter: var(--drop);
  backdrop-filter: var(--drop);
  -webkit-mask: var(--back);
  mask: var(--back);
  pointer-events: none;
  transition: 1s;
  z-index: -1;
}
.single .site-header h1 {
  font-family: var(--thyuu--font-family-slogn);
  font-size: clamp(1.5rem, 2vmax, 2rem);
  max-width: min(var(--thyuu--size-content), 100%);
}
.single .site-header .post-mark {
  justify-content: var(--thyuu--align-cover);
}
.single .site-header .post-note {
  max-width: min(var(--thyuu--size-content), 100%);
  margin: -0.5em 0 0.5em;
}
.single .site-header .post-note i {
  display: flex;
  justify-content: var(--thyuu--align-cover, center);
  position: relative;
  height: 2em;
  transform: scaleX(-1);
  overflow: hidden;
}
.single .site-header .post-note i:after,
.single .site-header .post-note i:before {
  content: '\e644';
  position: absolute;
  width: 200%;
  height: 100%;
  text-align: center;
  opacity: 0.5;
  transform: scaleX(-1);
  margin: 0 -0.5em;
}
.single .site-header .post-note i:before {
  content: '';
  background: linear-gradient(-90deg, #0000 1em, currentColor 3em, #0000 50%) no-repeat 0% / 50% 1px,
    linear-gradient(90deg, #0000 1em, currentColor 3em, #0000 50%) no-repeat 100% / 50% 1px;
  opacity: 0.3;
}
.single .post-meta {
  --thyuu--color-back-font: var(--cover-btn-color, hsl(0deg 0% 100% / 5%));
  --thyuu--shadow-shift: var(--cover-btn-shadow, var(--thyuu--shadow-white));
  justify-content: var(--thyuu--align-cover);
  min-width: min(var(--thyuu--size-content), 100%);
  max-width: 100%;
}
.single .post-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.single .post-meta ul li {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: var(--thyuu--align-cover);
  padding: 1em;
  gap: 1em;
  line-height: 1;
  flex: 1 0 auto;
  scroll-snap-align: start;
  border-radius: var(--thyuu--size-radius);
  background: var(--thyuu--color-back-font);
  box-shadow: var(--thyuu--shadow-shift);
}
.single .post-meta ul li em {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: var(--thyuu--align-cover);
  gap: 0.5em;
  width: 100%;
}
.single .post-meta ul li button {
  margin: -1em -1em -1em auto;
}
.single .post-meta .avatar {
  margin: -0.5em 0;
}
.single .post-meta #speech-btn .progress {
  display: flex;
  justify-content: space-evenly;
  flex: 1;
  padding: 0 0.5em;
  gap: 0.5em;
}
.single .post-meta #speech-btn .progress i {
  position: relative;
  width: 0.25em;
  height: 1em;
}
.single .post-meta #speech-btn .progress i::before,
.single .post-meta #speech-btn .progress i::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: currentcolor;
  border-radius: 1em;
  opacity: 0.1;
}
.single .post-meta #speech-btn .progress i::after {
  height: var(--child-pct, 0%);
  opacity: 0.7;
}
.thyuu-amaps {
  position: var(--cover-map-position, fixed);
  inset: 0;
  width: 100%;
  height: var(--cover-map-height, 100%);
  color: hsl(var(--thyuu--color-font));
  text-shadow: none;
  background: var(--thyuu--color-back-font) !important;
  border-radius: var(--cover-map-radius, 0);
  opacity: var(--cover-map-opacity, 0);
  -webkit-mask: var(--cover-map-mask, none);
  mask: var(--cover-map-mask, none);
  transform: var(--cover-map-transform, none);
  visibility: var(--cover-map-visibie, hidden);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  overflow: hidden;
}
.thyuu-amaps:not(.loaded) {
  opacity: 0;
}
.thyuu-amaps.full-screen {
  position: fixed;
  height: 100%;
  opacity: 1;
  -webkit-mask: none;
  mask: none;
  background: var(--thyuu--color-back-white) !important;
  border-radius: 0;
  transform: none;
  visibility: visible;
  z-index: 29;
}
.amap-controls {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: var(--thyuu--size-small);
  line-height: 1;
  width: fit-content;
  inset: auto var(--thyuu--size-divs) var(--thyuu--size-divs);
  gap: 0.5em 0;
  padding: 0.5em 0.25em;
  margin: auto;
  border-radius: 2em;
  background: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.6));
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  box-shadow: var(--thyuu--shadow-normal);
  z-index: 30;
}
.thyuu-amaps.full-screen .amap-controls {
  --trfm: scale(0.9) translateY(100%);
  animation: var(--animation);
  animation-duration: 0.5s;
  animation-delay: 1s;
}
.amap-control input {
  --thyuu--color-back-font: hsl(var(--thyuu--color-font) / 4%);
  --thyuu--border: thin solid hsl(var(--thyuu--color-font) / 0.1);
  width: 3em;
  height: 1em;
  margin: 0 -0.5em 0 0;
}
.amap-control,
.amap-controls :is(ul, span),
.amap-scalecontrol,
.amap-ctrl-list-layer {
  all: unset;
}
.amap-scalecontrol {
  display: block;
  position: absolute;
  inset: -2.5em 0 auto !important;
  margin: auto;
  width: fit-content;
  pointer-events: none;
  opacity: 0.7;
}
.amap-controls :is(ul, li, span) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: hsl(var(--thyuu--color-font) / 0.7) !important;
  margin: 0.25em;
}
.amap-marker-label a,
.amap-toolbar span {
  font-size: 1.25em;
  width: 2em;
  height: 2em;
  padding: 0;
  line-height: 2;
  font-weight: 400 !important;
  background: var(--thyuu--color-back-font);
  border-radius: 50% !important;
  border: 0 !important;
  user-select: none;
  margin: 0 0.25em;
  transition: 0.3s;
}
.amap-toolbar span:hover {
  color: white !important;
  background: hsl(var(--thyuu--main-color) / 0.7);
}
#cover-map .amap-marker {
  color: hsl(var(--thyuu--color-font) / 0.7);
  font-size: 1.5em;
  user-select: none;
  transition: color 0.5s;
}
#cover-map .amap-marker i:after {
  content: '';
  position: relative;
  display: flex;
  height: 0.5em;
  width: 1em;
  margin: -0.75em 0 0;
  outline: thin solid;
  outline-offset: 0.1em;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
#cover-map .amap-marker:hover i {
  color: hsl(var(--thyuu--main-color));
}
#cover-map .amap-marker-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  padding: 0.25em 0 0.25em 1em;
  border: 0;
  border-radius: 2em;
  background: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.6));
  box-shadow: var(--thyuu--shadow-normal);
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  opacity: 0;
  transition: 0.3s;
}
#cover-map .amap-marker:hover .amap-marker-label {
  opacity: 1;
  margin: 0.5em 0 0;
}
body:where(.single-format-image, .single-format-gallery) #cover-map:not(.full-screen) :is(.amap-controls, .maps-name),
.amap-copyright,
.amap-logo {
  display: none !important;
}
.table-content {
  width: min(var(--thyuu--size-card-normal), 100%);
  margin-inline: auto calc(var(--thyuu--size-edgelr) - 1.5em);
  bottom: auto;
  gap: 1em;
  transform: translateY(-100%) scaleX(0.8);
}
#mulu-toggle:checked ~ .thyuu-icon-mulu:after {
  content: attr(close-title);
}
.table-content header {
  font-weight: var(--thyuu--font-weight-title);
}
.table-content header:before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: hsl(var(--thyuu--color-font) / 0.05);
}
.table-content ul {
  padding: 0.5em;
  margin: -1em;
  counter-reset: h2;
  overflow: clip overlay;
  overscroll-behavior-y: contain;
  -webkit-mask: var(--thyuu--mask-scroll-y);
}
.table-content a {
  display: flex;
  align-items: center;
  margin: 0 0 0 calc(var(--table-edge, 0em) + 1.5em);
  outline: thin solid #0000;
  border-radius: var(--thyuu--size-radius);
  padding: 0.5em 0.75em;
  transition: 0.5s;
}
.table-content a:hover {
  background: hsl(var(--thyuu--main-color) / 5%);
}
.entry-content h2,
.table-content .h2 {
  counter-reset: h3;
  --table-ment: h2;
  --table-edge: -1.5em;
}
.entry-content h3,
.table-content .h3 {
  counter-reset: h4;
  --table-ment: h3;
  --table-tent: counter(h2) '.' counter(h3);
}
.entry-content h4,
.table-content .h4 {
  counter-reset: h5;
  --table-ment: h4;
  --table-tent: counter(h2) '.' counter(h3) '.' counter(h4);
  --table-edge: 1em;
}
.entry-content h5,
.table-content .h5 {
  counter-reset: h6;
  --table-ment: h5;
  --table-tent: counter(h2) '.' counter(h3) '.' counter(h4) '.' counter(h5);
  --table-edge: 2em;
}
.entry-content h6,
.table-content .h6 {
  --table-ment: h6;
  --table-tent: counter(h2) '.' counter(h3) '.' counter(h4) '.' counter(h5) '.' counter(h6);
  --table-edge: 3em;
}
body.toc-order-cjk :is(.entry-content h2, .table-content .h2) {
  --table-tent: counter(h2, cjk-decimal);
}
body.toc-order-cjk :is(.entry-content h3, .table-content .h3) {
  --table-tent: '(' counter(h3, cjk-decimal) ')';
}
body.toc-order-cjk :is(.entry-content h4, .table-content .h4) {
  --table-tent: counter(h4, decimal);
}
body.toc-order-cjk :is(.entry-content h5, .table-content .h5) {
  --table-tent: '(' counter(h5, decimal) ')';
}
body.toc-order-cjk :is(.entry-content h6, .table-content .h6) {
  --table-tent: counter(h6, disc);
}
body.toc-order-roman :is(.entry-content h2, .table-content .h2) {
  --table-tent: counter(h2, upper-roman);
}
body.toc-order-roman :is(.entry-content h3, .table-content .h3) {
  --table-tent: counter(h3, lower-roman);
}
body.toc-order-roman :is(.entry-content h4, .table-content .h4) {
  --table-tent: counter(h4);
}
body.toc-order-roman :is(.entry-content h5, .table-content .h5) {
  --table-tent: counter(h4) '.' counter(h5);
}
body.toc-order-roman :is(.entry-content h6, .table-content .h6) {
  --table-tent: counter(h4) '.' counter(h5) '.' counter(h6);
}
body.toc-order-auto .entry-content :is(h1, h2, h3, h4, h5, h6)::before,
body.toc-order-auto .table-content :is(.h1, .h2, .h3, .h4, .h5, .h6)::before {
  counter-increment: var(--table-ment);
  content: var(--table-tent, counter(h2));
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--thyuu--color-back-font);
  background: hsl(from currentColor h s l / 0.1);
  font-size: 0.75em;
  font-variant-numeric: tabular-nums;
  margin: 0 0.5em 0 0;
  padding: 0.5em;
  border-radius: 2em;
  min-width: 2em;
  min-height: 2em;
  line-height: 1;
  vertical-align: 0.125em;
  opacity: 0.7;
}
.single .entry-layout {
  position: var(--layout-position, relative);
  display: grid;
  justify-items: center;
  gap: 2em;
  padding-block: var(--layout-top, var(--thyuu--size-edgelr)) calc(var(--thyuu--size-radius) + var(--thyuu--size-edgelr));
  margin-bottom: calc(var(--thyuu--size-radius) * -1);
  border-radius: var(--thyuu--size-radius) var(--thyuu--size-radius) 0 0;
  background: var(--thyuu--color-back-text, var(--thyuu--color-back-have));
  z-index: 2;
  transition: 0.5s;
}
.single :where(.entry-layout) > * {
  min-width: 0;
  max-width: 100%;
  width: min(var(--thyuu--size-content), 100%);
}
.aside-author {
  display: flex;
  flex-wrap: wrap;
  gap: var(--thyuu--size-span);
  font-size: var(--thyuu--size-medium);
  background: var(--thyuu--color-back-font);
  padding: var(--thyuu--size-span);
  border-radius: var(--thyuu--size-radius);
}
.aside-author :where(.article, .authors) {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: var(--right, flex-end);
  flex: 1;
  min-width: min(var(--thyuu--size-card-normal), 100%);
  gap: 1em;
}
.aside-author .authors {
  --line-num: 2;
  align-items: flex-start;
}
.aside-author .avatars {
  --avatar-size: 9em;
  flex: var(--avata, var(--avatar-size));
  text-align: center;
  order: var(--order, 0);
  margin: var(--ontop, auto) 0 auto;
}
.aside-author .avatar {
  color: hsl(var(--thyuu--main-color) / 0.3);
  outline: thin solid;
  outline-offset: 0.5em;
  vertical-align: middle;
  background: hsl(var(--thyuu--main-color) / 0.1);
}
.aside-author .article ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.aside-author .article li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.aside-author .article li:before {
  font-size: 1.5em;
  line-height: 1;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(36deg 100% 50% / 50%) 50%, #0000 50%) no-repeat 150% 150% / 0.7em 0.7em;
}
.aside-author .article li.no:before {
  background-image: radial-gradient(circle, hsl(122deg 39% 49% / 50%) 50%, #0000 50%);
}
.aside-author .article li:after {
  content: attr(text);
  font-size: var(--thyuu--size-small);
  position: absolute;
  inset: 3em 0 0 -1em;
  width: min(15em, 80vw);
  height: fit-content;
  background: var(--thyuu--color-back-white);
  box-shadow: var(--thyuu--shadow-white);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 1em;
  padding: 0.5em 1em;
  opacity: 0;
  transform: translateY(1em);
  z-index: 2;
  pointer-events: none;
  transition: 0.3s;
}
.aside-author .article li:hover:after {
  opacity: 1;
  transform: none;
}
.aside-author h6 {
  color: hsl(var(--thyuu--color-font) / 0.7);
  font-size: var(--thyuu--size-small);
}
.aside-author nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: var(--right, flex-end);
  font-size: var(--thyuu--size-small);
  color: hsl(var(--thyuu--color-font) / 0.7);
  gap: 0.5em;
  line-height: 1;
  z-index: 1;
  margin: 0 -0.75em -0.75em;
}
.aside-author nav a:hover {
  --thyuu--color-back-font: hsl(var(--thyuu--subs-color) / 0.1);
  --thyuu--color-font: var(--thyuu--main-color);
}
.aside-author .article nav a {
  display: flex;
  padding: 1em;
  gap: 0.5em;
  border-radius: 2em;
  background: var(--thyuu--color-back-font);
}
.post-password-form {
  position: fixed;
  display: grid;
  inset: 0;
  margin: auto;
  padding: 1.5em;
  gap: 1em;
  text-align: left;
  place-items: start;
  place-content: center;
  border-radius: var(--thyuu--size-radius) var(--thyuu--size-radius) 0 0;
  background: radial-gradient(circle at 25% 65%, hsl(var(--thyuu--main-color) / 0.2), #0000 25%) no-repeat local,
    radial-gradient(circle at 75% 35%, hsl(var(--thyuu--subs-color) / 0.2), #0000 25%) no-repeat local var(--thyuu--color-back-have);
  z-index: 29;
}
.post-password-form::before {
  display: block;
  content: '\e647';
  color: hsl(var(--thyuu--color-font) / 0.3);
  font-family: thyuu-iconfont;
  font-size: 6em;
  line-height: 1;
}
.post-password-form label {
  display: block;
  margin: -1em 0 1em;
}
/* 文章自定义类型 */
.single-format-audio,
.single-format-video,
.single-format-gallery,
.single-format-image {
  --thyuu--size-cover-top: max(10em, 25vh);
  --thyuu--height-cover: auto;
  --cover-bglg: none;
  --cover-filter: blur(1em) opacity(0.1);
  --mask-area: none;
  --thyuu--color-back-text: none;
  --layout-top: 0;
}
.single-format-audio,
.single-format-video {
  --cover-index: -1;
  --cover-inset: 4em;
  --cover-filter: blur(2em) opacity(0.4);
}
.single-format-image,
.single-format-gallery {
  --cover-text-color: auto;
  --cover-text-shadow: none;
  --cover-btn-color: var(--thyuu--color-back-font);
  --cover-btn-shadow: none;
  --cover-map-opacity: 1;
  --cover-map-visibie: visible;
}
.single-format-gallery {
  --cover-map-position: absolute;
  --cover-map-height: 100vh;
  --cover-map-mask: radial-gradient(circle at top, #000 30vh, #0000 70vh);
  --cover-map-transform: translateY(calc((var(--thyuu--size-cover-top) + var(--thyuu--size-edgetb)) * -1));
}
.single-format-image {
  --thyuu--size-cover-top: var(--thyuu--size-edgetb);
  --thyuu--align-cover: left;
  --cover-justify: center;
  --cover-filter: none;
  --cover-anime: none;
  --cover-map-position: relative;
  --cover-map-height: var(--thyuu--size-card-small);
  --cover-map-radius: var(--thyuu--size-radius);
}
.single-format-quote {
  --thyuu--align-cover: center;
  --thyuu--height-cover: 100dvh;
}
.single-format-aside .site-header figure {
  --thyuu--align-cover: left;
  flex-flow: wrap;
  place-content: flex-end space-between;
  align-items: flex-end;
}
.single-format-gallery .entry-layout article {
  min-width: min(var(--custom-shrink, 80vw), 100%);
}
.single-format-image :is(.site-header figure, .entry-content > .wp-block-gallery:first-of-type) {
  position: static;
  min-height: max(var(--thyuu--size-card-normal), 50vh);
  border-radius: var(--thyuu--size-radius);
}
.single-format-image:has(.entry-content .wp-block-gallery) .site-header figure {
  --cover-filter: blur(1em) opacity(0.1);
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
  z-index: -1;
}
.single-format-image:has(.entry-content .wp-block-gallery) .site-header figure thyuu-loaed {
  display: none;
}
.single-format-image #cover-map:not(.full-screen) .amap-controls {
  display: flex !important;
  inset: auto 0 0;
  max-width: 100%;
  width: 100%;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  justify-content: space-between;
  z-index: 1;
}
.single-format-image #cover-map:not(.full-screen) .amap-toolbar span {
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
}
.single-format-image #cover-map:not(.full-screen) .amap-scalecontrol {
  position: static;
  margin: 0 auto 0 0;
}
.single-format-image #cover-map:not(.full-screen) :is(.amap-ctrl-overlay-layer, .amap-ctrl-list-layer) {
  display: none;
}
.single-format-image .aside-author {
  --order: -1;
  --ontop: -6em;
  --avata: 100%;
  --right: flex-start;
  margin: 5em 0 0;
  gap: 2em 5em;
}
/* =Navigation
----------------------------------------------- */
.post-navigation {
  display: flex;
  gap: 0.5em;
}
.navigation {
  display: flex;
  align-items: center;
  align-self: center;
  color: hsl(var(--thyuu--color-font) / 0.7);
  font-size: var(--thyuu--size-medium);
  font-variant-numeric: tabular-nums;
  width: fit-content;
  line-height: 2;
  gap: 0.5em;
  box-shadow: var(--thyuu--shadow-shift);
  animation: var(--animation);
  animation-delay: 1s;
}
.page-numbers:where(.next, .prev) {
  order: -1;
  flex: none;
  background: 0;
}
.page-numbers.dots {
  font-family: monospace;
  opacity: 0.5;
}
:is(.post-page-numbers, .page-numbers):not(.next, .prev, .dots) {
  text-align: center;
  min-width: 2em;
  padding: 0 0.25em;
  outline: thin solid #0000;
  outline-offset: 2em;
  border-radius: 2em;
  background: var(--thyuu--color-back-font);
  white-space: nowrap;
  transition: 0.5s;
}
:is(.post-page-numbers, .page-numbers):not(.next, .prev, .dots):hover {
  outline-color: hsl(var(--thyuu--subs-color) / 0.8);
  outline-offset: 0;
  background: 0;
}
:is(.post-page-numbers, .page-numbers).current {
  color: hsl(var(--thyuu--main-color) / 0.8);
  background: hsl(var(--thyuu--main-color) / 0.2);
  cursor: no-drop;
}
/* =Comments
----------------------------------------------- */
.comment-area,
.comment-list {
  display: flex;
  flex-flow: column;
  gap: var(--thyuu--size-span);
}
.comment-respond {
  position: relative;
  width: 100%;
  margin: 0 0 2em;
}
.comment-respond button.close {
  position: absolute;
  inset: var(--thyuu--size-edgelr) var(--thyuu--size-edgelr) auto auto;
  padding: 0.5em;
  background: var(--thyuu--color-back-font);
  color: hsl(var(--thyuu--color-font) / 0.7);
  box-shadow: none;
}
.comment-list .comment-respond {
  margin: 1em 0 0;
}
.fancybox__content.comment-respond,
.comment-list .comment-respond {
  display: block !important;
}
.comment-respond.fancybox__content #cancel-comment-reply-link {
  display: none;
}
.comment-title,
.comment-num-title,
.comment-reply-title,
.comment-form-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  font-size: 1em;
  color: hsl(var(--thyuu--main-color));
}
.comment-reply-title::before,
.comment-form-button::after {
  content: '\e8b4';
  font-family: thyuu-iconfont;
}
.comment-reply-title .comment-meta {
  justify-content: flex-end;
}
.comment-form-button {
  float: right;
  color: hsl(var(--thyuu--subs-color));
}
.comment-list :is(.comment, .pingback) {
  position: relative;
  font-size: var(--thyuu--size-medium);
}
.comment-list .depth-1 {
  padding: var(--thyuu--size-span);
  background: var(--thyuu--color-back-font);
  border-radius: var(--thyuu--size-radius);
  box-shadow: var(--thyuu--shadow-shift);
  break-inside: avoid;
  transition: 0.5s;
}
.comment-list .depth-1:is(:hover, :target) {
  background: var(--thyuu--color-back-white);
  box-shadow: var(--thyuu--shadow-white);
}
@supports (animation-timeline: view()) {
  .comment-list .depth-1 {
    --trfm: scale(0.85);
    transform: none;
    animation: transform 1s;
    animation-timeline: view(block);
    animation-range: cover -10% cover 30%;
  }
}
.comment-list .comment-rating {
  color: var(--rating-color, hsl(var(--thyuu--color-font) / 0.5));
  font-size: var(--thyuu--size-small);
  font-variant: tabular-nums;
}
.comment-list .comment-rating time {
  margin: 0 0.5em 0 0;
}
.comment-list .comment[rating] > .comment-body {
  --rating-bg: hsl(var(--thyuu--subs-color) / 0.1);
  --rating-color: hsl(var(--thyuu--subs-color) / 0.7);
}
.comment-list ul .comment-rating {
  right: -1.25em;
}
.comment-body {
  display: flex;
  flex-flow: column;
  gap: 0.5em 1em;
}
.comment-list ul .comment-body {
  margin: 1em -1em -1em 0;
  padding: 1em 1em 1em 0;
  border-top: thin solid var(--rating-bg, var(--thyuu--color-back-font));
  border-radius: 0 var(--thyuu--size-radius);
}
.comment-content p:not(:last-of-type) {
  margin: 0 0 0.5em;
}
.comment-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75em;
  text-transform: capitalize;
  font-weight: var(--thyuu--font-weight-title);
}
.comment-author .avatar {
  color: hsl(var(--thyuu--color-font) / 0.1);
  outline: thin solid;
  box-shadow: 0.25em 0.25em 0 -0.1em;
  text-align: center;
  flex: none;
}
.comment-meta {
  display: inline-flex;
  align-items: center;
  flex: auto;
  font-size: var(--thyuu--size-small);
  font-weight: normal;
  color: hsl(var(--thyuu--color-font) / 0.7);
  gap: 0.5em;
  line-height: 2;
}
.comment-meta a {
  display: flex;
  align-items: center;
  gap: 0.25em;
  border-radius: 2em;
  padding: 0 0.5em;
  background: var(--thyuu--color-back-font);
}
.comment-reply-login::before,
.comment-reply-link::before {
  content: '\e8b4';
  font-family: thyuu-iconfont;
}
.comment-edit-link::before {
  content: '\e699';
}
.comment-form {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 0.5em 0 0;
}
.comment-form-info {
  display: flex;
  flex-flow: wrap;
  gap: 0.5em;
  flex: auto;
}
.comment-form-info label {
  display: flex;
  align-items: center;
  flex: 8em;
  height: 3em;
  padding: 0.25em 0.25em 0.25em 1em;
  background: var(--thyuu--color-back-font);
  border-radius: 2em;
}
.comment-form-info input {
  background: 0;
  padding: 0.5em;
}
.comment-form-info input:is(:-internal-autofill-previewed, :-internal-autofill-selected) {
  -webkit-text-fill-color: hsl(var(--thyuu--color-font) / 0.6);
  transition: background-color 5000s ease-out 0.5s;
}
.comment-form-text {
  position: relative;
  flex: 100%;
  background: var(--thyuu--color-back-font);
  border-radius: var(--thyuu--size-radius);
  box-shadow: var(--thyuu--shadow-shift);
}
.comment-form-comment {
  background: 0;
  transition: 0s;
}
.form-captcha,
.comment-emoji {
  flex: 8em;
  display: flex;
  align-items: center;
  font-size: var(--thyuu--size-small);
  height: 3em;
  gap: 0.5em;
  padding: 0.25em;
  border-radius: 2em;
  background: var(--thyuu--color-back-font);
}
.comment-emoji {
  border-top: thin solid var(--thyuu--color-back-font);
  line-height: 1;
  background: 0;
}
.comment-emoji .emoji-btn {
  color: #fff;
  padding: 0.5em;
  margin: 0 0.25em 0 0;
  background: hsl(37deg 100% 60% / 0.7);
}
.comment-emoji .emoji-icons {
  display: grid;
  place-items: center;
  grid: auto-flow 2em / repeat(auto-fill, minmax(1.75em, 1fr));
  font-size: 1.5em;
  flex: 1;
  height: inherit;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  overflow: hidden auto;
  transition: 0.3s;
}
.comment-emoji.show .emoji-btn {
  rotate: 45deg;
}
.comment-emoji.show .emoji-icons {
  height: 6em;
  background: var(--thyuu--color-back-have);
  box-shadow: var(--thyuu--shadow-normal);
  border-radius: var(--thyuu--size-radius);
  scroll-snap-type: none;
  z-index: 3;
}
.emoji-icon {
  scroll-snap-align: center;
  user-select: none;
  cursor: pointer;
  transition: 0.3s;
}
.comment-emoji:not(.show) :where(.emoji-icon) {
  filter: grayscale(1) opacity(0.5);
}
.emoji-icon:hover {
  scale: 1.2;
  filter: none;
}
.emoji-icon:hover:active {
  scale: 1.1;
}
.form-captcha :is(img, input) {
  background: 0;
  padding: 0;
  border-radius: 0;
}
.form-captcha img {
  cursor: pointer;
  max-width: 5em !important;
  height: 100%;
  outline: thin dotted hsl(var(--thyuu--color-font) / 0.1);
  border-radius: inherit;
}
.form-captcha :is(label, span) {
  display: none !important;
}
.comment-form .form-submit button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.comment-form .form-submit {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.comment-form .cf-turnstile {
  display: flex;
  padding: 0.5em 0 0;
  height: 3em;
  border-radius: 1em;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  width: min(10em, 100%);
}
.comment-form .cf-turnstile div {
  margin: -0.5em;
}
.cf-turnstile-br {
  display: none;
}
.comment-disbtn {
  display: flex;
  align-items: center;
  background: var(--thyuu--color-back-font);
  border-radius: 2em;
  padding: 0.25em;
}
.submit-enable-icon {
  position: relative;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin: 0 0.5em;
}
.submit-enable-icon:before {
  content: '';
  width: 0.8em;
  height: 0.8em;
  border-top: thin solid;
  border-radius: 50%;
  margin: 0 0 -0.4em;
  transition: 0.5s;
}
#comment-enable:checked + .submit-enable-icon:before {
  transform: rotate(-45deg);
}
.submit-enable-icon:after {
  content: '';
  width: 1em;
  height: 0.8em;
  display: flex;
  border: thin solid;
  border-radius: 0.25em;
}
.logged-in-as,
.comment-notes,
.comment-form label {
  font-size: var(--thyuu--size-small);
  color: hsl(var(--thyuu--color-font) / 0.6);
  line-height: 1.5;
  vertical-align: middle;
  align-self: center;
  cursor: pointer;
  user-select: none;
}
.form-allowed-tags {
  background: rgba(0, 0, 0, 0.025);
  border-radius: var(--thyuu--size-radius);
  padding: 1em;
}
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex: fit-content;
  align-self: center;
}
.must-log-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  place-content: center;
  color: hsl(var(--thyuu--color-font) / 0.3);
  font-size: var(--thyuu--size-small);
  min-height: var(--thyuu--size-card-small);
  gap: 1em 0;
  padding: 1em;
  background: var(--thyuu--color-back-font);
  border-radius: var(--thyuu--size-radius);
  margin: 0.5em 0 0;
}
.must-log-in:before {
  content: '\e630';
  flex: 100%;
  text-align: center;
  font-size: 6em;
  line-height: 1;
}
/* =Widgets
----------------------------------------------- */
.global-panel-btn {
  place-content: space-between;
}
.global-panel-btn.open:before {
  content: '';
  position: absolute;
  inset: -0.5em;
}
.global-panel-btn i {
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  background: currentColor;
  border-radius: 1em;
  transform: translateY(90%);
  transition: 0.5s var(--animation-on), color 0s;
}
.global-panel-btn i.left {
  width: 100%;
  transform: translateY(-90%);
}
.global-panel-btn i.right {
  right: 0;
  width: 0.5em;
}
.global-panel-btn:hover i {
  width: 0.4em;
}
.global-panel-btn:hover i.left {
  background: hsl(var(--thyuu--subs-color));
}
.global-panel-btn:hover i.right {
  height: 0.9em;
  transform: none;
}
.global-panel-btn.open i {
  width: 100%;
  transform: rotate(-45deg) !important;
}
.global-panel-btn.open i.right {
  transform: rotate(45deg) !important;
}
.global-panel-btn.open i.center {
  opacity: 0;
}
.global-panel-btn.open i {
  height: 0.2em !important;
  scale: 1.1 !important;
}
.global-panel-btn .avatar {
  --avatar-size: 1em;
  color: hsl(var(--thyuu--subs-color) / 0.3);
  outline: thin solid;
  outline-offset: 0.15em;
  background: currentColor;
  animation: none;
  transition: 0.5s;
}
.global-panel-btn:is(.open, :hover) .avatar {
  outline-color: hsl(var(--thyuu--subs-color) / 0.8);
}
.global-panel-btn.open .avatar {
  transform: scale(1.1);
}
.global-panel {
  display: grid;
  grid: auto 1fr auto / auto;
  background-image: radial-gradient(circle at 25% 65%, hsl(var(--thyuu--main-color) / 0.15), #0000 25%),
    radial-gradient(circle at 75% 35%, hsl(var(--thyuu--subs-color) / 0.15), #0000 25%);
  background-repeat: no-repeat;
  background-attachment: local;
  transform: scale(0.98);
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0, 1.5), pointer-events 0s;
}
.toggle-btn.is-sidebar {
  --thyuu--color-font: var(--thyuu--main-color);
  margin: auto;
  background: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.5));
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  box-shadow: var(--thyuu--shadow-white);
  z-index: 2;
}
.side-come {
  display: flex;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5em;
}
.side-come .welcome-tip {
  color: hsl(var(--thyuu--color-font) / 0.6);
  text-transform: capitalize;
}
.side-come .emoji {
  color: #000;
  font-size: 1.5em;
  width: 1.25em;
  line-height: 1.3333;
}
.side-come :is(.search-field, .welcome-tip):hover {
  box-shadow: var(--thyuu--shadow-white);
}
.side-count {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 0.5em;
  justify-content: space-between;
  order: 3;
}
.side-count i {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: min(var(--thyuu--size-card-normal) / 2, 50% - 0.5em);
  padding: 1em;
  gap: 0.5em;
  border-radius: var(--thyuu--size-radius);
  background: var(--thyuu--color-back-font);
  outline: var(--thyuu--border);
  box-shadow: var(--thyuu--shadow-normal);
  font-variant-numeric: tabular-nums;
}
.side-count i:before {
  color: hsl(var(--thyuu--main-color) / 0.5);
  background: hsl(var(--thyuu--main-color) / 0.1);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  text-align: center;
}
.side-count i:after {
  content: attr(title);
  width: 100%;
  white-space: nowrap;
  color: hsl(var(--thyuu--color-font) / 0.6);
  font-family: var(--thyuu--font-family-title);
  font-size: var(--thyuu--size-small);
  font-weight: var(--thyuu--font-weight-title);
  line-height: 1.5;
  order: -1;
  transition: 0.3s;
}
.side-area {
  --thyuu--color-back-font: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.3));
  --thyuu--border: 0;
  --thyuu--shadow-normal: 0 0 1em hsl(0deg 0% 15% / 5%);
  display: grid;
  margin: 0 -1em -4em;
  padding: 1em 1em 5em;
  -webkit-mask: var(--thyuu--mask-scroll-y);
  overscroll-behavior-y: contain;
  overflow: hidden overlay;
}
.side-switch {
  position: relative;
  display: flex;
  flex-flow: wrap;
  grid-area: 1 / 1;
  place-content: space-around;
  gap: 1em;
  min-width: 0;
}
.side-area .thyuu-block {
  position: relative;
  display: flex;
  flex: min(var(--thyuu--size-card-normal), 100%);
  flex-flow: column;
  max-height: var(--thyuu--size-card-normal);
  padding: 1em;
  gap: 1em;
  box-shadow: var(--thyuu--shadow-normal);
  outline: var(--thyuu--border);
}
.side-area .thyuu-block:not(.thyuu-noone)::before {
  position: absolute;
  top: 0.1em;
  right: 0.1em;
  line-height: 1;
  font-size: 6em;
  opacity: 0.03;
  pointer-events: none;
}
.side-area .thyuu-block.thyuu-noone {
  order: 2;
}
.side-area :where(cite, time, h6, caption) {
  color: hsl(var(--thyuu--color-font) / 0.6);
  font-size: var(--thyuu--size-small);
}
.side-area .calendar caption:before {
  content: '\e65f';
}
.side-area h6:before,
.side-area .calendar caption:before {
  display: inline-block;
  color: hsl(var(--thyuu--main-color) / 0.5);
  background: hsl(var(--thyuu--main-color) / 0.1);
  border-radius: 50%;
  text-align: center;
  font-size: var(--thyuu--size-medium);
  width: 2em;
  height: 2em;
  line-height: 2em;
  margin: -0.25em 0.5em -0.25em -0.25em;
}
.side-area .thyuu-block ul {
  height: 100%;
  display: flex;
  flex-flow: column;
  gap: 0.75em;
  margin: -1em;
  padding: 1em;
  mask: var(--thyuu--mask-scroll-y);
  overflow: auto;
}
.side-area .thyuu-block ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.side-area .thyuu-block li time {
  position: relative;
  flex: 0 0 6.75em;
}
.side-area .tagcloud ul li:before,
.side-area .thyuu-block li time:before {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  margin: auto;
  width: 6px;
  height: 200%;
  background: linear-gradient(180deg, #0000, hsl(var(--thyuu--main-color) / 20%), #0000) no-repeat center / 2px 100%,
    radial-gradient(circle, hsl(var(--thyuu--main-color) / 70%) 50%, #0000 50%) no-repeat center / 6px 6px;
  transition: 0.5s;
}
.side-area .tagcloud ul li:hover:before,
.side-area .thyuu-block li:hover time::before {
  background-size: 2px 0, 12px 6px;
}
.side-area .recent-comment {
  flex: 100%;
  max-width: 100%;
}
#recent-comment-toggle {
  display: none;
}
.side-area .recent-comment ul {
  display: grid;
  grid: auto-flow / repeat(auto-fill, minmax(25em, 1fr));
  gap: 0.5em;
}
.side-area .recent-comment li {
  --trfm: translateX(1rem);
  --avatar-size: 3em;
  position: relative;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  gap: 0.75em;
  padding: 8px;
}
.dialog-check.is-widget:checked ~ .dialog-area.is-widget :where(.thyuu-block, .recent-comment li) {
  animation: var(--animation);
  animation-duration: 0.3s;
  animation-timing-function: linear;
}
.side-area .recent-comment li:before {
  content: '';
  position: absolute;
  height: 6px;
  margin: auto;
  inset: 0;
  background: linear-gradient(90deg, hsl(var(--thyuu--main-color) / 20%), #0000) no-repeat calc(var(--avatar-size) + 12px) / 100% 2px,
    radial-gradient(circle, hsl(var(--thyuu--main-color) / 70%) 50%, #0000 50%) no-repeat 0 / 6px 6px;
  transition: 0.7s;
}
.side-area .recent-comment li:hover:before {
  background-size: 2px 2px, 6px 12px;
}
.side-area .recent-comment cite {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: var(--thyuu--font-weight-title);
}
.side-area .recent-comment .avatar {
  outline: 1px solid hsl(var(--thyuu--main-color) / 0.3);
  outline-offset: 4px;
  background: 0;
  transition: 1s;
}
.side-area .recent-comment li:hover .avatar {
  outline-color: hsl(var(--thyuu--main-color) / 0.7);
}
.side-area .calendar {
  flex-grow: 0;
  justify-content: space-between;
}
.side-area .calendar table {
  flex: 100%;
}
.side-area .calendar caption {
  font-weight: var(--thyuu--font-weight-title);
  padding: 0 0 1em;
}
.side-area .calendar nav {
  display: flex;
  justify-content: space-between;
  font-size: var(--thyuu--size-small);
}
.side-area .calendar th,
.side-area .calendar td {
  text-align: center;
  line-height: 3;
  padding: 0;
  font-weight: inherit;
  font-size: var(--thyuu--size-small);
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
}
.side-area .calendar td a {
  width: 100%;
  height: 100%;
  color: hsl(var(--thyuu--main-color) / 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, hsl(var(--thyuu--main-color) / 70%) 50%, #0000 50%) no-repeat center calc(50% + 1.25em) / 0.5em 0.5em !important;
}
.side-area .calendar nav a,
.side-area .calendar td a::before {
  display: block;
  padding: 0.5em;
  line-height: 1;
  color: hsl(var(--thyuu--main-color) / 0.7);
  border: thin solid hsl(var(--thyuu--main-color) / 0.2);
  border-radius: 2em;
  background: 0;
}
.side-area .calendar td a::before {
  content: '查看 ' attr(aria-label) '';
  position: absolute;
  width: fit-content;
  inset: auto 0 1.15em;
  margin: 0 auto;
  z-index: 2;
  opacity: 0;
  border: 0;
  transform: translateY(10px);
  visibility: hidden;
  background: hsl(var(--thyuu--main-color) / 0.1);
  transition: 0.5s, pointer-events 0s;
}
.side-area .calendar td a:hover::before {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.side-area .tagcloud {
  flex-grow: 2;
}
.side-area .tagcloud ul {
  row-gap: 0.5em;
  flex-flow: wrap;
  align-items: center;
}
.side-area .tagcloud ul li:before {
  position: static;
  height: 6px;
}
.side-area .is-users .thyuu-block:only-child {
  flex-grow: 0.2;
}
.side-switch.is-help hgroup {
  flex: 100%;
  padding: 1em;
}
.side-switch.is-help h1 {
  font-family: var(--thyuu--font-family-slogn);
}
.side-switch.is-help em {
  font-variant-numeric: tabular-nums;
  color: hsl(var(--thyuu--main-color));
  background: hsl(var(--thyuu--main-color) / 0.1);
  display: inline-block;
  border-radius: 2em;
  margin: 0 0.5em;
  padding: 0.25em 0.5em;
  line-height: 1;
}
.side-switch.is-help ol.tonewpost {
  flex-flow: wrap;
  gap: 3em;
}
.side-switch.is-help section {
  max-height: none;
  gap: 0;
}
.side-switch.is-help section:not(.thyuu-noone)::before {
  content: 'STEP 1';
  font-weight: var(--thyuu--font-weight-title);
  line-height: 0.75;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: thin;
}
.side-switch.is-help section:nth-of-type(2)::before {
  content: 'STEP 2';
}
.side-switch.is-help section:nth-of-type(3)::before {
  content: 'STEP 3';
}
.side-switch.is-help h5 {
  display: flex;
  align-items: center;
  font-size: 1em;
  gap: 0.5em;
  margin: 1em 0;
}
:where(.side-switch.is-help) h5:before {
  content: '\e61d';
  font-size: 1.25em;
  line-height: 0;
}
.side-switch.is-help h5 a:after {
  content: '↗';
  margin: 0 -0.5em 0 0.5em;
  color: hsl(var(--thyuu--main-color));
  background: hsl(var(--thyuu--main-color) / 0.1);
  display: inline-block;
  border-radius: 2em;
  padding: 0.25em;
  line-height: 1;
}
.side-switch.is-help ol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 1em 1.75em;
  color: hsl(var(--thyuu--color-font) / 0.6);
}
.side-switch.is-help ol li {
  list-style: disc;
}
.side-switch.is-help ol a:before {
  content: '\e649';
  margin: 0 0.5em 0 -1.5em;
}
/* =Page
----------------------------------------------- */
.page .site-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--thyuu--size-medium);
  gap: 0.5em;
  padding-block: var(--thyuu--size-edgelr);
  color: white;
  text-shadow: 0.1em 0.1em 0.5em hsl(0deg 0% 0% / 20%);
  background: var(--custom-rand-bg) 50% / cover;
}
.page .part-head {
  color: hsl(var(--thyuu--color-font) / 0.6);
  font-size: var(--thyuu--size-small);
  line-height: 1.5;
}
/* =Author
----------------------------------------------- */
.archive.author .page-navigation {
  position: static;
  margin: var(--thyuu--size-divs) auto 0;
}
.archive.author.dark-page .site-main {
  display: flex;
  gap: var(--thyuu--size-divs);
}
.archive.author.dark-page .page-header {
  position: relative;
  inset: 0;
  height: auto;
  padding: var(--photo-size, 40vh) 0 0;
}
.user-pic {
  grid-area: none;
  pointer-events: none;
}
.user-pic img {
  --trfm: scale(2);
  --trfm-or: center;
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--photo-size, 100%);
  object-fit: cover;
  filter: none !important;
  margin: auto;
  animation: transform 3s, onheight 4s, opacity 1.5s;
  animation-timing-function: var(--animation-in);
  object-position: 65%;
  z-index: 2;
  transition: 0.7s, transform 0s;
}
.user-pic img:where(.back) {
  z-index: -1;
  height: 60%;
  border-radius: var(--thyuu--size-radius);
}
.user-pic img:where(.main) {
  height: calc(100% + 1em);
  animation: onheight 2s 2s backwards, opacity 1s 2.5s backwards;
}
.nav-fixed .user-pic img:where(.back) {
  height: 100%;
  filter: brightness(0.8) !important;
}
.user-pic .text {
  position: fixed;
  inset: 0;
  height: fit-content;
  margin: auto;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: thin hsl(0deg 0% 100% / 5%);
  font-family: var(--thyuu--font-family-slogn);
  line-height: 1;
  z-index: 0;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 20vw;
  animation: opacity 1s 3s backwards, about-text infinite linear 60s;
}
.user-pic .text:after {
  content: attr(domain) attr(domain);
}
.user-text {
  color: hsl(var(--thyuu--main-color) / 0.7);
  font-family: var(--thyuu--font-family-slogn);
}
.dark-page .user-text {
  color: inherit;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px;
  margin: 0 0 -1em;
  z-index: 1;
  animation: var(--animation);
  animation-delay: 2.5s;
}
.user-text .name {
  line-height: 1;
  font-size: 1.5em;
}
.toggle-btn.is-user {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 1;
}
.dark-page .toggle-btn.is-user {
  justify-content: space-evenly;
  place-self: auto;
  width: clamp(30vw, var(--thyuu--size-card-normal), 100%);
  background-color: hsl(0deg 0% 100% / 10%);
  box-shadow: var(--thyuu--shadow-normal);
  animation: var(--animation);
  animation-delay: 2.75s;
}
.dark-page .toggle-area.is-user {
  position: relative;
  align-self: auto;
  width: clamp(30vw, var(--thyuu--size-card-normal), 100%);
  animation: var(--animation);
  animation-delay: 3s;
  z-index: 1;
}
.user-part {
  display: flex;
  flex-wrap: wrap;
  gap: var(--thyuu--size-divs);
  list-style: none;
}
.user-part span {
  display: block;
  font-size: 1.25em;
  font-variant-numeric: tabular-nums;
}
.user-part a::after {
  content: '\e627';
  font-family: thyuu-iconfont;
  width: var(--thyuu--size-icon);
  height: var(--thyuu--size-icon);
  line-height: var(--thyuu--size-icon);
  background: rgb(255 255 255 / 0.2);
  border-radius: 50%;
  text-align: center;
}
.user-part a:not(.more)[target='_blank']::after {
  content: '↗';
}
.user-part a.more::after {
  content: '\e645';
}
.user-part a.no-icon::after {
  display: none;
}
.user-part a:not(.no-icon):hover {
  background-size: calc(100% - var(--thyuu--size-icon) - 0.5em) 1px;
}
.user-part :where(li) {
  flex: auto;
  z-index: 2;
}
.user-part :where(.info) {
  flex: none;
  gap: var(--thyuu--size-span) var(--thyuu--size-divs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.6;
}
.user-part .info a {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.user-part section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  place-content: space-between;
  font-size: var(--thyuu--size-small);
  border-radius: var(--thyuu--size-radius);
  padding: var(--thyuu--size-divs);
  gap: var(--thyuu--size-divs);
  background-color: var(--thyuu--color-back-white);
  box-shadow: var(--thyuu--shadow-white);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex: auto;
  overflow: hidden;
  transition: all 1s, box-shadow 0.5s;
}
.user-part section:hover {
  box-shadow: var(--thyuu--shadow-white), 0 0 0 2px rgb(255 255 255 / 40%);
}
.user-part h6,
.user-part .full {
  flex: 100%;
}
.user-part .column {
  flex-direction: column;
  align-content: normal;
}
.user-part .logo img {
  height: 1rem;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3)) brightness(1.2);
}
.user-part .me {
  background: linear-gradient(135deg, rgb(255 255 255 / 10%), hsl(var(--thyuu--main-color) / 0.5)) center / 200% 200%;
}
.user-part .me li {
  text-transform: uppercase;
  justify-content: flex-start;
}
.user-part .me a:before {
  font-size: 1.4em;
  line-height: 1;
}
.user-part .me em {
  display: inline-block;
  background: rgb(255 255 255 / 10%);
  border-radius: var(--thyuu--size-radius);
  margin: 0 0.5em;
  padding: 0 0.5em;
}
.user-part .count {
  background: linear-gradient(135deg, rgb(255 255 255 / 10%), hsl(var(--thyuu--subs-color) / 0.5)) center / 200% 200%;
}
.user-part .count:hover,
.user-part .me:hover {
  background-position: 200% 200%;
}
.user-part .moods .mood-line {
  display: flex;
  inset: 0;
  position: absolute;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.user-part .moods .mood-line i {
  position: absolute;
  height: 7px;
  inset: 0;
  width: 0;
  margin: auto 0;
  color: #673ab780;
  background: currentColor;
  box-shadow: 0 0 30px 7px;
  border-radius: 50%;
  opacity: 0.7;
  transition: 3s;
}
.user-part .moods.fade-after .mood-line i {
  width: 100%;
}
.user-part .moods .mood-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex: 100%;
  min-height: 10em;
  padding: 0 0 0 2em;
  margin: 0 0 3em;
}
.user-part .moods .mood-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
}
.user-part .moods .mood-1 {
  --trfm-in: translateY(600%);
}
.user-part .moods .mood-2 {
  --trfm-in: translateY(400%);
}
.user-part .moods .mood-3 {
  --trfm-in: translateY(200%);
}
.user-part .moods .mood-5 {
  --trfm-in: translateY(-200%);
}
.user-part .moods .mood-6 {
  --trfm-in: translateY(-400%);
}
.user-part .moods .mood-7 {
  --trfm-in: translateY(-600%);
}
.user-part .moods .mood-list li:before {
  content: '';
  background: currentColor;
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  outline: 1px solid;
  outline-offset: 2px;
  transition: 0.5s;
}
.user-part .moods .mood-list li:hover:before {
  outline-offset: 5px;
}
.user-part .moods.fade-after .mood-list li:before {
  --trfm: none;
  animation: var(--animation);
  animation-fill-mode: both;
}
.user-part .moods.fade-after .mood-list li:nth-of-type(1):before {
  animation-delay: 0.4s;
}
.user-part .moods.fade-after .mood-list li:nth-of-type(2):before {
  animation-delay: 0.8s;
}
.user-part .moods.fade-after .mood-list li:nth-of-type(3):before {
  animation-delay: 1.2s;
}
.user-part .moods.fade-after .mood-list li:nth-of-type(4):before {
  animation-delay: 1.6s;
}
.user-part .moods.fade-after .mood-list li:nth-of-type(5):before {
  animation-delay: 2s;
}
.user-part .mood-list a {
  position: absolute;
  inset: auto -1em -4em;
  border-radius: 2em;
  padding: 0.5em 1em;
  background-color: hsl(var(--thyuu--color-font) / 0.1);
  box-shadow: var(--thyuu--shadow-normal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: 0.5s;
}
.user-part :is(.mood-list:not(:has(li:hover)) li:nth-of-type(1), .mood-list li:hover) a {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.user-part .place {
  flex: var(--thyuu--size-card-normal);
  min-height: var(--thyuu--size-card-normal);
  background: rgb(66 73 102 / 70%);
}
.dark-page .user-part .place {
  aspect-ratio: 1;
  flex: 100%;
}
.user-part .place.bj {
  --map: -25% 25%;
}
.user-part .place.tj {
  --map: -25% 25%;
}
.user-part .place.he {
  --map: -25% 25%;
}
.user-part .place.sx {
  --map: -17% 15%;
}
.user-part .place.im {
  --map: -15% 40%;
}
.user-part .place.ln {
  --map: -40% 30%;
}
.user-part .place.jl {
  --map: -50% 40%;
}
.user-part .place.hl {
  --map: -55% 55%;
}
.user-part .place.sh {
  --map: -35% 0%;
}
.user-part .place.js {
  --map: -35% 0%;
}
.user-part .place.zj {
  --map: -35% -10%;
}
.user-part .place.ah {
  --map: -30% 0%;
}
.user-part .place.fj {
  --map: -30% -20%;
}
.user-part .place.jx {
  --map: -25% -15%;
}
.user-part .place.sd {
  --map: -30% 15%;
}
.user-part .place.ha {
  --map: -20% 5%;
}
.user-part .place.hb {
  --map: -15% 0%;
}
.user-part .place.hn {
  --map: -15% -15%;
}
.user-part .place.gd {
  --map: -20% -30%;
}
.user-part .place.gx {
  --map: -5% -30%;
}
.user-part .place.hi {
  --map: -10% -45%;
}
.user-part .place.cq {
  --map: 0% -10%;
}
.user-part .place.sc {
  --map: 10% -10%;
}
.user-part .place.gz {
  --map: 0% -20%;
}
.user-part .place.yn {
  --map: 15% -20%;
}
.user-part .place.xz {
  --map: 50% -5%;
}
.user-part .place.sn {
  --map: -5% 10%;
}
.user-part .place.gs {
  --map: 15% 15%;
}
.user-part .place.qh {
  --map: 27% 15%;
}
.user-part .place.nx {
  --map: 0% 15%;
}
.user-part .place.xj {
  --map: 55% 30%;
}
.user-part .place.tw {
  --map: -35% -25%;
}
.user-part .place.hk {
  --map: -20% -30%;
}
.user-part .place.mo {
  --map: -20% -30%;
}
.user-part .place #china-map {
  stroke: #fff;
  opacity: 0;
  position: absolute;
  width: 100%;
  inset: 0;
  margin: auto;
  scale: 3;
  aspect-ratio: 1;
  transition: opacity 1s var(--animation-on), scale 1s var(--animation-on) 0.5s, translate 1s var(--animation-on);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.user-part .place.fade-after #china-map {
  opacity: 0.3;
  scale: 1.7;
}
.user-part .place:hover #china-map {
  scale: 3;
  opacity: 0.7;
  translate: var(--map);
  transition: opacity 1s var(--animation-on), scale 1s 0.5s cubic-bezier(0.5, 0, 0, 1), translate 1s var(--animation-on);
}
.user-part .place #china-map .st1 {
  stroke-dasharray: 4, 4;
  stroke-dashoffset: 4;
}
.user-part .place #china-map .st2 {
  stroke-dasharray: 8, 4, 4, 4;
}
.user-part .place #china-map .st3 {
  stroke: #3388ff;
}
.user-part .place #china-map .st5,
.st6 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-width: 0;
}
.user-part .place li {
  transition: opacity 1s cubic-bezier(0.5, 0, 0, 1);
}
.user-part .place:hover li {
  opacity: 0;
  transition: opacity 1s var(--animation-on) 0.5s;
}
.user-part .nature {
  display: grid;
}
.user-part .mbti {
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.user-part .mbti .nature-button a:after {
  transition: 0.5s;
}
.user-part .mbti #nature:checked ~ .info .nature-button a:after {
  transform: rotate(180deg);
}
.user-part .mbti .nature-button a:before {
  content: '查看上次结果';
}
.user-part .mbti #nature:checked ~ .info .nature-button a:before {
  content: '返回最新结果';
}
.user-part .mbti .caption {
  position: relative;
  margin: 0 0 1.5em;
  grid-area: 1 / 1 / 1 / 1;
  transition: 0.3s;
}
.user-part .mbti #nature:checked ~ .nature .caption.new,
.user-part .mbti #nature:not(:checked) ~ .nature .caption.old {
  opacity: 0;
}
.user-part .mbti .cont {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: -0.5em 0;
  padding: 1em 0;
  max-height: 7em;
  -webkit-mask: var(--thyuu--mask-scroll-y);
  overflow: auto;
}
.user-part .mbti .cont:before {
  content: var(--des);
}
.user-part .mbti .cont:after {
  content: var(--text);
}
.user-part .mbti .mbti-mg {
  position: absolute;
  width: min(20em, 60%);
  top: 0;
  right: -2em;
  aspect-ratio: 1;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
  transition: 0.5s;
}
.user-part .mbti:hover .mbti-mg {
  transform: scale(1.1);
  opacity: 1;
}
.user-part .mbti .mbti-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: 0.5s 0.2s;
  transform: scale(4);
  filter: blur(20px) brightness(0.6) opacity(0.8);
  z-index: -1;
}
.user-part .mbti .traits {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 2em;
  line-height: 1;
  z-index: 2;
}
.user-part .mbti .traits li {
  display: flex;
  align-items: center;
  gap: 1em;
}
.user-part .mbti .traits li.extraverted {
  --color: 66 152 180;
  --num: var(--extraverted, 50);
  --delay: 0.3s;
}
.user-part .mbti .traits li.intuitive {
  --color: 228 174 58;
  --num: var(--intuitive, 50);
  --delay: 0.5s;
}
.user-part .mbti .traits li.feeling {
  --color: 51 164 116;
  --num: var(--feeling, 50);
  --delay: 0.7s;
}
.user-part .mbti .traits li.judging {
  --color: 136 97 154;
  --num: var(--judging, 50);
  --delay: 0.9s;
}
.user-part .mbti .traits li.assertive {
  --color: 242 94 98;
  --num: var(--assertive, 50);
  --delay: 1.1s;
}
.user-part .mbti .traits li i {
  position: relative;
  flex: auto;
  border-radius: 1em;
  height: 1em;
  background: hsl(var(--thyuu--color-font) / 0.2);
  opacity: 0.4;
  transition: 0.5s;
}
.user-part .mbti:hover .traits li i {
  opacity: 0.8;
}
.user-part .mbti .traits li i:before,
.user-part .mbti .traits li i:after {
  content: '';
  height: 100%;
  position: absolute;
  border-radius: 1em;
  background: rgb(var(--color));
  transition: all 1s, opacity 0.3s;
}
.user-part .mbti .traits li i:before {
  width: calc(var(--num) * 1%);
  opacity: calc(var(--num) - 49);
}
.user-part .mbti .traits li i:after {
  width: calc((100 - var(--num)) * 1%);
  opacity: calc(100 - var(--num) - 49);
  right: 0;
}
.user-part .mbti:hover .traits li i:before,
.user-part .mbti:hover .traits li i:after {
  box-shadow: var(--thyuu--shadow-normal), 0 0 0 2px rgb(255 255 255 / 0.5);
  animation: traits 1s var(--animation-on) var(--delay);
}
.user-part .mbti .traits li em:nth-of-type(1):after,
.user-part .mbti .traits li em:nth-of-type(2):before {
  counter-reset: progress var(--num);
  content: counter(progress, decimal-leading-zero) '%';
  margin: 0 0.5em;
}
.user-part .mbti .traits li em:nth-of-type(2):before {
  counter-reset: progress calc(100 - var(--num));
}
/* =Footer
----------------------------------------------- */
.site-footer {
  position: relative;
  font-size: var(--thyuu--size-medium);
  padding: 0;
  border-radius: var(--thyuu--size-radius) var(--thyuu--size-radius) 0 0;
  background: var(--thyuu--color-back-have);
  -webkit-backdrop-filter: blur(1em);
  backdrop-filter: blur(1em);
  z-index: 2;
  overflow: hidden;
}
.dark-page .site-footer {
  background: 0;
}
.footer-menu {
  position: relative;
  display: flex;
  gap: var(--thyuu--size-edgelr);
  padding: var(--thyuu--size-edgelr);
  background: radial-gradient(circle at 0 50%, hsl(var(--thyuu--main-color) / 0.1) 55%, hsl(var(--thyuu--subs-color) / 0.05) 60%);
}
.footer-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: var(--thyuu--size-divs);
  flex: 2;
}
.footer-friends {
  flex: 1;
}
.footer-tens .days {
  font-size: 3em;
  -webkit-mask: linear-gradient(#000000e6, #00000080);
  color: hsl(var(--thyuu--main-color) / 0.6);
  font-family: var(--thyuu--font-family-slogn);
  line-height: 1;
}
.footer-rand {
  width: min(50em, 100%);
}
.footer-title {
  opacity: 0.6;
  margin: 0 0 1em;
  font-size: var(--thyuu--size-small);
}
.footer-rand:hover a {
  z-index: 2;
  position: relative;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--thyuu--size-span);
  padding: var(--thyuu--size-divs) var(--thyuu--size-edgelr);
  background: var(--thyuu--color-back-have);
  box-shadow: var(--thyuu--shadow-normal);
}
.footer-friends ul {
  display: grid;
  grid: auto / repeat(2, 1fr);
  gap: 0.75em;
}
.footer-friends ul li {
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.footer-friends ul li a::after {
  content: '' attr(title) '';
  font-size: var(--thyuu--size-small);
  opacity: 0.6;
  margin: 0 0 0 1em;
}
.footer-info {
  flex: auto;
  opacity: 0.5;
}
.footer-info::before {
  margin: 0 0.25em 0 0;
}
.site-link {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  align-content: center;
}
.site-link a {
  cursor: pointer;
  filter: grayscale(1) opacity(0.5);
  display: flex;
  flex-flow: nowrap row;
  align-items: center;
  white-space: nowrap;
  gap: 0 0.3em;
  line-height: 1;
  background: none;
}
.site-link a:hover {
  filter: grayscale(0) opacity(1);
}
.site-link img {
  width: auto;
  height: 1.5em;
  border-radius: 3px;
}
.site-link .icpb::before,
.site-link .gawb::before {
  content: '';
  height: 1.5em;
  width: 1.5em;
  background: url(/icpb.webp) 50% / contain;
}
.site-link .gawb::before {
  background-image: url(/gawb.webp);
}
/* =PC
----------------------------------------------- */
@media (width >= 1153px) {
  :is(.nav-style-auto, .nav-style-logo) .site-logo {
    order: 1;
  }
  .nav-style-logo .header-area .post-menu {
    display: none;
  }
  .nav-style-auto.nav-fixed:not(.nav-hided) .site-logo {
    transform: scale(0.9) translateY(-110%);
    opacity: 0;
  }
  .site-menu {
    flex: 1;
    z-index: 1;
  }
  .header-area .menu-open {
    display: none;
  }
  .menu-out {
    all: revert;
    box-sizing: border-box;
  }
  .menu-out .menu > li:before {
    content: '';
    position: fixed;
    background: var(--thyuu--color-back-have);
    inset: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: 0.5s cubic-bezier(0.6, 0.1, 0, 1);
  }
  .single:not(.nav-fixed, .single-format-image, .single-format-gallery) .menu-out .menu > li:before {
    background: #000000;
  }
  .menu-out .menu > li:hover:before {
    opacity: 0.8;
  }
  .menu-out .menu > li:hover > ul > * {
    --trfm: scaleY(0.95);
    animation: var(--animation);
    animation-duration: 0.5s;
  }
  .menu-out .menu > li > ul {
    position: fixed;
    width: var(--thyuu--size-card-normal);
    max-height: calc(100vh - var(--thyuu--size-edgetb) - var(--thyuu--size-span));
    padding: 0.5em;
    margin: 0 0 0 -2em;
    top: var(--thyuu--size-edgetb);
    outline: var(--thyuu--border);
    border-radius: var(--thyuu--size-radius);
    background: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.8));
    -webkit-backdrop-filter: blur(1em) saturate(1.5);
    backdrop-filter: blur(1em) saturate(1.5);
    box-shadow: var(--thyuu--shadow-normal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1em);
    transform-origin: top left;
    overflow: clip auto;
    z-index: 30;
    transition: 0.5s cubic-bezier(0.6, 0.1, 0, 1);
  }
  .menu-out .menu li ul > li ul > li ul {
    opacity: 0;
    min-width: 100%;
    height: 0;
    transform: perspective(2000px) rotateX(-20deg);
    transform-origin: top;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.6, 0.1, 0, 1);
  }
  .menu-out .menu li ul > li ul > li:hover > ul {
    height: fit-content;
  }
  .header-area :is(.has-tip:hover ~ .post-menu, .site-logo:hover ~ .site-icon .post-menu, .post-menu:hover) .site-title {
    --trfm: scale(1.1) translateY(110%);
  }
  .header-area .has-tip:hover ~ .post-menu .site-title {
    --opci-in: 0.3;
    animation: opacity 0.5s var(--timf) 1.25s forwards, transform 0.5s var(--timf) 1.25s forwards;
  }
  .side-count {
    position: absolute;
    inset: auto 0 -4em;
  }
  .side-count i {
    flex: none;
    padding: 0.25em 1em 0.25em 0.25em;
  }
  .side-count i:after {
    position: absolute;
    inset: auto 0 3.25em;
    text-align: center;
    background: inherit;
    border-radius: inherit;
    padding: 0.5em;
  }
  .side-count i:not(:hover):after {
    opacity: 0;
    transform: translateY(1em);
  }
  .side-count .view-count {
    margin: 0 auto 0 0;
  }
  [plots='shrink'] :is(body, .header-area, .global-panel) {
    --thyuu--size-content: var(--custom-shrink);
    max-width: var(--custom-shrink);
    margin-inline: auto;
  }
  [plots='shrink'] .taxonomy-sub {
    flex-wrap: wrap;
  }
  [plots='shrink'] .archive.author :is(.user-text, .is-user) {
    z-index: 2;
    width: fit-content;
  }
  [plots='shrink'] .single .site-header {
    --mask-bglg: none;
    position: static;
  }
  [plots='shrink'] .table-content {
    margin: auto;
  }
  /* 宽屏样式 */
  [plots='expand'] body:where(.archive, .search, .wide-page) .site-main {
    display: grid;
    grid: 'page post' minmax(calc(100vh - var(--thyuu--size-edgetb) - var(--thyuu--size-span)), max-content) / clamp(15em, 15vw, var(--thyuu--size-card-normal)) 1fr;
    gap: var(--thyuu--size-edgelr);
    place-items: stretch;
  }
  [plots='expand'] body:where(.archive, .search, .wide-page) .page-header {
    --edge: calc(var(--thyuu--size-edgetb) + var(--thyuu--size-area));
    grid-area: page;
    position: sticky;
    top: var(--edge);
    height: calc(100vh - var(--edge) * 2);
    align-content: center;
  }
  [plots='expand'] body:where(.archive:not(.author), .search, .wide-page) .page-article {
    grid-area: post;
  }
  [plots='expand'] body:where(.archive:not(.author), .search, .wide-page) .page-navigation {
    grid-area: page;
    place-self: end start;
    position: sticky;
    bottom: var(--thyuu--size-divs);
    flex-wrap: nowrap;
  }
  [plots='expand'] .taxonomy-sub {
    flex-flow: column;
    align-items: flex-start;
    margin: 0;
    mask: var(--thyuu--mask-scroll-y);
  }
  [plots='expand'] .taxonomy-sub li {
    all: unset;
    position: relative;
    color: hsl(var(--thyuu--color-font) / 0.7);
  }
  [plots='expand'] .taxonomy-sub li.current-cat {
    color: hsl(var(--thyuu--main-color) / 0.8);
  }
  [plots='expand'] .taxonomy-sub li::before {
    content: '';
    width: 6px;
    height: 150%;
    background: linear-gradient(180deg, #0000, hsl(var(--thyuu--main-color) / 20%), #0000) no-repeat center / 2px 100%,
      radial-gradient(circle, hsl(var(--thyuu--main-color) / 70%) 50%, #0000 50%) no-repeat center / 6px 6px;
    position: absolute;
    inset: 0 auto 0 calc(-1em + 2px);
    margin: auto;
    transition: 0.5s;
  }
  [plots='expand'] .taxonomy-sub li.current-cat::before,
  [plots='expand'] .taxonomy-sub li:hover::before {
    background-size: 2px 0, 12px 6px;
  }
  [plots='expand'] .page .aside-comment {
    grid-column: 2 / 3;
  }
  [plots='expand'] :where(.toggle-btn.is-user) {
    position: sticky;
    grid-area: page;
    place-self: end start;
    width: auto;
    bottom: var(--thyuu--size-divs);
  }
  [plots='expand'] :where(.toggle-area.is-user) {
    grid-area: post;
    align-self: center;
    width: auto;
  }
  [plots='expand'] .single-format-video {
    --thyuu--size-cover-top: var(--thyuu--size-edgetb);
    --thyuu--height-cover: 85vh;
    --cover-width: 30%;
    --cover-justify: center;
    --thyuu--color-back-text: var(--thyuu--color-back-white);
    --layout-position: static;
    --layout-top: var(--thyuu--size-edgelr);
  }
  [plots='expand'] .single-format-video .entry-content > p:first-of-type video,
  [plots='expand'] .single-format-video .entry-content > :is(.thyuu-video, video, *:first-of-type video):first-of-type {
    position: absolute;
    inset: calc((var(--thyuu--height-cover) + var(--thyuu--size-edgetb)) / 2) 0 0 65%;
    width: min(70% - var(--thyuu--size-edgelr) * 2, var(--thyuu--size-content));
    max-height: calc(var(--thyuu--height-cover) - var(--edge-tb) * 2);
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
  }
  .single-format-standard .entry-layout {
    margin-inline: var(--thyuu--size-edgelr);
  }
  .single-format-standard.nav-fixed .entry-layout {
    margin-inline: 0;
  }
  @supports (animation-timeline: view()) {
    .single-format-standard.nav-fixed .entry-layout {
      margin-inline: var(--thyuu--size-edgelr);
      animation: standard-entry-layout forwards;
      animation-timeline: view(block);
      animation-range: entry 50% entry 100%;
    }
    @keyframes standard-entry-layout {
      to {
        margin-inline: 0;
      }
    }
  }
  .single-format-aside .entry-layout {
    display: grid;
    grid: auto / 2fr 1fr;
  }
  .single-format-aside .aside-comment {
    position: sticky;
    top: var(--thyuu--sticky-head);
    grid-area: 1 / 2 / 3 / 3;
    padding: 1em 0.5em 1em 0;
    margin: -1em 0 -1em calc(1.5em + var(--thyuu--size-scroll));
    -webkit-mask: var(--thyuu--mask-scroll-y);
    max-height: calc(100vh - var(--thyuu--sticky-head));
    overflow: auto;
    scrollbar-color: #0000 #0000;
    transition: 0.3s;
  }
  .single-format-aside .aside-comment:hover {
    scrollbar-color: hsl(var(--thyuu--main-color) / 0.1) #0000;
  }
  .single-format-image :is(.site-header, .entry-layout) {
    width: min(var(--thyuu--size-content), 35%);
    margin-top: 1em;
    margin-inline: auto var(--thyuu--size-edgelr);
    padding: 2em;
    background: var(--thyuu--color-back-shift, hsl(0 0% 100% / 0.7));
    box-shadow: var(--thyuu--shadow-white);
    transition: 0.5s;
  }
  .single-format-image .site-header {
    margin-top: var(--thyuu--size-cover-top);
  }
  .single-format-image :is(.site-header figure, .entry-content > .wp-block-gallery:first-of-type) {
    --image-max-size: 100%;
    position: fixed;
    width: calc(100% - min(var(--thyuu--size-content), 35%) - var(--thyuu--size-edgelr) * 3);
    inset: var(--thyuu--size-cover-top) var(--thyuu--size-edgelr) var(--thyuu--size-edgelr);
    margin: 0;
    transition: 0.5s;
  }
  [plots='shrink'] .single-format-image :is(.entry-content:not(:has(.wp-block-gallery)) .site-header figure, .entry-content > .wp-block-gallery:first-of-type) {
    width: calc(var(--custom-shrink) * 0.65 - var(--thyuu--size-edgelr) * 3);
    left: calc(50% + var(--thyuu--size-edgelr) * 2);
    transform: translateX(-100%);
  }
  .single-format-image.nav-fixed :is(.site-header, .entry-layout) {
    width: min(var(--thyuu--size-content), 100%);
  }
  .single-format-image.nav-fixed :is(.site-main:not(:has(.wp-block-gallery)) .site-header figure, .entry-content > .wp-block-gallery:first-of-type) {
    width: calc(100% - min(var(--thyuu--size-content), 100%) - var(--thyuu--size-edgelr) * 3);
  }
  [plots='shrink']
    .single-format-image.nav-fixed
    :is(.entry-content:not(:has(.wp-block-gallery)) .site-header figure, .entry-content > .wp-block-gallery:first-of-type) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .single .site-header figure .no-thumbnail {
    background-size: 100%, 50%, 200%;
    animation: nothumb 60s linear infinite, opacity 1s;
  }
  .nav-fixed .site-header figure .no-thumbnail {
    animation-play-state: paused;
  }
  .single .post-meta li i {
    position: absolute;
    inset: auto 0 0;
    padding: 1em 1em 3em;
    background: var(--thyuu--color-back-font);
    border-radius: var(--thyuu--size-radius);
    -webkit-backdrop-filter: blur(1em);
    backdrop-filter: blur(1em);
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.9);
    transform-origin: bottom;
    transition: 0.3s;
  }
  .single .post-meta li:hover i {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .comment-list .comment-rating {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 1em;
    border-radius: 0 var(--thyuu--size-radius) 0 1.5em;
    background: var(--rating-bg, var(--thyuu--color-back-font));
  }
}
/* =pad及mobile
----------------------------------------------- */
@media (width <= 1152px) {
  .menu-out {
    background-image: radial-gradient(circle at 25% 65%, hsl(var(--thyuu--main-color) / 0.15), #0000 25%),
      radial-gradient(circle at 75% 35%, hsl(var(--thyuu--subs-color) / 0.15), #0000 25%);
    background-repeat: no-repeat;
    background-attachment: local;
    transform: scale(0.98);
  }
  #menu-open:checked ~ .menu-out {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-out .menu {
    grid: none;
    mask: var(--thyuu--mask-scroll-y);
    margin: -1em;
    overflow: auto;
    overscroll-behavior: contain;
  }
  .menu-out .menu li ul {
    grid: auto / repeat(auto-fill, minmax(12em, 1fr));
  }
  .menu-out .menu > li:before {
    display: none;
    pointer-events: none;
    transition: none;
  }
  .menu-out .menu > li > a {
    color: hsl(var(--thyuu--main-color) / 0.7);
    font-size: var(--thyuu--size-small);
    line-height: 1;
    margin: 1em;
    opacity: 1 !important;
  }
  .menu-out .menu > li > a::before,
  .menu-out .menu > li > a:not([href])::after {
    content: '';
    background: linear-gradient(90deg, hsl(var(--thyuu--main-color) / 20%), #0000) no-repeat 100% / 100% 2px,
      radial-gradient(circle, currentColor 50%, #0000 50%) no-repeat 0 / 6px 6px;
    flex: auto;
    height: 6px;
  }
  .menu-out .menu > li > a::before {
    transform: scaleX(-1);
    background: radial-gradient(circle, currentColor 50%, #0000 50%) no-repeat 0 / 6px 6px;
    flex: 0 0 6px;
  }
  .header-area .post-menu {
    position: static;
    flex: 1;
    order: -1;
    margin: 0 auto 0 calc(var(--thyuu--size-divs) * -1.25);
    justify-content: flex-start;
  }
  .side-area .recent-comment ul li:only-child {
    flex: auto;
  }
  .side-area .recent-comment ul {
    --line-num: 2;
    display: flex;
    row-gap: 1.75em;
    padding: 2em 1em 1em;
    margin: -1em;
    scroll-padding: 2em 1em;
    scroll-snap-type: both mandatory;
    mask: var(--thyuu--mask-scroll-x);
    overflow: auto;
    overscroll-behavior: contain;
  }
  .side-area .recent-comment:not(:has(ul li:only-child)) #recent-comment-toggle {
    display: flex;
  }
  #recent-comment-toggle {
    position: absolute;
    font-size: 1em;
    width: 2em;
    height: 2em;
    inset: 0 0.5em auto auto;
    z-index: 2;
    color: hsl(var(--thyuu--main-color) / 0.5);
    background: var(--thyuu--color-back-have);
    box-shadow: var(--thyuu--shadow-normal);
    outline: thin solid #0000;
  }
  #recent-comment-toggle:checked {
    transform: rotate(180deg) scale(1.2);
    outline-color: hsl(var(--thyuu--main-color) / 0.3);
  }
  .side-area .recent-comment #recent-comment-toggle:checked ~ ul {
    --line-num: auto;
    flex-flow: column;
    mask: linear-gradient(#0000, #000 1em, #000 calc(100% - 1em), #0000);
    max-height: calc(100vh - var(--thyuu--height-head) - 10em);
  }
  .side-area .recent-comment li {
    --avatar-size: 2em;
    gap: 0.5em;
    padding: 1em;
    flex-flow: column;
    flex: 0 0 min(var(--thyuu--size-card-normal), 100% - 4em);
    align-items: flex-start;
    justify-content: space-between;
    outline: var(--thyuu--border);
    border-radius: var(--thyuu--size-radius);
    background: var(--thyuu--color-back-font);
    box-shadow: var(--thyuu--shadow-normal);
  }
  .side-area .recent-comment li:before {
    margin: -3px var(--thyuu--size-radius) 0 6px;
  }
  .side-area .recent-comment .avatar {
    margin: -2em 0 0;
  }
  .dark-page .toggle-area.is-user {
    width: 100%;
  }
  .side-area .calendar {
    flex-grow: 1;
  }
  .user-text {
    animation-delay: 2s;
  }
  .user-pic img {
    --trfm-or: top;
    --trfm: scale(1.5);
    margin-block: 0;
    border-radius: 0;
    z-index: 0;
    width: 100%;
    height: 65%;
    animation: transform 3s, onwidth 3s, opacity 1.5s;
    -webkit-mask: linear-gradient(#000 50%, #0000);
  }
  .nav-fixed .user-pic img {
    filter: brightness(0.5) !important;
    height: 100%;
  }
  .aside-author {
    --order: -1;
    --ontop: -6em;
    --avata: 100%;
    --right: flex-start;
    margin: 5em 0 0;
    gap: 2em 5em;
  }
  .single .post-meta ul {
    flex: calc(100% + var(--thyuu--size-edgelr) * 2);
    flex-wrap: nowrap;
    margin: calc(var(--thyuu--size-edgelr) * -1);
    padding: var(--thyuu--size-edgelr);
    scroll-snap-type: x mandatory;
    scroll-padding: var(--thyuu--size-divs);
    overflow: scroll visible;
  }
  .single .post-meta ul li {
    padding: 1.25em;
  }
  .single .site-header hgroup::before {
    --back: linear-gradient(#0000, #000 50%);
    inset: -50% calc(var(--thyuu--size-edgelr) * -1) calc(var(--thyuu--size-edgelr) * -2);
  }
  .comment-reply-link {
    margin: 0 0 0 auto;
  }
  .footer-menu {
    flex-flow: column;
    background: radial-gradient(circle at 50% 0%, hsl(var(--thyuu--main-color) / 0.1) 50%, hsl(var(--thyuu--subs-color) / 0.05) 60%);
  }
}
/* =mobile
----------------------------------------------- */
@media (width <= 641px) {
  .thyuu-dialog {
    inset: auto 0.5em 0.5em;
    width: auto;
    max-width: 100%;
    max-height: calc(100% - var(--thyuu--height-head) - 0.5em);
    border-radius: 2em;
    transform: scaleX(0.95) translateY(100%);
    transition: 0.5s cubic-bezier(0.6, 0.1, 0, 1);
  }
  .nav-fixed :is(.menu-out, .table-content) {
    padding-bottom: 4rem;
  }
  .nav-fixed .header-area {
    --header-bg-transform: translateY(100%);
    inset: auto 0.5em 0.5em;
    border-radius: 2em;
    gap: 0;
  }
  .nav-fixed .header-area .site-logo {
    position: fixed;
    top: 1em;
    left: var(--thyuu--size-edgelr);
  }
  .nav-fixed .header-area .site-icon {
    justify-content: space-between;
  }
  .menu-out .menu li ul {
    grid: none;
  }
  .header-area .post-menu,
  body:not(.nav-fixed) .header-area .site-icon .only-post {
    display: none;
    pointer-events: none;
    transition: none;
  }
  .nav-fixed .global-panel {
    --thyuu--height-head: 0.5em;
    z-index: 29;
  }
  .global-panel-btn.open {
    --thyuu--color-font: var(--thyuu--main-color);
    color: hsl(var(--thyuu--color-font) / 0.6);
    z-index: 30;
  }
  .global-panel-btn :is(.thyuu-block, .recent-comment li) {
    max-height: none;
    animation: none;
  }
  .side-area {
    margin: 0 -1em;
    padding: 1em;
  }
  .toggle-btn.is-sidebar {
    margin: 0 -0.725em -0.725em;
  }
  .nav-fixed .toggle-btn.is-sidebar {
    padding-right: 4.5em;
  }
  .side-come :is(.welcome-tip, .search-form) {
    flex: 100%;
    padding: 0.5em 0 0;
    outline: 0;
    background: 0 !important;
  }
  .single .post-navigation {
    grid-auto-flow: column;
  }
  .nav-fixed #cover-map.full-screen .amap-controls {
    bottom: calc(var(--thyuu--height-head) + 2em);
  }
  .single .post-meta #speech-btn {
    flex: 1;
  }
  .footer-bottom {
    padding-bottom: calc(var(--thyuu--size-edgetb) + var(--thyuu--size-divs));
  }
}
