﻿@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('../assets/font/AlibabaPuHuiTi-3-75-SemiBold.woff2') format('woff2');
  font-display: swap;
}

:root {
  --color-primary: #B50604;
  --color-primary-dark: #8a1a1d;
  --color-accent-green: #FFB301;
  --color-text: #000;
  --color-text-light: #000;
  --color-border: #e8e8e8;
  --color-bg-light: #f6f6f6;
  --color-white: #fff;
  --container-max: 1200px;
  --header-height-mobile: 68px;
  --header-height-pc: 110px;
  --bp-mobile: 767px;
}

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

/* 中文默认基准字号 */
html[lang="zh"] {
  font-size: 16px; /* 基准根字号，保持原有设计 */
}

/* 英文整体缩小，全局文字统一变小 */
html[lang="en"] {
  font-size: 14px; /* 整体缩小2px，对应你要的「小两个字号」 */
  letter-spacing: -0.0125rem; /* 英文紧凑字距，可选保留 */
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-variation-settings: 'opsz' auto;
  font-feature-settings: 'kern' on;
  letter-spacing: 0.02em;
  color: var(--color-text);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font: inherit;
}

main {
  flex: 1;
}

/* container mixin */
.page-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* section-padding mixin */
.section-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-block {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .contact-section{
    background-image: url('../assets/images/home/yun.png');
    background-repeat: repeat;
    background-size: auto;
  }
}

@media (min-width: 1025px) {
  .section-block {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary) !important;
  border: 0.0625rem solid var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: 1.625rem !important;
  min-width: 12.5rem;
  width: 12.5rem;
  height: 3.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  letter-spacing: 0.0625rem;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  border: 0.0625rem solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 1.125rem;
  width: 10rem;
  height: 2.25rem;
  font-size: 1.125rem;
  cursor: pointer;
}

.text-primary {
  color: var(--color-primary);
}

.text-link-active {
  color: var(--color-primary);
  font-weight: 600;
}

.is-hidden {
  display: none !important;
}

/* Section Title */
.section-title {
  margin-bottom: 2rem;
}

.section-title--center {
  text-align: center;
}

.section-title--center .section-title__line {
  margin-left: auto;
  margin-right: auto;
}

.section-title--center .section-title__line__pc {
  margin-left: auto;
  margin-right: auto;
}


.section-title h2 {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 4rem;
  }
}

.section-title__line {
  display: block;
  width: 5.75rem;
  height: 0.5rem;
}

/* App Header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.06);
  height: var(--header-height-mobile);
}

@media (min-width: 768px) {
  .app-header {
    height: var(--header-height-pc);
    background-color: #B50604;
  }
}


.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 0.75rem;
  padding: 0 1rem !important;
}

@media (min-width: 767px) {
  .app-header__inner{
    padding: 0 !important;
  }
}

.app-header__logo,
.app-header__logo__mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.app-header__logo,
.app-header__logo__mobile .logo-img {
  width: 5rem;
  height: 3.75rem;
  object-fit: contain;
}

.app-header__nav {
  display: none;
  align-items: center;
  gap: 0rem;
  flex: 1;
  justify-content: center;
  padding: 0 !important;
  flex-shrink: 1; /* 允许缩小，Chrome默认生效，火狐需要手动写 */
  min-width: 0; /* 解决火狐flex子元素不收缩经典bug */
}

@media (min-width: 768px) {
  .app-header__nav {
    display: flex;
  }
  .app-header__logo__mobile{
    display: none;
  }
  .app-header__logo,
  .app-header__logo__mobile .logo-img {
    width: 5.5rem;
    height: 5.5rem;
    object-fit: contain;
  }
}

.app-header__nav--compact {
  gap: 0.75rem;
}

.app-header__nav--compact .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-link {
  font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  white-space: nowrap;
  padding: 0.6875rem 1.125rem;
  border-radius: 1.625rem;
  border-bottom: 0.125rem solid transparent;
  transition: color 0.2s;
}

#lang-trigger-label{
  color: #fff;
}

.nav-link--active {
  color: #fff;
  font-weight: 700;
  border-bottom-color: var(--color-primary);
  background: #fff;
  color: #B50604;
}

.app-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.menu-btn--mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .menu-btn--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .lang-switch--desktop {
    display: none;
  }

  .user-avatar {
    display: none;
  }
}

/* Lang Switch */
.lang-switch__trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
  color: #B50604;
  border: none;
  background: none;
  padding: 0 !important;
}

.lang-switch__trigger:hover {
  color: #B50604;
}

.lang-switch__icon {
  width: 1.0938rem;
  height: 1.0938rem;
  flex-shrink: 0;
  margin-right: 0.3125rem;
}

.lang-switch__arrow {
  width: 0.8125rem;
  height: 0.4688rem;
  flex-shrink: 0;
  margin-left: 0.625rem;
}

.lang-switch {
  position: relative;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: #fff;
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.25rem;
  min-width: 7.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  z-index: 200;
}

.lang-dropdown.is-open {
  display: block;
}

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
}

.lang-dropdown button:hover {
  background: var(--color-bg-light);
}

.lang-switch--drawer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.lang-drawer-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 35%;
  padding: 1.125rem 0.75rem;
  border: none;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-text);
  white-space: nowrap;
}

.lang-drawer-item .arrow {
  margin-left: auto;
  color: #999;
}
.lang-drawer-item__arrow {
  width: 0.4925rem;
  height: 0.8869rem;
  flex-shrink: 0;
}
.lang-drawer-item.active {
  font-weight: 700;
}

.lang-badge {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 0.25rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-drawer.is-open .mobile-drawer__mask {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  transform: translateX(100%);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 0;
  height: 4.25rem;
  padding: 0 1.1875rem 0 1.625rem !important;
  background-color: #FFF;
}

.drawer-header__user {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.drawer-header__close {
  border: none;
  background: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #999;
}

.drawer-body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 5rem);
  background-color: #F9F9F9;
  padding: 1.9375rem 1.6875rem;
}

.drawer-brand {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.drawer-brand__img {
  width: 5rem;
  height: auto;
  display: block;
}

.drawer-brand h2 {
  margin: 0;
  font-size: 1.375rem;
  font-family: Georgia, serif;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  padding-bottom: 42px;
}

.drawer-nav__link {
  font-size: 1.25rem;
  padding: 0.75rem 0;
  color: var(--color-text);
  font-weight: 400;
}

.drawer-nav__link--active {
  font-weight: 700;
}

.drawer-footer {
  bottom: 0.9375rem;
  left: 1rem;
  display: flex;
  gap: 0.15rem;
  background-color: #F9F9F9;
  margin-left: -20px;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--color-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .contact-form-section {
    padding: 3.5rem 0;
  }
}

.lead-form__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lead-form__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-form__grid .field-span-2 {
    grid-column: span 2;
  }
}

.lead-form__field {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.lead-form__field input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 3.25rem;
  border: none;
  border-radius: 0.25rem;
  padding: 0 0.75rem;
  font-size: 1.25rem;
  background: var(--color-white);
}

.lead-form__field textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  border: none;
  border-radius: 0.25rem;
  padding: 0.75rem;
  font-size: 1.25rem;
  background: var(--color-white);
  resize: vertical;
  line-height: 1.5;
  font-family: inherit;
}

.lead-form__placeholder {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  transition: opacity 0.15s ease;
}

.lead-form__field.is-filled .lead-form__placeholder {
  opacity: 0;
  visibility: hidden;
}

.lead-form__required {
  color: var(--color-primary);
  margin-left: 0.25rem;
}

.lead-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.submit-btn {
  min-width: 12.5rem;
  height: 3.25rem;
  border-radius: 1.625rem;
  border: none;
  background: var(--color-accent-green);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

.submit-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 767px) {
  .contact-form-section {
    padding: 2rem 0;
  }

  .lead-form__grid {
    gap: 0.75rem;
  }

  .lead-form__field {
    margin-bottom: 0.75rem;
  }

  .lead-form__field input {
    height: 2.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
  }

  .lead-form__placeholder {
    font-size: 1rem;
  }

  .lead-form__submit {
    margin-top: 0.25rem;
  }

  .submit-btn {
    width: 12.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    font-size: 1.125rem;
  }
}

