/* 农历工具集 · 站点首页（门户式导航 + 愿景头图） */

:root {

  --page-max: 1080px;

  --page-pad-x: 20px;

  --nav-blue: #2d6cdf;

  --nav-blue-hover: #3b77e7;

  --nav-blue-dark: #1e5bb8;

  --red-main: #4c1d95;

  --red-dark: #1e3a8a;

  --gold: #c9a227;

  --gold-light: #e8d48b;

  --cream: #f4f6f9;

  --text: #1f2937;

  --text-soft: #6b7280;

  --font-sans: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", system-ui, sans-serif;

}



*,

*::before,

*::after {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

}



body {

  margin: 0;

  min-height: 100vh;

  font-family: var(--font-sans);

  color: var(--text);

  background: var(--cream);

}



/* —— 愿景头图 + 背景特效层 —— */

.hero-vision {

  position: relative;

  min-height: clamp(220px, 32vh, 380px);

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 36px 0 40px;

}



.hero-base {

  position: absolute;

  inset: 0;

  z-index: 0;

  background: #060a12;

  pointer-events: none;

}



.hero-gradient {

  position: absolute;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  background:

    radial-gradient(ellipse 120% 80% at 50% 100%, rgba(45, 108, 223, 0.42) 0%, transparent 58%),

    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(232, 212, 139, 0.14) 0%, transparent 48%),

    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 42%),

    linear-gradient(165deg, #0c1222 0%, #151b2e 35%, #1a2744 70%, #0f1729 100%);

  animation: heroGradientShift 18s ease-in-out infinite alternate;

}



.hero-canvas {

  position: absolute;

  inset: 0;

  z-index: 1;

  width: 100%;

  height: 100%;

  display: block;

  pointer-events: none;

  mix-blend-mode: screen;

  opacity: 0.52;

}



.hero-fx {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  overflow: hidden;

}



.hero-fx-aurora {

  position: absolute;

  width: 150%;

  height: 70%;

  left: -25%;

  top: -15%;

  background:

    radial-gradient(ellipse 45% 55% at 28% 45%, rgba(59, 119, 231, 0.35) 0%, transparent 60%),

    radial-gradient(ellipse 40% 50% at 72% 55%, rgba(201, 162, 39, 0.18) 0%, transparent 55%),

    radial-gradient(ellipse 35% 45% at 50% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);

  filter: blur(48px);

  opacity: 0.85;

  animation: heroAurora 14s ease-in-out infinite alternate;

}



.hero-fx-grid {

  position: absolute;

  inset: 0;

  background-image: repeating-linear-gradient(

    0deg,

    transparent,

    transparent 3px,

    rgba(255, 255, 255, 0.035) 3px,

    rgba(255, 255, 255, 0.035) 4px

  );

  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 25%, rgba(0, 0, 0, 0.9) 75%, transparent 100%);

  mask-size: 100% 100%;

  animation: heroGridDrift 24s linear infinite;

  opacity: 0.65;

}



@keyframes heroGradientShift {

  0% {

    filter: hue-rotate(0deg) brightness(1);

  }

  100% {

    filter: hue-rotate(12deg) brightness(1.06);

  }

}



@keyframes heroAurora {

  0% {

    transform: translate(-4%, 0) scale(1);

    opacity: 0.65;

  }

  100% {

    transform: translate(6%, 4%) scale(1.06);

    opacity: 0.95;

  }

}



@keyframes heroGridDrift {

  0% {

    transform: translateY(0);

  }

  100% {

    transform: translateY(24px);

  }

}



