:root {
  --ink: #142033;
  --muted: #5e6f86;
  --line: #d7e1ec;
  --bg: #f3f7fb;
  --panel: #ffffff;
  --brand: #075db7;
  --brand-dark: #063f82;
  --brand-deep: #082b5f;
  --accent: #c7862d;
  --soft: #e7f1fb;
  --warning: #fff3df;
  --max: 1180px;
  --gutter: clamp(16px, 3vw, 40px);
  --header-offset: 112px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  min-width: 300px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  color: var(--brand-dark);
  font-size: 20px;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  font-size: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.site-nav a,
.nav-group-toggle {
  padding: 8px 8px;
  color: #26343f;
  font-size: 14px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a.active,
.nav-group-toggle:hover,
.nav-group-toggle.active {
  background: var(--soft);
  color: var(--brand-dark);
}

.nav-group {
  position: relative;
}

.nav-group-toggle {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav-group-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 80;
  display: none;
  min-width: 156px;
  padding: 10px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(8, 43, 95, 0.12);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav-dropdown a {
  display: block;
  white-space: nowrap;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: block;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  background: var(--brand-dark);
  color: #fff;
}

.hero {
  background: linear-gradient(120deg, #e8f2fc 0%, #f7f9fb 58%, #edf4fb 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  min-height: clamp(520px, calc(100svh - var(--header-offset)), 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(48px, 8vh, 90px) 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  color: var(--brand-dark);
  background: var(--soft);
  border: 1px solid #c8dbf2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 66px);
  max-width: 820px;
}

.hero p {
  margin: 18px 0 0;
  color: #384957;
  font-size: clamp(17px, 1.2vw, 20px);
  max-width: 760px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-weight: 700;
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
}

.placeholder {
  min-height: 300px;
  border: 1px dashed #aab7c2;
  background: repeating-linear-gradient(135deg, #ffffff, #ffffff 12px, #f1f5f7 12px, #f1f5f7 24px);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.placeholder strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.media-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #eef3f6;
}

.hero .media-img {
  min-height: clamp(280px, 42vh, 520px);
}

.media-img.portrait,
.media-img.document {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 10px;
  background: #f7fafb;
}

.media-img.landscape-document {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 8px;
  background: #f7fafb;
}

.media-img.certificate-sample {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.media-img.wide {
  aspect-ratio: 16 / 7;
}

.section {
  padding: clamp(52px, 7vw, 84px) 0;
}

.section.white {
  background: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(24px, 3vw, 34px);
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 740px;
}

.kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  position: relative;
  min-height: 196px;
  padding: 24px 24px 26px;
  overflow: hidden;
  border: 1px solid #d7e6f5;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(7, 93, 183, 0.1), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
  box-shadow: 0 14px 30px rgba(8, 43, 95, 0.08);
}

.feature-item::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(7, 93, 183, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.feature-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.feature-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #13243a;
}

.feature-item p {
  margin: 0;
  color: #52657a;
  font-size: 15px;
  line-height: 1.7;
}

.card,
.notice,
.price-table-wrap,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card {
  padding: clamp(20px, 2vw, 28px);
  border-color: #d7e6f5;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(8, 43, 95, 0.06);
}

.card h3 {
  color: #17263a;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 9px;
  font-weight: 700;
}

.card > .media-img + h3 {
  margin-top: 16px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.photo-gallery figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 43, 95, 0.06);
}

.photo-gallery .media-img {
  border: 0;
  border-radius: 0;
}

.photo-gallery figcaption {
  padding: 10px 12px;
  color: #34475f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.photo-gallery-group {
  margin-top: 28px;
}

.photo-gallery-group h3 {
  margin: 0 0 12px;
  color: #10243c;
  font-size: 20px;
  line-height: 1.35;
}

.photo-gallery-group .photo-gallery {
  margin-top: 0;
}

.course-card {
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  background: #fff;
}

.course-card .media-img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.course-card h3 {
  margin: 18px 28px 8px;
  font-size: 17px;
  line-height: 1.32;
}

.course-card p {
  margin: 0 28px 22px;
  font-size: 15px;
  line-height: 1.72;
}

.service-card {
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #b8d1ec;
  box-shadow: 0 16px 34px rgba(8, 43, 95, 0.11);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card h3 {
  margin: 22px 24px 10px;
  font-size: 19px;
  line-height: 1.35;
}

.service-card p {
  margin: 0 24px 28px;
  color: #52657a;
  font-size: 16px;
  line-height: 1.85;
}

.card p,
.card li,
.notice p,
.faq-item p {
  color: #405160;
  font-size: 15.5px;
  line-height: 1.8;
}

.card p,
.notice p,
.faq-item p {
  margin: 0;
}

.card.service-card h3 {
  margin: 22px 24px 10px;
}

.card.service-card p {
  margin: 0 24px 30px;
  color: #52657a;
  font-size: 16px;
  line-height: 1.85;
}

.card.course-card h3 {
  margin: 22px 24px 10px;
}

.card.course-card p {
  margin: 0 24px 28px;
  color: #52657a;
  font-size: 16px;
  line-height: 1.85;
}

.list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-list span {
  background: #eef3f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  color: #405160;
}

.notice {
  padding: 18px 20px;
}

.notice.warning {
  background: var(--warning);
  border-color: #edd3a7;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 18px 18px 18px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.path-course-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf6ff 0%, #ffffff 100%);
}

.path-course-panel h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.path-course-panel p {
  margin: 0;
  color: var(--muted);
}

.path-course-panel .btn {
  flex: 0 0 auto;
}

.price-table-wrap {
  overflow-x: auto;
}

.article-layout {
  max-width: 1040px;
}

.article-content {
  color: #2f4054;
}

.article-content h1 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 18px;
  max-width: none;
}

.article-content h2 {
  margin: 30px 0 10px;
  font-size: 24px;
  color: var(--brand-deep);
}

.article-content p {
  margin: 0 0 14px;
  color: #405160;
}

.article-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 7px;
  color: #405160;
  line-height: 1.8;
}

.article-section + .article-section {
  margin-top: 18px;
}

.article-figure {
  margin: 24px 0 28px;
}

.article-figure .media-img {
  display: block;
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-related {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid #d7e6f5;
  border-radius: 8px;
  background: #f7fbff;
}

.article-related h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.article-related ul {
  margin: 0;
  padding-left: 18px;
}

.article-related li {
  margin-bottom: 8px;
}

.source-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  background: #f4f9ff;
  color: #405160;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  white-space: nowrap;
}

th {
  background: #edf4fb;
  color: var(--brand-dark);
}

.page-hero {
  background: #e8f2fc;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  padding: 42px 0;
}

.page-hero h1 {
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.28;
  max-width: 1080px;
}

.page-hero p {
  color: #405160;
  max-width: 780px;
  font-size: 18px;
  margin: 16px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.path-side {
  padding: 16px;
  background:
    radial-gradient(circle at 92% 10%, rgba(7, 93, 183, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-color: #d9e7f6;
  box-shadow: 0 12px 26px rgba(8, 43, 95, 0.06);
}

.path-side .media-img {
  margin-bottom: 16px;
}

.path-side-note {
  padding: 4px 6px 2px;
}

.path-side-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.path-side-points {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.path-side-point {
  padding: 14px 14px 15px;
  border: 1px solid #d8e6f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.path-side-point strong {
  display: block;
  color: var(--brand-deep);
  font-size: 15px;
  margin-bottom: 6px;
}

.path-side-point span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.site-footer {
  background: var(--brand-deep);
  color: #dfe8eb;
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr 0.9fr;
  gap: clamp(32px, 5vw, 70px);
}

.next_fy{padding-top:50px;text-align:center;font-size:14px}
.next_fy a{height:36px;line-height:36px;margin:2px;display:inline-block;border:1px solid var(--soft);background:var(--panel);padding:0 12px}
.next_fy a:hover,.next_fy a.active,.next_fy a.hover{background:var(--brand);font-weight:500;color:#fff;border:1px solid var(--brand)}

@media (min-width: 1440px) {
  :root {
    --max: 1320px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  }

  .page-hero .section-inner {
    padding: clamp(52px, 6vh, 76px) 0;
  }

  .page-hero h1 {
    font-size: clamp(38px, 2.9vw, 48px);
  }
}

@media (min-width: 1680px) {
  :root {
    --max: 1440px;
    --gutter: 48px;
  }

  .hero-grid {
    min-height: clamp(620px, calc(100svh - var(--header-offset)), 860px);
  }
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer li {
  color: #b9c8ce;
  line-height: 1.9;
}

.site-footer ul {
  padding-left: 20px;
  margin: 12px 0 0;
}

.site-footer li + li {
  margin-top: 7px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 44px;
  padding-top: 22px;
  font-size: 13px;
  color: #9fb1b8;
}

@media (max-width: 980px) {
  :root {
    --header-offset: 96px;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 3px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 0 0 14px;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .nav-group {
    display: grid;
    gap: 6px;
  }

  .nav-group-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown a {
    padding-left: 18px;
    background: #f4f8fc;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .grid.cols-3,
  .grid.cols-4,
  .photo-gallery,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner,
  .hero-grid {
    width: min(100% - 24px, var(--max));
  }

  .brand strong {
    font-size: 18px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand span {
    font-size: 12px;
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0 48px;
  }

  h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    display: block;
  }

  .path-course-panel {
    display: block;
    padding: 22px;
  }

  .path-course-panel .btn {
    margin-top: 18px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .photo-gallery,
  .feature-strip,
  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  th,
  td {
    padding: 11px 12px;
  }
	.next_fy a{height:32px;line-height:32px;padding:0 11px;}
}

@media (max-width: 420px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-inner,
  .hero-grid {
    width: min(100% - 20px, var(--max));
  }

  .card,
  .faq-item,
  .notice {
    padding: 18px;
  }

  .card.course-card h3,
  .card.service-card h3 {
    margin-left: 18px;
    margin-right: 18px;
  }

  .card.course-card p,
  .card.service-card p {
    margin-left: 18px;
    margin-right: 18px;
  }
}