/* Lead Modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.lead-modal__panel {
  position: relative;
  width: 50rem;
  height: 38.5rem;
  max-width: calc(100vw - 3rem);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  background-color: var(--color-white);
  background-image: url('../assets/images/home/dialog_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0.0625rem solid #333;
  border-radius: 0.5rem;
  padding: 2.75rem 2.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.lead-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.625rem;
}

.lead-modal__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
}

.lead-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #999;
  font-size: 1.375rem;
  cursor: pointer;
}

.lead-modal__close:hover {
  color: #666;
}

.lead-modal__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lead-modal__form .lead-form__field {
  margin-bottom: 1.5rem;
}

.lead-modal__form .lead-form__field input {
  border: 0.0625rem solid #dcdfe6;
  font-size: 1.125rem;
}

.lead-modal__form .lead-form__placeholder {
  font-size: 1.125rem;
}

.lead-modal__submit {
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

.lead-modal__submit-btn {
  min-width: 12.5rem;
  height: 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  background: #b50604;
  border: 0.0625rem solid #b50604;
  color: var(--color-white);
  border-radius: 1.5rem;
  cursor: pointer;
}

.lead-modal__submit-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 767px) {
  body[data-page="services"] .lead-modal__panel {
    width: calc(100vw - 2rem);
    height: auto;
    max-width: none;
    padding: 1.5rem 1.25rem 1.75rem;
    border: 0.0625rem solid #dcdfe6;
    border-radius: 0.5rem;
    background-position: left top;
  }

  body[data-page="services"] .lead-modal__header {
    margin-bottom: 1.25rem;
  }

  body[data-page="services"] .lead-modal__title {
    font-size: 1.125rem;
    font-weight: 600;
  }

  body[data-page="services"] .lead-modal__close {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.25rem;
    color: #999;
  }

  body[data-page="services"] .lead-modal__form .lead-form__field {
    margin-bottom: 0.75rem;
  }

  body[data-page="services"] .lead-modal__form .lead-form__field input {
    height: 2.75rem;
    font-size: 1rem;
    border: 0.0625rem solid #dcdfe6;
    border-radius: 0.25rem;
  }

  body[data-page="services"] .lead-modal__form .lead-form__placeholder {
    font-size: 1rem;
  }

  body[data-page="services"] .lead-modal__submit {
    margin-top: 1.25rem;
  }

  body[data-page="services"] .lead-modal__submit-btn {
    width: 100%;
    min-width: 0;
    height: 2.75rem;
    font-size: 1.125rem;
    border-radius: 1.375rem;
  }
}

/* App Footer */
.app-footer {
  margin-top: auto;
}

.footer-main {
  background: var(--color-white);
  padding: 3rem 0;
  border-top: 0.0625rem solid var(--color-border);
}

.footer-main__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-main__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}

.footer-main h3,
.footer-nav-block h3 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links__col a {
  font-size: 1.125rem;
  font-weight: 400;
  color: #000;
}

.footer-links__col a:hover {
  color: #B50604;
}

.footer-download .app-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-download .app-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .footer-download .app-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.footer-download .app-label {
  min-width: 5.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
}

.footer-download .store-badges {
  display: flex;
  gap: 0.75rem;
}

.footer-download .store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: 16.25rem;
  height: 3.75rem;
  padding: 0 1rem;
  background: var(--color-white);
  font-size: 1.25rem;
  font-weight: 400;
  border: 0.0625rem solid var(--color-primary);
  border-radius: 0.5rem;
  color: #3d3d3d;
  transition: border-color 0.2s;
}

@media (max-width: 767px) {
  .footer-download .store-badge {
    width: 100%;
    max-width: 16.25rem;
  }
}

.footer-download .store-badge__icon {
  width: 2rem;
  height: 2.5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-bottom {
  background: var(--color-bg-light);
  padding: 2rem 0 0;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 2rem;
  }
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logos .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer-logos .brand-logo__img {
  width: 8.3125rem;
  height: 6.25rem;
  object-fit: contain;
}


.footer-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 7.5rem;
  }
}

.footer-meta .meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 20rem;
  flex-direction: column;
}

