/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: #1677ff; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Container ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.container-narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px;
}

.container-sm {
  max-width: 480px;
}

/* ===== Header ===== */
header {
  text-align: center;
  padding: 30px 0 20px;
}

header h1 {
  font-size: 28px;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.subtitle {
  color: #666;
  font-size: 14px;
}

/* ===== Form ===== */
.form {
  padding: 0 24px 24px;
}

.form-inline {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.form-inline .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1677ff;
  box-shadow: 0 0 0 2px rgba(22,119,255,0.1);
}

.required { color: #ff4d4f; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  text-align: center;
  margin-top: 20px;
}

.form-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #999;
}

.form-footer a { color: #1677ff; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover { text-decoration: none; opacity: 0.85; }

.btn-primary {
  background: #1677ff;
  color: #fff;
}

.btn-success {
  background: #52c41a;
  color: #fff;
}

.btn-danger {
  background: #ff4d4f;
  color: #fff;
}

.btn-outline {
  background: #fff;
  border: 1px solid #d9d9d9;
  color: #333;
}

.btn-outline:hover { border-color: #1677ff; color: #1677ff; }

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-active {
  background: #1677ff;
  color: #fff;
  border-color: #1677ff;
}

.btn-block {
  display: block;
  width: 100%;
}

.action-bar {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Alerts ===== */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.alert-error {
  background: #fff2f0;
  border: 1px solid #ffccc7;
  color: #ff4d4f;
}

.alert-success {
  background: #f6ffed;
  border: 1px solid #b7eb8f;
  color: #52c41a;
}

.alert-warning {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  color: #d48806;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* ===== Success Page ===== */
.success-card {
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-card h1 { font-size: 24px; margin-bottom: 24px; color: #333; }
.success-card p { font-size: 16px; margin: 8px 0; color: #666; }
.success-card .action-bar { margin-top: 32px; display: flex; gap: 12px; justify-content: center; }

/* ===== Fee Badge ===== */
.fee-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}

.fee-badge strong { font-size: 20px; }

/* ===== Payment ===== */
.payment-summary {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 16px;
}

.qrcode-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  margin-bottom: 16px;
}

.qrcode-box {
  padding: 20px;
}

.qrcode-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.qrcode-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 8px;
}

.qrcode-tip {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
}

.qrcode-switch {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.qrcode-switch p {
  margin-bottom: 8px;
  color: #999;
  font-size: 13px;
}

.mock-notice {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
  font-size: 14px;
}

.payment-status {
  text-align: center;
  padding: 16px;
  font-size: 16px;
  color: #666;
}

.payment-status.success {
  color: #52c41a;
  font-weight: 600;
}

.payment-actions {
  text-align: center;
  padding: 20px;
}

.countdown {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding: 8px;
}

/* ===== Info Table ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid #f5f5f5;
}

.info-table td {
  padding: 10px 12px;
  font-size: 14px;
}

.info-table td:first-child {
  color: #888;
  width: 120px;
  white-space: nowrap;
}

.info-table td:last-child {
  color: #333;
}

/* ===== Data Table ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin: 12px 0;
}

.data-table th {
  background: #fafafa;
  padding: 10px 12px;
  font-size: 13px;
  color: #666;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.data-table td {
  padding: 10px 12px;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.data-table tr:hover td {
  background: #fafafa;
}

.data-table .empty {
  text-align: center;
  color: #ccc;
  padding: 40px;
}

.mono { font-family: 'Courier New', monospace; font-size: 13px; }

/* ===== Status Badges ===== */
.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-pending { background: #fff7e6; color: #d46b08; }
.status-paid { background: #f6ffed; color: #52c41a; }
.status-refunded { background: #fff0f0; color: #ff4d4f; }
.status-completed { background: #f6ffed; color: #52c41a; }
.status-approved { background: #e6f7ff; color: #1677ff; }
.status-rejected { background: #fff0f0; color: #ff4d4f; }

.amount { color: #ff4d4f; font-size: 16px; }

/* ===== 金数据风格表单 (严格匹配) ===== */

/* 页面背景 */
body.form-page {
  background: rgb(160, 213, 207);
  min-height: 100vh;
  padding: 20px 0;
}

.form-page-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 外层卡片 */
.form-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

/* 顶部警告条 */
.form-warning {
  background: #fffbe6;
  color: #b8860b;
  font-size: 13px;
  padding: 10px 24px;
  border-bottom: 1px solid #f0e6c0;
}

/* 标题banner图 */
.form-header-img {
  line-height: 0;
}

.header-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* 表单标题 */
.form-title {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  padding: 20px 24px 0;
  margin: 0;
}

/* 错误提示 */
.form-card .alert {
  margin: 12px 24px 0;
}

/* 描述段落 */
.form-desc {
  padding: 12px 24px 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}

.form-desc p {
  margin: 0 0 8px;
}

.form-desc strong {
  font-weight: bold;
}

.highlight-red {
  color: hsl(354, 74%, 57%);
  font-weight: bold;
}

/* 表单主体 */
.form {
  padding: 0 24px 24px;
}

/* 分区（SectionBreak） */
.field-section-break {
  padding: 12px 0;
}

.section-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 12px;
}

/* 信任图片区 */
.trust-images {
  text-align: left;
}

.trust-figure {
  margin: 0 0 8px;
}

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

.trust-subtitle {
  margin: 8px 0 0;
}

/* 字段组 */
.field-group {
  margin-bottom: 40px;
}

.field-group.with-notes {
  margin-bottom: 40px;
}

.field-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin-bottom: 4px;
}

.field-label .required {
  color: #ff4d4f;
  margin-right: 2px;
}

.field-notes {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.5;
}

.field-input input[type="text"],
.field-input input[type="tel"],
.field-input textarea,
.field-input select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.field-input input:focus,
.field-input textarea:focus,
.field-input select:focus {
  border-color: #1677ff;
}

.field-input textarea {
  resize: vertical;
  min-height: 80px;
  font-size: 14px;
}

.field-input select {
  appearance: auto;
  cursor: pointer;
}

/* 列布局单选按钮（金数据风格） */
.radio-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
  user-select: none;
  width: fit-content;
}

.radio-row input[type="radio"] {
  display: none;
}

.radio-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.radio-row input[type="radio"]:checked + .radio-dot {
  border-color: #1677ff;
}

.radio-row input[type="radio"]:checked + .radio-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #1677ff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 联系我们分区 */
.contact-section {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

.fee-amount {
  color: #ff4d4f;
}

/* 提交行 */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

.btn-submit {
  display: inline-block;
  padding: 0 55px;
  height: 44px;
  line-height: 44px;
  background: rgb(247, 119, 26);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}

.btn-submit:hover {
  opacity: 0.85;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-report {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}

.btn-report:hover {
  color: #1677ff;
  text-decoration: underline;
}

/* 底部 */
.form-page-wrap .form-footer {
  text-align: center;
  padding: 16px 0 32px;
  font-size: 13px;
  color: #bbb;
}

.form-page-wrap .form-footer a {
  color: #999;
  text-decoration: none;
}

.form-page-wrap .form-footer a:hover {
  color: #1677ff;
  text-decoration: underline;
}

.footer-powered {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #ccc;
}

/* 条件显示 */
#not-hosting-group {
  transition: all 0.25s ease;
}

/* ===== Stats Grid ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #1677ff;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
}

.stat-label {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.stat-pending { border-left-color: #faad14; }
.stat-paid { border-left-color: #52c41a; }
.stat-refunded { border-left-color: #ff4d4f; }
.stat-nohosting { border-left-color: #1677ff; }
.stat-total-amount { border-left-color: #722ed1; }
.stat-alert { border-left-color: #ff4d4f; }

/* ===== Admin ===== */
.admin-page {
  background: #f0f2f5;
}

.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #001529;
  color: #fff;
  padding: 0 24px;
  height: 56px;
}

.nav-brand {
  font-size: 16px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.admin-login {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: 60px;
}

.admin-login h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 22px;
}

/* ===== Success / Error Cards ===== */
.success-card, .error-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 60px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.success-icon, .error-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.success-card h1, .error-card h1 {
  margin-bottom: 16px;
}

/* ===== Detail Page ===== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-top: 16px;
}

.detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.detail-card h3, .detail-card h4 {
  margin: 16px 0 8px;
}

.detail-card h3:first-child, .detail-card h4:first-child {
  margin-top: 0;
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 20px 0;
}

.pagination a {
  padding: 6px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.pagination a.active {
  background: #1677ff;
  color: #fff;
  border-color: #1677ff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-nav {
    flex-direction: column;
    height: auto;
    padding: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }

  .form-inline {
    flex-direction: column;
  }
}

/* ===== Misc ===== */
.text-muted { color: #999; }
small { color: #999; font-weight: normal; font-size: 13px; }

/* ===== 真实支付提示 ===== */
.realpay-notice {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}
.realpay-notice p { margin: 4px 0; }
.realpay-notice .text-muted { font-size: 13px; }

/* ===== CMB 聚合支付 ===== */
.qrcode-switch p {
  color: #666;
  font-size: 14px;
}

/* ============================================
   公司官网样式 (PPT风格)
   ============================================ */

/* 基础 */
body.company-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 70px;
}

/* ===== 导航栏 ===== */
.company-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  height: 70px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  color: #1a3c6e;
  letter-spacing: 1px;
}

.nav-subtitle {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  font-weight: 400;
  border-radius: 0;
}

.nav-link:hover {
  color: #1a3c6e;
  background: transparent;
  text-decoration: none;
}

.nav-link.active {
  color: #1a3c6e;
  font-weight: 600;
}

.nav-link-cta {
  background: #c41e3a !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-link-cta:hover {
  opacity: 0.9 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1a3c6e 0%, #2b4d7a 100%);
  padding: 60px 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffd700;
}

.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  padding: 12px 32px;
  background: #c41e3a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-primary:hover {
  background: #a01830;
  text-decoration: none;
  color: #fff;
}

.hero-btn-outline {
  padding: 12px 32px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}

.hero-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
}

/* ===== 通用 Section ===== */
.section {
  padding: 60px 0;
}

.section-alt {
  background: #f5f7fa;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a3c6e;
  text-align: center;
  margin: 0 0 12px;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: #c41e3a;
  margin: 0 auto 36px;
}

/* ===== 公司简介 ===== */
.about-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 32px;
  margin-bottom: 28px;
}

.about-card p {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin: 0;
}

.about-card strong {
  color: #1a3c6e;
}

.about-auth {
  margin-bottom: 28px;
}

.about-auth h3,
.about-qual h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-auth h3 i,
.about-qual h3 i {
  color: #c41e3a;
  font-size: 20px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 24px;
}

.auth-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 10px;
}

.auth-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.auth-item strong {
  color: #c41e3a;
}

.qual-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qual-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #fff;
  border: 1px solid #1a3c6e;
  color: #1a3c6e;
  font-size: 13px;
  font-weight: 600;
}

/* ===== 服务内容 ===== */
.service-main {
  text-align: center;
  padding: 36px;
  background: #fff;
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
}

.service-icon-big {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: #1a3c6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.service-main-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 16px;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

.service-meta i {
  color: #c41e3a;
  margin-right: 4px;
  width: 16px;
}

.service-extras {
  text-align: center;
}

.service-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #c41e3a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.service-btn:hover {
  background: #a01830;
  text-decoration: none;
  color: #fff;
}

/* ===== 档案重要性 ===== */
.importance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.importance-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 20px;
  transition: all 0.2s;
}

.importance-item:hover {
  border-color: #1a3c6e;
}

.importance-item i {
  font-size: 28px;
  color: #c41e3a;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.importance-item span {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
}

/* ===== 为什么要托管 ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 28px 20px;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 12px;
  background: #1a3c6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.why-card strong {
  color: #c41e3a;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  font-size: 13px;
  color: #555;
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px dashed #eee;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c41e3a;
  font-weight: bold;
}

/* ===== 托管优势 ===== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 28px 20px;
  text-align: center;
}

.advantage-card:hover {
  border-color: #1a3c6e;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #1a3c6e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.advantage-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a3c6e;
  margin: 0 0 8px;
}

.advantage-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.advantage-price {
  border-color: #c41e3a;
}

.advantage-price-tag {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #c41e3a !important;
  margin: 4px 0 !important;
}

.advantage-price-tag small {
  font-size: 14px;
  font-weight: 400;
}

/* ===== 联系我们 ===== */
.contact-box {
  max-width: 500px;
  margin: 0 auto;
}

.contact-company {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 32px;
}

.contact-company h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a3c6e;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #c41e3a;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.contact-row i {
  font-size: 20px;
  color: #c41e3a;
  width: 28px;
  text-align: center;
}

.contact-row strong {
  display: block;
  font-size: 15px;
  color: #333;
}

.contact-phone {
  font-size: 20px;
  font-weight: 700;
  color: #c41e3a;
  margin-left: 8px;
}

.contact-tip {
  font-size: 13px;
  color: #999;
  margin-left: 4px;
}

.contact-row span {
  font-size: 14px;
  color: #555;
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-inline strong {
  font-size: 15px;
  color: #333;
}

/* ===== 页脚 ===== */
.footer {
  background: #1a3c6e;
  color: #fff;
  padding: 36px 0 20px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-partner {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.footer-copy p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .auth-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.company-page {
    padding-top: 60px;
  }

  .company-nav {
    height: 60px;
  }

  .nav-subtitle {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e8e8e8;
    align-items: stretch;
  }

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

  .nav-link-cta {
    margin-left: 0;
    margin-top: 4px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .auth-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .importance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .importance-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .service-meta {
    flex-direction: column;
    gap: 8px;
  }

  .footer-partner {
    flex-direction: column;
    gap: 4px;
  }
}
