:root {
  --wy-bg: #f2f2f0;
  --wy-surface: #fafafa;
  --wy-text: #171717;
  --wy-muted: #525252;
  --wy-border: #cfcfcd;
  --wy-link: #0f3d6b;
  --wy-link-hover: #0a2847;
  --wy-link-underline: rgba(15, 61, 107, 0.35);
  --wy-link-underline-hover: rgba(15, 61, 107, 0.52);
  --wy-warm: #9e5b4c;
  --wy-warm-soft: rgba(158, 91, 76, 0.14);
  --wy-marker: #a3a3a3;
  --wy-avatar-frame-tl: rgba(193, 92, 65, 0.16);
  --wy-avatar-frame-br: rgba(255, 252, 250, 0.92);
  --wy-avatar-shadow: 0 12px 40px rgba(28, 27, 26, 0.09), 0 4px 14px rgba(158, 91, 76, 0.1);
  --wy-avatar-shadow-hover: 0 16px 48px rgba(28, 27, 26, 0.11), 0 6px 20px rgba(158, 91, 76, 0.14);
  --wy-sidebar-w: 248px;
  --wy-main-pad-l: 2.25rem;
  --wy-page-max: 58rem;
  --wy-font-body: "Source Sans 3", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --wy-font-display: "Source Serif 4", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --wy-bg: #1c1b1a;
    --wy-surface: #262524;
    --wy-text: #f2f0ec;
    --wy-muted: #a8a39e;
    --wy-border: #3f3c39;
    --wy-link: #9ec5e8;
    --wy-link-hover: #f4d4c4;
    --wy-link-underline: rgba(158, 197, 232, 0.42);
    --wy-link-underline-hover: rgba(244, 212, 196, 0.55);
    --wy-warm: #e8b4a0;
    --wy-warm-soft: rgba(232, 180, 160, 0.14);
    --wy-marker: #6b6560;
    --wy-avatar-frame-tl: rgba(232, 180, 160, 0.24);
    --wy-avatar-frame-br: rgba(42, 40, 38, 0.96);
    --wy-avatar-shadow: 0 12px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 180, 160, 0.1), 0 4px 20px rgba(232, 180, 160, 0.07);
    --wy-avatar-shadow-hover: 0 16px 52px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 180, 160, 0.16), 0 6px 24px rgba(232, 180, 160, 0.1);
  }
}

:root[data-theme="light"] {
  --wy-bg: #f2f2f0;
  --wy-surface: #fafafa;
  --wy-text: #171717;
  --wy-muted: #525252;
  --wy-border: #cfcfcd;
  --wy-link: #0f3d6b;
  --wy-link-hover: #0a2847;
  --wy-link-underline: rgba(15, 61, 107, 0.35);
  --wy-link-underline-hover: rgba(15, 61, 107, 0.52);
  --wy-warm: #9e5b4c;
  --wy-warm-soft: rgba(158, 91, 76, 0.14);
  --wy-marker: #a3a3a3;
  --wy-avatar-frame-tl: rgba(193, 92, 65, 0.16);
  --wy-avatar-frame-br: rgba(255, 252, 250, 0.92);
  --wy-avatar-shadow: 0 12px 40px rgba(28, 27, 26, 0.09), 0 4px 14px rgba(158, 91, 76, 0.1);
  --wy-avatar-shadow-hover: 0 16px 48px rgba(28, 27, 26, 0.11), 0 6px 20px rgba(158, 91, 76, 0.14);
}