@keyframes heroEnter {

  from {

    opacity: 0;

    transform: translateY(16px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



@keyframes heroTitleGlow {

  0%,

  100% {

    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 28px rgba(99, 102, 241, 0.15);

  }

  50% {

    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35), 0 0 40px rgba(129, 140, 248, 0.22);

  }

}



@keyframes heroGoldShimmer {

  0% {

    background-position: 0% 50%;

  }

  100% {

    background-position: 200% 50%;

  }

}



.hero-inner {

  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: center;

  max-width: min(var(--page-max), 100%);

  padding: 0 var(--page-pad-x);

  margin: 0 auto;

  box-sizing: border-box;

  text-align: center;

}



.hero-company {

  margin: 0 0 14px;

  font-size: clamp(17px, 2.85vw, 24px);

  font-weight: 700;

  letter-spacing: 0.18em;

  color: rgba(232, 212, 139, 0.95);

  text-transform: none;

  animation: heroEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;

}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {

  .hero-company {

    background: linear-gradient(

      100deg,

      #b8860b 0%,

      #f5e6b8 22%,

      #fff9e8 42%,

      #e8d48b 52%,

      #c9a227 65%,

      #f5e6b8 100%

    );

    background-size: 220% auto;

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    animation: heroEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) both, heroGoldShimmer 9s ease-in-out infinite;

    animation-delay: 0s, 0.6s;

  }

}



.hero-title {

  margin: 0 0 22px;

  font-family: "Noto Serif SC", "SimSun", "Songti SC", serif;

  font-size: clamp(11px, 1.93vw, 18px);

  font-weight: 700;

  letter-spacing: 0.1em;

  line-height: 1.35;

  color: #fff;

  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 28px rgba(99, 102, 241, 0.15);

  animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both, heroTitleGlow 6s ease-in-out infinite 1s;

}



.hero-copy {

  width: 100%;

  max-width: min(840px, 100%);

  margin: 20px auto 0;

  padding: 14px 0 2px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  animation: heroEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;

}



.hero-slogan {

  margin: 0 0 10px;

  font-size: clamp(12px, 1.9vw, 14px);

  line-height: 1.68;

  color: rgba(226, 232, 240, 0.88);

  letter-spacing: 0.03em;

  text-wrap: pretty;

}



.hero-hint {

  margin: 0;

  font-size: clamp(10px, 1.38vw, 11.5px);

  line-height: 1.65;

  color: rgba(163, 176, 198, 0.95);

  text-wrap: pretty;

}



.hero-hint strong {

  color: var(--gold-light);

  font-weight: 700;

}



@media (prefers-reduced-motion: reduce) {

  .hero-gradient {

    animation: none;

    filter: none;

  }

  .hero-canvas {

    opacity: 0.3;

    mix-blend-mode: normal;

  }

  .hero-fx-aurora,

  .hero-fx-grid {

    animation: none;

  }

  .hero-fx-aurora {

    transform: none;

    opacity: 0.5;

  }

  .hero-fx-grid {

    transform: none;

  }

  .hero-company,

  .hero-title,

  .hero-copy {

    animation: none;

  }

  .hero-company {

    background: none;

    -webkit-background-clip: unset;

    background-clip: unset;

    color: rgba(232, 212, 139, 0.95);

  }

  .hero-title {

    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);

  }

  .matrix-card:hover {

    transform: none;

  }

  .highlight-tile:hover {

    transform: none;

  }

}



/* —— 门户式横向导航（仿主流资讯站频道条） —— */

.portal-nav {

  background: var(--nav-blue);

  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);

  position: sticky;

  top: 0;

  z-index: 100;

}



.portal-nav-inner {

  display: flex;

  flex-wrap: nowrap;

  align-items: stretch;

  justify-content: flex-start;

  gap: 0;

  max-width: min(var(--page-max), 100%);

  margin: 0 auto;

  padding: 0 var(--page-pad-x);

  box-sizing: border-box;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;

  scrollbar-color: rgba(255, 255, 255, 0.35) transparent;

}



.portal-nav-inner::-webkit-scrollbar {

  height: 4px;

}



.portal-nav-inner::-webkit-scrollbar-thumb {

  background: rgba(255, 255, 255, 0.35);

  border-radius: 2px;

}



.portal-item {

  flex: 1 0 auto;

  min-width: max-content;

  padding: 12px 16px;

  font-family: inherit;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: 0.02em;

  color: #fff;

  background: transparent;

  border: none;

  border-right: 1px solid rgba(255, 255, 255, 0.12);

  cursor: pointer;

  white-space: nowrap;

  transition: background 0.15s ease, color 0.15s ease;

}



.portal-item:last-child {

  border-right: none;

}



