:root {
  --blue: #0059d6;
  --blue-2: #0000ff;
  --ink: #222222;
  --text: #333333;
  --muted: #666666;
  --light: #999999;
  --line: #e8e8e8;
  --soft: #fafafa;
  --team-bg: #eaeaea;
  --footer: #1f1f1f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(1032px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #f2f2f2;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 200px;
  min-width: 200px;
  white-space: nowrap;
}

.brand-logo {
  width: 200px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: #111111;
  font-size: 16px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 84px;
  padding: 0 18px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 20px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.active {
  color: #409eff;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px 0;
  background: #172333;
}

.home-banner {
  position: relative;
  aspect-ratio: 1920 / 822;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #1325d7;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 33px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease;
}

.carousel-control:hover {
  color: #69c0bc;
  background: rgba(0, 0, 0, 0.72);
}

.carousel-control::before {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.carousel-prev {
  left: 0;
}

.carousel-prev::before {
  content: "<";
}

.carousel-next {
  right: 0;
}

.carousel-next::before {
  content: ">";
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--white);
}

.section {
  padding: 78px 0;
}

.section h2,
.business-title h2,
.team-heading h2,
.team-intro h2,
.service-cta h2,
.page-hero h1 {
  margin: 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0;
}

.section h2 {
  font-size: 28px;
  line-height: 1.4;
}

.section h3 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.section p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.about-intro {
  padding-top: 88px;
  padding-bottom: 78px;
  text-align: center;
  background: var(--white);
}

.section .watermark {
  margin: 0 0 -17px;
  color: #fafafa;
  font: 700 70px/1 Arial, Helvetica, sans-serif;
}

.about-intro h2 {
  margin-bottom: 36px;
}

.about-intro p:not(.watermark) {
  color: #666666;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0;
}

.business-band {
  min-height: 386px;
  padding: 52px 0 50px;
  position: relative;
  background: url("assets/about-bg.jpg") center/cover no-repeat;
}

.business-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 500px 340px;
  justify-content: center;
  gap: 0;
  align-items: center;
  min-height: 300px;
}

.business-title {
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--white);
  text-align: center;
  background: rgba(55, 46, 194, 0.96);
}

.business-title h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
}

.business-title p {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.8;
}

.business-copy {
  min-height: 300px;
  padding: 36px 30px 32px;
  color: #000000;
  background: var(--white);
}

.section-en {
  margin: 0 0 14px;
  color: #000000;
  font: 400 34px/1.4 Arial, Helvetica, sans-serif;
}

.business-copy p:last-child {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 2;
}

.business-links {
  display: grid;
  gap: 0;
  margin-left: 36px;
  min-height: 300px;
}

.business-links a {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #333333;
  background: var(--white);
  border: 0;
  border-radius: 0;
  font-size: 15px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.business-links a:nth-child(odd) {
  background: #f4f4f4;
}

.business-links a:hover {
  color: var(--blue-2);
  background: var(--white);
}

.team-band {
  padding: 64px 0 210px;
  background: var(--team-bg);
}

.team-shell {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-intro {
  grid-column: span 2;
  min-height: 450px;
  padding: 46px 30px 44px;
  background: var(--white);
}

.team-intro h2 {
  position: relative;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
}

.team-intro h2::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  margin-top: 12px;
  background: #333333;
}

.team-lead {
  margin: 14px 0 24px;
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
}

.team-intro > p:last-child {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 2;
}

.team-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  color: var(--white);
  background: #6c6d72;
  outline: none;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.team-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 34px;
  background: rgba(30, 31, 35, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.team-detail::before {
  content: "";
  width: 8px;
  height: 8px;
  margin: -22px 0 24px -20px;
  border-radius: 50%;
  background: #8d6bc0;
  flex: 0 0 auto;
}

.team-card:hover img,
.team-card:focus img,
.team-card.is-active img {
  transform: scale(1.04);
}

.team-card:hover .team-detail,
.team-card:focus .team-detail,
.team-card:focus-within .team-detail,
.team-card.is-active .team-detail {
  opacity: 1;
}

.team-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.team-card span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 12px 0 18px;
  background: rgba(255, 255, 255, 0.9);
}

.team-card p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.8;
}

