/* ==========================================================================
   招聘模板 - 传统多页面招聘平台全套样式表
   风格特点：深蓝岩灰 (Slate Black) + 翡翠绿 (Emerald Green) + 暖琥珀 (Amber) 极简现代高质感
   ========================================================================== */

:root {
  --primary: #0f172a;
  --primary-hover: #1e293b;
  --brand: #059669;
  --brand-hover: #047857;
  --brand-light: #ecfdf5;
  --brand-border: #a7f3d0;
  --accent: #d97706;
  --accent-light: #fffbeb;
  --accent-border: #fde68a;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  
  --bg-main: #f8fafc;
  --surface: #ffffff;
  --surface-sub: #f1f5f9;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px -6px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 16px 32px -8px rgba(5, 150, 105, 0.15);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 基础重置 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* 布局容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-wrapper {
  flex: 1;
  padding: 30px 0 60px 0;
}

/* 全局顶部导航栏 Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-logo i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-style: normal;
}

.brand-logo span.tag {
  font-size: 0.72rem;
  background: var(--brand-light);
  color: var(--brand);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid var(--brand-border);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--surface-sub);
  color: var(--text-main);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-dark);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.user-profile-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
}

.user-profile-widget:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Banner 头部区域 (首页特有) */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 64px 0 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.18) 0%, rgba(15, 23, 42, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #a7f3d0;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-title span {
  color: #34d399;
  background: linear-gradient(120deg, #34d399, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 36px;
}

/* 巨型全局搜索框组件 */
.search-box-card {
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  text-align: left;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}

.search-input-group i {
  color: var(--text-light);
  font-size: 1.1rem;
}

.search-input-group input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-main);
  background: transparent;
}

.search-select-group {
  width: 180px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.search-select-group select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-weight: 500;
  cursor: pointer;
}

.quick-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.quick-tags a {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.quick-tags a:hover {
  background: var(--brand);
  color: #fff;
}

/* 分类卡片区域 (4-5个主要分类) */
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.category-card:nth-child(2) .category-icon { background: #eff6ff; color: #2563eb; }
.category-card:nth-child(3) .category-icon { background: #fef3c7; color: #d97706; }
.category-card:nth-child(4) .category-icon { background: #f3e8ff; color: #9333ea; }
.category-card:nth-child(5) .category-icon { background: #ffe4e6; color: #e11d48; }

.category-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.category-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.category-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 职位列表卡片 (通用 Job Card) */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.job-card:hover {
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.job-title-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-title-group h3 a:hover {
  color: var(--brand);
}

.badge-urgent {
  background: var(--danger-light);
  color: var(--danger);
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.badge-hot {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.job-salary {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag-item {
  font-size: 0.78rem;
  padding: 3px 8px;
  background: var(--surface-sub);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.job-card-footer {
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.company-meta h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.company-meta p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.bookmark-btn {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition);
  padding: 4px;
}

.bookmark-btn:hover, .bookmark-btn.active {
  color: #f59e0b;
}

/* 列表页 Filter 筛选栏组件 (jobs.html) */
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-sub);
}

.filter-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-label {
  width: 80px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.filter-options {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  font-size: 0.88rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  color: var(--text-main);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover {
  background: var(--surface-sub);
  color: var(--brand);
}

.filter-chip.active {
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
}

/* 详情页组件 (job-detail.html) */
.detail-header-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.detail-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.detail-title h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.detail-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.detail-salary-badge {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
}

.detail-main-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.detail-block {
  margin-bottom: 32px;
}

.detail-block h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-block p, .detail-block ul {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.8;
}

.detail-block ul {
  padding-left: 20px;
  list-style-type: disc;
}

.detail-block ul li {
  margin-bottom: 8px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

/* 发布页 Form 组件 (publish.html) */
.publish-wizard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 1;
  transform: translateY(-50%);
}

.step-item {
  position: relative;
  z-index: 2;
  background: var(--surface);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-weight: 600;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-sub);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step-item.active {
  color: var(--brand);
}

.step-item.active .step-number {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

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

.form-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-label span.req {
  color: var(--danger);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
  outline: none;
}

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

/* 会员中心 Page (user-center.html) */
.user-center-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.user-sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.user-sidebar-profile {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.user-sidebar-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.user-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.user-nav-item:hover, .user-nav-item.active {
  background: var(--brand-light);
  color: var(--brand);
}

.user-panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* 通用 Modal 弹窗 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-main);
}

/* Toast 提示框 */
.toast-container {
  position: fixed;
  top: 84px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastSlideIn 0.3s ease forwards;
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 全局 Footer 页脚 */
.site-footer {
  background: var(--primary);
  color: #94a3b8;
  padding: 60px 0 30px 0;
  margin-top: auto;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-col ul li a:hover {
  color: #34d399;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.job-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 800;
}

.job-form-field input,
.job-form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-main);
  font: inherit;
  font-weight: 500;
  line-height: 1.6;
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
}

.job-form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.job-form-field input:focus,
.job-form-field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-light);
}

.job-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.job-plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.job-plan-card.is-featured {
  border-color: var(--brand-border);
  box-shadow: var(--shadow-md);
}

.job-plan-card.is-selected {
  border-color: var(--brand);
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.14);
}

.job-recharge-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.92));
}

.job-recharge-summary h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 5px;
}

.job-recharge-summary p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.job-recharge-price {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 900;
  white-space: nowrap;
}

.job-plan-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.job-plan-price {
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 10px 0;
}

.job-plan-card ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.job-plan-price span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  margin-left: 3px;
}

/* VIP 说明页 */
.vip-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  background:
    radial-gradient(circle at 18% 16%, rgba(5, 150, 105, 0.14), transparent 34%),
    linear-gradient(135deg, #0f172a 0%, #14342c 56%, #065f46 100%);
  color: #fff;
}

.vip-hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -160px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.vip-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.vip-hero-copy h1 {
  max-width: 680px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.vip-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.9;
}

.vip-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.vip-hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.vip-hero-actions .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.vip-hero-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.vip-card-label {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #fbbf24;
  color: #422006;
  font-size: 0.82rem;
  font-weight: 900;
}

.vip-hero-card h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.vip-main-price {
  margin: 16px 0;
  color: #a7f3d0;
  font-size: 2.6rem;
  font-weight: 900;
}

.vip-main-price span {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.vip-hero-card p,
.vip-hero-card li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.vip-hero-card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.vip-hero-card li::before {
  content: '✓';
  margin-right: 8px;
  color: #86efac;
  font-weight: 900;
}

.vip-section {
  margin-bottom: 46px;
}

.vip-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vip-plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.vip-plan-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.vip-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.vip-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vip-info-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.vip-info-card h3 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 1.04rem;
  font-weight: 900;
}

.vip-info-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.vip-charge-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
}

.vip-charge-card h2 {
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 1.45rem;
  font-weight: 900;
}

.vip-charge-card p {
  max-width: 820px;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* 响应式 Mobile Responsive Rules */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-layout, .user-center-layout {
    grid-template-columns: 1fr;
  }
  .job-plan-grid {
    grid-template-columns: 1fr;
  }
  .vip-hero-inner,
  .vip-plan-grid,
  .vip-info-grid {
    grid-template-columns: 1fr;
  }
  .vip-charge-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .job-recharge-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .search-box-card {
    flex-direction: column;
  }
  .search-input-group, .search-select-group {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-title {
    font-size: 2rem;
  }
}
