/* ===================================================
   统一企业管理平台 YS·YC·LM-260408
   主样式文件 - Aero + 液态玻璃风格
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0066cc;
  --primary-light: #1a7fdd;
  --primary-dark: #004fa3;
  --accent: #00b4d8;
  --accent2: #0096c7;
  --gold: #c8960c;
  --gold-light: #e8b420;
  --bg-deep: #020b18;
  --bg-dark: #061428;
  --bg-mid: #0a1f3a;
  --text-white: #ffffff;
  --text-light: #c8d8ec;
  --text-muted: #7a9bbf;
  --border-glass: rgba(255,255,255,0.15);
  --border-glow: rgba(0,180,216,0.4);
  --glass-bg: rgba(10,30,60,0.55);
  --glass-bg2: rgba(255,255,255,0.06);
  --glass-blur: blur(20px);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(0,100,200,0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== 背景动效 ===== */
.bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg-canvas::before {
  content: '';
  position: absolute;
  top: -30%; left: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(0,80,180,0.25) 0%, transparent 70%);
  animation: floatBg 12s ease-in-out infinite alternate;
}
.bg-canvas::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(0,180,216,0.18) 0%, transparent 70%);
  animation: floatBg 15s ease-in-out infinite alternate-reverse;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,100,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,100,200,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes floatBg {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(4%,3%) scale(1.08); }
}

/* ===== 液态玻璃卡片 ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur) saturate(160%);
  -webkit-backdrop-filter: var(--glass-blur) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-deep), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.glass-card-sm {
  background: var(--glass-bg2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(2,11,24,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 64px;
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
}
.brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,102,204,0.5);
}
.brand-text { font-size: 16px; font-weight: 600; letter-spacing: 0.5px; }
.brand-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }

.navbar-nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.navbar-nav a {
  display: block;
  padding: 6px 16px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--text-white);
  background: rgba(0,102,204,0.2);
}
.navbar-actions { display: flex; gap: 10px; align-items: center; }

/* ===== 按钮系统 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,102,204,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  box-shadow: 0 6px 20px rgba(0,102,204,0.6);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text-light);
}
.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--text-white);
  background: rgba(0,102,204,0.15);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(200,150,12,0.4);
}
.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(200,150,12,0.6);
  transform: translateY(-1px);
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; }
.btn-danger {
  background: linear-gradient(135deg,#c0392b,#e74c3c);
  color:#fff;
  box-shadow:0 4px 15px rgba(192,57,43,0.4);
}
.btn-success {
  background: linear-gradient(135deg,#0d6e3f,#17a163);
  color:#fff;
  box-shadow:0 4px 15px rgba(23,161,99,0.4);
}

/* ===== 英雄区 ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,102,204,0.2);
  border: 1px solid rgba(0,102,204,0.4);
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== 布局容器 ===== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(0,102,204,0.15);
  border: 1px solid rgba(0,102,204,0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title .hl {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* ===== 企业卡片 ===== */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.company-card {
  padding: 28px;
  cursor: pointer;
}
.company-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,102,204,0.4);
}
.company-name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.company-tax { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; font-family: monospace; letter-spacing: 1px; }
.company-scope { font-size: 13px; color: var(--text-light); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.company-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  padding: 3px 10px;
  background: rgba(0,102,204,0.15);
  border: 1px solid rgba(0,102,204,0.25);
  border-radius: 20px;
  font-size: 11px;
  color: var(--accent);
}

/* ===== 内容标签页 ===== */
.tab-bar {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,102,204,0.35);
}

