:root {
  --color-primary: #0068b3;
  --color-primary-light: #33bbff;
  --color-primary-dark: #0088cc;
  --color-accent: #ffaa00;

  --text-primary: #262626;
  --text-secondary: #595959;
  --text-tertiary: #8c8c8c;
  --text-disabled: #bfbfbf;
  --text-white: #ffffff;

  --bg-card: linear-gradient(rgba(0, 104, 179, 0.06) 0%, rgba(0, 104, 179, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);

  --font-cn: "Noto Sans SC", sans-serif;
  --font-en: "Anonymous Pro", monospace;

  --page-width: 100%;
  --page-padding: 1rem;
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;

  --font-size-xs: 0.8125rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;

  --line-height-sm: 1.25rem;
  --line-height-base: 1.5rem;
  --line-height-lg: 1.75rem;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(100vw / 375 * 16);
  -webkit-text-size-adjust: 100%;
}

@media (min-width: 750px) {
  html {
    font-size: 2rem;
  }
}

body {
  font-family: var(--font-cn);
  background: #f5f5f5;
  color: var(--text-primary);
  line-height: 1.5;
  max-width: 768px;
  min-width: 320px;
  margin: 0 auto;
  position: relative;
  overflow-x:hidden;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}


#page-header {
  display: contents;
}

.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
  display: none;
}

.page-wrapper {
  max-width: var(--page-width);
  margin: 0 auto;
  background: #fff;
  position: relative;
  width: 100vw;
}

.page-wrapper:has(.menu-modal--open) .nav {
  z-index: 100000;
}

.nav {
  ---round-size: 1.875rem;
  position: sticky;
  top: 0;
  width: var(--page-width);
  height: 5rem;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 104, 179, 0.9) 0%, rgba(0, 104, 179, 0.6) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.15));

}

.nav::before, 
.nav::after {
  position: absolute;
  content: '';
  top: 100%;
  width: var(---round-size);
  height: var(---round-size);
  background: #fff;
}

.nav.nav::before {
  left: 0;
  mask: radial-gradient(circle var(---round-size) at 100% 100%, transparent 0, transparent var(---round-size), black var(---round-size));
}

.nav::after {
  right: 0;
  mask: radial-gradient(circle var(---round-size) at 0 100%, transparent 0, transparent var(---round-size), black var(---round-size));
}

.menu-modal--open .nav {
  z-index: 201;
}

.nav__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow: hidden;
}

.nav__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  height: 5rem;
}

.nav__menu,
.nav__phone {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav__phone {
  text-decoration: none;
}

.nav__menu img,
.nav__phone img {
  width: 1.5rem;
  height: 1.5rem;
}

.nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav__logo-img {
  width: 6rem;
  height: 4.5rem;
}

.banner {
  position: relative;
  height: 40rem;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
}

.banner__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.banner__slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner__slide--active {
  opacity: 1;
}

.banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.banner__indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner__indicator--active {
  background: rgba(255, 255, 255, 0.9);
}

.banner__overlay-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 104, 179, 0.1) 0%, rgba(0, 104, 179, 0.8) 100%);
}

.banner__overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner__decor {
  position: absolute;
  top: 0;
  left: 1.75rem;
  width: 20rem;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__decor-rotated {
  transform: rotate(90deg);
}

.banner__decor-rotated img {
  width: 40rem;
  height: 20rem;
}

.banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.banner__tag-row {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.banner__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-white);
  line-height: var(--line-height-sm);
}

.banner__tag--outline {
  border: 0.0625rem solid rgba(255, 255, 255, 0.8);
}

.banner__tag--filled {
  background: linear-gradient(108.991deg, rgb(46, 168, 229) 0%, rgb(0, 104, 179) 100%);
}

.banner__title {
  position: absolute;
  top: 5rem;
  left: 1.5rem;
}