.portal-item:hover {

  background: var(--nav-blue-hover);

  color: #fff;

}



.portal-item:active {

  background: var(--nav-blue-dark);

}



.site-main {

  max-width: min(var(--page-max), 100%);

  margin: 0 auto;

  padding: 28px var(--page-pad-x) 48px;

  box-sizing: border-box;

}



/* —— 主体内容板块（门户式信息架构） —— */

.content-section {

  margin-bottom: 32px;

}



.content-section--panel {

  position: relative;

  overflow: hidden;

  padding: 26px 22px 30px;

  border: 1px solid rgba(45, 108, 223, 0.12);

  border-radius: 12px;

  box-shadow:

    0 1px 0 rgba(255, 255, 255, 0.9) inset,

    0 10px 36px rgba(45, 108, 223, 0.07);

  background-color: #e9f0fa;

  background-image:

    radial-gradient(circle at 1px 1px, rgba(45, 108, 223, 0.11) 1px, transparent 0),

    radial-gradient(ellipse 95% 70% at 92% 8%, rgba(59, 119, 231, 0.14) 0%, transparent 58%),

    radial-gradient(ellipse 75% 55% at 5% 92%, rgba(201, 162, 39, 0.1) 0%, transparent 55%),

    linear-gradient(165deg, #f3f7fe 0%, #e8f0fa 42%, #eef3fb 100%);

  background-size: 22px 22px, auto, auto, auto;

}



.content-section--panel > * {

  position: relative;

  z-index: 1;

}



.content-section--panel::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%232d6cdf' stroke-opacity='0.09' stroke-width='0.8'%3E%3Cpath d='M20 40 L80 20 L120 70 L60 120 Z'/%3E%3Ccircle cx='80' cy='70' r='3' fill='%232d6cdf' fill-opacity='0.12'/%3E%3C/g%3E%3C/svg%3E");

  background-size: 200px 200px;

  opacity: 0.85;

  pointer-events: none;

  z-index: 0;

}



.content-section--panel::after {

  content: "";

  position: absolute;

  right: -6%;

  top: 50%;

  width: 38%;

  height: 120%;

  transform: translateY(-50%);

  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.09) 0%, transparent 72%);

  pointer-events: none;

  z-index: 0;

}



@media (prefers-reduced-motion: reduce) {

  .content-section--panel {

    background-image: none;

    background-color: #f0f4fc;

  }

  .content-section--panel::before,

  .content-section--panel::after {

    opacity: 0.35;

  }

}



.content-section--about-split.content-section--panel {

  background-color: #e8eef8;

  background-image: linear-gradient(155deg, #f3f7fd 0%, #e7eff9 100%);

  background-size: auto;

}



.content-section--about-split.content-section--panel::before {

  opacity: 0.32;

}



.content-section--about-split.content-section--panel::after {

  opacity: 0.2;

}



.content-section--about-split .content-section-title {

  margin-bottom: 16px;

}



.about-split {

  display: grid;

  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);

  gap: 0;

  align-items: stretch;

  border-radius: 10px;

  overflow: hidden;

  border: 1px solid rgba(45, 108, 223, 0.14);

  box-shadow: 0 4px 26px rgba(15, 23, 42, 0.07);

  background: #fff;

}