/* ===== 文章列表 ===== */
.article-list { display: flex; flex-direction: column; gap: 16px; }
.article-item {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.article-item:hover { transform: translateX(4px); }
.article-date {
  text-align: center;
  min-width: 52px;
  flex-shrink: 0;
}
.article-date .day { font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; }
.article-date .month { font-size: 11px; color: var(--text-muted); }
.article-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.article-info { flex: 1; }
.article-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.article-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }
.article-type-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.badge-article { background: rgba(0,102,204,0.2); color: #4da6ff; }
.badge-notice { background: rgba(255,165,0,0.2); color: #ffa500; }
.badge-personnel { background: rgba(0,200,83,0.2); color: #00c853; }
.badge-project { background: rgba(255,87,34,0.2); color: #ff5722; }

/* ===== 代办区域 ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  padding: 40px 36px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(0,180,216,0.08), transparent 60%);
  pointer-events: none;
}
.service-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  font-weight: 700;
}
.service-icon-biz {
  background: linear-gradient(135deg, rgba(0,102,204,0.3), rgba(0,180,216,0.3));
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,102,204,0.25);
}
.service-icon-tax {
  background: linear-gradient(135deg, rgba(200,150,12,0.25), rgba(232,180,32,0.2));
  border: 1px solid rgba(200,150,12,0.35);
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(200,150,12,0.2);
}
.service-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-desc { color: var(--text-light); font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 8px; text-align: left; margin-bottom: 28px; }
.service-feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-light);
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ===== 表单系统 ===== */
.form-section { padding: 100px 0 60px; position: relative; z-index: 1; }
.form-card { max-width: 720px; margin: 0 auto; padding: 48px; }
.form-card-wide { max-width: 900px; margin: 0 auto; padding: 48px; }
.form-title { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.form-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 36px; }

.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-label .required { color: #ff6b6b; margin-left: 3px; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--primary-light);
  background: rgba(0,102,204,0.08);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
.form-control option { background: var(--bg-mid); color: var(--text-white); }
textarea.form-control { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.checkbox-label { font-size: 13px; color: var(--text-light); cursor: pointer; }

.form-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 28px 0;
}

/* 股东区块 */
.shareholder-section { margin-bottom: 24px; }
.shareholder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.shareholder-title { font-size: 15px; font-weight: 600; color: var(--text-light); }
.shareholder-item {
  padding: 20px;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  position: relative;
}
.shareholder-num {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.btn-remove-shareholder {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,107,107,0.15);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff6b6b;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-remove-shareholder:hover { background: rgba(255,107,107,0.3); }
.btn-add-shareholder {
  width: 100%;
  padding: 11px;
  border: 1px dashed rgba(0,180,216,0.35);
  border-radius: 10px;
  background: rgba(0,180,216,0.05);
  color: var(--accent);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 500;
}
.btn-add-shareholder:hover {
  background: rgba(0,180,216,0.12);
  border-color: rgba(0,180,216,0.6);
}

/* ===== 登录/注册 ===== */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800;
  margin: 0 auto 14px;
  box-shadow: 0 10px 30px rgba(0,102,204,0.5);
}
.auth-logo h1 { font-size: 20px; font-weight: 700; }
.auth-logo p { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 1px; }
.auth-tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1; text-align: center;
  padding: 8px;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  border: none;
  background: transparent;
  font-family: inherit;
}
.auth-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

/* ===== 个人中心 ===== */
.profile-wrap {
  padding: 100px 0 60px;
  position: relative;
  z-index: 1;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px;
}
.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,102,204,0.4);
}
.profile-info h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.profile-info p { color: var(--text-muted); font-size: 13px; }
.profile-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.profile-meta-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.profile-menu { padding: 20px 12px; }
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 9px;
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.profile-menu-item:hover { background: rgba(255,255,255,0.06); color: var(--text-white); }
.profile-menu-item.active {
  background: rgba(0,102,204,0.2);
  color: var(--text-white);
  border-left: 3px solid var(--primary-light);
}
.profile-content { padding: 32px; }

/* 审核进度 */
.progress-list { display: flex; flex-direction: column; gap: 14px; }
.progress-item { padding: 20px 24px; }
.progress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.progress-title { font-size: 14px; font-weight: 500; }
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.status-pending { background: rgba(255,165,0,0.15); color: #ffa500; border: 1px solid rgba(255,165,0,0.3); }
.status-approved { background: rgba(0,200,83,0.15); color: #00c853; border: 1px solid rgba(0,200,83,0.3); }
.status-rejected { background: rgba(255,107,107,0.15); color: #ff6b6b; border: 1px solid rgba(255,107,107,0.3); }
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}
.step:last-child::before { display: none; }
.step-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
}
.step.done .step-dot {
  background: var(--primary);
  border-color: var(--primary-light);
  box-shadow: 0 0 10px rgba(0,102,204,0.5);
}
.step.current .step-dot {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0,180,216,0.5);
  animation: pulse 2s infinite;
}
.step-label { font-size: 11px; color: var(--text-muted); }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 10px rgba(0,180,216,0.5); }
  50% { box-shadow: 0 0 20px rgba(0,180,216,0.9); }
}