.service-cta {
  min-height: 538px;
  margin-top: -121px;
  padding: 94px 0 88px;
  color: var(--white);
  background: url("assets/service-bg.jpg") center/cover no-repeat;
}

.service-cta-inner {
  display: grid;
  justify-items: start;
}

.service-en {
  margin: 0;
  color: var(--white);
  font: 700 32px/1.35 Arial, Helvetica, sans-serif;
}

.service-cta h2 {
  margin: 50px 0 0;
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
}

.service-cta p:not(.service-en) {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 2;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-button {
  margin-top: 50px;
  color: #000000;
  background: var(--white);
}

.cta-button:hover {
  color: var(--white);
  background: var(--blue-2);
  border-color: var(--blue-2);
}

.history-section {
  padding-top: 94px;
  padding-bottom: 72px;
}

.history-section .narrow h2 {
  margin-bottom: 20px;
  color: #333333;
  font-size: 32px;
}

.history-section .narrow p {
  color: #333333;
  line-height: 2;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #d8d8d8;
  transform: translateX(-50%);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 42px;
  min-height: 146px;
  padding: 10px 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 14px;
  height: 14px;
  border: 4px solid var(--blue-2);
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.timeline article time {
  color: #000000;
  font: 400 22px/1.5 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.timeline article div {
  max-width: 520px;
}

.timeline article h3 {
  margin: 0;
  color: var(--blue-2);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.timeline article p {
  margin: 15px 0 0;
  color: #333333;
  font-size: 14px;
  line-height: 2;
}

.timeline article:nth-child(odd) time {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline article:nth-child(odd) div {
  grid-column: 3;
}

.timeline article:nth-child(even) div {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline article:nth-child(even) time {
  grid-column: 3;
}

.news-band {
  padding-top: 60px;
  padding-bottom: 78px;
  background: var(--soft);
}

.section-title h2 {
  color: #000000;
  font-size: 28px;
  line-height: 1.8;
}

.section-title p {
  margin: 0;
  color: #999999;
  font: 400 14px/1.8 Arial, Helvetica, sans-serif;
}

.section-title span {
  display: block;
  width: 120px;
  height: 1px;
  margin: 10px auto 0;
  background: #000000;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.news-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.news-card a {
  display: block;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card a:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.news-card img {
  width: 100%;
  height: 216px;
  object-fit: cover;
}

.news-card div {
  padding: 18px 8px 0;
}

.news-card time {
  display: block;
  margin: 0 0 8px;
  color: #999999;
  font-size: 14px;
}

.news-card h3 {
  margin: 0;
  color: #333333;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.news-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 14px;
  background: #000000;
}

.news-extra {
  margin-top: 28px;
}

.news-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.news-more-button {
  width: 200px;
  height: 46px;
  color: #999999;
  background: transparent;
  border: 1px solid #cfcfcf;
  font: 700 15px/1 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.news-more-button:hover {
  color: var(--blue-2);
  border-color: var(--blue-2);
  background: var(--white);
}

.contact-band {
  background: var(--white);
}

.contact-wrap {
  display: grid;
  gap: 0;
}

.contact-copy h2 {
  margin: 0 0 20px;
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-en {
  margin: 0 0 20px;
  color: #cfcfcf;
  font: 400 16px/1.8 Arial, Helvetica, sans-serif;
}

.contact-en span::before {
  content: "-- --";
  margin-left: 8px;
}

.contact-copy p:last-child {
  margin: 0 0 34px;
  color: #999999;
  font-size: 14px;
  line-height: 2;
}

.map-frame {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 1px solid #d4d4d4;
  background: #eef3f7;
}

.map-canvas {
  width: 100%;
  height: 100%;
}

.contact-name {
  margin-top: 54px;
  margin-bottom: 30px;
  color: #333333;
  font-size: 18px;
  letter-spacing: 3px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.contact-list p {
  margin: 10px 0;
  color: #999999;
  font-size: 14px;
  line-height: 2;
}

.contact-page {
  background: var(--white);
}

.contact-banner {
  overflow: hidden;
  background: #0d45dc;
}

.contact-banner img {
  width: 100%;
  height: auto;
}

.contact-main-section {
  padding: 48px 0 50px;
}

.contact-title-block {
  text-align: center;
}

.contact-title-block p {
  margin: 0;
  color: #000000;
  font: 400 24px/1.4 Arial, Helvetica, sans-serif;
}

.contact-title-block span {
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 14px;
  background: #000000;
}

.contact-title-block h1 {
  margin: 0;
  color: #333333;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1240px, 100%);
  margin: 50px auto 0;
}

.contact-centers {
  min-height: 556px;
  margin-top: -10px;
  padding: 0 20px;
}

.contact-centers section + section {
  margin-top: 30px;
}

.contact-centers h2,
.contact-centers p {
  margin: 0;
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.contact-building {
  min-height: 395px;
  margin: 64px 0 0;
  padding: 0 20px;
}

.contact-building img {
  width: 100%;
  height: auto;
}

.contact-map-wrap {
  width: min(1240px, 100%);
  height: 300px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.contact-map-wrap .map-canvas {
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
}

.site-footer {
  padding: 42px 0 22px;
  color: #999999;
  background: #000000;
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.footer-logo {
  width: 204px;
  height: auto;
}

.site-footer p {
  max-width: 900px;
  margin: 0;
  color: #999999;
  font-size: 13px;
  line-height: 2;
}

.footer-line {
  width: calc(100vw - 116px);
  height: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.18);
}

.site-footer .copyright {
  color: var(--white);
  font-size: 12px;
  line-height: 1.8;
}

.page-hero {
  min-height: 270px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 34, 86, 0.82), rgba(0, 89, 214, 0.42)),
    url("assets/banner-home.jpg") center/cover no-repeat;
}

.education-hero,
.service-hero,
.news-hero,
.contact-hero {
  background-position: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #69c0bc;
  font-size: 13px;
  font-weight: 700;
}

.page-hero h1 {
  color: var(--white);
  font-size: 42px;
  line-height: 1.35;
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.stats-grid,
.reason-grid,
.values-grid,
.metric-grid,
.service-grid,
.centers-grid {
  display: grid;
  gap: 18px;
}

.stats-grid,
.values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.metric-grid,
.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div,
.metric-grid div,
.reason-grid article,
.advantage-list article,
.service-grid article,
.centers-grid article,
.values-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.stats-grid strong,
.metric-grid strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1.2;
}

.stats-grid span,
.metric-grid span {
  color: var(--muted);
  font-size: 14px;
}

.values-band,
.service-list-band {
  background: var(--soft);
}

.metric-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 34, 86, 0.9), rgba(0, 89, 214, 0.72)),
    url("assets/banner-home.jpg") center/cover no-repeat;
}

.metric-grid div {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.metric-grid strong,
.metric-grid span {
  color: var(--white);
}

.about-page {
  background: var(--white);
}

.about-hero img {
  width: 100%;
  height: auto;
}

.about-profile {
  padding: 64px 0 64px;
}

.about-profile-inner {
  min-height: 216px;
}

.about-profile h1 {
  margin: 0 0 62px;
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.about-copy {
  margin-top: 0;
}

.about-copy p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 2.1;
}

.about-copy p + p {
  margin-top: 17px;
}

.about-stat-band {
  background: #0e32c4;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stats div {
  min-height: 192px;
  padding: 54px 18px 42px;
  text-align: center;
}

.about-stats strong {
  display: block;
  margin: 0 0 2px;
  color: var(--white);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-stats small {
  margin-left: 4px;
  font-size: 22px;
  line-height: 1;
}

.about-stats span {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1.8;
}

.about-belief {
  padding: 56px 0 55px;
}

.about-belief-inner {
  min-height: 0;
  margin-top: 0;
}

.about-belief article + article {
  margin-top: 30px;
}

.about-belief h2 {
  margin: 0;
  color: #333333;
  font-family: SimHei, "Microsoft YaHei", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.about-belief p {
  margin: 0;
  color: #333333;
  font-family: SimHei, "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 2.1;
}

.about-belief-en {
  margin-bottom: 15px !important;
  color: #333333;
  font-family: "Courier New", Consolas, monospace !important;
  font-size: 13px !important;
  letter-spacing: 1px;
}

.advantage-list {
  display: grid;
  gap: 14px;
}

.service-page {
  background: var(--white);
}

.service-banner {
  overflow: hidden;
  background: #0d45dc;
}

.service-banner img {
  width: 100%;
  height: auto;
}

.service-copy-section {
  padding: 80px 0 40px;
}

.service-copy {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.service-copy p {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 2.2;
}

.service-body-text {
  margin-bottom: 10px !important;
  text-indent: 2em;
}

.service-copy-title {
  margin: 28px 0 10px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.2;
}

.service-copy-title:first-child {
  margin-top: 0;
}

.service-copy-subtitle {
  margin: 12px 0 4px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.2;
}

.service-facts {
  margin: 18px 0 18px !important;
  padding: 12px 18px;
  border-left: 3px solid #0e32c4;
  background: #f7f9ff;
  font-weight: 700;
  text-indent: 0;
}

.service-list-block {
  margin: 4px 0 22px !important;
  padding-left: 0;
  text-indent: 0;
}

.service-list-block br {
  display: block;
}

.service-value-line {
  margin: 0 0 4px !important;
  font-weight: 700;
  text-indent: 0;
}

.service-copy strong {
  font-weight: 700;
}

.service-panel {
  min-height: 260px;
  padding: 34px;
  display: grid;
  align-content: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 34, 86, 0.82), rgba(0, 89, 214, 0.52)),
    url("assets/service-bg.jpg") center/cover no-repeat;
  border-radius: 4px;
}

.service-panel strong {
  font-size: 24px;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.88);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 34px;
  align-items: center;
  margin: 42px 0 12px;
  padding: 34px;
  background: #f7f9fc;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-feature h3 {
  margin-top: 0;
}

.education-page {
  background: var(--white);
}

.edu-hero {
  overflow: hidden;
  background: #1e5eff;
}

.edu-hero img {
  width: 100%;
  height: auto;
}

.edu-section {
  padding: 66px 0;
}

.edu-section-title {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.edu-section-title h1,
.edu-section-title h2 {
  margin: 0;
  color: #222222;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}

.edu-section-title h2 span {
  margin-left: 4px;
  color: #777777;
  font: 400 16px/1.8 Arial, Helvetica, sans-serif;
}

.edu-section-title p {
  margin: 12px auto 0;
  color: #969696;
  font-size: 14px;
  line-height: 1.9;
}

.edu-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.edu-reason-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 24px 22px;
  border: 1px solid #eeeeee;
  background: var(--white);
}

.edu-reason-grid img {
  width: 44px;
  height: 44px;
  padding: 9px;
  background: #0070d9;
}

.edu-reason-grid h2 {
  margin: 0 0 8px;
  color: #343434;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.edu-reason-grid p {
  margin: 0;
  color: #969696;
  font-size: 13px;
  line-height: 1.8;
}

.edu-company-section {
  padding-top: 26px;
}

.edu-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.edu-training-grid {
  margin-top: 0;
}

.edu-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.edu-company-copy {
  display: grid;
  align-content: center;
  padding: 42px 48px;
  background: var(--white);
}

.edu-company-copy h2 {
  margin: 0 0 18px;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
}

.edu-company-copy p {
  margin: 0 0 16px;
  color: #999999;
  font-size: 14px;
  line-height: 2.1;
}

.edu-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 12px;
}

.edu-metrics strong {
  display: block;
  color: #333333;
  font: 700 34px/1.2 Arial, Helvetica, sans-serif;
}

.edu-metrics span {
  display: block;
  margin-top: 6px;
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
}

.edu-advantage-section {
  padding-top: 48px;
}

.edu-advantage-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.edu-advantage-title span {
  height: 1px;
  background: #e8e8e8;
}

.edu-advantage-title h2 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.edu-advantage-title h2 strong {
  margin-right: 8px;
  font: 400 30px/1.4 Arial, Helvetica, sans-serif;
}

.edu-advantage-title p {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: #999999;
  font: 400 12px/1.8 Arial, Helvetica, sans-serif;
}

.edu-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 28px;
  margin-top: 56px;
}

.edu-advantage-grid article {
  text-align: center;
}

.edu-advantage-grid b {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 50%;
  background: #f22758;
  font-size: 20px;
}

.edu-advantage-grid h3 {
  margin: 0 0 12px;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
}

.edu-advantage-grid p {
  margin: 0;
  color: #8d8d8d;
  font-size: 12px;
  line-height: 1.9;
}

.edu-poster-section {
  padding-top: 36px;
}

.edu-poster {
  width: min(860px, 100%);
  margin: 0 auto;
  height: auto;
}

.edu-message-section {
  background: #f7f7f7;
}

.edu-message-wrap {
  width: min(900px, calc(100% - 40px));
}

.edu-message-form {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.edu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.edu-message-form input,
.edu-message-form textarea {
  width: 100%;
  border: 1px solid #eeeeee;
  background: var(--white);
  color: #333333;
  font: 400 14px/1.8 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.edu-message-form input {
  height: 46px;
  padding: 0 16px;
}

.edu-message-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 14px 16px;
}

.edu-message-form button {
  height: 42px;
  color: var(--white);
  border: 0;
  background: #2b2b2b;
  font: 400 14px/1 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  cursor: pointer;
}

.service-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.news-list time {
  text-align: center;
  color: var(--blue);
  border-right: 1px solid var(--line);
  padding-right: 20px;
}

.news-list time strong {
  display: block;
  font-size: 26px;
}

.news-list time span {
  display: block;
  color: var(--muted);
}

.news-list h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.news-list p {
  margin: 0;
}

.news-page {
  background: var(--white);
}

.news-banner {
  overflow: hidden;
  background: #f8fbff;
}

.news-banner img {
  width: 100%;
  height: auto;
}

.news-center-section {
  padding: 32px 0 70px;
}

.news-title-block {
  text-align: center;
}

.news-title-block p {
  margin: 0;
  color: #000000;
  font: 400 24px/1.4 Arial, Helvetica, sans-serif;
}

.news-title-block span {
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 14px;
  background: #000000;
}

.news-title-block h1 {
  margin: 0;
  color: #333333;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, calc(100% - 40px));
  margin: 48px auto 42px;
  gap: 10px;
}

.news-tile {
  min-width: 0;
}

.news-tile a {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  height: 230px;
  padding: 40px;
  overflow: hidden;
  background: #f3f3f3;
}

.news-tile a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #111111;
  transition: width 0.2s ease;
}

.news-tile a:hover::before {
  width: 100%;
}

.news-timebox,
.news-tile-content {
  position: relative;
  z-index: 1;
}

.news-timebox {
  display: grid;
  align-content: start;
  justify-items: end;
  padding-right: 30px;
}

.news-timebox span {
  color: #222222;
  font: 400 16px/1.3 Arial, Helvetica, sans-serif;
}

.news-timebox strong {
  color: #222222;
  font: 700 28px/1.2 Arial, Helvetica, sans-serif;
}

.news-timebox img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
}

.news-tile-content {
  display: grid;
  align-content: start;
  min-width: 0;
}

.news-tile-content h2 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #595959;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-tile-content img {
  width: 45px;
  height: 12px;
  margin-top: 92px;
}

.news-tile a:hover h2 {
  color: var(--white);
}

.news-tile a:hover .news-timebox span,
.news-tile a:hover .news-timebox strong {
  color: #666666;
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.news-pagination a,
.news-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  color: #666666;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: var(--white);
  font: 400 14px/1 Arial, Helvetica, sans-serif;
}

.news-pagination span {
  color: var(--white);
  border-color: #bdbdbd;
  background: #bdbdbd;
}

.news-pagination .active {
  color: var(--white);
  border-color: #1890ff;
  background: #1890ff;
}

.centers-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.centers-grid article:last-child {
  grid-column: 1 / -1;
}

.centers-grid p,
.contact-list p {
  overflow-wrap: anywhere;
}

.partner-article {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.partner-article h2 {
  margin-top: 36px;
}

.partner-article h2:first-child {
  margin-top: 0;
}

.partner-article h3 {
  margin-top: 28px;
}

.partner-article p {
  color: #555555;
}

.partner-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-facts div {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-facts strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
}

.partner-facts span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .team-card {
    height: 420px;
  }
}

@media (max-width: 920px) {
  .site-header {
    width: 100%;
    overflow-x: clip;
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 68px;
    max-width: none;
  }

  .brand {
    width: 200px;
    flex: 0 1 200px;
    min-width: 0;
  }

  .brand-logo {
    width: 200px;
  }

  .menu-toggle {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: grid !important;
    place-content: center;
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 6px 14px rgba(0, 89, 214, 0.18);
  }

  .menu-toggle span {
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    z-index: 10;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: auto;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .home-banner {
    aspect-ratio: 1920 / 822;
    min-height: 0;
  }

  .business-layout,
  .two-column,
  .contact-grid,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-building {
    order: -1;
    margin-top: 24px;
  }

  .contact-centers {
    min-height: auto;
    margin-top: 24px;
  }

  .business-title {
    min-height: 180px;
  }

  .business-copy,
  .business-links {
    min-height: auto;
  }

  .reason-grid,
  .metric-grid,
  .service-grid,
  .contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(900px, calc(100% - 32px));
  }

  .news-tile a {
    height: 260px;
  }

  .edu-reason-grid,
  .edu-company-grid,
  .edu-advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-training-grid .edu-photo {
    order: -1;
  }

  .about-hero img {
    min-height: 220px;
    object-fit: cover;
  }

  .service-banner img {
    min-height: 280px;
    object-fit: cover;
  }

  .service-copy-section {
    padding: 58px 0 64px;
  }

  .about-profile {
    padding: 56px 0 42px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edu-photo {
    height: 320px;
  }

  .timeline::before {
    left: 12px;
    transform: none;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 42px;
  }

  .timeline article::before {
    left: 4px;
    transform: none;
  }

  .timeline article:nth-child(odd) time,
  .timeline article:nth-child(odd) div,
  .timeline article:nth-child(even) time,
  .timeline article:nth-child(even) div {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1240px);
  }

  .brand,
  .brand-logo {
    width: 166px;
  }

  .header-inner {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .home-banner {
    aspect-ratio: 1920 / 822;
    min-height: 0;
  }

  .news-banner img {
    min-height: 260px;
    object-fit: cover;
  }

  .contact-banner img {
    min-height: 260px;
    object-fit: cover;
  }

  .carousel-control {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .section .watermark {
    font-size: 46px;
  }

  .about-intro h2 {
    margin-bottom: 24px;
  }

  .section h2,
  .history-section .narrow h2,
  .section-title h2,
  .contact-copy h2 {
    font-size: 26px;
  }

  .about-profile h1 {
    font-size: 26px;
  }

  .about-copy {
    margin-top: 0;
  }

  .about-copy p + p {
    margin-top: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    min-height: 112px;
    padding: 28px 16px;
  }

  .about-belief {
    padding: 44px 0 56px;
  }

  .about-belief-inner {
    min-height: 0;
    margin-top: 0;
  }

  .business-band {
    padding: 48px 0;
  }

  .business-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 150, 0.48);
  }

  .business-copy {
    padding: 32px 24px;
  }

  .section-en,
  .service-en {
    font-size: 26px;
  }

  .team-band {
    padding-bottom: 150px;
  }

  .stats-grid,
  .values-grid,
  .reason-grid,
  .metric-grid,
  .service-grid,
  .centers-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-intro {
    padding: 36px 28px;
  }

  .team-card {
    height: 440px;
  }

  .team-detail {
    padding: 34px 28px;
    opacity: 1;
    background: linear-gradient(180deg, rgba(30, 31, 35, 0.12), rgba(30, 31, 35, 0.86));
    justify-content: flex-end;
  }

  .team-detail::before {
    display: none;
  }

  .team-card p {
    font-size: 13px;
  }

  .service-cta {
    margin-top: -90px;
    min-height: 420px;
    padding: 70px 0;
  }

  .service-feature {
    padding: 18px;
  }

  .service-copy-section {
    padding: 42px 0 54px;
  }

  .service-copy {
    padding: 0 14px;
  }

  .service-copy p {
    font-size: 13px;
    line-height: 2;
  }

  .service-copy-title,
  .service-copy-subtitle {
    font-size: 13px;
    line-height: 2;
  }

  .service-body-text {
    margin-bottom: 8px !important;
  }

  .service-copy-title {
    margin-top: 22px;
  }

  .service-facts {
    padding: 10px 12px;
  }

  .news-card img {
    width: 100%;
    height: 220px;
  }

  .news-center-section {
    padding: 26px 0 54px;
  }

  .news-title-block p {
    font-size: 22px;
  }

  .news-title-block h1 {
    font-size: 24px;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .news-tile a {
    grid-template-columns: 80px 1fr;
    height: 180px;
    padding: 24px;
  }

  .news-timebox {
    padding-right: 18px;
  }

  .news-timebox strong {
    font-size: 23px;
  }

  .news-timebox img {
    width: 50px;
    height: 50px;
  }

  .news-tile-content h2 {
    font-size: 20px;
  }

  .news-tile-content img {
    margin-top: 54px;
  }

  .map-frame {
    height: 240px;
  }

  .contact-main-section {
    padding: 38px 0 44px;
  }

  .contact-title-block p {
    font-size: 22px;
  }

  .contact-title-block h1 {
    font-size: 24px;
  }

  .contact-info-grid {
    margin-top: 34px;
  }

  .contact-building,
  .contact-centers,
  .contact-map-wrap {
    padding: 0 14px;
  }

  .contact-centers section + section {
    margin-top: 20px;
  }

  .contact-map-wrap {
    height: 240px;
  }

  .edu-section {
    padding: 48px 0;
  }

  .edu-section-title h1,
  .edu-section-title h2 {
    font-size: 24px;
  }

  .edu-reason-grid,
  .edu-company-grid,
  .edu-advantage-grid,
  .edu-form-row {
    grid-template-columns: 1fr;
  }

  .edu-reason-grid article {
    min-height: auto;
  }

  .edu-company-copy {
    padding: 32px 24px;
  }

  .edu-photo {
    height: 240px;
  }

  .edu-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .edu-advantage-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .edu-advantage-title span {
    width: 88px;
    margin: 0 auto;
  }

  .edu-advantage-title h2 strong {
    display: block;
    margin-right: 0;
    font-size: 26px;
  }

  .page-hero {
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .news-list article {
    grid-template-columns: 1fr;
  }

  .news-list time {
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
    text-align: left;
    border-right: 0;
    padding-right: 0;
  }

  .centers-grid article:last-child {
    grid-column: auto;
  }

  .partner-facts {
    grid-template-columns: 1fr;
  }
}