.banner__title-line1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 4.5rem;
  background: linear-gradient(169.004deg, rgb(0, 104, 179) 0%, rgb(255, 255, 255) 48.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner__title-line2 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 5rem;
  background: linear-gradient(-22.8724deg, rgb(255, 255, 255) 43.635%, rgb(51, 187, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner__subtitle {
  position: absolute;
  top: 16rem;
  left: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.75rem;
  color: var(--text-white);
  letter-spacing: -0.0225rem;
  white-space: nowrap;
}

.banner__desc {
  position: absolute;
  top: 21.5rem;
  left: 1.5rem;
  width: 20.4375rem;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-white);
}

.banner__company {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28rem;
  width: 20.4375rem;
  height: 12rem;
}

.banner__company-bg {
  position: absolute;
  inset: 0;
}

.banner__company-bg img {
  width: 100%;
  height: 100%;
}

.banner__company-info {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 0;
}

.banner__company-name {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: var(--line-height-lg);
  color: var(--text-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.banner__company-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.banner__company-sub {
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.section-title {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 375 / 204;
  background-image: url("../assets/section-title-bg-blue-stroke2.svg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.section-title__badges {
  margin-bottom: 0.5rem;
}

.section-title__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.75rem;
  border-radius: 1.5rem;
  background: var(--color-primary-light);
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--text-white);
}

.section-title__en {
  font-family: var(--font-cn);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  opacity: 0.2;
  white-space: nowrap;
}

.section-title__cn {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  line-height: 2.5rem;
  color: var(--color-primary);
  margin-bottom: -0.7rem;
}

.section-title__cn--large {
  font-size: var(--font-size-xl);
}

.section-title__desc {
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--text-secondary);
}

.section-1 .section-title {
  margin-top: -6.25rem;
  z-index: 10;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
}

.service-card__number {
  display: flex;
  gap: 0.125rem;
  height: 1rem;
  align-items: flex-start;
  line-height: 0.9375rem;
  font-style: normal;
}

.service-card__number-bracket {
  font-family: var(--font-en);
  font-size: var(--font-size-sm);
  color: var(--color-primary-dark);
}

.service-card__number-value {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-base);
  color: var(--color-accent);
  text-align: center;
}

.service-card__title {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

.service-card__desc {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.process-section {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.process-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem;
  background: rgba(0, 104, 179, 0.05);
  border-radius: var(--border-radius-md);
  margin-bottom: 0.5rem;
  /*width: fit-content;*/
  justify-content: space-around;
}

.process-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--line-height-lg);
  color: var(--text-tertiary);
}

.process-tab--active {
  background: #fff;
  color: var(--color-primary);
}

.process-content {
  display: block;
}

.process-content--hidden {
  display: none;
}

.process-steps {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  padding: 0.25rem 0;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1rem 0.375rem 1.5rem;
}

.process-step__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.1875rem 0.25rem 0.25rem;
  background: var(--color-accent);
  border-radius: 1.25rem;
  flex-shrink: 0;
}

.process-step__number {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-base);
  line-height: 1rem;
  color: var(--text-white);
  text-align: center;
  width: 1.25rem;
  letter-spacing: -0.1rem;
}

.process-step__text {
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

.process-divider {
  width: 21.4375rem;
  height: 1.9847rem;
  position: relative;
}

.process-divider__line {
  width: 100%;
  height: 100%;
  display: block;
}

.process-divider__arrow {
  position: absolute;
  left: 1.78125rem;
  top: 0.9375rem;
  width: 0.9375rem;
  height: 0.2863rem;
}

.process-note {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-disabled);
  margin-top: 0.5rem;
}

.weight-section {
  margin-top: 1rem;
}

.weight-section__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--line-height-lg);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.weight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
}

.weight-card--no-padding-right {
  padding-right: 0;
}

.weight-chart {
  width: 7.5rem;
  height: 7.5rem;
}

.weight-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.weight-legend__item {
  display: flex;
  align-items: flex-start;
}

.weight-legend__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  margin-top: 0.375rem;
  margin-right: 0.5rem;
}

.weight-legend__label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  margin-bottom: 0.25rem;
}

.weight-legend__value {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.weight-legend__dot--primary,
.weight-legend__label--primary,
.weight-legend__value--primary {
  color: #0068b3;
}

.weight-legend__dot--primary {
  background: #0068b3;
}

.weight-legend__dot--light,
.weight-legend__label--light,
.weight-legend__value--light {
  color: #33bbff;
}

.weight-legend__dot--light {
  background: #33bbff;
}

.weight-legend__dot--dark,
.weight-legend__label--dark,
.weight-legend__value--dark {
  color: #0088cc;
}

.weight-legend__dot--dark {
  background: #0088cc;
}

.weight-legend__dot--accent,
.weight-legend__label--accent,
.weight-legend__value--accent {
  color: #ffaa00;
}

.weight-legend__dot--accent {
  background: #ffaa00;
}

.schools-scroll {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
}

.schools-track {
  display: flex;
  gap: 1rem;
}

.school-card {
  display: block;
  width: 20rem;
  flex-shrink: 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-card);
  scroll-snap-align: center;
}