.footer-meta .meta-item__icon-container {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-meta .meta-item__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-meta .meta-item__content {
  min-width: 0;
}

.footer-meta .meta-label {
  font-family: 'AlibabaPuHuiTi';
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a3a6e;
  line-height: 1.3;
}

.footer-meta .meta-value {
  font-family: 'AlibabaPuHuiTi';
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

.footer-icp {
  text-align: center;
  font-size: 1.1rem;
  color: #000;
  margin: 1.5rem 0 0;
  background-color: #fff;
  height: 5rem;
  line-height: 5rem;
}

.footer-mobile {
  display: none;
}

@media (max-width: 767px) {
  .footer-main {
    display: none;
  }

  .footer-bottom__inner {
    display: none;
  }

  .footer-bottom {
    background: var(--color-white);
    padding: 0;
  }

  .footer-mobile {
    display: block;
  }

  .footer-mobile__contact {
    background: var(--color-bg-light);
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-logos--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .footer-logos--mobile .brand-logo__img {
    width: 8.3125rem;
    height: 6.25rem;
    object-fit: contain;
  }


  .footer-meta--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-meta--mobile .meta-item {
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    max-width: 100%;
  }

  .footer-meta--mobile .meta-item__icon-container {
    justify-content: center;
  }

  .footer-meta--mobile .meta-item__content {
    width: 100%;
  }

  .footer-meta--mobile .meta-item__content .meta-value{
    color: #333;
    font-size: 1.25rem;
  }

  .footer-mobile__download {
    background: var(--color-white);
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-mobile__download-title {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
  }

  .footer-mobile__download .app-row {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .footer-mobile__download .app-row:last-child {
    margin-bottom: 0;
  }

  .footer-mobile__download .app-label {
    font-size: 1rem;
  }

  .footer-mobile__download .store-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 0.75rem;
  }

  .footer-mobile__download .store-badge {
    width: 16.25rem;
    max-width: 100%;
    height: 3.75rem;
    justify-content: flex-start;
    border: 0.0625rem solid #B50604;
    display: flex;
    padding: 0.5625rem 1rem;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.25rem;
    margin: 0.75rem auto;
    font-size: 1.25rem;
  }

  .footer-mobile__download .store-badge__icon {
    width: 2rem;
    height: 2.5rem;
  }

  .footer-mobile__nav {
    background: var(--color-bg-light);
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-mobile__nav-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000;
  }

  .footer-mobile__nav a {
    display: block;
    padding: 0.625rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: #000;
  }

  .footer-mobile__nav a:hover {
    color: #B50604;
  }

  .footer-icp {
    font-size: 0.875rem;
    height: auto;
    padding: 1.5rem 1rem;
    line-height: 1.5;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .footer-mobile {
    display: none;
  }
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 2rem;
  top: 65%;
  transform: translateY(-50%);
  z-index: 200;
}

@media (max-width: 767px) {
  .floating-actions {
    right: 1rem;
    top: auto;
    bottom: 7.5rem;
    transform: none;
  }
}

.floating-actions__wrap {
  position: relative;
}

.floating-actions__ball {
  width: 2.5rem;
  height: 6.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 62.4375rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}

.floating-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #b50604;
  font-size: 1.375rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.floating-actions__btn:hover {
  opacity: 0.8;
}

.floating-actions__btn-img {
  width: 0.9375rem;
  height: 0.9375rem;
  object-fit: contain;
}

.floating-actions__popover {
  display: none;
  position: absolute;
  right: calc(100% + 0.875rem);
  top: 0;
  width: 10.25rem;
  padding: 0.75rem;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.floating-actions__popover.is-open {
  display: block;
}

.floating-actions__qr {
  width: 8.75rem;
  height: 8.75rem;
  max-width: none;
  min-width: 8.75rem;
  display: block;
  object-fit: contain;
}

/* Page Hero */
.page-hero {
  height: calc(100vh - var(--header-height-mobile));
  background: center / cover no-repeat;
  position: relative;
  height: 50rem;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 22.5rem;
  }
}

@media (min-width: 1025px) {
  .page-hero {
    height: calc(100vh - var(--header-height-mobile));
  }
}

.page-hero__overlay {
  min-height: -webkit-fill-available;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__content {
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.page-hero__content h1 {
  margin: 0;
  font-size: 2.625rem;
  font-weight: 900;
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

@media (min-width: 768px) {
  .page-hero__content h1 {
    font-size: 4rem;
  }
}

.page-hero__icon {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.page-hero__separator {
  width: 0.125rem;
  height: 3.5rem;
  background: var(--color-white);
  margin: 0 1rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .app-header__logo{
    display: none;
  }
  .app-header__logo__mobile .logo-img {
    display: inline-block;
    width: 3.5rem;
    height: 2.625rem;
  }

  .app-header__inner {
    padding: 0 0.9375rem !important;
  }

  .page-hero {
    height: 15rem;
    min-height: 12.5rem;
  }

  .page-hero__content {
    gap: 0.5rem;
    padding: 0 0.9375rem;
  }

  .page-hero__icon {
    width: 2rem;
    height: 2rem;
  }

  .page-hero__separator {
    width: 0.125rem;
    height: 1.875rem;
    background: var(--color-white);
    margin: 0 0rem;
    flex-shrink: 0;
  }

  .page-hero__content h1 {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .courses-page.section-block {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .course-mobile-wrap {
    margin-bottom: 1rem;
  }

  .course-mobile-trigger {
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
  }

  .course-mobile-wrap.is-open .course-mobile-trigger {
    border-radius: 0.25rem 0.25rem 0 0;
  }

  .mobile-course-popup {
    border-radius: 0 0 0.25rem 0.25rem;
  }

  .course-detail__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .course-detail__text {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .course-detail__image {
    margin-bottom: 1.25rem;
    border-radius: 0.25rem;
  }
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 22.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-banner {
    min-height: 30rem;
  }
}

@media (min-width: 1025px) {
  .hero-banner {
    min-height: 50rem;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide--active {
  opacity: 1;
  z-index: 1;
  position: relative;
  min-height: inherit;
}

.hero-slide__overlay {
  min-height: inherit;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-slide__content {
  color: var(--color-white);
  text-align: center;
  padding: 3rem 1rem;
}

.hero-slide__content h1 {
  margin: 0 0 3.75rem;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.35;
  font-family: 'AlibabaPuHuiTi';
}

@media (min-width: 768px) {
  .hero-slide__content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1025px) {
  .hero-slide__content h1 {
    font-size: 3rem;
  }
}

.hero-slide__content p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-slide__content p {
    font-size: 1.125rem;
  }
}

.hero-slide__content .btn-primary {
  margin-top: 3.75rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 3.75rem;
  height: 0.375rem;
  border: none;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.hero-dot--active {
  background: #B50604;
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 16.875rem;
    height: 16.875rem;
  }

  .hero-slide--active {
    position: absolute;
    min-height: auto;
  }

  .hero-slide__overlay {
    min-height: 100%;
    height: 100%;
    justify-content: center;
  }

  .hero-slide__content {
    max-width: 20.9375rem;
    padding: 1.25rem 1.25rem 1.75rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-slide__content h1 {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    line-height: 1.4;
  }

  .hero-slide__content p {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-slide__content .btn-primary {
    margin-top: 0.75rem;
    min-width: 9.25rem !important;
    width: auto !important;
    height: 2.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 1.125rem !important;
    letter-spacing: 0 !important;
    padding: 0 1.125rem !important;
  }

  .hero-dots {
    bottom: 0.75rem;
    gap: 0.375rem;
  }

  .hero-dot {
    width: 2.5rem;
    height: 0.25rem;
  }
}

/* Home: About Section */

.about-section {
  background-image: url('../assets/images/home/yun.png');
  background-size: auto;
  background-repeat: repeat;
}
@media(min-width: 767px){
  .about-section{
    background-image: url('../assets/images/home/yun.png');
    background-repeat: repeat;
    background-size: auto;
  }
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

.about-logo {
  text-align: center;
}

.about-logo__img {
  width: 36.375rem;
  height: 22.5rem;
  display: block;
  margin: 0 auto 1rem;
  max-width: 100%;
}

.about-text h3 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
}

.about-text p {
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'AlibabaPuHuiTi';
  color: var(--color-text-light);
  text-align: justify;
}

.about-section__cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .about-section .section-title {
    margin-bottom: 1.5rem;
  }

  .about-section .section-title h2 {
    font-size: 1.5rem;
  }

  .about-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .about-grid {
    gap: 1.25rem;
    text-align: center;
  }

  .about-logo__img {
    width: 100%;
    max-width: 18.75rem;
    height: auto;
    margin: 0 auto 0.75rem;
  }

  .about-text h3 {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    text-align: center;
  }

  .about-text p {
    line-height: 1.6;
    font-size: 0.875rem;
    color: var(--color-text);
    text-align: center;
  }

  .about-section__cta {
    margin-top: 1.5rem;
  }

  .about-section__cta .btn-primary {
    min-width: 9.25rem !important;
    width: auto !important;
    height: 2.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 1.125rem !important;
    letter-spacing: 0 !important;
    padding: 0 1.125rem !important;
  }
}

/* Home: Courses Section */
.courses-section {
  background-image: url('../assets/images/home/quan.png');
  background-repeat: repeat;
  background-size: auto;
}

@media (min-width: 767px)  {
  .courses-section{
    background-image: url('../assets/images/home/quan.png');
    background-repeat: repeat;
    background-size: auto;
    background-color: #b50604;
  }
  .courses-section .section-title h2{
    color: #fff;
  }
  .courses-section .section-title__line__pc{
    display: block;
  }
  .courses-section .section-title__line{
    display: none;
  }
  .events-section .section-title h2{
    color: #fff;
  }
  .events-section .section-title__line__pc{
    display: block;
  }
  .events-section .section-title__line{
    display: none;
  }
}

.course-stairs__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  max-width: 65.3125rem;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .course-stairs__bars {
    gap: 1rem;
  }
}

.course-bar {
  flex: 1;
  min-width: 0;
  max-width: 12.5rem;
  background: #b50604;
  color: var(--color-white);
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 2.25rem 0.625rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 767px)  {
  .course-bar{
    background-color: #fff;
    color: #b50604;
  }
}

.course-bar__icon {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.course-bar__icon_pc{
  display: none;
}

@media (min-width: 767px)  {
  .course-bar__icon {
    display: none;
  }
  .course-bar__icon_pc {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin-bottom: 1rem;
    flex-shrink: 0;
  }
}

.course-bar h4 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  line-height: 2.25rem;
}

.course-bar p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  font-family: 'AlibabaPuHuiTi';
}

.course-arrow {
  position: relative;
  max-width: 65.3125rem;
  margin: 0 auto;
}

.course-arrow__img {
  width: 100%;
  height: auto;
  display: block;
}

.course-arrow__img__pc {
  display: none;
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 767px)  {
  .course-arrow__img {
    display: none;
  }
  .course-arrow__img__pc {
    width: 100%;
    height: auto;
    display: block;
  }
}

.course-arrow__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 3rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  white-space: nowrap;
  pointer-events: none;
}

.course-arrow--mobile {
  margin-top: 1rem;
}

.course-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #b50604;
  color: var(--color-white);
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
}

.course-card__icon {
  width: 5rem;
  height: 4.1875rem;
  flex-shrink: 0;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.course-card__title,
.course-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  line-height: 1.3;
}

.course-card__desc,
.course-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'AlibabaPuHuiTi';
  opacity: 0.95;
}

.courses-cta {
  text-align: center;
  margin-top: 3rem;
}

.courses-cta .btn-primary {
  border: 0.0625rem solid #fff !important;
}

.events-section__cta .btn-primary {
  border: 0.0625rem solid #fff !important;
}

@media (max-width: 767px)  {
  .events-section__cta .btn-primary {
    border: none !important;
  }
}

@media (min-width: 768px) {
  .course-cards {
    display: none;
  }
}

@media (max-width: 767px) {
  .courses-section .section-title {
    margin-bottom: 1.5rem;
  }

  .courses-section .section-title h2 {
    font-size: 1.5rem;
  }

  .courses-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .course-stairs {
    display: none;
  }

  .course-arrow__text {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .courses-cta {
    margin-top: 1.5rem;
  }

  .courses-cta .btn-primary {
    min-width: 10rem !important;
    width: 10rem !important;
    height: 2.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 1.125rem !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
}

/* Home: News Section */
.news-section {
  background-image: url('../assets/images/home/yun.png');
  background-repeat: repeat;
  background-size: auto;
}

@media (min-width: 767px)  {
  .news-section{
    background-image: url('../assets/images/home/yun.png');
    background-repeat: repeat;
    background-size: auto;
  }
}
.news-section__subtitle {
  max-width: 56.25rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  font-family: 'AlibabaPuHuiTi';
}

@media (min-width: 768px) {
  .news-section__subtitle {
    font-size: 1.5rem;
    font-weight: 250;
    color: #333;
  }
}

.news-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.news-grid {
  display: grid;
  gap: 0.375rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

@media (min-width: 1025px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
}

.news-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.06);
  border: 0.0625rem solid transparent;
  cursor: pointer;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 6, 4, 0.38);
  transform: translateY(-0.25rem);
}

.news-card:hover .news-card__title {
  color: var(--color-primary);
}

.news-card:hover .news-card__arrow {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.news-card__body {
  padding: 1.5625rem 1.0625rem;
}

.news-card__date {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.news-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
  transition: color 0.25s ease;
}

@media (min-width: 768px) {
  .news-card__title {
    font-size: 1.375rem;
  }
}

.news-card__img {
  width: 100%;
  max-width: 22.5625rem;
  height: 7.5rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}

.news-card__summary {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  line-height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.news-card__link {
  color: #b50604;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
}

.news-card__link:hover {
  opacity: 0.85;
}

.news-card__arrow {
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid #B50604;
  border-radius: 50%;
  color: #B50604;
  display: inline-flex;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  font-size: 1rem;
  transition: opacity 0.2s, background-color 0.25s ease, color 0.25s ease;
}

.news-card__arrow:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .news-section .section-title {
    margin-bottom: 1.5rem;
  }

  .news-section .section-title h2 {
    font-size: 1.5rem;
  }

  .news-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .news-section__subtitle {
    display: none;
  }

  .news-section__cta {
    margin-top: 1.5rem;
  }

  .news-section__cta .btn-primary {
    min-width: 10rem !important;
    width: 10rem !important;
    height: 2.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 1.125rem !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
  }

  .news-grid {
    gap: 0.75rem;
  }

  .news-card__body {
    padding: 1rem 1.0625rem;
  }

  .news-card__date {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .news-card__title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
    text-align: left;
  }

  .news-card__img {
    max-width: none;
    height: 7.5rem;
    margin-bottom: 0.625rem;
  }

  .news-card__summary {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: left;
  }

  .news-card__link {
    font-size: 0.875rem;
  }

  .news-card__arrow {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
  }
}

/* Home: Events Section */
.events-section {
  background-image: url('../assets/images/home/quan.png');
  background-repeat: repeat;
  background-size: auto;
  background-color: #b50604;
}

@media (max-width: 767px)  {
  .events-section{
    background-image: url('../assets/images/home/quan.png');
    background-repeat: repeat;
    background-size: auto;
  }
}
.events-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.events-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.event-card {
  background: var(--color-white);
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.06);
  padding: 1.5625rem;
}

.event-card__img {
  width: 100%;
  max-width: 33.875rem;
  height: auto;
  aspect-ratio: 542 / 380;
  border-radius: 0.25rem;
  object-fit: cover;
  display: block;
}

.event-card__body {
  padding: 0 1.5625rem 1.5625rem;
}

.event-card__title {
  margin: 1.5rem 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  font-family: 'AlibabaPuHuiTi';
}

.event-card__desc {
  margin: 0 0 2.125rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  line-height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 0.0625rem solid #b50604;
  border-radius: 1.625rem;
  background: transparent;
  color: #b50604;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.event-card__btn:hover {
  background: #b50604;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .events-section .section-title {
    margin-bottom: 1.5rem;
  }

  .events-section .section-title h2 {
    font-size: 1.5rem;
  }

  .events-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .events-section__cta {
    margin-top: 1.5rem;
  }

  .events-section__cta .btn-primary {
    min-width: 10rem !important;
    width: 10rem !important;
    height: 2.25rem !important;
    font-size: 0.875rem !important;
    border-radius: 1.125rem !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
  }

  .events-grid {
    gap: 0.75rem;
  }

  .event-card {
    border-radius: 0.5rem;
    border: 0.0625rem solid var(--color-border);
    padding: 1rem 1.0625rem;
  }

  .event-card__img {
    max-width: none;
    aspect-ratio: 16 / 10;
    margin-bottom: 0.75rem;
  }

  .event-card__body {
    padding: 0;
  }

  .event-card__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
  }

  .event-card__desc {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
  }

  .event-card__btn {
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    border-radius: 1.125rem;
    font-size: 0.875rem;
  }
}

/* Home: Contact Section */
.contact-section__subtitle {
  text-align: center;
  color: #000;
  margin: 0 0 2.5rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'AlibabaPuHuiTi';
}

@media (min-width: 768px) {
  .contact-section__subtitle {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 3rem;
  }
}

.contact-banner {
  background: #b50604;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .contact-banner {
    flex-direction: row;
    align-items: center;
    padding: 3rem 3.5rem;
    gap: 0;
  }
}

.contact-qr {
  flex-shrink: 0;
  text-align: center;
  max-width: 50%;
  flex: 1;
}

.contact-qr__box {
  background: var(--color-white);
  padding: 0.625rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-bottom: 0.625rem;
}

.contact-qr__img {
  width: 11.25rem;
  height: 11.25rem;
  display: block;
  object-fit: contain;
}

.contact-qr__caption {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  font-family: 'AlibabaPuHuiTi';
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 50%;
  padding-top: 0;
}

@media (min-width: 768px) {
  .contact-details {
    max-width: 27.4375rem;
  }
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'AlibabaPuHuiTi';
}

@media (min-width: 768px) {
  .detail-row {
    font-size: 1.25rem;
  }
}

.detail-row__icon--img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.detail-row span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  font-family: 'AlibabaPuHuiTi';
  color: #fff;
}

@media (max-width: 767px) {
  .contact-section .section-title {
    margin-bottom: 1.5rem;
  }

  .contact-section .section-title h2 {
    font-size: 1.5rem;
  }

  .contact-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .contact-section__subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }

  .contact-banner {
    padding: 1.5rem 1rem;
  }

  .contact-qr {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact-qr__img {
    width: 12.5rem;
    height: 12.5rem;
  }

  .contact-qr__caption {
    font-size: 0.875rem;
  }

  .contact-details {
    gap: 1rem;
    width: 100%;
  }

  .detail-row {
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .detail-row__icon--img {
    margin-top: 0.125rem;
  }

  .detail-row span {
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
}

/* Home: Partners Section */


.partners-section {
  background: var(--color-white);
}

@media (min-width: 768px) {
  .partners-section{
    background-image: url('../assets/images/home/yun.png');
    background-repeat: repeat;
    background-size: auto;
  }
}

.partners-grid {
  display: grid;
  gap: 0;
  justify-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.partner-card {
  width: 100%;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background: var(--color-white);
  border: 0.0625rem solid #e8e8e8;
  border-radius: 0.25rem;
}

.partner-card__logo {
  width: 10rem;
  height: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  display: block;
}

.partner-card__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
  line-height: 1.4;
}

@media (min-width: 768px) {
  .partner-card__name {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .partners-section .section-title {
    margin-bottom: 1.5rem;
  }

  .partners-section .section-title h2 {
    font-size: 1.5rem;
  }

  .partners-section .section-title__line {
    width: 4.5rem;
    height: 0.375rem;
  }

  .partners-grid {
    gap: 0.75rem;
    justify-items: stretch;
  }

  .partner-card {
    padding: 1.5rem 1rem;
  }

  .partner-card__logo {
    width: 7.5rem;
    height: 5.625rem;
    margin-bottom: 1rem;
  }

  .partner-card__name {
    font-size: 1rem;
  }
}

.partner-card {
  width: 100%;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  background: var(--color-white);
  border: 0.0625rem solid #e8e8e8;
  border-radius: 0.25rem;
}

.partner-card__logo {
  width: 10rem;
  height: auto;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  display: block;
}

.partner-card__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
  line-height: 1.4;
}

@media (min-width: 768px) {
  .partner-card__name {
    font-size: 2.25rem;
  }
}

/* Pagination */
.pagination-container,
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 3rem;
}

.pagination button,
.pagination span,
.pagination-container button,
.pagination-container span {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  border: 0.0625rem solid #8B949C;
  border-radius: 0.1875rem;
  background: #fff;
  color: #8B949C;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0;
}

.pagination-container__nav img,
.pagination__nav img {
  width: 1rem;
  height: 1rem;
  display: block;
  object-fit: contain;
}

.pagination .is-active,
.pagination-container .is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.pagination button:disabled,
.pagination-container button:disabled {
  border-color: #fff;
  background-color: #fff;
  color: #fff;
  cursor: default;
}

/* News Page */
.news-page {
  background: var(--color-white);
}

.news-page__header {
  margin-bottom: 3.125rem;
}

@media (max-width: 767px) {
  .news-page__header {
    margin-bottom: 1rem;
  }
}

.news-page__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-page__icon {
  width: 2.875rem;
  height: 2.875rem;
  object-fit: contain;
  flex-shrink: 0;
}

.news-page__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #B50604;
}

@media (min-width: 768px) {
  .news-page__title {
    font-size: 2.875rem;
  }
}

.news-page__divider {
  height: 0.5rem;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #b50604 0%, #b5060400 100%);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.news-list--mobile {
  display: none;
}

@media (max-width: 767px) {
  .news-list--desktop {
    display: none;
  }

  .news-list--mobile {
    display: flex;
    gap: 2rem;
  }
}

.news-list--desktop .news-list-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem;
  background: #fff;
}

.news-list--desktop .news-list-item__img {
  width: 18.75rem;
  height: 12.5rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  object-fit: cover;
}

.news-list--mobile .news-list-item {
  padding: 1rem;
  background: #fff;
}

.news-list--mobile .news-list-item__img {
  width: 100%;
  height: 8.75rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.news-list-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-list-item__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.news-list-item__summary {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  max-height: 4.5rem;
  color: #000;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list--desktop .news-list-item__summary {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0 0 1.5rem;
}

.news-list-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.news-list-item__date {
  font-size: 1.125rem;
  color: #999;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.news-list--desktop .news-list-item__date {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.news-list-item__btn {
  flex-shrink: 0;
  background: #fff;
  border: 0.0625rem solid #B50604;
  color: #B50604;
  font-size: 1.125rem;
  border-radius: 1.125rem;
  width: 10rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.news-list--desktop .news-list-item__btn {
  font-size: 1.25rem;
}

/* News Detail */
.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  padding: 0;
  border: none;
  background: none;
  color: #B50604;
  font-size: 1.125rem;
  cursor: pointer;
}

.news-detail__card {
  max-width: var(--container-max);
  margin: 0 auto;
}

.news-detail__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .news-detail__title {
    font-size: 4rem;
  }
}

.news-detail__date {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #999;
}

@media (min-width: 768px) {
  .news-detail__date {
    font-size: 1.5rem;
  }
}

.news-detail__text {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #000;
}

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

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

@media (min-width: 768px) {
  .news-detail__text {
    font-size: 1.25rem;
  }
}

.news-detail__image {
  display: block;
  width: 100%;
  margin: 0 0 2rem;
}

/* Events Page */
@media (min-width: 767px) {
  .events-page {
    background: var(--color-white);
  }
}

.events-page__header {
  margin-bottom: 3.125rem;
}

@media (max-width: 767px) {
  .events-page__header {
    margin-bottom: 1rem;
  }
}

.events-page__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.events-page__icon {
  width: 2.875rem;
  height: 2.875rem;
  object-fit: contain;
  flex-shrink: 0;
}

.events-page__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #B50604;
}

@media (min-width: 768px) {
  .events-page__title {
    font-size: 2.875rem;
  }
}

.events-page__divider {
  height: 0.5rem;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, #b50604 0%, #b5060400 100%);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.events-list--mobile {
  display: none;
}

@media (max-width: 767px) {
  .events-list--desktop {
    display: none;
  }

  .events-list--mobile {
    display: flex;
    gap: 2rem;
  }
}

.events-list--desktop .events-list-item {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.events-list--desktop .events-list-item__img {
  width: 18.75rem;
  height: 12.5rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  object-fit: cover;
}

.events-list--mobile .events-list-item__img {
  width: 100%;
  height: 8.75rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.events-list-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.events-list-item__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

.events-list-item__summary {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  max-height: 4.5rem;
  color: #000;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.events-list--desktop .events-list-item__summary {
  font-size: 1.25rem;
  line-height: 2.25rem;
  margin: 0 0 1.5rem;
}

.events-list-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.events-list-item__date {
  font-size: 1.125rem;
  color: #999;
  white-space: nowrap;
  margin-bottom: 1rem;
}

.events-list--desktop .events-list-item__date {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.events-list-item__btn {
  flex-shrink: 0;
  background: #fff;
  border: 0.0625rem solid #B50604;
  color: #B50604;
  font-size: 1.125rem;
  border-radius: 1.125rem;
  width: 10rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.events-list--desktop .events-list-item__btn {
  font-size: 1.25rem;
}

/* Events Detail */
.events-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 2rem;
  padding: 0;
  border: none;
  background: none;
  color: #B50604;
  font-size: 1.125rem;
  cursor: pointer;
}

.events-detail__intro {
  margin-bottom: 5rem;
}

.events-detail__title {
  margin: 0 0 3rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .events-detail__title {
    font-size: 4rem;
  }
}

.events-detail__line {
  width: 100%;
  height: 0.5rem;
  margin-bottom: 2.25rem;
  background: #B50604;
}

.events-detail__line--bottom {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.events-detail__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #000;
  text-align: justify;
}

@media (min-width: 768px) {
  .events-detail__text {
    font-size: 1.25rem;
  }
}

.events-detail__schedule-container {
  background-image: url('../assets/images/banner/huodonganpai.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 37.5rem;
  padding: 12.5rem 0 0 0;
}

.events-detail__schedule-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .events-detail__schedule-panel {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
}

.events-detail__schedule-label {
  font-size: 4rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  width: 10.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-detail__schedule-grid {
  flex: 1;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .events-detail__schedule-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.schedule-item {
  text-align: center;
  background: #fff;
  padding: 3.125rem 1.0625rem;
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 768px) {
  .schedule-item {
    width: auto;
    max-width: none;
  }
}

.schedule-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #B50604;
  color: var(--color-white);
  font-size: 1.5rem;
}

.schedule-item__icon-img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.schedule-item__label {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
}

.schedule-item__value {
  font-size: 1.25rem;
  line-height: 2rem;
  color: #000;
}

.events-detail__register-container {
  position: relative;
}

.events-detail__register {
  position: relative;
  margin-bottom: 7.5rem;
}

.events-detail__register-bg {
  min-height: 31.25rem;
  padding: 3.5rem 1.5rem 7.5rem;
  background: center / cover no-repeat;
  background-image: url('../assets/images/banner/关于我们.png');
  position: relative;
}

.events-detail__register-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .events-detail__register-bg {
    min-height: 22.5rem;
    padding: 4rem 1.5rem 8.75rem;
  }
}

.events-detail__register-content {
  position: relative;
  z-index: 1;
  max-width: 45rem;
  margin: 0 auto;
  text-align: center;
  color: var(--color-white);
}

.events-detail__register-title {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .events-detail__register-title {
    font-size: 4rem;
  }
}

.events-detail__register-title-line {
  display: block;
  width: 12.5rem;
  height: 0.5rem;
  margin: 0 auto 1.5rem;
  background: #B50604;
}

.events-detail__register-desc {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .events-detail__register-desc {
    font-size: 2.25rem;
    line-height: 3.125rem;
  }
}

.events-detail__contact-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 75rem;
  margin: -5rem auto 0;
  padding: 1.5rem;
  background: #B50604;
  color: var(--color-white);
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .events-detail__contact-card {
    flex-direction: row;
    align-items: center;
    gap: 9.25rem;
    padding: 2.125rem 8.125rem;
  }
}

.events-detail__qr {
  flex-shrink: 0;
  text-align: center;
}

.events-detail__qr-img {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 0.75rem;
  padding: 0.5rem;
  background: var(--color-white);
  object-fit: contain;
  display: block;
}

.events-detail__qr-caption {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.events-detail__contacts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.events-detail__contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .events-detail__contact-row {
    font-size: 1.375rem;
  }
}

.events-detail__contact-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.events-detail__about {
  padding-bottom: 1rem;
}

.events-detail__about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .events-detail__about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
  }
}

.events-detail__about-logo {
  text-align: center;
}

.events-detail__about-logo-img {
  width: 100%;
  max-width: 30rem;
  height: auto;
  margin: 0 auto;
  display: block;
}

.events-detail__about-title {
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .events-detail__about-title {
    font-size: 4rem;
  }
}

.events-detail__about-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  text-align: justify;
}

@media (min-width: 768px) {
  .events-detail__about-desc {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .events-detail.section-block {
    background: var(--color-white);
    padding-top: 1.5rem;
    padding-bottom: 0;
  }

  .events-detail .page-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .events-detail__intro {
    margin-bottom: 1.5rem;
  }

  .events-detail__title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
  }

  .events-detail__line {
    height: 0.25rem;
    margin-bottom: 0.75rem;
  }

  .events-detail__text {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
  }

  .events-detail__schedule-container {
    height: auto;
    padding: 8.75rem 0 1.5rem;
    background-color: var(--color-bg-light);
    background-image: url('../assets/images/banner/huodonganpai.png');
    background-size: 300% auto;
    background-position: left top;
    background-repeat: no-repeat;
  }

  .events-detail__schedule-panel {
    gap: 1rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .events-detail__schedule-label {
    width: 100%;
    font-size: 2rem;
    font-weight: 500;
  }

  .events-detail__schedule-grid {
    gap: 0.75rem;
  }

  .schedule-item {
    max-width: none;
    min-height: 12.625rem;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .schedule-item__icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 0.75rem;
  }

  .schedule-item__icon-img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .schedule-item__label {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .schedule-item__value {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .events-detail__register {
    margin-bottom: 0;
  }

  .events-detail__register-bg {
    min-height: 13.75rem;
    padding: 2.5rem 0rem;
  }

  .events-detail__register-title {
    margin: 0 0 0.75rem;
    font-size: 2rem;
  }

  .events-detail__register-title-line {
    width: 12.5rem;
    height: 0.5rem;
    margin: 0 auto 1rem;
  }

  .events-detail__register-desc {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .events-detail__contact-card {
    max-width: none;
    margin: 0;
    padding: 2rem 1rem;
    border-radius: 0;
    gap: 1.5rem;
    align-items: center;
    background-color: var(--color-primary);
    background-image: url('../assets/images/banner/DIV.png');
    background-size: cover;
    background-position: center;
  }

  .events-detail__qr-img {
    width: 12.5rem;
    height: 12.5rem;
    padding: 0.625rem;
  }

  .events-detail__qr-caption {
    font-size: 0.875rem;
  }

  .events-detail__contacts {
    width: 100%;
    gap: 1rem;
    align-items: center;
  }

  .events-detail__contact-row {
    font-size: 1.5rem;
    gap: 0.75rem;
    word-break: break-all;
  }

  .events-detail__contact-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .events-detail__about {
    padding: 1.5rem 0 2rem;
  }

  .events-detail__about-grid {
    gap: 1rem;
  }

  .events-detail__about-logo-img {
    max-width: 100%;
  }

  .events-detail__line--bottom {
    margin-top: 0.5rem;
    height: 0.25rem;
  }

  .events-detail__about-title {
    margin: 0 0 0.75rem;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
  }

  .events-detail__about-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: left;
    color: var(--color-text);
    padding: 0 1rem;
  }
}


.page-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin: -1rem 0 2.5rem;
}

.services-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.0625rem;
  border: 0.0625rem solid #E3E3E3;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .service-card {
    padding: 1.5625rem;
  }
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__title {
  font-size: 2rem;
  margin: 1.5rem 0;
  font-weight: 400;
}

.service-card__desc {
  font-size: 1.25rem;
  color: #666;
  margin: 0 0 2.125rem;
  line-height: 1.55;
  flex: 1;
}

@media (max-width: 768px) {
  .service-card__title {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem 0;
    font-weight: 400;
  }
  .service-card__desc {
    font-size: 1rem;
    color: #666;
    margin: 0 0 0.75rem;
    line-height: 1.55;
    flex: 1;
  }
}


.service-card__btn {
  background: #fff;
  border: 0.0625rem solid #B50604;
  color: #B50604;
  font-size: 1.25rem;
  border-radius: 1.125rem;
  width: 10rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

/* Service Detail */
.service-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
  padding: 0;
  border: none;
  background: none;
  color: #B50604;
  font-size: 1.125rem;
  cursor: pointer;
}

.service-detail__card {
  max-width: var(--container-max);
  margin: 0 auto;
}

.service-detail__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .service-detail__title {
    font-size: 4rem;
  }
}

.service-detail__date {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #999;
}

@media (min-width: 768px) {
  .service-detail__date {
    font-size: 1.5rem;
  }
}

.service-detail__text {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #000;
}

@media (min-width: 768px) {
  .service-detail__text {
    font-size: 1.25rem;
  }
}

.service-detail__image {
  display: block;
  width: 100%;
  margin: 0 0 2rem;
}

.service-detail__action {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.service-detail__signup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* About Page */
.about-intro {
  background: var(--color-white);
}

.about-intro__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
  }
}

.about-intro__logo {
  text-align: center;
}

.about-intro__logo-img {
  width: 100%;
  max-width: 30rem;
  height: auto;
  margin: 0 auto;
  display: block;
}

.about-intro__line {
  width: 100%;
  height: 0.5rem;
  margin-top: 0.75rem;
  background: #B50604;
}

.about-intro__title {
  margin: 0 0 1.25rem;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .about-intro__title {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .about-intro__title {
    text-align: center;
  }
}

.about-intro__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  text-align: justify;
}

@media (min-width: 768px) {
  .about-intro__desc {
    font-size: 1.25rem;
  }
}

.about-mission {
  background: #F8F3F3;
}

.about-mission__heading {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .about-mission__heading {
    font-size: 4rem;
  }
}

.about-mission__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-mission__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mission-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.06);
}

.mission-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 2rem;
}

