/* ===== Variables ===== */
.page-about {
  --primary: #4a4efa;
  --primary-dark: #3a3be0;
  --text: #1a1a2e;
  --text-gray: #6b7280;
  --bg: #f8faff;
  --radius: 16px;
  --radius-lg: 24px;
}

.page-about * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-about {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-about a {
  text-decoration: none;
  color: inherit;
}

/* ===== Navbar ===== */
.page-about .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-about .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.page-about .nav-links {
  display: flex;
  gap: 36px;
}

.page-about .nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.page-about .nav-links a:hover,
.page-about .nav-links a.active {
  color: var(--primary);
}

.page-about .nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.page-about .nav-btn {
  padding: 10px 28px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.page-about .nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ===== Hero Banner ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background: linear-gradient(180deg, #f2f6ff 0%, #f7fbff 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 96px 0 64px;
}

.about-hero__copy {
  max-width: 633px;
}

.about-hero__copy .site-page-heading {
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.about-hero__copy .site-banner-subtitle {
  margin: 0 0 24px;
}

.about-hero__copy .site-banner-copy {
  opacity: 1;
  max-width: 600px;
}

/* ===== Breadcrumbs & Tabs ===== */
.page-about .breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
}

.page-about .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-gray);
}

.page-about .breadcrumb svg {
  width: 16px;
  height: 16px;
}

.page-about .breadcrumb a:hover {
  color: var(--primary);
}

.page-about .breadcrumb .sep {
  color: #ccc;
}

.page-about .breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

.page-about .page-tabs {
  display: flex;
  gap: 48px;
}

.page-about .page-tabs a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  padding-bottom: 12px;
  border-bottom: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.page-about .page-tabs a:hover {
  color: var(--primary);
}

.page-about .page-tabs a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* ===== Company Intro ===== */
.company-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
}

.intro-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.intro-text p {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 16px;
  text-indent: 2em;
}

.intro-image {
  flex: 0 0 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== About Feature Modules ===== */
.about-feature-banner {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
}

.about-feature-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.about-feature-banner__inner h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
}

.about-feature-banner__inner p {
  max-width: 1120px;
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.96);
}

.about-visual-section {
  padding: 110px 24px;
  background: #fefeff;
}

.about-visual-section--gradient {
  background: radial-gradient(
    ellipse 95% 75% at 50% 42%,
    #ffffff 0%,
    #f6f9ff 32%,
    #eaf2fc 62%,
    #dfeaf8 100%
  );
}

.about-visual-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual-section__title {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.about-visual-card__title {
  margin: 48px 0 0;
  text-align: center;
}

.about-visual-section__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto 0;
}

.about-visual-section__figure--compact {
  max-width: 100%;
}

.about-visual-section__figure--wide {
  max-width: 1136px;
}

.about-visual-section__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Culture Section ===== */
.culture-sec {
  position: relative;
  padding: 80px 40px 60px;
  text-align: center;
  color: #fff;
  min-height: 620px;
}

.culture-sec h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.culture-sec > p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 0;
  line-height: 2;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.culture-card-wrapper {
  max-width: 1200px;
  margin: 60px auto 0;
  display: flex;
  justify-content: flex-start;
  padding: 0 40px;
}

.culture-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 40px 44px;
  text-align: left;
  color: var(--text);
  max-width: 480px;
  width: 100%;
}

.culture-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.culture-item h3 span {
  color: var(--primary);
}

.culture-item p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.culture-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: 28px 0;
}

/* ===== 双域协同 多级联动 ===== */
.dual-domain-sec {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dual-domain-sec h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}

.dual-domain-img {
  width: 100%;
}

.dual-domain-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===== Honors Section ===== */
.honors-sec {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}

.honors-sec h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.honors-sec > p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 60px;
}

.honors-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.honors-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: honors-scroll 20s linear infinite;
}

.honors-scroll-wrapper:hover .honors-scroll-track {
  animation-play-state: paused;
}

@keyframes honors-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.honor-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 24px 30px;
  border: 1px solid #eee;
  min-width: 260px;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.honor-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.honor-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.honor-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 6px;
}

/* ===== Footer ===== */
.page-about .footer {
  background: #f5f5f8;
  padding: 60px 40px 0;
}