.school-card__top {
  position: relative;
}

.school-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.school-card__name {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
}
.school-card__header>div:first-child{
    max-width: 64%;
}
.school-card__name-en {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-tertiary);
  margin-top: 0.125rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.school-card-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.school-card__qs {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
  text-align: center;
  white-space: nowrap;
}

.school-card__qs-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-xl);
  line-height: 2.125rem;
  color: var(--color-primary);
}

.school-card__qs-value {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-3xl);
  line-height: var(--font-size-3xl);
  color: var(--color-accent);
}

.school-card__image {
  position: relative;
  width: 20rem;
  height: 15rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}
.school-card__image img{
    width: 100%;
}
.school-card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 7.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.school-card__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.school-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 6.625rem;
}

.school-card__stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.5;
}

.school-card__stat-value {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: var(--line-height-base);
  color: var(--text-white);
  margin-top: 0.25rem;
}

.school-card__stat-label {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-white);
  margin-top: 0.25rem;
}

.school-card__divider {
  position: absolute;
  bottom: 1rem;
  width: 0;
  height: 3.75rem;
}

.school-card__divider img {
  width: 100%;
  height: 100%;
}

.school-card__info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.school-card__info-row {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.school-card__info-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--text-tertiary);
}

.school-card__info-value {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.school-card__link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.school-card__link-text {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-tertiary);
  white-space: nowrap;
}

.school-card__link-arrow {
  width: 1rem;
  height: 1rem;
}

.school-card__link-arrow img {
  width: 100%;
  height: 100%;
}

.coverage-section {
  padding: 1rem 0 0;
  position: relative;
  z-index: 1;
}

.coverage-title,
.disciplines-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: var(--line-height-lg);
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  padding: 0 1rem;
}

.disciplines-title {
  margin: 0 1rem;
  padding: 0;
}

.coverage-title__cn,
.disciplines-title__cn {
  font-weight: 700;
  margin-bottom: -0.75rem;
}

.coverage-title__en,
.disciplines-title__en {
  font-weight: 500;
  opacity: 0.1;
}

.coverage-card {
  padding: 1rem 0;
  border-radius: var(--border-radius-md);
}

.coverage-desc {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.coverage-regions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.coverage-region {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.coverage-region:first-child {
  margin-left: 1rem;
}

.coverage-region:last-child {
  margin-right: 1rem;
}

.coverage-region__title {
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-base);
  color: var(--color-accent);
}

.coverage-countries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.country-chip {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 2.5rem;
  background: var(--bg-card);
}

.country-flag {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
}

.country-name {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
  white-space: nowrap;
}

.coverage-note {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
  margin-top: 1rem;
  padding: 0 1rem;
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.discipline-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  width: 4.75rem;
}

.discipline-icon {
  width: 3rem;
  height: 3rem;
}

.discipline-icon img {
  width: 100%;
  height: 100%;
}

.discipline-name {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--text-primary);
  text-align: center;
  width: 3.75rem;
}

.guarantees-section {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.guarantees-logo {
  width: 11.25rem;
  height: 11.25rem;
  margin: 0 auto 1rem;
}

.guarantees-logo img {
  width: 100%;
  height: 100%;
}

.guarantees-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guarantee-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  overflow: hidden;
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  background: var(--bg-card);
  position: relative;
}

.guarantee-item__number {
  position: absolute;
  left: 0.5rem;
  top: -0.25rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 3.5rem;
  color: var(--color-accent);
  opacity: 0.2;
}

.guarantee-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.guarantee-item__title {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
  white-space: nowrap;
}

.guarantee-item__desc {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 19.5rem;
  position: relative;
  width: 10rem;
}

.team-card__photo {
  position: relative;
  z-index: 2;
  margin-bottom: -3rem;
}

