:root {
  --a11y-font-scale: 1;
  --a11y-line-height: 1.7;
  --a11y-spacing: 24px;
  --a11y-focus-color: #ff8c00;
  --a11y-toolbar-bg: rgba(0, 96, 60, 0.95);
  --a11y-toolbar-text: #ffffff;
  --a11y-toolbar-accent: #ffd866;
}

.a11y-entry-button {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 9998;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007a4d, #00a16c);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  padding: 12px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.a11y-entry-button:focus-visible {
  outline: 3px solid var(--a11y-focus-color);
  outline-offset: 4px;
}

body.a11y-mode {
  font-size: calc(16px * var(--a11y-font-scale));
  line-height: var(--a11y-line-height);
  letter-spacing: 0.02em;
  background-color: #ffffff;
  color: #1b1b1b;
}

body.a11y-mode p,
body.a11y-mode li,
body.a11y-mode dd,
body.a11y-mode dt,
body.a11y-mode td,
body.a11y-mode th {
  line-height: var(--a11y-line-height);
  margin-bottom: var(--a11y-spacing);
}

body.a11y-mode h1,
body.a11y-mode h2,
body.a11y-mode h3,
body.a11y-mode h4,
body.a11y-mode h5,
body.a11y-mode h6 {
  margin-top: calc(var(--a11y-spacing) * 1.2);
  margin-bottom: calc(var(--a11y-spacing) * 0.6);
  font-weight: 700;
}

body.a11y-mode .container,
body.a11y-mode .container-fluid {
  max-width: 1040px;
  padding-left: 24px;
  padding-right: 24px;
}

body.a11y-mode .nav-wp .nav > ul > li > a,
body.a11y-mode #header-2 .nav-2 > ul > li > a {
  font-size: 18px;
  padding: 14px 18px;
}

body.a11y-mode .nav-wp {
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

body.a11y-mode .nav-wp .nav > ul > li > ul > li > a,
body.a11y-mode #header-2 .nav-2 > ul > li > ul > li > a {
  font-size: 18px;
  padding: 12px 18px;
}

body.a11y-mode .btn,
body.a11y-mode button,
body.a11y-mode input[type="button"],
body.a11y-mode input[type="submit"],
body.a11y-mode input[type="reset"] {
  min-height: 44px;
  min-width: 120px;
  font-size: 18px;
  border-radius: 8px;
}

body.a11y-mode :focus-visible {
  outline: 2px solid var(--a11y-focus-color) !important;
  outline-offset: 5px;
  box-shadow: none !important;
}

body.a11y-mode main,
body.a11y-mode .main,
body.a11y-mode .content,
body.a11y-mode .article-content {
  padding-top: 24px;
  padding-bottom: 24px;
}

body.a11y-mode a {
  color: #005f3b;
  font-weight: 600;
}

body.a11y-mode a:hover {
  text-decoration: underline;
}

body.a11y-theme-high-contrast {
  background-color: #000000;
  color: #ffffff;
}

body.a11y-theme-high-contrast a {
  color: #ffd200;
}

body.a11y-theme-high-contrast .nav-wp,
body.a11y-theme-high-contrast #header,
body.a11y-theme-high-contrast #footer,
body.a11y-theme-high-contrast .header-1,
body.a11y-theme-high-contrast .nav-2,
body.a11y-theme-high-contrast .main {
  background-color: #000000;
}

body.a11y-theme-high-contrast .nav-wp .nav > ul > li > a,
body.a11y-theme-high-contrast #header-2 .nav-2 > ul > li > a {
  color: #ffffff;
}

body.a11y-theme-high-contrast .nav-wp .nav > ul > li > a:hover,
body.a11y-theme-high-contrast #header-2 .nav-2 > ul > li > a:hover {
  background-color: #1f1f1f;
}

body.a11y-theme-eye-care {
  background-color: #f7f2e8;
  color: #2a2a2a;
}

body.a11y-theme-eye-care a {
  color: #8c5800;
}

body.a11y-theme-eye-care .nav-wp,
body.a11y-theme-eye-care #header,
body.a11y-theme-eye-care #footer,
body.a11y-theme-eye-care .header-1,
body.a11y-theme-eye-care .nav-2 {
  background-color: #f3e7d1;
}

.a11y-toolbar {
  position: fixed;
  top: 120px;
  right: 24px;
  width: 220px;
  padding: 16px;
  border-radius: 20px;
  background: var(--a11y-toolbar-bg);
  color: var(--a11y-toolbar-text);
  z-index: 9999;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  display: none;
  flex-direction: column;
  gap: 12px;
}

body.a11y-mode .a11y-toolbar {
  display: flex;
}

.a11y-toolbar__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.a11y-toolbar__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.a11y-toolbar__group-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.a11y-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.a11y-toolbar button {
  flex: 1 1 98px;
  min-height: 50px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.a11y-toolbar button:hover,
.a11y-toolbar button:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.a11y-toolbar button[aria-pressed="true"] {
  background: var(--a11y-toolbar-accent);
  color: #2a2a2a;
}

.a11y-toolbar__utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.a11y-toolbar__utilities button {
  flex: 1 1 calc(50% - 8px);
}

.a11y-toolbar__subtitle {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.8;
}

.a11y-toolbar__close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  font-size: 20px;
}

.a11y-toolbar__alert {
  font-size: 13px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

#a11y-reading-guide {
  position: fixed;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 216, 102, 0.25);
  pointer-events: none;
  z-index: 9997;
  display: none;
  transition: transform 0.08s linear;
}

body.a11y-mode.a11y-reading-guide-active #a11y-reading-guide {
  display: block;
}

#a11y-cursor-spotlight {
  position: fixed;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255, 216, 102, 0.65);
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.35);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9996;
  display: none;
  transition: transform 0.08s linear;
}

body.a11y-mode.a11y-spotlight-active #a11y-cursor-spotlight {
  display: block;
}

.a11y-toolbar__hint {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.75;
}

.a11y-toolbar__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 0;
}

.a11y-toolbar__shortcut {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 6px;
  border-radius: 8px;
  margin-left: 6px;
}

.a11y-voice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #005f3b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.a11y-voice-btn:hover,
.a11y-voice-btn:focus-visible {
  background: #007a4d;
}

body.a11y-mode .a11y-voice-btn {
  margin-top: 8px;
}

.a11y-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1200px) {
  .a11y-toolbar {
    right: 12px;
    top: 92px;
  }

  .a11y-entry-button {
    right: 12px;
    bottom: 80px;
  }
}

@media (max-width: 768px) {
  .a11y-toolbar {
    width: 88%;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 24px;
    flex-direction: column;
    padding: 18px;
    gap: 14px;
  }

  .a11y-entry-button {
    bottom: 24px;
  }
}
.text-c { margin:30px 0;}
.text-c > *{
	position: relative;
	float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #c61000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.text-c .a1{
	z-index: 3;
    color: #c61000;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
}
.text-c .a2:hover, .a1[href]:hover{
    cursor: default;
	background-color: #eee;
}

/* 针对 JS 动态添加的 current-page 类写样式 */
#pages_yh > span.current-page {
	z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #c61000;
    border-color: #c61000;
}