.about-split-media {

  position: relative;

  min-height: clamp(168px, 22vw, 208px);

  background-color: #0f172a;

  background-image:

    url("assets/beijing1.jpg"),

    url("assets/beijing1.png"),

    linear-gradient(145deg, #0f172a 0%, #1e3a8a 48%, #172554 100%);

  background-size: cover, cover, cover;

  background-position: center, center, center;

  background-repeat: no-repeat, no-repeat, no-repeat;

}



.about-split-body {

  padding: 18px 22px 20px;

  background: linear-gradient(180deg, #fdfeff 0%, #f4f8fc 100%);

  display: flex;

  align-items: center;

}



.about-split-body .content-prose {

  width: 100%;

  max-width: none;

  margin: 0;

}



@media (max-width: 720px) {

  .about-split {

    grid-template-columns: 1fr;

  }

  .about-split-media {

    min-height: 140px;

    max-height: 200px;

  }

  .about-split-body {

    padding: 16px 18px 18px;

  }

}



.content-section--panel-alt {

  padding: 26px 22px 30px;

  background: #f7f9fc;

  border: 1px solid rgba(15, 23, 42, 0.07);

  border-radius: 12px;

}



.content-section--matrix {

  margin-bottom: 36px;

  padding: 4px 0 8px;

  border-radius: 14px;

  background: linear-gradient(165deg, #eef1f8 0%, #f4f6fb 42%, var(--cream) 100%);

}



.content-section--matrix .content-section-title {

  margin-bottom: 10px;

}



.content-section--matrix .content-section-lead {

  margin-bottom: 20px;

}



.content-section-title {

  margin: 0 0 14px;

  padding-left: 12px;

  border-left: 4px solid var(--nav-blue);

  font-size: 18px;

  font-weight: 700;

  color: var(--text);

  letter-spacing: 0.06em;

  line-height: 1.35;

}



.content-section-lead {

  margin: 0 0 18px;

  font-size: 13px;

  line-height: 1.75;

  color: var(--text-soft);

}



.content-prose p {

  margin: 0 0 12px;

  font-size: 14px;

  line-height: 1.85;

  color: var(--text);

  text-align: justify;

  text-justify: inter-ideograph;

  text-indent: 2em;

}



.content-prose p:last-child {

  margin-bottom: 0;

}



.content-prose strong {

  color: var(--red-main);

  font-weight: 700;

}



.content-matrix {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));

  gap: 16px;

  align-items: stretch;

}



@media (min-width: 960px) {

  .content-matrix {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



.matrix-card {

  --card-a: var(--nav-blue);

  --ca-r: 45;

  --ca-g: 108;

  --ca-b: 223;

  display: flex;

  flex-direction: column;

  min-height: 100%;

  padding: 18px 18px 16px;

  text-align: center;

  background: linear-gradient(

    165deg,

    rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.09) 0%,

    #fff 46%,

    #fff 100%

  );

  border: 1px solid rgba(15, 23, 42, 0.07);

  border-top: 3px solid var(--card-a);

  border-radius: 12px;

  box-shadow: 0 2px 14px rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.07);

  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;

}



.matrix-card:nth-child(1) {

  --card-a: #4f46e5;

  --ca-r: 79;

  --ca-g: 70;

  --ca-b: 229;

}



.matrix-card:nth-child(2) {

  --card-a: #0d9488;

  --ca-r: 13;

  --ca-g: 148;

  --ca-b: 136;

}



.matrix-card:nth-child(3) {

  --card-a: #db2777;

  --ca-r: 219;

  --ca-g: 39;

  --ca-b: 119;

}



.matrix-card:nth-child(4) {

  --card-a: #b45309;

  --ca-r: 180;

  --ca-g: 83;

  --ca-b: 9;

}



.matrix-card:nth-child(5) {

  --card-a: #059669;

  --ca-r: 5;

  --ca-g: 150;

  --ca-b: 105;

}



.matrix-card:nth-child(6) {

  --card-a: #5c6278;

  --ca-r: 92;

  --ca-g: 98;

  --ca-b: 120;

}



.matrix-card:hover {

  border-color: rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.32);

  box-shadow: 0 10px 32px rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.14);

  transform: translateY(-2px);

}



.matrix-card-title {

  margin: 0 0 8px;

  font-size: 16px;

  font-weight: 700;

  color: color-mix(in srgb, var(--card-a) 38%, var(--text));

  letter-spacing: 0.06em;

}



@supports not (color: color-mix(in srgb, red, blue)) {

  .matrix-card:nth-child(1) .matrix-card-title {

    color: #312e81;

  }

  .matrix-card:nth-child(2) .matrix-card-title {

    color: #115e59;

  }

  .matrix-card:nth-child(3) .matrix-card-title {

    color: #9d174d;

  }

  .matrix-card:nth-child(4) .matrix-card-title {

    color: #78350f;

  }

  .matrix-card:nth-child(5) .matrix-card-title {

    color: #065f46;

  }

  .matrix-card:nth-child(6) .matrix-card-title {

    color: #3f3f46;

  }

}



.matrix-card-desc {

  flex: 0 1 auto;

  margin: 0;

  font-size: 12px;

  line-height: 1.65;

  color: var(--text-soft);

  text-align: center;

  min-height: calc(2 * 1.65em);

}



.matrix-card-actions {

  margin: 0;

  margin-top: auto;

  padding: 14px 0 0;

  list-style: none;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 8px;

  width: 100%;

}



.matrix-card-actions li {

  min-width: 0;

}



.matrix-card-actions .content-card-btn {

  width: 100%;

  box-sizing: border-box;

  min-height: 38px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: var(--card-a);

  background: rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.11);

  border-color: rgba(var(--ca-r), var(--ca-g), var(--ca-b), 0.3);

}



.matrix-card-actions .content-card-btn:hover {

  background: var(--card-a);

  color: #fff;

  border-color: var(--card-a);

}



.content-card-btn {

  display: inline-block;

  padding: 6px 12px;

  font-family: inherit;

  font-size: 13px;

  font-weight: 600;

  color: var(--nav-blue);

  background: rgba(45, 108, 223, 0.08);

  border: 1px solid rgba(45, 108, 223, 0.22);

  border-radius: 6px;

  cursor: pointer;

  letter-spacing: 0.02em;

  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;

}



.content-card-btn:hover {

  background: var(--nav-blue);

  color: #fff;

  border-color: var(--nav-blue);

}



.content-highlights {

  margin-bottom: 0;

}



.content-highlights.content-section--panel-alt {

  background: linear-gradient(168deg, #f0f3fb 0%, #f7f9fc 45%, #eef2f8 100%);

  border-color: rgba(15, 23, 42, 0.06);

}



.highlight-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

  align-items: stretch;

}



@media (max-width: 960px) {

  .highlight-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 520px) {

  .highlight-grid {

    grid-template-columns: 1fr;

  }

}



.highlight-tile {

  --hl-a: var(--nav-blue);

  --hl-r: 45;

  --hl-g: 108;

  --hl-b: 223;

  --hl-deep: #1e40af;

  display: flex;

  flex-direction: column;

  height: 100%;

  padding: 18px 16px 16px;

  text-align: center;

  background: linear-gradient(

    168deg,

    rgba(var(--hl-r), var(--hl-g), var(--hl-b), 0.1) 0%,

    #fff 52%,

    #fff 100%

  );

  border: 1px solid rgba(15, 23, 42, 0.07);

  border-top: 3px solid var(--hl-a);

  border-radius: 12px;

  box-sizing: border-box;

  box-shadow: 0 2px 14px rgba(var(--hl-r), var(--hl-g), var(--hl-b), 0.06);

  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;

}



.highlight-tile:nth-child(1) {

  --hl-a: #4f46e5;

  --hl-r: 79;

  --hl-g: 70;

  --hl-b: 229;

  --hl-deep: #3730a3;

}



.highlight-tile:nth-child(2) {

  --hl-a: #0d9488;

  --hl-r: 13;

  --hl-g: 148;

  --hl-b: 136;

  --hl-deep: #0f766e;

}



.highlight-tile:nth-child(3) {

  --hl-a: #2563eb;

  --hl-r: 37;

  --hl-g: 99;

  --hl-b: 235;

  --hl-deep: #1d4ed8;

}



.highlight-tile:nth-child(4) {

  --hl-a: #b45309;

  --hl-r: 180;

  --hl-g: 83;

  --hl-b: 9;

  --hl-deep: #92400e;

}



.highlight-tile:hover {

  border-color: rgba(var(--hl-r), var(--hl-g), var(--hl-b), 0.28);

  box-shadow: 0 10px 30px rgba(var(--hl-r), var(--hl-g), var(--hl-b), 0.12);

  transform: translateY(-2px);

}



.highlight-tile::after {

  content: "";

  display: block;

  width: 40px;

  height: 3px;

  margin-top: auto;

  margin-left: auto;

  margin-right: auto;

  border-radius: 999px;

  background: linear-gradient(90deg, transparent, var(--hl-a), transparent);

  opacity: 0.85;

  flex-shrink: 0;

}