.mission-card__icon-img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.mission-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  text-align: center;
}

@media (min-width: 768px) {
  .mission-card__text {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.about-team-container {
  background-image: url('../assets/images/banner/huodonganpai.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 37.5rem;
  padding: 7.5rem 0 5rem;
}

@media (min-width: 768px) {
  .about-team-container {
    padding: 12.5rem 0 5rem;
    background-image: url('../assets/images/home/bg3.png');
  }
}

@media (max-width: 767px) {
  .about-team-container {
    background-size: 300% auto;
    background-position: left top;
    padding: 9.1875rem 0 1.5rem;
    background-color: #F8F8F8;
  }
}

.about-team-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-team-panel {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .about-team-panel {
    background-color: #F8F8F8;
    align-items: center;
  }
}

.about-team-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: 20rem;
}

@media (min-width: 768px) {
  .about-team-sidebar {
    width: 11.875rem;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .about-team-sidebar {
    height: auto;
    background-color: #F8F8F8;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.about-team-label {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
}

@media (max-width: 767px) {
  .about-team-label {
    text-align: center;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .about-team-label {
    font-size: 4rem;
  }
}

.about-team-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
}

.about-team-grid {
  flex: 1;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .about-team-arrow {
    display: none;
  }

  .about-team-grid {
    width: 100%;
    min-height: 31.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.team-item {
  text-align: center;
  background: #fff;
  padding: 3.125rem 1.0625rem;
  width: 20.0625rem;
  border-radius:8px;
  height: 100%;
}

.team-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 6, 4, 0.38);
  transform: translateY(-0.25rem);
  cursor:pointer;
}

@media (max-width: 767px) {
  .team-item {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }
}

.team-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #B50604;
}

.team-item__icon-img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.team-item__text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 2rem;
  color: #000;
  text-align: center;
}

@media (max-width: 767px) {
  .team-item__text {
    text-align: center;
  }

  .team-item__icon {
    margin-bottom: 1rem;
  }

}

@media (min-width: 768px) {
  .team-item__text {
    font-size: 1.25rem;
  }
}

.about-team-more {
  display: none;
}

@media (max-width: 767px) {
  .about-team-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0.0625rem solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 1.625rem;
    min-width: 10rem;
    height: 2.25rem;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
  }
}

.about-voices {
  background-image: url('../assets/images/home/bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-voices__content {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .about-voices__content {
    grid-template-columns: 17.5rem 1fr;
    gap: 3rem;
  }
}


.about-voices__title {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .about-voices__title {
    font-size: 4rem;
  }
}

.about-voices__quote {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #000;
}

@media (min-width: 768px) {
  .about-voices__quote {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.about-voices__name {
  margin: 0;
  font-size: 1.5rem;
  color: #000;
}

.about-voices__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.about-voices__dot {
  width: 3rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  background: #d9d9d9;
  border-radius: 0.375rem;
  cursor: pointer;
}

.about-voices__dot--active {
  background: #B50604;
}

/* Pricing Page */
.pricing-page {
  background: var(--color-white);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  position: relative;
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-card--recommended {
  border-color: var(--color-primary);
  box-shadow: 0 0.5rem 1.5rem rgba(163, 30, 34, 0.15);
}

.pricing-card h3 {
  margin: 0 0 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 0.0625rem dashed var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pricing-card ul li::before {
  content: '✓ ';
  color: var(--color-primary);
}

.pricing-badge {
  position: absolute;
  top: -0.625rem;
  right: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--color-primary);
}

.pricing-price .unit {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Contact Page */
.contact-page {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-page__header {
    margin-bottom: 3rem;
  }
}

.contact-page__title {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.5rem 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

@media (min-width: 768px) {
  .contact-page__title {
    padding: 0;
    border: none;
    font-size: 4rem;
    margin-bottom: 1rem;
  }
}

.contact-page__subtitle {
  margin: 0;
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: 'AlibabaPuHuiTi';
}

@media (min-width: 768px) {
  .contact-page__subtitle {
    color: #000;
    font-size: 2.25rem;
    line-height: 1.2;
  }
}

.contact-page__body {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact-page__body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30rem;
    height: 30rem;
    background: url('../assets/images/brand/panda.png') center / contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
  }
}

.contact-page .contact-banner {
  background-color: #b50604;
  background-image: url('../assets/images/banner/DIV.png');
  background-size: 12.5rem auto;
  background-repeat: repeat;
}

@media (max-width: 767px) {
  .contact-page.section-block {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .contact-page__header {
    margin-bottom: 1rem;
  }

  .contact-page .contact-banner {
    padding: 1.5rem 1rem;
  }

  .contact-page .contact-qr {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact-page .contact-qr__img {
    width: 12.5rem;
    height: 12.5rem;
  }

  .contact-page .contact-qr__caption {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 0;
  }

  .contact-page .contact-details {
    gap: 1rem;
    width: 100%;
  }

  .contact-page .detail-row {
    gap: 0.75rem;
    font-size: 0.875rem;
  }

  .contact-page .detail-row span {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* Courses Page */
.courses-page,
.services-page,
.service-detail,
.news-page,
.news-detail,
.events-page,
.events-detail,
.about-intro,
.team-profiles,
.team-join-cta,
.contact-page{
  background-image: url('../assets/images/home/yun.png');
  background-repeat: repeat;
  background-size: auto;
}

@media (max-width: 767px) {
  .service-detail,
  .news-detail{
    background: url('../assets/images/home/bg4.png') center / cover no-repeat;
  }
}

.course-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto 3.5rem;
  padding: 0.25rem;
  background: var(--color-white);
  border-radius: 62.4375rem;
  box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .course-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 1.75rem;
    scrollbar-width: none;
  }

  .course-tabs::-webkit-scrollbar {
    display: none;
  }
}

.course-tab {
  flex: 1;
  min-width: fit-content;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 62.4375rem;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

@media (min-width: 768px) {
  .course-tab {
    font-size: 1.5rem;
  }
}

.course-tab--active {
  background: var(--color-primary);
  color: var(--color-white);
}

.course-mobile-wrap {
  display: none;
  position: relative;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .course-mobile-wrap {
    display: block;
  }

  .courses-page .course-tabs {
    display: none;
  }
}

.course-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 1.125rem;
}

.course-mobile-trigger__arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s;
}

.course-mobile-trigger__arrow-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.course-mobile-wrap.is-open .course-mobile-trigger {
  border-radius: 0.5rem 0.5rem 0 0;
}

.course-mobile-wrap.is-open .course-mobile-trigger__arrow {
  transform: rotate(180deg);
}

.mobile-course-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-white);
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}

.mobile-course-popup.is-open {
  display: block;
}

.mobile-course-popup__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-course-popup__list li button {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: 0.0625rem solid var(--color-border);
}

.mobile-course-popup__list li button.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

.course-detail {
  max-width: var(--container-max);
  margin: 0 auto;
}

.course-detail__title {
  margin: 0 0 2.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  color: #000;
}

@media (min-width: 768px) {
  .course-detail__title {
    font-size: 4rem;
  }
}

.course-detail__text {
  margin: 0 0 1.3125rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
  text-align: left;
}

@media (min-width: 768px) {
  .course-detail__text {
    font-size: 1.25rem;
  }
}

.course-detail__image {
  display: block;
  width: 100%;
  margin: 0 0 2rem;
}

.about-voices__avatar-wrap {
  position: relative;
  width: 18.4375rem;
  height: 16.1875rem;
  margin: 0 auto;
}

.about-voices__avatar-wrap .about-voices__avatar {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-voices__container {
    padding: 0 !important;
  }
}

@media (max-width: 767px) {
  .about-voices {
    background-image: none;
    background-color: #fff;
  }

  .about-voices.section-block {
    padding-top: 1rem;
    padding-bottom: 2.25rem;
  }

  .about-voices__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .about-voices__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .about-voices__avatar-wrap {
    width: 100%;
    height: 16.1875rem;
    flex-shrink: 0;
  }

  .about-voices__body {
    width: 100%;
  }

  .about-voices__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .about-voices__quote {
    text-align: justify;
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-voices__name {
    text-align: left;
    font-size: 1rem;
    color: #000;
  }

  .about-voices__dots {
    width: 100%;
    max-width: 18.4375rem;
    gap: 0.5rem;
  }

  .about-voices__dot {
    flex: 1;
    max-width: 3rem;
    height: 0.25rem;
    border-radius: 0.375rem;
  }
}

.about-team-arrow-link {
  display: inline-flex;
  cursor: pointer;
}

/* Team Introduction Page */
.team-profiles {
  padding: 2rem 0 3rem;
}

@media (max-width: 767px) {
  .team-profiles {
    background: var(--color-white);
  }
}

.team-profiles__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.team-profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  overflow: visible;
}

.team-profile-card__accent {
  display: none;
}

.team-profile-card__photo-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team-profile-card__photo-accent {
  position: absolute;
  left: 0.5rem;
  bottom: -0.8125rem;
  width: 2.4375rem;
  height: 15.875rem;
  background: var(--color-primary);
  z-index: 0;
}

.team-profile-card__photo {
  position: relative;
  z-index: 1;
  width: 15rem;
  max-width: 100%;
  height: 22.5rem;
  object-fit: cover;
  object-position: center top;
}

.team-profile-card__body {
  width: 100%;
  padding: 1.5rem 0rem 0;
  text-align: center;
}

.team-profile-card__name {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1a3a6e;
}

.team-profile-card__badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 0.875rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  line-height: 1.5;
  border-radius: 62.4375rem;
  max-width: 100%;
}

.team-profile-card__highlight {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}

.team-profile-card__divider {
  width: 100%;
  height: 0.0625rem;
  background: #d8d8d8;
  margin: 0 0 1rem;
}

.team-profile-card__bio-container {
  display: block;
}

.team-profile-card__bio {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #000;
  text-align: center;
}

.team-profile-card__bio-icon {
  display: none;
}

@media (min-width: 768px) {
  .team-profiles {
    padding: 3.125rem 0 0rem;
  }

  .team-profiles__list {
    gap: 2rem;
  }

  .team-profile-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 17.5rem;
    padding: 4rem;
    background: #F7F7F7;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .team-profile-card__accent {
    display: block;
    flex-shrink: 0;
    width: 0.5rem;
    background: var(--color-primary);
  }

  .team-profile-card__photo-wrap {
    flex-shrink: 0;
    margin: 0;
    position: relative;
    width: 15rem;
    height: 22.5rem;
    padding: 0;
  }

  .team-profile-card__photo-accent {
    left: -0.9375rem;
    bottom: -0.8125rem;
    width: 2.4375rem;
    height: 15.875rem;
  }

  .team-profile-card__photo {
    width: 15rem;
    height: 22.5rem;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .team-profile-card__body {
    width: auto;
    padding: 0.75rem 0 0 2rem;
    text-align: left;
  }

  .team-profile-card__name {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .team-profile-card__badge {
    align-self: flex-start;
    font-size: 1.5rem;
    padding: 0.375rem 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    height: 2.75rem;
  }

  .team-profile-card__highlight {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }


  .team-profile-card__bio {
    font-size: 1.25rem;
    line-height: 2.25rem;
    color: #000;
    text-align: left;
  }

  .team-profile-card__bio-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .team-profile-card__bio-icon {
    display: inline-block;
    width: 2.25rem;
    height: 2.875rem;
    margin-right: 0.375rem;
    vertical-align: middle;
    flex-shrink: 0;
  }
}

.teacher-join-container{
  padding: 0 !important;
}

.team-join-cta {
  padding: 1.5rem 0 3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .team-join-cta {
    background: var(--color-white);
  }
}

.team-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  letter-spacing: 0.0625rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.team-join-btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.team-join-btn__icon {
  display: block;
  width: 1.5rem;
  height: 1.2825rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .team-join-cta {
    padding: 2rem 0;
  }

  .team-join-btn {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
  }
}

/* Teacher Join Page */
.teacher-join {
  background-image: url('../assets/images/home/yun.png');
  background-repeat: repeat;
  background-size: auto;
}
@media (max-width: 767px) {
  .teacher-join {
    background: var(--color-white);
  }
}

.teacher-join__header {
  text-align: center;
  margin-bottom: 2rem;
}

.teacher-join__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

.teacher-join__subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
}

.teacher-join-hero {
  position: relative;
  margin-bottom: 4.5rem;
}

.teacher-join-hero__img {
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.teacher-join-hero__contact {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: -2.5rem auto 0;
  padding: 1.25rem 2rem;
  background-color: var(--color-primary);
  background-image: url('../assets/images/banner/DIV.png');
  background-size: 12.5rem auto;
  background-repeat: repeat;
  border-radius: 0.5rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 0.75rem;
}

.teacher-join-hero__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  font-family: 'AlibabaPuHuiTi';
}

.teacher-join-hero__detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}
.teacher-join-form{
  margin: 0 auto;
  max-width: 75rem;
}

.teacher-join-form__grid {
  display: grid;
  gap: 1.25rem;
}

.teacher-join-form__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  align-items: center;
  gap: 1rem;
}

.teacher-join-form__label {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  font-family: 'AlibabaPuHuiTi';
}

.teacher-join-form__required {
  color: var(--color-primary);
  margin-left: 0.125rem;
}

.teacher-join-form__input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.75rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #333;
  background: var(--color-white);
}

