* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: #233043;
  background: #fff;
}

body.drawer-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

:root {
  --header-height: 56px;
  --hero-height: 600px;
  --accent-blue: #2665ac;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  height: 50px;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 50px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 34px;
  height: 30px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 999px;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  font-size: 14px;
  color: #6c7380;
}

.nav a {
  position: relative;
  line-height: var(--header-height);
}

.nav a.active {
  color: var(--accent-blue);
  font-weight: 700;
}

.top-btn {
  flex: 0 0 auto;
  width: 74px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  margin-top: var(--header-height);
  overflow: hidden;
  background:
    linear-gradient(rgba(38, 101, 172, 0.34), rgba(38, 101, 172, 0.34)),
    url("../assets/images/banner.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 101, 172, 0.18), rgba(38, 101, 172, 0.24));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 760px;
  padding-left: 76px;
  color: #fff;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(18, 35, 76, 0.12);
}

.hero-copy p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  width: 116px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #fff;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(41, 60, 104, 0.2);
}

.intro-section {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(38, 101, 172, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.intro-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 58px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(38, 101, 172, 0.07);
  pointer-events: none;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 62px;
  align-items: center;
}

.intro-text {
  padding-top: 0;
}

.intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--accent-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.intro-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue);
}

.intro-text h2 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.28;
  color: #22334f;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.intro-text p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.95;
  color: #5d6676;
}

.intro-text .intro-lead,
.intro-detail-copy .intro-lead {
  position: relative;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 12px 12px 0;
  background: rgba(38, 101, 172, 0.07);
  color: #314663;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.intro-highlight-card {
  min-height: 88px;
  padding: 18px 14px 16px;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 51, 84, 0.08);
}

.intro-highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-blue);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.intro-highlight-card span {
  display: block;
  color: #778196;
  font-size: 12px;
  line-height: 1.45;
}

.intro-image-wrap {
  position: relative;
  margin-left: 0;
  padding-top: 0;
  min-height: 390px;
}

.intro-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 82%;
  height: 88%;
  background: linear-gradient(rgba(38, 101, 172, 0.86), rgba(38, 101, 172, 0.86)), url("../assets/images/hl-content.png") center/cover no-repeat;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(38, 101, 172, 0.18);
}

.intro-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 92%;
  max-width: 92%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(28, 54, 92, 0.18);
  margin-top: 28px;
  margin-left: 0;
}

.intro-floating-card {
  position: absolute;
  left: 34px;
  bottom: 4px;
  z-index: 2;
  width: min(360px, calc(100% - 68px));
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(23, 47, 84, 0.16);
}

.intro-floating-card strong {
  display: block;
  margin-bottom: 7px;
  color: #22334f;
  font-size: 18px;
  line-height: 1.25;
}

.intro-floating-card span {
  display: block;
  color: #6f7890;
  font-size: 13px;
  line-height: 1.5;
}

.intro-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 40px;
  margin-top: 12px;
  border-radius: 3px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(38, 101, 172, 0.18);
}

.intro-section--home {
  padding: 106px 0 108px;
  background: #fff;
}

.intro-section--home::before {
  display: none;
}

.intro-inner--home {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 92px;
  align-items: center;
}

.intro-text--home {
  padding-top: 2px;
}

.intro-text--home h2 {
  margin: 0 0 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8edf5;
  color: #3868aa;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.intro-text--home p {
  margin: 0 0 42px;
  color: #4f5662;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 700;
  text-align: left;
}

.intro-text--home p:last-child {
  margin-bottom: 0;
}

.intro-image-wrap--home {
  min-height: 410px;
  padding: 18px 22px 0 0;
}

.intro-accent--home {
  right: 0;
  top: 0;
  width: calc(100% - 64px);
  height: calc(100% - 58px);
  border-radius: 4px;
  background: #3868aa;
  box-shadow: none;
}

.intro-image--home {
  width: calc(100% - 34px);
  max-width: none;
  height: 410px;
  margin: 18px 0 0 0;
  border-radius: 8px;
  box-shadow: none;
}

.site-header--subpage {
  position: sticky;
  top: 0;
}

.intro-page {
  background: #fff;
}

.subpage-hero.intro-page-hero {
  min-height: 420px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(18, 48, 88, 0.2), rgba(38, 101, 172, 0.12)),
    url("../assets/images/1629271823436.jpg") center/cover no-repeat;
}

.subpage-hero.intro-page-hero::after {
  display: none;
}

.subpage-hero {
  position: relative;
  margin-top: 0;
  padding: 110px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(38, 101, 172, 0.9), rgba(38, 101, 172, 0.56)),
    url("../assets/images/banner.png") center/cover no-repeat;
  color: #fff;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 58px solid rgba(255, 255, 255, 0.1);
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.subpage-hero .intro-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.subpage-hero .intro-kicker::before {
  background: #fff;
}

.subpage-hero h1 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
}

.subpage-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.85;
}