.highlight-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 40px;

  height: 40px;

  margin: 0 auto 12px;

  font-family: "Noto Serif SC", serif;

  font-size: 17px;

  font-weight: 700;

  color: #fff;

  background: linear-gradient(145deg, var(--hl-a) 0%, var(--hl-deep) 100%);

  border-radius: 10px;

  box-shadow: 0 4px 14px rgba(var(--hl-r), var(--hl-g), var(--hl-b), 0.25);

}



.highlight-title {

  margin: 0 0 8px;

  font-size: 15px;

  font-weight: 700;

  color: color-mix(in srgb, var(--hl-a) 32%, var(--text));

  letter-spacing: 0.04em;

}



@supports not (color: color-mix(in srgb, red, blue)) {

  .highlight-tile:nth-child(1) .highlight-title {

    color: #312e81;

  }

  .highlight-tile:nth-child(2) .highlight-title {

    color: #115e59;

  }

  .highlight-tile:nth-child(3) .highlight-title {

    color: #1e3a8a;

  }

  .highlight-tile:nth-child(4) .highlight-title {

    color: #78350f;

  }

}



.highlight-text {

  flex: 0 1 auto;

  margin: 0;

  font-size: 12px;

  line-height: 1.72;

  color: var(--text-soft);

  text-align: left;

  text-indent: 2em;

  min-height: 0;

}



.content-notice {

  margin-bottom: 8px;

  padding: 18px 18px 16px;

  text-align: center;

  background: rgba(45, 108, 223, 0.04);

  border: 1px solid rgba(45, 108, 223, 0.12);

  border-radius: 10px;

}



.content-notice .content-section-title {

  border-left: none;

  padding-left: 0;

  text-align: center;

}



.notice-list {

  display: inline-block;

  margin: 0;

  padding-left: 1.35em;

  max-width: min(var(--page-max), 100%);

  font-size: 12px;

  line-height: 1.75;

  color: var(--text-soft);

  list-style: disc;

  list-style-position: outside;

  text-align: left;

  vertical-align: top;

  box-sizing: border-box;

}



.notice-list li {

  margin-bottom: 8px;

  text-align: left;

}



.notice-list li:last-child {

  margin-bottom: 0;

}



.notice-list .notice-list-nowrap {

  display: inline-block;

  max-width: 100%;

  white-space: nowrap;

  overflow-x: auto;

  overflow-y: hidden;

  padding-bottom: 2px;

  text-align: left;

  vertical-align: bottom;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;

}



.notice-list .notice-list-nowrap::-webkit-scrollbar {

  height: 4px;

}



.notice-list .notice-list-nowrap::-webkit-scrollbar-thumb {

  background: rgba(15, 23, 42, 0.2);

  border-radius: 2px;

}



.notice-list strong {

  color: var(--text);

  font-weight: 700;

}



@media (max-width: 480px) {

  .content-prose p {

    text-align: left;

  }

}



.site-footer {

  margin-top: 8px;

  padding: 24px var(--page-pad-x) 40px;

  font-size: 12px;

  color: var(--text-soft);

  line-height: 1.65;

  background: #eef2f7;

  border-top: 1px solid rgba(15, 23, 42, 0.08);

}



.site-footer-grid {

  display: grid;

  grid-template-columns: auto max-content max-content;

  justify-content: center;

  justify-items: start;

  gap: 28px 40px;

  width: 100%;

  max-width: min(var(--page-max), 100%);

  margin: 0 auto;

  box-sizing: border-box;

  align-items: start;

}



.site-footer-block {

  min-width: 0;

  text-align: left;

}



.site-footer-block--brand {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  padding-top: 2px;

}



.site-footer-logo {

  display: block;

  width: 56px;

  height: 56px;

  object-fit: contain;

  border-radius: 8px;

  opacity: 0.95;

  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);

}



.site-footer-kv {

  margin: 0 0 8px;

  font-size: 12px;

  color: var(--text);

  line-height: 1.7;

}