.team-card__photo-wrapper {
  width: 100%;
  height: 12.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: #e6e6e6;
  position: relative;
}

.team-card__photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.team-card__name {
  position: absolute;
  bottom: 2.5rem;
  left: 0.75rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: var(--font-size-2xl);
  color: var(--text-white);
}

.team-card__role {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.5rem;
  background: var(--color-primary-light);
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--text-white);
}

.team-card__desc {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-top: 4rem;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
}

.team-card__desc-text {
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.data-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  padding: 0 0.5rem;
  text-align: center;
}

.data-item__value {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-3xl);
  line-height: var(--font-size-3xl);
}

.data-item__value--primary {
  color: var(--color-primary);
}

.data-item__value--primary-light {
  color: var(--color-primary-light);
}

.data-item__value--primary-dark {
  color: var(--color-primary-dark);
}

.data-item__label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.reviews-section {
  padding: 0 1rem 1rem;
}

.reviews-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: var(--line-height-base);
  color: var(--color-primary);
}

.reviews-title__en {
  color: #0068b3;
  font-size: var(--font-size-lg);
  font-style: normal;
  font-weight: 500;
  line-height: var(--line-height-lg);
  opacity: 0.1;
  margin-top: -0.8rem;
  margin-bottom: 1rem;
}

.reviews-track {
  display: flex;
  gap: 0.5rem;
}

.review-card {
  width: 16.875rem;
  flex-shrink: 0;
  position: relative;
}

.review-card__quote {
  position: relative;
  z-index: 2;
  margin-bottom: -1.5rem;
}

.review-card__quote-bg {
  width: 2.25rem;
  height: 2.25rem;
}

.review-card__quote-bg img {
  width: 100%;
  height: 100%;
}

.review-card__quote-mark {
  position: absolute;
  left: 0.5625rem;
  top: 0.75rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: var(--line-height-base);
  color: var(--text-white);
}

.review-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1rem 1rem;
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
}

.review-card__text {
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__author {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

.review-card__school {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: var(--line-height-sm);
  color: var(--color-accent);
  text-align: right;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1rem;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background: var(--bg-card);
}

.footer__branding {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem 0 1rem;
  width: 100%;
}

.footer__brand-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.footer__brand-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: var(--font-size-lg);
  color: var(--color-primary);
  letter-spacing: -0.0375rem;
}

.footer__brand-cn {
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--color-accent);
}

.footer__dot {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: var(--font-size-lg);
  line-height: var(--font-size-lg);
  color: var(--color-accent);
  width: 0.625rem;
}

.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  padding: 1rem 0 2rem;
  border-top: 0.0625rem solid #fff;
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--text-secondary);
  white-space: nowrap;
  width: 100%;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--page-width);
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.15);
  z-index: 100;
  max-width: 768px;
}

.bottom-bar__primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  border-radius: var(--border-radius-md);
  min-width: 0;
}

.bottom-bar__primary-text {
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: var(--line-height-lg);
  color: var(--text-white);
  white-space: nowrap;
}

.bottom-bar__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 0.0625rem solid var(--color-accent);
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
}

.bottom-bar__secondary-text {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: var(--line-height-lg);
  color: var(--color-accent);
  white-space: nowrap;
}

.section-gap {
  height: 1rem;
}

.page-bottom-space {
  height: 5.75rem;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-modal--open {
  opacity: 1;
  visibility: visible;
}

.menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.menu-modal__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: var(--page-width);
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.menu-modal--open .menu-modal__content {
  transform: translateX(0);
}

.menu-modal__dropdown {
  position: relative;
  margin-top: 4.5rem;
  padding: 1rem;
  border-radius: 1.5rem 1.5rem 0 0;
  pointer-events: auto;
}

.menu-modal__card {
  background: linear-gradient(rgba(0, 104, 179, 0.06) 0%, rgba(0, 104, 179, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}

.menu-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #e6e6e6;
}

.menu-modal__item:last-child {
  border-bottom: none;
}

.menu-modal__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  color: var(--text-primary);
}

.menu-modal__item-arrow {
  width: 1rem;
  height: 1rem;
}

.menu-modal__countries-section {
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid #e6e6e6;
}

.menu-modal__countries-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--text-disabled);
  margin-bottom: 0.25rem;
}

.menu-modal__countries-grid {
  display: grid;
  grid-template-columns: repeat(3, fit-content(100%));
  gap: 0.25rem;
}

.menu-modal__country {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--text-primary);
  border-radius: 0.25rem;
}

.menu-modal__country:active {
  background: rgba(0, 104, 179, 0.05);
}


/*院校动态*/
.grid{
  display: grid;
}
.flex-col {
  flex-direction: column;
}
.new-list{
  grid-template-columns: repeat(2, minmax(0rem, 1fr));
  gap: 1rem;
}
.new-list li img{
  object-position: center center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.new-list li a>div{
  border-radius: 0.9375rem 0.9375rem 1.5625rem 0;
  overflow: hidden;
  aspect-ratio: 1.5/ 1;
}
.new-list li h3{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: 600;
  margin-top: 1rem;
}
.vg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin: 2rem 0;
}
.vg-pagination li a{
  background: #f2f2f2;
  min-width: 2.25rem;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.625rem;
  display: inline-flex;
  font-weight: 700;
}
.vg-pagination li:last-child a,.vg-pagination li:first-child a{
    background: none !important;
    font-weight: 500;
}
.vg-pagination li.active a{
  background-color: var(--color-primary-light);
  color: var(--text-white);
}
.new-form {
  margin-bottom: 1.5rem;
  position: relative;
}
.new-form input{
  border-radius: 1.875rem;
  border: 0.0625rem solid #ddd;
  width: 100%;
  line-height: 3.125rem;
  height: 3.125rem;
  padding: 0 0.9375rem;
}
.new-form input:focus{
  outline: none;
  border-color: var(--color-primary);
}
.new-form .absolute{
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
}

/*new-info*/
.new-info-title{
  font-size: 1.8rem;
  padding: 3rem 0rem 0rem 0rem;
  text-align: center;
}
.new-info-date{
  text-align: center;
  color: #999;
  margin-bottom: 1.2rem;
  border-bottom: 0.0625rem solid #eee;
  padding-bottom: 1.2rem;
}
.new-info{
  padding-bottom: 2rem;
}


/*GUIDE*/
.major-list li{
    border: 0.0625rem solid #ddd;
    border-radius: 0.9375rem;
    padding: 1.25rem;
    margin-top: 1rem;
    position: relative;
    cursor: pointer;
}
.major-list li .down-btn{
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    background: url(../images/down.png) center center no-repeat;
    position: absolute;
    top: 1.25rem;
    right: 0.625rem;
}
.major-list li.on .down-btn{
    transform: rotate(180deg)
}
.major-list li b{
   border-radius: 1.25rem;
   display: inline-block;
   background: #DFA359;
   color: #fff;
   padding: 0.3125rem 0.625rem;
   margin-bottom: 0.9375rem;
}
.major-list li>p{
    font-size: 1rem;
}
.major-info{
    border-top:0.0625rem solid #ddd;
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
    display: none;
}
.admissions-list .major-info{
   display: block;
   border-top: 0rem;
   margin-top: 0rem;
}
.admissions-list li h2{
    margin: 0rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}
.admissions-list li h2 span{
    color: #DFA359;
    font-size: 3.125rem;
    display: inline-block;
    margin-right: 0.9375rem;
    margin-top: -0.25rem;
}

.qrcode-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrcode-modal--open {
  opacity: 1;
  visibility: visible;
}

.qrcode-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.qrcode-modal__content {
  position: relative;
  z-index: 1;
  width: 20rem;
  background: #fff;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.qrcode-modal__close {
  position: absolute;
  top: 106%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 0.125rem solid var(
  --color-primary);
  border-radius: 50%;
  cursor: pointer;
  color: var(
  --color-primary);
  box-shadow: 0 0.375rem 1rem rgba(0, 104, 179, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qrcode-modal__close:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 104, 179, 0.35);
  transform: scale(1.05) rotate(90deg);
}

.qrcode-modal__close:active {
  transform: scale(0.95) rotate(90deg);
}

.qrcode-modal__qrcode {
  width: 100%;
  /* height: 18rem; */
}

.qrcode-modal__qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qrcode-modal__text {
  font-size: var(--font-size-lg);
  font-weight: 500;
  line-height: var(--line-height-lg);
  color: var(--text-primary);
}