.page-about .footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.page-about .footer-brand .logo {
  margin-bottom: 16px;
}

.page-about .footer-brand .phone-label {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.page-about .footer-brand .phone {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.page-about .footer-links {
  display: flex;
  gap: 80px;
}

.page-about .footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.page-about .footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.page-about .footer-col a:hover {
  color: var(--primary);
}

.page-about .footer-qr {
  text-align: center;
}

.page-about .footer-qr .qr-placeholder {
  width: 120px;
  height: 120px;
  background: #e5e7eb;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.page-about .footer-qr p {
  font-size: 13px;
  color: var(--text-gray);
}

.page-about .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #999;
}

/* ===== Tab Panels ===== */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ===== Join Us Section ===== */
.join-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.join-sec h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.join-sub {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.job-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-item {
  border-bottom: 1px solid #eee;
  cursor: pointer;
  text-align: left;
}

.job-item:first-child {
  border-top: 1px solid #eee;
}

.job-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition:
    background 0.2s,
    padding-left 0.2s;
}

.job-item:hover .job-header {
  background: var(--bg);
  padding-left: 32px;
}

.job-item.open .job-header {
  background: var(--bg);
}

.job-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.job-header span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.job-item.open .job-header span {
  font-weight: 700;
}

.job-detail {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 24px 0 56px;
  line-height: 1.9;
}

.job-item.open .job-detail {
  max-height: 600px;
  padding: 0 24px 24px 56px;
}

.job-detail p {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

.job-detail strong {
  color: var(--text);
  display: inline-block;
  margin-top: 12px;
}

/* ===== Contact Section ===== */
.contact-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.contact-sec h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 平板端 ≤1024px ===== */
@media (max-width: 1024px) {
  .company-intro {
    padding: 60px 32px;
    gap: 40px;
  }

  .intro-image {
    flex: 0 0 340px;
  }

  .culture-card-wrapper {
    padding: 0 20px;
    margin-top: 40px;
  }

  .honors-scroll-track {
    gap: 20px;
  }

  .footer-links {
    gap: 40px;
  }

  .page-tabs {
    gap: 24px;
  }

  .breadcrumb-bar {
    padding: 16px 24px;
  }

  .join-sec,
  .contact-sec {
    padding: 60px 24px;
  }

  .about-feature-banner,
  .about-visual-section {
    padding: 88px 24px;
  }

  .about-feature-banner__inner h2,
  .about-visual-section__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-feature-banner__inner p {
    max-width: 960px;
  }
}

/* ===== 平板竖屏 ≤768px ===== */
@media (max-width: 768px) {
  .about-hero {
    min-height: 420px;
  }

  .about-hero__inner {
    min-height: 420px;
    padding: 80px 0 48px;
  }

  .breadcrumb-bar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .page-tabs {
    gap: 16px;
    width: 100%;
    overflow-x: auto;
  }

  .page-tabs a {
    font-size: 14px;
    white-space: nowrap;
    padding-bottom: 8px;
  }

  .company-intro {
    flex-direction: column;
    padding: 48px 20px;
    gap: 32px;
  }

  .intro-image {
    flex: none;
    width: 100%;
    max-height: 300px;
  }

  .intro-text h2 {
    font-size: 26px;
  }

  .culture-sec {
    padding: 60px 20px 40px;
    min-height: auto;
  }

  .culture-sec h2 {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .culture-card-wrapper {
    padding: 0 20px;
    margin-top: 40px;
  }

  .culture-card {
    padding: 28px 24px;
  }

  .honors-sec {
    padding: 60px 20px;
  }

  .honors-sec h2 {
    font-size: 30px;
  }

  .dual-domain-sec {
    padding: 60px 20px 40px;
  }

  .dual-domain-sec h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .honors-scroll-track {
    gap: 16px;
  }

  .honor-card {
    min-width: 220px;
  }

  .honor-card {
    padding: 28px 16px 20px;
  }

  .about-feature-banner,
  .about-visual-section {
    padding: 72px 20px;
  }

  .about-feature-banner__inner h2,
  .about-visual-section__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .about-feature-banner__inner p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.9;
  }

  .about-visual-section__figure {
    margin-top: 36px;
  }

  .join-sec h2,
  .contact-sec h2 {
    font-size: 30px;
  }

  .footer {
    padding: 40px 20px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }
}

/* ===== 手机端 ≤480px ===== */
@media (max-width: 480px) {
  .about-hero {
    min-height: 360px;
  }

  .about-hero__inner {
    min-height: 360px;
    padding: 72px 0 40px;
  }

  .about-hero__copy .site-page-heading {
    letter-spacing: 0.01em;
  }

  .breadcrumb-bar {
    padding: 12px 16px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .page-tabs a {
    font-size: 13px;
    padding-bottom: 6px;
  }

  .page-tabs {
    gap: 12px;
  }

  .company-intro {
    padding: 36px 16px;
    gap: 24px;
  }

  .intro-text h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .intro-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .culture-sec {
    padding: 48px 16px 40px;
    min-height: auto;
  }

  .culture-sec h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .culture-sec > p {
    font-size: 13px;
  }

  .culture-card-wrapper {
    padding: 0 16px;
    margin-top: 30px;
  }

  .culture-card {
    padding: 24px 20px;
  }

  .culture-item h3 {
    font-size: 17px;
  }

  .culture-item p {
    font-size: 13px;
  }

  .culture-divider {
    margin: 20px 0;
  }

  .honors-sec {
    padding: 48px 16px;
  }

  .honors-sec h2 {
    font-size: 24px;
  }

  .dual-domain-sec {
    padding: 48px 16px 36px;
  }

  .dual-domain-sec h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .about-feature-banner,
  .about-visual-section {
    padding: 56px 16px;
  }

  .about-feature-banner__inner h2,
  .about-visual-section__title {
    font-size: 22px;
    line-height: 1.45;
  }

  .about-feature-banner__inner p {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.8;
  }

  .about-visual-section__figure {
    margin-top: 28px;
  }

  .about-visual-card__title {
    margin: 24px 0 0;
    font-size: 20px;
  }

  .honors-sec > p {
    font-size: 13px;
    margin-bottom: 36px;
  }

  .honors-scroll-track {
    gap: 12px;
  }

  .honor-card {
    min-width: 200px;
  }

  .honor-card {
    padding: 24px 12px 16px;
  }

  .honor-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .honor-card h4 {
    font-size: 14px;
  }

  .honor-card p {
    font-size: 12px;
  }

  .join-sec,
  .contact-sec {
    padding: 48px 16px;
  }

  .join-sec h2,
  .contact-sec h2 {
    font-size: 24px;
  }

  .join-sub,
  .contact-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .job-header {
    padding: 16px;
    gap: 12px;
  }

  .job-header span {
    font-size: 14px;
  }

  .job-detail {
    padding: 0 16px 0 40px;
  }

  .job-item.open .job-detail {
    padding: 0 16px 16px 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card h4 {
    font-size: 16px;
  }

  .footer {
    padding: 32px 16px 0;
  }

  .footer-brand .phone {
    font-size: 20px;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-qr .qr-placeholder {
    width: 100px;
    height: 100px;
  }
}

/* ===== 合作伙伴（与 home.html 一致，双行无缝滚动） ===== */
.page-about .partners-section {
  overflow: hidden;
}

.page-about .partners-section.site-section {
  padding-block: 72px;
}

.page-about .partners-section .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  text-align: center;
}

.page-about .partners-rows {
  display: grid;
  gap: 0;
}

.page-about .partners-marquee {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 0;
}

.page-about .partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: about-partners-marquee-scroll 160s linear infinite;
}

.page-about .partners-rows .partners-marquee:nth-child(even) .partners-track {
  animation-duration: 170s;
  animation-direction: reverse;
}

.page-about .partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.page-about .partner-item {
  flex-shrink: 0;
  width: 200px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 6px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  cursor: default;
}

.page-about .partner-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(11, 99, 255, 0.1);
  background: #f4f8ff;
}

.page-about .partner-item img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes about-partners-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-about .partners-track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .page-about .partners-marquee {
    padding-inline: 24px;
  }

  .page-about .partner-item {
    width: 156px;
    height: 58px;
  }
}

@media (max-width: 480px) {
  .page-about .partners-section.site-section {
    padding-block: 44px;
  }

  .page-about .partners-marquee {
    padding-inline: 16px;
  }

  .page-about .partner-item {
    width: 132px;
    height: 52px;
  }
}