.site-footer-kv:last-child {

  margin-bottom: 0;

}



.site-footer-kv-label {

  color: var(--text-soft);

  margin-right: 2px;

}



.site-footer-filing-row {

  margin: 0 0 10px;

  display: flex;

  flex-direction: row;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

}



.site-footer-filing-row:last-child {

  margin-bottom: 0;

}



.site-footer-filing-icon {

  display: inline-flex;

  flex-shrink: 0;

  align-items: center;

  justify-content: center;

}



.site-footer-filing-link {

  color: var(--nav-blue);

  font-size: 12px;

  text-decoration: none;

}



.site-footer-filing-link:hover {

  text-decoration: underline;

}



.site-footer-filing-row--pending {

  align-items: flex-start;

}



.site-footer-filing-pending {

  font-size: 11px;

  line-height: 1.6;

  color: var(--text-soft);

  flex: 1;

  min-width: 0;

}



@media (max-width: 840px) {

  .site-footer-grid {

    grid-template-columns: auto max-content;

    justify-content: center;

  }

  .site-footer-block--filings {

    grid-column: 1 / -1;

    justify-self: center;

    max-width: min(420px, 100%);

    text-align: left;

  }

}



@media (max-width: 560px) {

  .site-footer {

    padding-left: 16px;

    padding-right: 16px;

  }

  .site-footer-grid {

    grid-template-columns: 1fr;

    justify-content: stretch;

    justify-items: center;

    gap: 22px;

  }

  .site-footer-block--filings {

    grid-column: auto;

    justify-self: stretch;

    max-width: 100%;

    text-align: left;

  }

  .site-footer-block--contact {

    text-align: center;

    max-width: 100%;

  }

  .site-footer-block--brand {

    align-items: center;

  }

  .site-footer-logo {

    width: 48px;

    height: 48px;

  }

}



/* 弹层 */

.app-modal {

  position: fixed;

  inset: 0;

  z-index: 100000;

  display: none;

  align-items: stretch;

  justify-content: stretch;

  padding: 0;

}



.app-modal.is-open {

  display: flex;

}



.app-modal-backdrop {

  position: absolute;

  inset: 0;

  background: rgba(15, 23, 42, 0.55);

  backdrop-filter: blur(4px);

}



.app-modal-dialog {

  position: relative;

  z-index: 1;

  flex: 1;

  margin: 12px;

  display: flex;

  flex-direction: column;

  min-height: 0;

  height: calc(100vh - 24px);

  max-height: calc(100vh - 24px);

  max-width: 100%;

  border-radius: 12px;

  overflow: hidden;

  background: #fff;

  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);

}



.app-modal-bar {

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  padding: 10px 14px;

  background: linear-gradient(180deg, var(--red-main) 0%, var(--red-dark) 100%);

  border-bottom: 2px solid var(--gold);

}



.app-modal-title {

  font-size: 15px;

  font-weight: 700;

  color: #fff;

  letter-spacing: 0.1em;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}



.app-modal-actions {

  display: flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;

}



.app-modal-open-tab {

  padding: 6px 10px;

  font-size: 12px;

  font-weight: 600;

  font-family: inherit;

  color: #fff;

  background: rgba(255, 255, 255, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 6px;

  cursor: pointer;

  text-decoration: none;

}



.app-modal-open-tab:hover {

  background: rgba(255, 255, 255, 0.25);

}



.app-modal-close {

  padding: 6px 14px;

  font-size: 13px;

  font-weight: 700;

  font-family: inherit;

  color: var(--red-main);

  background: #fff;

  border: none;

  border-radius: 6px;

  cursor: pointer;

}



.app-modal-close:hover {

  background: #f3e8ff;

}



.app-modal-frame {

  flex: 1;

  width: 100%;

  min-height: 0;

  border: none;

  background: var(--cream);

}



@media (max-width: 480px) {

  .app-modal-dialog {

    margin: 0;

    border-radius: 0;

    height: 100vh;

    max-height: 100vh;

  }



  .portal-item {

    padding: 11px 14px;

    font-size: 13px;

  }

}



body.modal-open {

  overflow: hidden;

}