.intro-detail-section {
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 8% 20%, rgba(38, 101, 172, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.intro-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 62px;
  align-items: center;
}

.intro-detail-copy h2 {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.28;
  color: #22334f;
  font-weight: 800;
}

.intro-detail-copy p {
  margin: 0 0 16px;
  color: #5d6676;
  font-size: 14px;
  line-height: 1.95;
}

.intro-detail-media {
  position: relative;
  min-height: 390px;
}

.intro-values-section {
  padding: 68px 0 76px;
  background: #fff;
}

.intro-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.intro-value-card {
  min-height: 176px;
  padding: 30px 28px;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(38, 101, 172, 0.06), transparent 64%),
    #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
}

.intro-value-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-blue);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.intro-value-card span {
  display: block;
  color: #667185;
  font-size: 14px;
  line-height: 1.85;
}

.intro-training-section {
  padding: 72px 0;
  background: #f4f7fb;
}

.intro-training-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.intro-training-inner h2 {
  margin: 0 0 16px;
  color: #22334f;
  font-size: 32px;
}

.intro-training-inner p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.9;
}

.intro-training-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.intro-training-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 12px;
  background: #fff;
  color: #314663;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(34, 51, 84, 0.07);
}

.intro-cta-section {
  padding: 64px 0 76px;
  background: #fff;
}

.intro-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3868aa, #244f8f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(38, 101, 172, 0.2);
}

.intro-cta-box h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.intro-cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.intro-cta-box .policy-cta {
  flex: 0 0 auto;
  background: #fff;
  color: var(--accent-blue);
}

.major-page {
  background: #fff;
}

.major-page-hero {
  min-height: 420px;
  background:
    url("../assets/images/1629271838062.jpg") center/cover no-repeat;
}

.major-hero-inner {
  max-width: 900px;
}

.major-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.major-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.major-overview-section {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 10% 22%, rgba(38, 101, 172, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.major-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.major-overview-copy h2 {
  margin: 0 0 18px;
  color: #22334f;
  font-size: 32px;
  line-height: 1.34;
  font-weight: 800;
}

.major-overview-copy p {
  margin: 0 0 16px;
  color: #5d6676;
  font-size: 14px;
  line-height: 1.95;
}

.major-overview-panel {
  display: grid;
  gap: 16px;
}

.major-stat-card {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid rgba(38, 101, 172, 0.13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
}

.major-stat-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(38, 101, 172, 0.08);
}

.major-stat-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-blue);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.major-stat-card span {
  display: block;
  color: #667185;
  font-size: 14px;
  line-height: 1.7;
}

.major-detail-section {
  padding: 76px 0;
  background: #fff;
  scroll-margin-top: 80px;
}

.major-detail-section--light,
.major-path-section {
  background: #f4f7fb;
}

.major-detail-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(34, 51, 84, 0.1);
}

.major-detail-card--featured {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 62%, rgba(255, 255, 255, 0.78) 100%),
    url("../assets/images/jybg.png") right bottom / cover no-repeat;
}

.major-detail-head {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
}

.major-detail-index {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #3868aa, #244f8f);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(38, 101, 172, 0.22);
}

.major-detail-head h2 {
  margin: 0 0 14px;
  color: #22334f;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 800;
}

.major-detail-head p {
  max-width: 860px;
  margin: 0;
  color: #5d6676;
  font-size: 15px;
  line-height: 1.9;
}

.major-detail-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.major-info-box {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(34, 51, 84, 0.06);
}

.major-info-box h3 {
  margin: 0 0 12px;
  color: var(--accent-blue);
  font-size: 20px;
  font-weight: 800;
}

.major-info-box p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.85;
}

.major-course-block {
  margin-top: 30px;
  padding: 28px;
  border-radius: 18px;
  background: #f6f9fd;
}

.major-course-block h3 {
  margin: 0 0 18px;
  color: #22334f;
  font-size: 22px;
}

.major-course-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.major-course-grid span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 12px;
  background: #fff;
  color: #314663;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(34, 51, 84, 0.06);
}

.major-path-section {
  padding: 72px 0 78px;
}

.major-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.major-path-item {
  position: relative;
  min-height: 210px;
  padding: 30px 24px 26px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
}

.major-path-item span {
  display: block;
  margin-bottom: 18px;
  color: rgba(38, 101, 172, 0.18);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.major-path-item h3 {
  margin: 0 0 12px;
  color: #22334f;
  font-size: 20px;
}

.major-path-item p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.8;
}

.major-cta-section {
  padding: 64px 0 76px;
  background: #fff;
}

.section-title-block {
  text-align: center;
  margin-bottom: 38px;
}

.section-title-block h2 {
  margin: 0 0 10px;
  font-size: 32px;
  color: #2d3142;
}

.section-title-block p {
  margin: 0;
  color: #8a8f9c;
  font-size: 13px;
}

.major-section {
  padding: 44px 0 72px;
  background: #f7f8fb;
}

.major-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.major-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 51, 84, 0.1);
}

.major-card--featured {
  background: #fff;
}