:root[data-theme="dark"] {
  --wy-bg: #1c1b1a;
  --wy-surface: #262524;
  --wy-text: #f2f0ec;
  --wy-muted: #a8a39e;
  --wy-border: #3f3c39;
  --wy-link: #9ec5e8;
  --wy-link-hover: #f4d4c4;
  --wy-link-underline: rgba(158, 197, 232, 0.42);
  --wy-link-underline-hover: rgba(244, 212, 196, 0.55);
  --wy-warm: #e8b4a0;
  --wy-warm-soft: rgba(232, 180, 160, 0.14);
  --wy-marker: #6b6560;
  --wy-avatar-frame-tl: rgba(232, 180, 160, 0.24);
  --wy-avatar-frame-br: rgba(42, 40, 38, 0.96);
  --wy-avatar-shadow: 0 12px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 180, 160, 0.1), 0 4px 20px rgba(232, 180, 160, 0.07);
  --wy-avatar-shadow-hover: 0 16px 52px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 180, 160, 0.16), 0 6px 24px rgba(232, 180, 160, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  scroll-padding-top: 0.75rem;
}

body.wy-home-body {
  margin: 0;
  min-height: 100vh;
  background: var(--wy-bg);
  color: var(--wy-text);
  font-family: var(--wy-font-body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.2s ease;
}

.wy-home-body a {
  color: var(--wy-link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.wy-home-body a:hover {
  color: var(--wy-link-hover);
  border-bottom-color: var(--wy-link-underline-hover);
}

.wy-home {
  max-width: var(--wy-page-max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: var(--wy-sidebar-w) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.wy-sidebar {
  position: sticky;
  top: 1.25rem;
  align-self: start;
  padding-right: 1.5rem;
}

.wy-sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.wy-hero-avatar-wrap {
  width: 100%;
  max-width: 172px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(152deg, var(--wy-avatar-frame-tl), var(--wy-avatar-frame-br));
  box-shadow: var(--wy-avatar-shadow);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}

.wy-hero-avatar-wrap:hover {
  box-shadow: var(--wy-avatar-shadow-hover);
}

.wy-hero-avatar {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 999px;
  border: none;
  background: var(--wy-surface);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: filter 0.45s ease, box-shadow 0.35s ease;
}

.wy-hero-avatar-wrap:hover .wy-hero-avatar {
  filter: brightness(1.04) saturate(1.02);
}

@media (prefers-color-scheme: dark) {
  .wy-hero-avatar {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  }

  .wy-main-wrap {
    border-left-color: rgba(232, 180, 160, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.wy-home-body,
  .wy-hero-avatar-wrap,
  .wy-hero-avatar {
    transition: none;
  }

  .wy-hero-avatar-wrap:hover .wy-hero-avatar {
    filter: none;
  }
}

.wy-sidebar h1 {
  font-family: var(--wy-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--wy-text);
}

.wy-sidebar-role {
  margin: 0 0 2px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wy-text);
  line-height: 1.4;
}

.wy-sidebar-affil {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--wy-muted);
  line-height: 1.45;
}

.wy-sidebar-email {
  font-size: 0.86rem;
  color: var(--wy-muted);
  margin: 0 0 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  word-break: break-all;
}

.wy-sidebar-links {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--wy-muted);
  line-height: 1.5;
}

.wy-sidebar-links a {
  display: block;
  font-weight: 500;
  border-bottom-color: var(--wy-link-underline);
}

.wy-sidebar-links a:hover {
  color: var(--wy-warm);
  border-bottom-color: var(--wy-warm-soft);
}

.wy-theme-switcher {
  margin: 0;
}

.wy-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: 1px solid var(--wy-border);
}

.wy-main .wy-section-head h2 {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.wy-theme-btn {
  font-family: var(--wy-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wy-muted);
  background: var(--wy-surface);
  border: 1px solid var(--wy-border);
  border-radius: 999px;
  padding: 3px 8px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.wy-theme-btn:hover {
  color: var(--wy-warm);
  border-color: var(--wy-warm);
  background: var(--wy-warm-soft);
}

.wy-side-nav {
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid var(--wy-border);
}

.wy-side-nav-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wy-muted);
  margin: 0 0 8px;
}

.wy-side-nav ul,
.wy-research-list,
.wy-plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wy-side-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wy-side-nav a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wy-muted);
  padding: 3px 0;
  border-bottom: none;
}

.wy-side-nav a:hover {
  color: var(--wy-warm);
}

.wy-main-wrap {
  border-left: 1px solid var(--wy-border);
  padding-left: var(--wy-main-pad-l);
  min-width: 0;
  transition: border-color 0.2s ease;
}

.wy-main {
  max-width: 38rem;
  padding-top: 2px;
}

.wy-main section {
  margin-bottom: 2.1rem;
}

.wy-main section h2 {
  font-family: var(--wy-font-display);
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: 1px solid var(--wy-border);
  color: var(--wy-text);
  letter-spacing: -0.02em;
}

.wy-prose {
  font-size: 0.98rem;
  color: var(--wy-text);
  line-height: 1.72;
}

.wy-prose strong,
.wy-prose b {
  font-weight: 600;
}

.wy-publications-root {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wy-pub-year-heading {
  font-family: var(--wy-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.35rem 0 6px;
  padding: 0 0 4px;
  border-bottom: 1px solid var(--wy-border);
  color: var(--wy-text);
}

.wy-publications-root .wy-pub-year-heading:first-of-type {
  margin-top: 0;
}

ul.wy-research-list > li.wy-pub-entry {
  display: grid;
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--wy-border);
}

ul.wy-research-list > li.wy-pub-entry:last-child {
  border-bottom: none;
}

.wy-pub-thumb {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--wy-border);
  background: var(--wy-surface);
  aspect-ratio: 4 / 3;
}

.wy-pub-thumb img,
.wy-pub-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wy-pub-main {
  min-width: 0;
}

.wy-pub-title {
  font-family: var(--wy-font-display);
  font-weight: 600;
  font-size: 0.98rem;
  margin: 0 0 5px;
  line-height: 1.36;
  color: var(--wy-text);
}

.wy-pub-title a {
  color: inherit;
  border-bottom: none;
}

.wy-pub-title a:hover {
  color: var(--wy-link-hover);
}

.wy-pub-authors {
  font-size: 0.88rem;
  color: var(--wy-muted);
  margin: 0 0 3px;
  line-height: 1.52;
}

.wy-pub-authors strong {
  color: var(--wy-text);
}

.wy-pub-venue {
  font-size: 0.86rem;
  font-style: italic;
  margin: 0;
  color: var(--wy-muted);
}

.wy-pub-links {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: var(--wy-muted);
}

.wy-pub-links span {
  margin: 0 0.35rem;
  color: var(--wy-marker);
}

.wy-pub-links a {
  border-bottom-color: var(--wy-link-underline);
}

.wy-plain-list {
  list-style: disc;
  margin: 0;
  padding: 0 0 0 1.25rem;
}

.wy-plain-list li {
  display: list-item;
  padding: 4px 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--wy-text);
}

.wy-plain-list li::marker {
  color: var(--wy-marker);
}

.wy-site-footer {
  margin-top: 2.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wy-border);
  font-size: 0.84rem;
  color: var(--wy-muted);
}

@media (max-width: 860px) {
  .wy-home {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.15rem 3rem;
    gap: 1.5rem;
  }

  .wy-sidebar {
    position: static;
    padding-right: 0;
    border-bottom: 1px solid var(--wy-border);
    padding-bottom: 1.25rem;
  }

  .wy-sidebar-inner {
    align-items: center;
    text-align: center;
  }

  .wy-side-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
  }

  .wy-side-nav .wy-side-nav-title {
    text-align: center;
    width: 100%;
  }

  .wy-main-wrap {
    border-left: none;
    padding-left: 0;
  }

  .wy-main {
    max-width: none;
  }

  .wy-section-head {
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  ul.wy-research-list > li.wy-pub-entry {
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 10px 12px;
  }
}

@media (max-width: 520px) {
  ul.wy-research-list > li.wy-pub-entry {
    grid-template-columns: 1fr;
  }

  .wy-pub-thumb {
    max-width: 200px;
  }
}

@media (max-width: 640px) {
}

@media (max-width: 520px) {
}