.teacher-join-form__input::placeholder {
  color: #999;
}

.teacher-join-form__input--date {
  color: #333;
}

.teacher-join-form__radios {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.teacher-join-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-family: 'AlibabaPuHuiTi';
  color: #333;
  cursor: pointer;
}

.teacher-join-form__radio input[type="radio"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.teacher-join-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.teacher-join-form__submit-btn {
  min-width: 12.5rem;
  height: 3.25rem;
  padding: 0 2rem;
  border: none;
  border-radius: 1.625rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  font-family: 'AlibabaPuHuiTi';
  cursor: pointer;
  transition: background 0.2s ease;
}

.teacher-join-form__submit-btn:hover {
  background: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .teacher-join__header {
    margin-bottom: 3rem;
  }

  .teacher-join__title {
    font-size: 4rem;
    margin-bottom: 1.25rem;
  }

  .teacher-join__subtitle {
    font-size: 1.5rem;
  }

  .teacher-join-hero__img {
    height: 22.5rem;
  }

  .teacher-join-hero__contact {
    max-width: 75rem;
    margin-top: -3rem;
    padding: 2.35rem 18.2rem;
    gap: 1rem;
  }

  .teacher-join-hero__detail {
    font-size: 2rem;
  }

  .teacher-join-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 4rem;
  }

  .teacher-join-form__row {
    grid-template-columns: 6rem 1fr;
  }

  .teacher-join-form__row--full {
    grid-column: 1 / -1;
  }

  .teacher-join-form__label {
    font-size: 1.125rem;
  }

  .teacher-join-form__input {
    height: 3rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  body[data-page="teacher"] .teacher-join.section-block {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
    background: var(--color-white);
  }

  body[data-page="teacher"] .teacher-join-container {
    padding: 0 1.25rem !important;
  }

  body[data-page="teacher"] .teacher-join__header {
    margin-bottom: 1.25rem;
  }

  body[data-page="teacher"] .teacher-join__title {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }

  body[data-page="teacher"] .teacher-join__subtitle {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0 0.25rem;
  }

  body[data-page="teacher"] .teacher-join-hero {
    margin-bottom: 1.25rem;
  }

  body[data-page="teacher"] .teacher-join-hero__img {
    width: 100%;
    height: auto;
    min-height: 7.5rem;
    max-height: 10.5rem;
    border-radius: 0;
    object-fit: cover;
  }

  body[data-page="teacher"] .teacher-join-hero__contact {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0.875rem 1rem;
    border-radius: 0;
    gap: 0.625rem;
    align-items: flex-start;
  }

  body[data-page="teacher"] .teacher-join-hero__detail {
    font-size: 0.875rem;
    gap: 0.625rem;
    line-height: 1.4;
  }

  body[data-page="teacher"] .teacher-join-hero__detail-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  body[data-page="teacher"] .teacher-join-form {
    max-width: none;
  }

  body[data-page="teacher"] .teacher-join-form__grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .teacher-join-form__row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    align-items: stretch;
  }

  .teacher-join-form__label {
    white-space: normal;
  }

  .teacher-join-form__input {
    min-width: 0;
  }

  .teacher-join-form__row:has(.teacher-join-form__radios) {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.75rem;
  }

  .teacher-join-form__row:has(.teacher-join-form__radios) .teacher-join-form__label {
    white-space: nowrap;
  }

  body[data-page="teacher"] .teacher-join-form__row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
    align-items: stretch;
  }

  body[data-page="teacher"] .teacher-join-form__row:has(.teacher-join-form__radios) {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.75rem;
  }

  body[data-page="teacher"] .teacher-join-form__row:has(.teacher-join-form__radios) .teacher-join-form__label {
    white-space: nowrap;
  }

  body[data-page="teacher"] .teacher-join-form__label {
    font-size: 0.875rem;
    line-height: 1.2;
    white-space: normal;
  }

  body[data-page="teacher"] .teacher-join-form__input {
    height: 2.5rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    border-color: #e0e0e0;
    border-radius: 0.1875rem;
  }

  body[data-page="teacher"] .teacher-join-form__input::placeholder {
    font-size: 0.875rem;
  }

  body[data-page="teacher"] .teacher-join-form__radios {
    gap: 1.25rem;
  }

  body[data-page="teacher"] .teacher-join-form__radio {
    font-size: 0.875rem;
    gap: 0.25rem;
  }

  body[data-page="teacher"] .teacher-join-form__radio input[type="radio"] {
    width: 0.875rem;
    height: 0.875rem;
  }

  body[data-page="teacher"] .teacher-join-form__submit {
    margin-top: 1.5rem;
  }

  body[data-page="teacher"] .teacher-join-form__submit-btn {
    width: 12.5rem;
    min-width: 12.5rem;
    height: 2.5rem;
    padding: 0;
    font-size: 1rem;
    border-radius: 1.25rem;
  }

  html[lang="en"] .teacher-join-form__input::placeholder {
    font-size: 0.8125rem;
  }

  html[lang="en"] .teacher-join-hero__detail {
    align-items: flex-start;
  }

  html[lang="en"] .teacher-join-hero__detail span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  html[lang="en"] .teacher-join-container {
    padding: 0 1.25rem !important;
  }

  html[lang="en"] .teacher-join.section-block {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
    background: var(--color-white);
  }
}

    /* 遮罩层 */
    #mask {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999;
    }

    /* 弹窗盒子 */
    .submit-modal .modal {
      width: 400px;
      min-height: 200px;
      background: #ffffff;
      border-radius: 8px;
      padding: 16px 24px 50px 24px;
      position: relative;
    }

    /* 右上角关闭 */
    .submit-modal .close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 18px;
      color: #a6a6a6;
      cursor: pointer;
      line-height: 1;
    }

    /* 标题 提示 */
    .submit-modal .modal-header h2 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px;
      margin-top: 0px;
    }

    /* 提交成功文字 */
    .submit-modal .modal-text {
      text-align: center;
      font-size: 20px;
      color: #b50604;
      margin-bottom: 24px;
    }

    /* 确定按钮 */
    .submit-modal .confirm-btn {
      display: block;
      margin: 0 auto;
      background-color: #b50604;
      color: #fff;
      border: none;
      border-radius: 26px;
      font-size: 24px;
      padding: 8px 92px;
      cursor: pointer;
    }

    .page-detail{
      height: calc(100vh - var(--header-height-mobile)) / 2;
      display: flex;
      justify-content: center;
      align-items: center;
    }