.major-card--featured::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(255, 255, 255, 0.86) 76%, rgba(255, 255, 255, 0.16) 100%), url("../assets/images/jybg.png") right bottom / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.major-card--featured::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 180px;
  height: 240px;
  border-radius: 46% 54% 50% 50% / 44% 40% 60% 56%;
  background:
    radial-gradient(circle at 48% 10%, rgba(120, 146, 182, 0.35) 0 10%, transparent 11%),
    radial-gradient(circle at 42% 24%, rgba(120, 146, 182, 0.2) 0 18%, transparent 19%),
    radial-gradient(circle at 54% 44%, rgba(120, 146, 182, 0.28) 0 32%, transparent 33%),
    radial-gradient(circle at 56% 73%, rgba(120, 146, 182, 0.22) 0 20%, transparent 21%),
    linear-gradient(180deg, rgba(120, 146, 182, 0.08) 0%, rgba(120, 146, 182, 0.02) 100%),
    url("../assets/images/jybg.png") right bottom / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.15px);
}

.major-head {
  position: relative;
  z-index: 1;
  min-height: 74px;
  padding: 18px 24px 12px 28px;
  color: #fff;
  background-image: url(../assets/images/jstitle.png);
  background-size: 100% 100%;
  /* overflow: hidden; */
}

.major-head h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 700;
}

.major-body {
  position: relative;
  z-index: 1;
  padding: 18px 26px 24px 28px;
  color: #4b5568;
  line-height: 1.72;
  background: #fff;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.major-body p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #60656f;
}

.major-body ul {
  margin: 0;
  padding-left: 18px;
}

.major-body li {
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 13px;
}

.major-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 44px;
  margin-top: auto;
  background: #3f6bb0;
  color: #fff;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(48, 82, 138, 0.2);
}

.teachers-page {
  background: #fff;
}

.teachers-page-hero {
  height: 420px;
  background:url("../assets/images/3a0e8373d4578a485ac25bb76b8b3fc5.jpg") center/cover no-repeat;
}

.teacher-hero-inner {
  max-width: 900px;
}

.teacher-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.teacher-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.teacher-overview-section {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 10% 22%, rgba(38, 101, 172, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.teacher-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.teacher-overview-copy h2 {
  margin: 0 0 18px;
  color: #22334f;
  font-size: 32px;
  line-height: 1.34;
  font-weight: 800;
}

.teacher-overview-copy p {
  margin: 0 0 16px;
  color: #5d6676;
  font-size: 14px;
  line-height: 1.95;
}

.teacher-overview-panel {
  display: grid;
  gap: 16px;
}

.teacher-stat-card {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid rgba(38, 101, 172, 0.13);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
}

.teacher-stat-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(38, 101, 172, 0.08);
}

.teacher-stat-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-blue);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.teacher-stat-card span {
  display: block;
  color: #667185;
  font-size: 14px;
  line-height: 1.7;
}

.teacher-team-section {
  padding: 72px 0 78px;
  background: #fff;
}

.teacher-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.teacher-profile-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(34, 51, 84, 0.09);
}

.teacher-profile-photo {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #eaf1f8;
}

.teacher-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-profile-photo span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 47, 84, 0.14);
}

.teacher-profile-body {
  padding: 28px 28px 26px 0;
}

.teacher-profile-body h3 {
  margin: 0 0 10px;
  color: #22334f;
  font-size: 22px;
  line-height: 1.28;
}

.teacher-profile-body strong {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-blue);
  font-size: 14px;
  line-height: 1.5;
}

.teacher-profile-body p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.85;
}

.teacher-method-section {
  padding: 72px 0 78px;
  background: #f4f7fb;
}

.teacher-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.teacher-method-item {
  min-height: 220px;
  padding: 30px 24px 26px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
}

.teacher-method-item span {
  display: block;
  margin-bottom: 18px;
  color: rgba(38, 101, 172, 0.18);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.teacher-method-item h3 {
  margin: 0 0 12px;
  color: #22334f;
  font-size: 20px;
}

.teacher-method-item p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.8;
}

.teacher-support-section {
  padding: 64px 0 76px;
  background: #fff;
}

.teacher-support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, #3868aa, #244f8f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(38, 101, 172, 0.2);
}

.teacher-support-box .intro-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.teacher-support-box .intro-kicker::before {
  background: #fff;
}

.teacher-support-box h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.teacher-support-box p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.teacher-support-box .policy-cta {
  flex: 0 0 auto;
  width: 158px;
  background: #fff;
  color: var(--accent-blue);
}

.teachers-section {
  padding: 64px 0 76px;
  background: #fff;
}

.teachers-grid {
  display: grid;
  grid-template-columns: 28px repeat(5, minmax(0, 1fr)) 28px;
  gap: 20px;
  align-items: start;
}

.teacher-arrow {
  align-self: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #9aa0ad;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.teacher-card {
  text-align: center;
}

.teacher-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 168px;
  margin: 0 auto 12px;
  padding: 14px 0 0 0;
}

.teacher-photo-frame {
  position: absolute;
  inset: 0 0 0 0;
  /* border: 2px dashed rgba(120, 128, 145, 0.45); */
  border-radius: 2px;
}

.teacher-photo-wrap img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.teacher-tag {
  position: absolute;
  right: -8px;
  top: 28px;
  writing-mode: vertical-rl;
  background: #f6d5c8;
  color: #8d5d50;
  font-size: 12px;
  padding: 10px 4px;
  border-radius: 10px 10px 10px 0;
  z-index: 2;
}

.teacher-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.teacher-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #7a8190;
}

.policy-section {
  padding: 64px 0 72px;
  background: #f4f4f8;
}

.policy-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.policy-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(32, 53, 96, 0.08);
}

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

.policy-card h3 {
  margin: 14px 14px 8px;
  font-size: 15px;
}

.policy-card p {
  margin: 0 14px 16px;
  font-size: 12px;
  line-height: 1.7;
  color: #6d7484;
}

.policy-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.policy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 36px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
}

.policy-page {
  background: #fff;
}

.policy-page-hero {
  min-height: 430px;
  background: url("../assets/images/1629276975631.jpg") right center/cover no-repeat;

}

.policy-hero-inner {
  max-width: 900px;
}

.policy-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.policy-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.policy-news-section {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 9% 18%, rgba(38, 101, 172, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.policy-news-layout--single {
  display: block;
}

.policy-list-title {
  text-align: left;
  margin-bottom: 26px;
}

.policy-news-list {
  display: grid;
  gap: 22px;
}

.policy-news-item {
  overflow: hidden;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.policy-news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 101, 172, 0.26);
  box-shadow: 0 18px 34px rgba(34, 51, 84, 0.12);
}

.policy-news-item a {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
}

.policy-news-thumb {
  overflow: hidden;
  min-height: 210px;
  border-radius: 14px;
  background: #eaf1f8;
}

.policy-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.policy-news-item:hover .policy-news-thumb img {
  transform: scale(1.04);
}

.policy-news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.policy-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.policy-news-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(38, 101, 172, 0.08);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 800;
}

.policy-news-meta time {
  color: #8a94a8;
  font-size: 13px;
  line-height: 1;
}

.policy-news-content h3 {
  margin: 0 0 12px;
  color: #22334f;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.policy-news-content p {
  margin: 0 0 18px;
  color: #667185;
  font-size: 14px;
  line-height: 1.85;
}

.policy-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 36px;
  margin-top: auto;
  border-radius: 2px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.policy-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.policy-page-num,
.policy-page-btn,
.policy-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(38, 101, 172, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #5d6676;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(34, 51, 84, 0.06);
}

.policy-page-num.active,
.policy-page-num:hover,
.policy-page-btn:hover {
  border-color: var(--accent-blue);
  background: var(--accent-blue);
  color: #fff;
}

.policy-page-btn--disabled {
  opacity: 0.48;
  pointer-events: none;
}

.policy-page-ellipsis {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.campus-life-page {
  background: #fff;
}

.campus-life-hero {
  height: 430px;
  background:url("../assets/images/1629276962705.jpg") center/cover no-repeat;
}

.campus-life-hero-inner {
  max-width: 880px;
}

.campus-life-list-section {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 10% 18%, rgba(38, 101, 172, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.campus-life-title {
  text-align: left;
  margin-bottom: 26px;
}

.campus-life-list {
  display: grid;
  gap: 22px;
}

.campus-life-item {
  overflow: hidden;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.campus-life-item:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 101, 172, 0.26);
  box-shadow: 0 18px 34px rgba(34, 51, 84, 0.12);
}

.campus-life-item a {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 22px;
}

.campus-life-thumb {
  overflow: hidden;
  min-height: 210px;
  border-radius: 14px;
  background: #eaf1f8;
}

.campus-life-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.campus-life-item:hover .campus-life-thumb img {
  transform: scale(1.04);
}

.campus-life-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.campus-life-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.campus-life-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(38, 101, 172, 0.08);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 800;
}

.campus-life-meta time {
  color: #8a94a8;
  font-size: 13px;
  line-height: 1;
}

.campus-life-content h3 {
  margin: 0 0 12px;
  color: #22334f;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.campus-life-content p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.85;
}

.policy-detail-page {
  background: #fff;
}

.policy-detail-section {
  padding: 54px 0 72px;
  background: #f6f7fb;
}

.policy-detail-article {
  max-width: 1000px;
  padding: 0 48px 46px;
  background: #fff;
  border: 1px solid #e8edf5;
}

.policy-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  margin: 0 -48px 34px;
  padding: 0 48px;
  border-bottom: 1px solid #edf1f7;
  color: #8a94a8;
  font-size: 14px;
}

.policy-detail-breadcrumb a {
  color: #5d6676;
}

.policy-detail-breadcrumb a:hover {
  color: var(--accent-blue);
}

.policy-detail-breadcrumb strong {
  color: #5d6676;
  font-weight: 400;
}

.policy-detail-header {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #edf1f7;
  text-align: center;
}

.policy-detail-header h2 {
  margin: 0 0 18px;
  color: #222;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 700;
}

.policy-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  color: #999;
  font-size: 14px;
}

.policy-richtext {
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.policy-richtext p {
  margin: 0 0 18px;
  text-indent: 2em;
}

.policy-richtext img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

.policy-richtext h3,
.policy-richtext h4 {
  margin: 28px 0 14px;
  color: #222;
  font-weight: 700;
}

.policy-richtext ul,
.policy-richtext ol {
  margin: 0 0 18px 2em;
  padding-left: 1.2em;
}

.policy-richtext li {
  margin-bottom: 8px;
}

.policy-richtext blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 4px solid #d8e0ec;
  background: #f7f9fc;
  color: #555;
}

.policy-detail-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #edf1f7;
}

.policy-detail-actions .policy-cta {
  width: 126px;
}

.contact-page {
  background: #fff;
}

.signup-page {
  background: #fff;
}

.signup-page-hero {
  height: 420px;
  background: url("../assets/images/1629691205910.jpg") right center/cover no-repeat;
}

.signup-hero-inner {
  max-width: 860px;
}

.signup-section {
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 12% 18%, rgba(38, 101, 172, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6f7fb 100%);
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.signup-copy,
.signup-form {
  border: 1px solid #e8edf5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.07);
}

.signup-copy {
  padding: 34px 30px;
}

.signup-copy h2 {
  margin: 0 0 16px;
  color: #22334f;
  font-size: 32px;
  line-height: 1.28;
  font-weight: 800;
}

.signup-copy p {
  margin: 0 0 24px;
  color: #667185;
  font-size: 14px;
  line-height: 1.9;
}

.signup-contact-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3868aa, #244f8f);
  color: #fff;
}

.signup-contact-card strong {
  font-size: 16px;
}

.signup-contact-card a {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.signup-contact-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 20px;
  padding: 36px;
}

.signup-form-row {
  display: grid;
  gap: 10px;
}

.signup-form-row label {
  color: #22334f;
  font-size: 15px;
  font-weight: 800;
}

.signup-form-row input,
.signup-form-row textarea {
  width: 100%;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: #f9fbff;
  color: #233043;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-form-row input {
  height: 48px;
  padding: 0 16px;
}

.signup-form-row textarea {
  min-height: 136px;
  padding: 14px 16px;
  resize: vertical;
}

.signup-form-row input:focus,
.signup-form-row textarea:focus {
  border-color: var(--accent-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(38, 101, 172, 0.1);
}

.signup-submit {
  width: 156px;
  height: 46px;
  border: 0;
  border-radius: 3px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(38, 101, 172, 0.22);
}

.signup-submit:hover,
.signup-submit:focus-visible {
  background: #1f5798;
}

.signup-form-tip {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--accent-blue);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.contact-page-hero {
  height: 420px;
  background:url("../assets/images/1629277046219.jpg") center/cover no-repeat;
}

.contact-hero-inner {
  max-width: 860px;
}

.contact-info-section {
  padding: 76px 0 82px;
  background: #f6f7fb;
}

.contact-info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.contact-info-main,
.contact-side-panel {
  border: 1px solid #e8edf5;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 51, 84, 0.07);
}

.contact-info-main {
  padding: 36px;
}

.contact-info-title {
  margin-bottom: 26px;
  text-align: left;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  gap: 14px;
  min-height: 124px;
  padding: 20px 18px;
  border: 1px solid rgba(38, 101, 172, 0.12);
  border-radius: 14px;
  background: #f9fbff;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.contact-card h3 {
  margin: 0 0 8px;
  color: #22334f;
  font-size: 17px;
  font-weight: 800;
}

.contact-card p {
  margin: 0;
  color: #667185;
  font-size: 14px;
  line-height: 1.75;
}

.contact-map-panel {
  overflow: hidden;
  min-height: 360px;
  border-radius: 16px;
  border: 1px solid rgba(38, 101, 172, 0.14);
  background: #eef3f8;
}

.contact-map-frame {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  background: #eef3f8;
}

.contact-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border-top: 1px solid #e8edf5;
}

.contact-map-caption strong {
  color: #22334f;
  font-size: 15px;
  line-height: 1.5;
}

.contact-map-caption a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.contact-side-panel {
  padding: 30px 26px;
  border-radius: 18px;
}

.contact-side-panel h3 {
  margin: 0 0 12px;
  color: #22334f;
  font-size: 24px;
  font-weight: 800;
}

.contact-side-panel p {
  margin: 0 0 22px;
  color: #667185;
  font-size: 14px;
  line-height: 1.8;
}

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

.contact-qrcode-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 14px;
  background: #f7f9fd;
  text-align: left;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-qrcode-item:hover,
.contact-qrcode-item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(34, 51, 84, 0.1);
  outline: none;
}

.contact-qrcode-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}

.contact-qrcode-item span {
  color: #22334f;
  font-size: 15px;
  font-weight: 800;
}

.contact-phone-btn {
  width: 132px;
  margin-top: 24px;
}

body.preview-open {
  overflow: hidden;
}

.image-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 18, 34, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.image-preview-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.image-preview-dialog {
  position: relative;
  width: min(520px, 92vw);
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.image-preview-overlay.is-open .image-preview-dialog {
  transform: scale(1);
}

.image-preview-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(38, 101, 172, 0.24);
}

.image-preview-img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  background: #f7f9fd;
}

.image-preview-title {
  margin: 14px 0 0;
  color: #22334f;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.life-section {
  padding: 64px 0 72px;
  background: #fff;
}

.life-gallery {
  display: grid;
  gap: 14px;
}

.life-row {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.life-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.life-row-left .life-track {
  animation: scroll-left 30s linear infinite;
}

.life-row-right .life-track {
  animation: scroll-right 30s linear infinite;
}

.life-row:hover .life-track {
  animation-play-state: paused;
}

.life-track img {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.employment-section {
  padding: 34px 0 34px;
  background: #fff;
}

.employment-inner {
  position: relative;
  min-height: 320px;
  padding: 46px 40px 40px 44px;
  overflow: visible;
  border-radius: 12px;
  background: url("../assets/images/jybg.png") center/100% 100% no-repeat;
}

.employment-copy {
  position: relative;
  z-index: 2;
  padding: 0;
}

.employment-copy h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
  color: #373231;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.employment-copy p {
  margin: 0 0 38px;
  color: #62605f;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.employment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.employment-item {
  position: relative;
  min-height: 126px;
  padding: 84px 18px 20px 18px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(112, 76, 57, 0.08);
}

.employment-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.employment-item strong {
  display: block;
  margin: 0 0 10px;
  color: #313131;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.employment-item span {
  display: block;
  color: #8b8b8b;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.partners-section {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background: #3868aa;
  color: #fff;
}

.partners-section .container {
  width: min(1420px, calc(100% - 96px));
}

.partners-inner {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: start;
  padding: 78px 0 72px;
}

.partners-copy {
  padding-top: 4px;
}

.partners-copy h2 {
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.partners-copy p {
  width: 430px;
  margin: 0 0 70px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.partners-actions {
  display: flex;
  gap: 22px;
}

.partners-btn {
  width: 142px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
}

.partners-btn.primary {
  background: #fff;
  color: #3868aa;
  border-color: #fff;
  font-weight: 700;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: end;
  gap: 34px 18px;
  min-width: 0;
  padding-top: 18px;
}

.partner-box {
  width: 220px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 13px;
  padding: 16px 10px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.98);
  color: #353535;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 400;
  box-shadow: 0 4px 13px rgba(30, 68, 119, 0.06);
}

.partner-box-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.partner-box p {
  margin: 0;
}
.site-footer {
  background: #000;
  color: #fff;
  padding: 52px 0 44px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.25fr) minmax(260px, 1fr);
  gap: 42px;
  align-items: center;
}

.footer-contact {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-right: 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-phone-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 31px;
  line-height: 1;
}

.footer-address {
  padding-left: 1px;
  font-size: 21px;
  line-height: 1.3;
}

.footer-brand {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand img {
  width: min(100%, 553px);
  height: auto;
  display: block;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-left: 38px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-social-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  min-width: 66px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  outline: none;
}

.footer-social-item > img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.footer-social-qrcode {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 18px);
  z-index: 5;
  width: 148px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.footer-social-qrcode::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.footer-social-qrcode img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.footer-social-item:hover .footer-social-qrcode,
.footer-social-item:focus-visible .footer-social-qrcode,
.footer-social-item:focus-within .footer-social-qrcode {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 1200px) {
  .nav {
    gap: 30px;
    font-size: 13px;
  }

  .hero {
    min-height: 460px;
  }

  .hero-inner {
    min-height: 460px;
  }

  .hero-copy {
    padding-left: 44px;
  }

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

  .hero-copy p {
    margin-bottom: 18px;
  }

  .intro-inner,
  .intro-detail-grid,
  .intro-training-inner,
  .major-overview-grid,
  .teacher-overview-grid,
  .contact-info-layout,
  .signup-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .policy-news-item a,
  .campus-life-item a {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .major-detail-content {
    grid-template-columns: 1fr;
  }

  .major-course-grid,
  .major-path-grid,
  .teacher-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-image-wrap,
  .intro-detail-media {
    margin-left: 0;
    max-width: 760px;
    min-height: 360px;
  }

  .intro-inner--home {
    gap: 46px;
  }

  .intro-accent {
    width: 84%;
    height: 90%;
    background: linear-gradient(rgba(38, 101, 172, 0.84), rgba(38, 101, 172, 0.84)), url("../assets/images/hl-content.png") center/cover no-repeat;
  }

  .intro-image {
    width: 90%;
    max-width: 90%;
    height: 320px;
  }

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

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

  .teacher-arrow {
    display: none;
  }

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

  .life-gallery {
    gap: 12px;
  }

  .employment-inner,
  .partners-inner {
    grid-template-columns: 1fr;
  }

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

  .partners-section {
    min-height: auto;
  }

  .partners-section .container {
    width: min(100% - 40px, 1200px);
  }

  .partners-inner {
    gap: 38px;
    padding: 72px 0;
  }

  .partners-copy p {
    width: auto;
    margin-bottom: 40px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(220px, 243px));
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .nav {
    gap: 20px;
    font-size: 12px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-inner {
    min-height: 520px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    margin-bottom: 16px;
  }

  .intro-section,
  .major-section,
  .teachers-section,
  .policy-section,
  .life-section {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .intro-text h2,
  .section-title-block h2,
  .employment-copy h2 {
    font-size: 28px;
  }

  .partners-copy h2 {
    font-size: 40px;
  }

  .subpage-hero {
    padding: 82px 0 70px;
  }

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

  .intro-detail-section,
  .intro-values-section,
  .intro-training-section,
  .intro-cta-section,
  .major-overview-section,
  .major-detail-section,
  .major-path-section,
  .major-cta-section,
  .policy-news-section,
  .campus-life-list-section,
  .contact-info-section,
  .signup-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .major-overview-copy h2,
  .major-detail-head h2 {
    font-size: 28px;
  }

  .life-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
    --hero-height: 180px;
  }

  .container {
    width: min(100% - 20px, 1200px);
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    height: auto;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 10px;
    gap: 8px 12px;
  }

  .brand {
    max-width: calc(100% - 70px);
  }

  .brand-logo {
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .top-btn {
    display: none;
  }

  .nav {
    display: none;
  }

  .drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 40;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 50;
    box-shadow: -12px 0 24px rgba(17, 34, 68, 0.18);
    padding: 14px 16px 18px;
  }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: #2f3f59;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f7;
  }

  .drawer-close {
    width: 30px;
    height: 30px;
    border: 0;
    background: #f4f7fb;
    border-radius: 50%;
    color: #51617c;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }

  .drawer-nav {
    display: grid;
    gap: 8px;
    padding-top: 14px;
  }

  .drawer-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #f6f9fd;
    color: #2f3f59;
    font-size: 14px;
  }

  body.drawer-open .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.drawer-open .mobile-drawer {
    transform: translateX(0);
  }

  .hero {
    min-height: 520px;
    margin-top: var(--header-height);
  }

  .hero-inner {
    min-height: 520px;
    align-items: center;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 8px;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .hero-copy p {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.6;
  }

  .hero-cta {
    width: 110px;
    height: 34px;
    font-size: 12px;
  }

  .intro-section,
  .major-section,
  .teachers-section,
  .policy-section,
  .life-section {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .intro-inner {
    gap: 18px;
  }

  .intro-text h2,
  .section-title-block h2,
  .employment-copy h2 {
    font-size: 22px;
    line-height: 1.38;
    margin: 0 0 14px;
  }

  .partners-copy h2 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.25;
  }

  .intro-text p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 16px;
  }

  .intro-image-wrap {
    padding-top: 6px;
    min-height: 260px;
  }

  .intro-section--home {
    padding: 56px 0 62px;
  }

  .intro-text--home h2 {
    margin-bottom: 24px;
    padding-bottom: 20px;
    font-size: 28px;
  }

  .intro-text--home p {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.9;
  }

  .intro-image-wrap--home {
    min-height: 300px;
    padding-right: 14px;
  }

  .intro-accent {
    width: 84%;
    height: 86%;
    right: 8px;
    top: 4px;
    background: linear-gradient(rgba(38, 101, 172, 0.84), rgba(38, 101, 172, 0.84)), url("../assets/images/hl-content.png") center/cover no-repeat;
  }

  .intro-image {
    width: 92%;
    max-width: 92%;
    height: 240px;
    margin-top: 12px;
  }

  .intro-accent--home {
    right: 0;
    top: 0;
    width: calc(100% - 46px);
    height: calc(100% - 44px);
    background: #3868aa;
  }

  .intro-image--home {
    width: calc(100% - 18px);
    max-width: none;
    height: 300px;
    margin-top: 14px;
  }

  .teachers-grid,
  .policy-cards,
  .employment-grid,
  .partners-grid,
  .intro-values-grid,
  .intro-training-list,
  .major-course-grid,
  .major-path-grid,
  .teacher-method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-news-item a,
  .campus-life-item a,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .policy-news-thumb,
  .campus-life-thumb {
    min-height: 220px;
  }

  .policy-detail-article {
    padding-right: 28px;
    padding-left: 28px;
  }

  .policy-detail-breadcrumb {
    margin-right: -28px;
    margin-left: -28px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .policy-detail-header h2 {
    font-size: 26px;
  }

  .teacher-profile-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .teacher-support-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }

  .major-detail-card {
    padding: 28px 22px;
  }

  .major-detail-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .major-detail-index {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    font-size: 22px;
  }

  .major-hero-tags {
    gap: 8px;
    margin-top: 22px;
  }

  .teacher-photo-wrap {
    max-width: 100%;
  }

  .teacher-photo-wrap img {
    height: 180px;
  }

  .employment-copy,
  .partners-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .partners-inner {
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .partners-copy p {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.75;
  }

  .partners-actions {
    gap: 12px;
  }

  .partners-btn {
    width: 136px;
    height: 46px;
    font-size: 17px;
  }

  .partners-grid {
    gap: 18px;
  }

  .partner-box {
    width: auto;
    height: 112px;
    font-size: 17px;
    border-radius: 12px;
  }

  .employment-inner {
    padding: 34px 24px 28px;
    min-height: auto;
    background-size: cover;
  }

  .employment-grid {
    gap: 14px;
  }

  .employment-item {
    padding-top: 76px;
  }

  .partners-actions {
    flex-wrap: wrap;
  }

  .contact-info-main,
  .contact-side-panel,
  .signup-copy,
  .signup-form {
    padding: 28px 22px;
  }

  .contact-map-frame {
    height: 300px;
  }

  .contact-map-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 52px;
    --hero-height: 160px;
  }

  .container {
    width: min(100% - 16px, 1200px);
  }

  .brand-logo {
    height: 36px;
  }

  .menu-toggle {
    width: 32px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner {
    min-height: 600px;
  }

  .hero-copy h1 {
    font-size: 22px;
  }

  .hero-copy p {
    font-size: 12px;
    line-height: 1.55;
  }

  .hero-cta {
    width: 100px;
    height: 32px;
    font-size: 12px;
  }

  .intro-section,
  .major-section,
  .teachers-section,
  .policy-section,
  .life-section {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .intro-text h2,
  .section-title-block h2,
  .employment-copy h2 {
    font-size: 20px;
  }

  .partners-copy h2 {
    font-size: 28px;
  }

  .intro-text p {
    font-size: 13px;
    line-height: 1.8;
  }

  .intro-image-wrap {
    padding-top: 10px;
    min-height: 260px;
  }

  .intro-section--home {
    padding: 42px 0 48px;
  }

  .intro-text--home h2 {
    font-size: 22px;
  }

  .intro-image-wrap--home {
    min-height: 230px;
  }

  .intro-image {
    width: 92%;
    max-width: 92%;
  }

  .intro-image--home {
    height: 230px;
  }

  .intro-accent {
    right: 8px;
    width: 82%;
    height: 86%;
    background: linear-gradient(rgba(38, 101, 172, 0.84), rgba(38, 101, 172, 0.84)), url("../assets/images/jstitle.png") center/cover no-repeat;
  }

  .intro-accent--home {
    right: 0;
    width: calc(100% - 38px);
    height: calc(100% - 36px);
    background: #3868aa;
  }

  .major-body {
    padding: 16px 16px 18px;
  }

  .teachers-grid,
  .policy-cards,
  .employment-grid,
  .partners-grid,
  .intro-values-grid,
  .intro-training-list,
  .major-course-grid,
  .major-path-grid,
  .teacher-method-grid {
    grid-template-columns: 1fr;
  }

  .policy-news-item a,
  .campus-life-item a {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .contact-info-main,
  .contact-side-panel,
  .signup-copy,
  .signup-form {
    padding: 22px 16px;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-qrcode-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .signup-copy h2 {
    font-size: 22px;
  }

  .signup-contact-card a {
    font-size: 24px;
  }

  .signup-submit {
    width: 100%;
  }

  .contact-map-frame {
    height: 260px;
  }

  .image-preview-dialog {
    padding: 16px 16px 14px;
  }

  .contact-qrcode-item img {
    width: 96px;
    height: 96px;
  }

  .policy-news-thumb,
  .campus-life-thumb {
    min-height: 180px;
  }

  .policy-news-content h3,
  .campus-life-content h3 {
    font-size: 18px;
  }

  .policy-news-content p,
  .campus-life-content p {
    font-size: 13px;
  }

  .policy-pagination {
    gap: 8px;
    margin-top: 26px;
  }

  .policy-page-num,
  .policy-page-btn,
  .policy-page-ellipsis {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .policy-detail-section {
    padding: 32px 0 46px;
  }

  .policy-detail-article {
    padding-right: 16px;
    padding-left: 16px;
  }

  .policy-detail-breadcrumb {
    min-height: 46px;
    margin-right: -16px;
    margin-bottom: 24px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 12px;
  }

  .policy-detail-header {
    padding-bottom: 18px;
    margin-bottom: 22px;
  }

  .policy-detail-header h2 {
    font-size: 21px;
  }

  .policy-detail-meta,
  .policy-richtext {
    font-size: 14px;
  }

  .policy-richtext {
    line-height: 1.9;
  }

  .policy-detail-actions {
    margin-top: 24px;
    padding-top: 22px;
  }

  .teacher-profile-card {
    grid-template-columns: 1fr;
  }

  .teacher-profile-photo {
    min-height: 240px;
  }

  .teacher-profile-body {
    padding: 24px 20px 24px;
  }

  .major-overview-copy h2,
  .major-detail-head h2,
  .teacher-overview-copy h2,
  .teacher-support-box h2 {
    font-size: 22px;
  }

  .major-course-block {
    padding: 20px 16px;
  }

  .teacher-photo-wrap img {
    height: 220px;
  }

  .life-gallery img {
    height: 160px;
  }

  .employment-item,
  .partner-box {
    min-height: 54px;
  }

  .partner-box {
    height: 104px;
  }

  .employment-section {
    padding-top: 24px;
  }

  .employment-inner {
    padding: 28px 18px 22px;
  }

  .partners-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .partners-btn {
    width: 100%;
  }

  .site-footer {
    padding: 34px 0 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact,
  .footer-brand {
    min-height: auto;
    padding: 0;
    border-right: 0;
  }

  .footer-phone {
    justify-content: center;
    font-size: 28px;
  }

  .footer-phone-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 24px;
  }

  .footer-address {
    font-size: 16px;
  }

  .footer-brand {
    order: -1;
  }

  .footer-social {
    justify-content: center;
    gap: 34px;
    padding-left: 0;
  }

  .footer-social-item {
    font-size: 15px;
  }

  .footer-social-item > img {
    width: 44px;
    height: 44px;
  }

  .footer-social-qrcode {
    width: 128px;
    bottom: calc(100% + 14px);
  }
}