/* ===== 管理后台 ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: rgba(2,11,24,0.9);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar-logo h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.admin-sidebar-logo p { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
.sidebar-menu { padding: 16px 12px; }
.sidebar-group-title {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 8px 8px;
  margin-top: 8px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2px;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.sidebar-item:hover { background: rgba(255,255,255,0.06); color: var(--text-white); }
.sidebar-item.active {
  background: rgba(0,102,204,0.2);
  color: var(--text-white);
  border-left: 3px solid var(--primary-light);
}
.sidebar-icon {
  width: 18px; text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}
.admin-main {
  padding: 80px 0 40px;
  background: rgba(6,20,40,0.5);
}
.admin-content { padding: 24px 32px; }
.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-page-title { font-size: 22px; font-weight: 700; }
.admin-page-subtitle { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* 统计卡片 */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.stat-card { padding: 22px 24px; }
.stat-card-label { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; }
.stat-card-num { font-size: 32px; font-weight: 700; color: var(--accent); }
.stat-card-change { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* 数据表格 */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* 操作按钮组 */
.action-group { display: flex; gap: 6px; }

/* 富文本编辑器容器 */
.editor-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.editor-toolbar {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.editor-btn {
  padding: 5px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.editor-btn:hover { background: rgba(255,255,255,0.12); color: var(--text-white); }
.editor-area {
  min-height: 280px;
  padding: 16px;
  color: var(--text-white);
  font-size: 14px;
  line-height: 1.7;
  outline: none;
}

/* 分页 */
.pagination {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
  margin-top: 24px;
}
.page-btn {
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== 弹窗 ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: rgba(6,20,40,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
  backdrop-filter: blur(30px);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-size: 18px; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,107,107,0.2); color: #ff6b6b; }

/* ===== 消息提示 ===== */
.toast {
  position: fixed;
  top: 80px; right: 24px;
  z-index: 3000;
  min-width: 280px;
  padding: 14px 20px;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid;
  font-size: 14px;
  font-weight: 500;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(0); }
.toast-success {
  background: rgba(0,100,40,0.85);
  border-color: rgba(0,200,83,0.4);
  color: #a8ffc8;
}
.toast-error {
  background: rgba(100,10,10,0.85);
  border-color: rgba(255,107,107,0.4);
  color: #ffcaca;
}
.toast-info {
  background: rgba(0,30,80,0.85);
  border-color: rgba(0,102,204,0.4);
  color: #a8d4ff;
}

/* ===== 页脚 ===== */
.footer {
  position: relative; z-index: 1;
  background: rgba(2,11,24,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-light); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.record-no { letter-spacing: 0.5px; }

/* ===== 加载动画 ===== */
.loading-spin {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .navbar-inner { padding: 0 16px; }
  .navbar-nav { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 28px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-card, .form-card-wide { padding: 24px 20px; }
  .auth-card { padding: 32px 24px; }
  .profile-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .modal { padding: 24px 20px; }
}

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
::-webkit-scrollbar-thumb { background: rgba(0,102,204,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,102,204,0.7); }

/* ===== 公告详情 ===== */
.detail-wrap { max-width: 900px; margin: 0 auto; padding: 32px; }
.detail-type-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.detail-title { font-size: 28px; font-weight: 700; margin-bottom: 16px; line-height: 1.4; }
.detail-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 13px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.detail-body { font-size: 15px; line-height: 2; color: var(--text-light); }
.detail-body p { margin-bottom: 16px; }
.detail-body h3 { font-size: 18px; font-weight: 600; margin: 24px 0 12px; color: var(--text-white); }

/* 空状态 */
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-icon { font-size: 48px; margin-bottom: 14px; opacity: 0.4; }
.empty-text { font-size: 14px; }

/* 搜索框 */
.search-bar {
  display: flex; gap: 10px;
  margin-bottom: 24px;
}
.search-input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text-white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.search-input:focus {
  border-color: var(--primary-light);
  background: rgba(0,102,204,0.08);
}
.search-input::placeholder { color: rgba(255,255,255,0.25); }

/* 信息列表 */
.info-list { display: flex; flex-direction: column; gap: 0; }
.info-row {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-row:last-child { border-bottom: none; }
.info-key { min-width: 130px; color: var(--text-muted); font-size: 13px; flex-shrink: 0; }
.info-val { font-size: 13px; color: var(--text-light); flex: 1; }

/* 审核详情模态框 */
.review-info { margin-bottom: 20px; }
.review-field {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.review-field:last-child { border-bottom: none; }
.review-field-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.review-field-value { font-size: 14px; color: var(--text-light); }

/* 顶部公告栏 */
.top-notice-bar {
  background: linear-gradient(90deg, rgba(0,80,180,0.8), rgba(0,150,200,0.8));
  border-bottom: 1px solid rgba(0,150,200,0.3);
  padding: 8px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

/* 企业详情页头部 */
.company-detail-header {
  padding: 100px 0 48px;
  position: relative;
  z-index: 1;
}
.company-detail-header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: flex-start; gap: 28px;
}
.company-detail-logo {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0,102,204,0.4);
}
.company-detail-info h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.company-detail-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }
