/* mirror_flow:p6_ai_generated */
/* ===== 西安翱翔工大教育有限责任公司 全局样式表 ===== */
/* 保存路径: style/css/style.css */

/* ========== CSS 自定义变量 ========== */
:root {
  /* 主色系 - 深蓝 */
  --deep-blue: #16213e;
  --navy-dark: #0f1a30;
  --navy-mid: #1a2744;
  --blue-steel: #2c3e6b;

  /* 强调色 - 金色 */
  --accent-gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b8912e;
  --gold-pale: #fdf3dc;

  /* 辅助色 */
  --accent-red: #c0392b;
  --red-dark: #a02c1f;
  --accent-teal: #1a7a6d;
  --teal-light: #e8f5f3;

  /* 中性色 */
  --bg-primary: #faf8f5;
  --bg-secondary: #f5f0e8;
  --bg-warm: #fdfaf6;
  --card-bg: #ffffff;
  --border-light: #e8e0d5;
  --border-medium: #d5cdbf;
  --divider: #eae4da;

  /* 文字色 */
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a8a;
  --text-light: #b0b0b0;
  --text-on-dark: #e8e4dd;
  --text-on-accent: #ffffff;

  /* 字体 */
  --font-heading: 'Georgia', 'Noto Serif SC', 'STSong', 'Songti SC', serif;
  --font-subheading: 'Georgia', 'Noto Serif SC', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'Consolas', 'Monaco', monospace;

  /* 字号层级 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* 间距 */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 28px rgba(26, 26, 46, 0.10);
  --shadow-xl: 0 16px 40px rgba(26, 26, 46, 0.12);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.10);

  /* 过渡 */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* 最大宽度 */
  --max-width: 1280px;
  --max-width-narrow: 960px;
  --max-width-text: 720px;

  /* 导航高度 */
  --nav-height: 72px;
  --nav-height-mobile: 60px;
}

/* ========== 全局重置 ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

/* ========== 工具类 ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--text {
  max-width: var(--max-width-text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section {
  padding: var(--space-20) 0;
}

.section--sm {
  padding: var(--space-12) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-3);
}

.section__title {
  font-size: var(--text-4xl);
  color: var(--deep-blue);
  margin-bottom: var(--space-4);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: var(--max-width-text);
  margin: 0 auto;
}

/* ========== 顶部导航栏 ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-nav);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(212, 168, 83, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.header__logo-img {
  height: 42px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.header__logo-sub {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

/* 主导航 */
.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-on-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.08);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--space-4);
  right: var(--space-4);
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* 导航下拉 */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-on-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.nav__dropdown-toggle:hover {
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.08);
}

.nav__dropdown-toggle .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-menu a:hover {
  background: var(--gold-pale);
  color: var(--deep-blue);
}

/* 导航右侧操作区 */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav__btn--outline {
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}

.nav__btn--outline:hover {
  background: var(--accent-gold);
  color: var(--navy-dark);
}

.nav__btn--fill {
  background: var(--accent-gold);
  color: var(--navy-dark);
  border: 1.5px solid var(--accent-gold);
}

.nav__btn--fill:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* 汉堡菜单按钮 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active span:nth-child(2) {
  opacity: 0;
}

.hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端导航 */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: var(--space-6);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--space-2);
}

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

.mobile-nav__link {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-lg);
  color: var(--text-on-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.08);
}

.mobile-nav__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: var(--space-4) 0;
}

.mobile-nav__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--space-4);
  font-size: var(--text-base);
  font-weight
