/* 职桥汇 — PC 网页版 */
:root {
  --primary: #1a6fd4;
  --primary-dark: #0f4fa8;
  --primary-deep: #0a3d85;
  --logo-blue: #1890ff;
  --logo-blue-dark: #1584eb;
  --logo-blue-light: #40a9ff;
  --logo-blue-deep: #1373db;
  --accent: #e8782a;
  --accent-dark: #c45d12;
  --bg: #f5f6f8;
  --bg-accent: #eceef2;
  --card: rgba(255, 255, 255, 0.88);
  --card-strong: rgba(255, 255, 255, 0.94);
  --glass-blur: 12px;
  --glass-border: rgba(255, 255, 255, 0.68);
  --glass-highlight: rgba(255, 255, 255, 0.52);
  --text: #121620;
  --text-muted: #3a4352;
  --text-light: #525c6b;
  --text-on-dark: #c5d0dc;
  --text-on-dark-muted: #a3b0be;
  --border: rgba(255, 255, 255, 0.5);
  --border-light: rgba(255, 255, 255, 0.38);
  --radius-xs: 4px;      /* 小元素、局部圆角 */
  --radius-sm: 8px;      /* 按钮、输入框、标签 */
  --radius: 8px;
  --radius-lg: 12px;     /* 卡片、面板、横幅 */
  --radius-xl: 16px;     /* 大弹窗、特殊容器 */
  --card-gap: 20px;
  --radius-btn: var(--radius-sm);
  --radius-btn-pill: 24px; /* 胶囊形 CTA 按钮 */
  --radius-full: 999px;    /* 全圆角胶囊 */
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --shadow-hover: 0 8px 32px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --content-width: 60%;
  --detail-modal-width: 40%;
  --detail-modal-height: 70%;
  --page-gutter: 0px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --header-h: 100px;
  --site-header-h: var(--header-h);
  --fw-body: 500;
  --fw-medium: 600;
  --fw-bold: 700;
  --fw-nav: 800;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

#login {
  scroll-margin-top: var(--site-header-h);
}

body {
  font-family: var(--font);
  font-size: 14px;
  font-weight: var(--fw-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(248, 250, 252, 0.64) 0%, rgba(240, 245, 250, 0.48) 45%, rgba(248, 250, 252, 0.68) 100%),
    url("../images/bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
  font-weight: var(--fw-body);
}

/* 正文与说明文字适当加粗 */
.stats-label,
.banner-stat span,
.detail-modal-row-label,
.detail-modal-desc,
.detail-modal-qr-tip,
.detail-modal-loading,
.filter-chip:not(.active),
.feature-box p,
.about-prose p,
.about-pillar-text,
.about-advantage-desc,
.talent-expect,
.footer p,
.footer li,
.footer-text,
.panel p,
.card-bd,
.home-list-empty,
.partner-marquee-name {
  font-weight: var(--fw-medium);
}

/* 磨砂玻璃通用质感 */
.glass-surface,
.header,
.card,
.panel,
.search-bar,
.stats-panel,
.ticker,
.job-card,
.job-item,
.talent-card,
.quick-item,
.feature-box,
.filter-chip,
.float-btn,
.float-menu,
.float-qr,
.search-type-menu,
.reg-modal-panel,
.reg-card,
.footer,
.detail-modal-panel {
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

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

.container {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  box-sizing: border-box;
}

/* —— 主导航 —— */
.header {
  position: sticky;
  top: 0;
  z-index: 1090;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 4px 20px rgba(15, 23, 42, 0.06);
  height: var(--header-h);
}

.header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--content-width);
  max-width: 100%;
  height: 100%;
  gap: 12px;
}

.header-main {
  display: contents;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
}

.header-actions:not(:has(.btn-header-login)) {
  display: none;
}

.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 32px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  box-shadow: 0 4px 14px rgba(232, 120, 42, 0.35);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-header-login:hover {
  color: #fff;
  background: linear-gradient(135deg, #ffa355 0%, #f09240 55%, var(--accent-dark) 100%);
  box-shadow: 0 6px 18px rgba(232, 120, 42, 0.45);
  transform: translateY(-1px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  /* background: linear-gradient(145deg, var(--primary) 0%, var(--primary-deep) 100%); */
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  /* box-shadow: 0 4px 12px rgba(26, 111, 212, 0.35); */
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: var(--fw-bold);
  color: var(--primary-deep);
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-text h1 .brand-accent {
  color: var(--accent);
}

.brand-text p {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 11px 20px;
  font-size: 18px;
  font-weight: var(--fw-nav);
  color: var(--text-muted);
  border-radius: var(--radius-btn);
  position: relative;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.nav a:hover {
  color: var(--accent-dark);
  background: rgba(232, 120, 42, 0.1);
  font-weight: var(--fw-nav);
}

.nav a.active {
  color: #fff;
  font-weight: var(--fw-nav);
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  box-shadow: 0 4px 14px rgba(232, 120, 42, 0.35);
}

.nav a.active::after {
  display: none;
}

.header-qr {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-muted);
  justify-self: end;
}

/* 移动端侧边导航（默认隐藏汉堡按钮） */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(26, 111, 212, 0.14);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(15, 35, 95, 0.08);
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
  background: #fff;
  border-color: rgba(26, 111, 212, 0.24);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1280;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-overlay[hidden] {
  display: none !important;
}

body.site-nav-open {
  overflow: hidden;
}

body.site-nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

body.site-nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.site-nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.site-nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .nav a {
    padding: 10px 16px;
    font-size: 17px;
    font-weight: var(--fw-nav);
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 88px;
  }

  .nav a {
    padding: 9px 14px;
    font-size: 16px;
    font-weight: var(--fw-nav);
  }
}

.qr-box {
  width: 80px;
  height: 80px;

  border-radius: 1px;
  background-color: #fff;
  background-image: url(../images/code.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70px 56px;
  overflow: hidden;
  flex-shrink: 0;
}

/* —— 主内容区 —— */
.main {
  padding: var(--space-md) 0 48px;
}

/* 搜索条 */
.search-bar {
  position: relative;
  z-index: 20;
  background: var(--card-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-md);
  border: 1px solid var(--glass-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.12), var(--shadow);
}

.search-type {
  position: relative;
  flex-shrink: 0;
  margin-right: 2px;
}

.search-type-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  padding: 8px 12px;
  border: none;
  border-right: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  transition: background 0.15s, color 0.15s;
}

.search-type-btn:hover,
.search-type.is-open .search-type-btn {
  /* background: #f0f6ff; */
  color: var(--primary-deep);
}

.search-type-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #8a94a6;
  transition: transform 0.2s, border-top-color 0.2s;
}

.search-type.is-open .search-type-caret {
  transform: rotate(180deg);
  border-top-color: var(--primary);
}

.search-type-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 132px;
  margin: 6px 0 0;
  padding: 6px;
  list-style: none;
  background: var(--card-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  z-index: 100;
}

.search-type-menu[hidden] {
  display: none !important;
}

.search-type-menu li {
  padding: 9px 12px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.12s;
}

.search-type-menu li[aria-selected="true"] {
  background: linear-gradient(135deg, #1a6fd4, #3b8eef);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(26, 111, 212, 0.25);
}

/* 鼠标进入菜单后，高亮跟随当前悬停项 */
.search-type-menu:hover li[aria-selected="true"] {
  background: transparent;
  color: var(--text);
  font-weight: 500;
  box-shadow: none;
}

.search-type-menu li:hover,
.search-type-menu:hover li[aria-selected="true"]:hover {
  background: linear-gradient(135deg, #1a6fd4, #3b8eef);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(26, 111, 212, 0.25);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--text);
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.btn-search {
  background: #7aa8e0;
  color: #fff;
  border: none;
  padding: 11px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: background 0.2s, box-shadow 0.2s;
}

.search-bar:focus-within .btn-search,
.btn-search:hover {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 111, 212, 0.3);
}


/* 三栏布局：中栏(两列人才卡宽) / 右岗位推荐(一列人才卡宽) */
.grid-3 {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: var(--card-gap);
  align-items: start;
}

.home-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  justify-content: space-between;
  align-items: start;
}

.home-layout .col-mid {
  min-width: 0;
}

.home-layout .col-mid .search-bar {
  margin-bottom: var(--space-md);
}

.home-layout .col-mid .ticker {
  margin-top: var(--space-md);
}

.home-layout .col-mid .stats-panel {
  margin-top: var(--space-md);
}

/* 右侧岗位推荐与中栏等高对齐 + 滚动 */
.home-layout .col-right {
  align-self: start;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.home-layout .col-right .card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hot-scroll-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.home-layout .col-right .hot-bd,
.home-layout .col-right .hot-scroll {
  flex: 1;
  min-height: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-layout .col-right .hot-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.home-layout .col-right .hot-list {
  display: block;
  min-height: 0;
}

.home-layout .col-right .hot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0;
  box-sizing: border-box;
  flex: none;
}

.hot-scroll-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 22px;
  border: none;
  border-radius: var(--radius-btn);
  background: rgba(26, 111, 212, 0.92);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, background 0.2s;
  z-index: 2;
}

.hot-scroll-btn:hover {
  background: rgb(15, 79, 168);
}

.hot-scroll-up {
  top: 6px;
}

.hot-scroll-down {
  bottom: 6px;
}

.hot-scroll-wrap:hover .hot-scroll-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* —— 首页岗位推荐 —— */
.hot-recommend-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 52%, #f1f6fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 2px 4px rgba(15, 35, 95, 0.05),
    0 10px 28px rgba(15, 35, 95, 0.1),
    0 22px 48px rgba(26, 111, 212, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.hot-recommend-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(26, 111, 212, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.hot-recommend-card > * {
  position: relative;
  z-index: 1;
}

.hot-recommend-hd {
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(26, 111, 212, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 16px rgba(15, 35, 95, 0.04);
}

.hot-recommend-hd h3 {
  font-size: 17px;
  font-weight: 700;
}

.hot-recommend-hd h3::before {
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.hot-recommend-hd .hot-recommend-more {
  min-width: 0;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  gap: 4px;
  border-radius: var(--radius-btn-pill);
  box-shadow:
    0 2px 6px rgba(232, 120, 42, 0.22),
    0 6px 14px rgba(232, 120, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hot-recommend-hd .hot-recommend-more::after {
  width: 14px;
  height: 14px;
}

.hot-recommend-hd .hot-recommend-more:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 4px 10px rgba(232, 120, 42, 0.28),
    0 10px 20px rgba(232, 120, 42, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hot-recommend-hd .hot-recommend-more:hover::after {
  transform: translateX(2px);
}

#hotSideCard .hot-list li {
  gap: 8px;
  padding: 6px 8px;
  margin: 0 2px 4px;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

#hotSideCard .hot-list li:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 247, 255, 0.95) 100%);
  border-color: rgba(26, 111, 212, 0.12);
  box-shadow:
    0 2px 8px rgba(15, 35, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}

#hotSideCard .hot-rank {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-btn);
  background: #d5dbe3;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow:
    0 2px 4px rgba(15, 35, 95, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

#hotSideCard .hot-list li:nth-child(1) .hot-rank {
  background: linear-gradient(135deg, #ff8c42 0%, #f05a28 100%);
  box-shadow:
    0 2px 6px rgba(240, 90, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

#hotSideCard .hot-list li:nth-child(2) .hot-rank {
  background: linear-gradient(135deg, #ffb347 0%, #ff8c42 100%);
  box-shadow:
    0 2px 6px rgba(255, 140, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

#hotSideCard .hot-list li:nth-child(3) .hot-rank {
  background: linear-gradient(135deg, #ffd08a 0%, #ffb347 100%);
  box-shadow:
    0 2px 6px rgba(255, 179, 71, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

#hotSideCard .hot-title {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  color: #2c3340;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#hotSideCard .hot-title:hover {
  color: var(--primary);
}

#hotSideCard .hot-salary {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #ff3e29;
  text-align: right;
  white-space: nowrap;
}

.hot-list-empty {
  padding: 28px 12px;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}

#hotSideCard .hot-scroll-btn {
  background: rgba(232, 120, 42, 0.92);
  box-shadow:
    0 2px 8px rgba(232, 120, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

#hotSideCard .hot-scroll-btn:hover {
  background: var(--accent-dark);
  box-shadow:
    0 4px 12px rgba(196, 93, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}


/* 数据展示区 */
.stats-panel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--card-strong);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  padding: 14px var(--space-md);
}

.stats-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--glass-highlight);
}

.stats-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.stats-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* —— 首页列表区块（最新人才 / 最新岗位） —— */
.home-list-section {
  margin-top: var(--space-xl);
  padding: var(--space-md) 0 var(--space-sm);
}

.home-list-section:first-of-type {
  margin-top: var(--space-lg);
}

.home-list-section-title {
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-lg);
  letter-spacing: 0;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  line-height: 1.35;
}

.home-list-section-title::after {
  display: none;
}

.home-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
}

.home-list-more {
  text-align: center;
  margin-top: var(--space-lg);
}

/* —— 首页合作企业 —— */
.home-partner-section {
  margin-top: var(--space-lg);
  padding: 0 0 var(--space-md);
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 6px;
}

.partner-marquee-row {
  overflow: hidden;
}

.partner-marquee-row + .partner-marquee-row {
  margin-top: 14px;
}

.partner-marquee::before,
.partner-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 15%, transparent 100%);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 15%, transparent 100%);
}

.partner-marquee-track {
  display: flex;
  width: max-content;
}

.partner-marquee-row--left .partner-marquee-track {
  animation: partner-marquee-scroll-left var(--partner-marquee-duration, 56s) linear infinite;
}

.partner-marquee-row--right .partner-marquee-track {
  animation: partner-marquee-scroll-right var(--partner-marquee-duration, 56s) linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-marquee-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0 12px;
}

.partner-marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
  max-width: none;
  padding: 14px 22px;
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  box-sizing: border-box;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.partner-marquee-logo {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
}

.partner-marquee-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-marquee-name {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 380px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-marquee-empty {
  width: 100%;
  padding: 28px 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

@keyframes partner-marquee-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes partner-marquee-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

a.job-card {
  text-decoration: none;
}

.home-list-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--text-light);
  font-size: 14px;
}

/* —— 首页最新人才卡片 —— */
a.home-talent-card,
.home-talent-card[data-card-type] {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(165deg, #ffffff 0%, #f7faff 55%, #f1f6fc 100%);
  border: 1px solid rgba(206, 218, 232, 0.94);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 2px 4px rgba(15, 35, 95, 0.05),
    0 8px 22px rgba(15, 35, 95, 0.09),
    0 18px 40px rgba(15, 35, 95, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

a.home-talent-card::before,
.home-talent-card[data-card-type]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/rencai-bg.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

a.home-talent-card:hover,
.home-talent-card[data-card-type]:hover {
  border-color: rgba(26, 111, 212, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 10px rgba(15, 35, 95, 0.08),
    0 14px 32px rgba(15, 35, 95, 0.12),
    0 24px 52px rgba(26, 111, 212, 0.1);
  transform: translateY(-3px);
  color: inherit;
}

.home-talent-card__body {
  position: relative;
  z-index: 1;
  padding: 18px 16px 0;
}

.home-talent-card__header {
  display: flex;
  align-items: center;
}

.home-talent-card__avatar-box {
  position: relative;
  flex-shrink: 0;
  margin-right: 12px;
}

.home-talent-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(24, 144, 255, 0.18);
}

.home-talent-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #52c41a 0%, #1890ff 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.home-talent-card__gender {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.home-talent-card__main {
  flex: 1;
  min-width: 0;
}

.home-talent-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.home-talent-card__name-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.home-talent-card__name {
  font-size: 17px;
  font-weight: 800;
  color: #0d1117;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-talent-card__status {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 2px 8px;
  background: rgba(82, 196, 26, 0.1);
  border-radius: var(--radius-full);
}

.home-talent-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52c41a;
  margin-right: 4px;
}

.home-talent-card__status-text {
  font-size: 11px;
  font-weight: 700;
  color: #3da119;
  line-height: 1.2;
  white-space: nowrap;
}

.home-talent-card__job-title {
  flex-shrink: 0;
  max-width: 42%;
  font-size: 17px;
  font-weight: 800;
  color: #0d1117;
  line-height: 1.2;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-talent-card__profile-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.home-talent-card__profile-tag {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.home-talent-card__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}

.home-talent-card__tags-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.home-talent-card__tag {
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  border: 1px solid transparent;
  box-shadow: 0 1px 4px rgba(15, 35, 95, 0.06);
}

.home-talent-card__tag--experience {
  background: #fff8ed;
  border-color: #ffe7ba;
  color: #d48806;
}

.home-talent-card__tag--education {
  background: #f4fff0;
  border-color: #d9f7be;
  color: #389e0d;
}

.home-talent-card__salary {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  background: none;
  border-radius: 0;
  color: #ff3e29;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.home-talent-card__salary-label,
.home-talent-card__salary-value {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.home-talent-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(246, 250, 255, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.home-talent-card__location {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.home-talent-card__location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231989fa'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-talent-card__location-text {
  font-size: 12px;
  font-weight: 500;
  color: #6b7580;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-talent-card__action,
.home-job-card__action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  background: linear-gradient(180deg, #f3f9ff 0%, #e8f4ff 100%);
  border: 1px solid rgba(43, 154, 240, 0.16);
  border-radius: var(--radius-btn-pill);
  color: #2b9af0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(43, 154, 240, 0.16);
}

/* —— 首页最新岗位卡片 —— */
a.home-job-card,
.home-job-card[data-card-type] {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(165deg, #ffffff 0%, #f7faff 55%, #f1f6fc 100%);
  border: 1px solid rgba(206, 218, 232, 0.94);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 2px 4px rgba(15, 35, 95, 0.05),
    0 8px 22px rgba(15, 35, 95, 0.09),
    0 18px 40px rgba(15, 35, 95, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

a.home-job-card::before,
.home-job-card[data-card-type]::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/rencai-bg.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

a.home-job-card:hover,
.home-job-card[data-card-type]:hover {
  border-color: rgba(26, 111, 212, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 10px rgba(15, 35, 95, 0.08),
    0 14px 32px rgba(15, 35, 95, 0.12),
    0 24px 52px rgba(26, 111, 212, 0.1);
  transform: translateY(-3px);
  color: inherit;
}

.home-job-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6px 0 0 8px;
  background: #ff5a45;
  border-top-left-radius: var(--radius-lg);
  border-bottom-right-radius: 100%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.home-job-card--urgent .home-job-card__title-row {
  padding-top: 8px;
  padding-left: 8px;
}

.home-job-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 0;
  min-height: 0;
}

.home-job-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.home-job-card__title {
  flex: 1;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-job-card__salary {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ff3e29;
  line-height: 1.3;
  white-space: nowrap;
}

.home-job-card__company-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.home-job-card__company-logo-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid rgba(214, 224, 238, 0.9);
  box-shadow: 0 2px 8px rgba(15, 35, 95, 0.08);
}

.home-job-card__company-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-job-card__company-info {
  flex: 1;
  min-width: 0;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-job-card__company-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-job-card__company-main {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #8a939f;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-job-card__company-main--placeholder {
  visibility: hidden;
}

.home-job-card__cert-icon {
  flex-shrink: 0;
  align-self: center;
  height: 22px;
  width: auto;
}

.home-job-card__cert-icon--placeholder {
  width: 58px;
  visibility: hidden;
}

.home-job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  height: 52px;
  overflow: hidden;
  align-content: flex-start;
  flex-shrink: 0;
}

.home-job-card__tag {
  padding: 4px 10px;
  background: #edf6ff;
  border: 1px solid rgba(25, 137, 250, 0.14);
  border-radius: var(--radius-btn);
  font-size: 12px;
  font-weight: 600;
  color: #1989fa;
  line-height: 1.3;
  box-shadow: 0 1px 4px rgba(25, 137, 250, 0.1);
}

.home-job-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-shrink: 0;
  padding: 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(246, 250, 255, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.home-job-card__location {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.home-job-card__location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231989fa'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-job-card__location-text {
  font-size: 12px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#jobList .home-job-card__location-info {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  gap: 8px;
}

#jobList .home-job-card__location-info .home-job-card__location-text {
  flex: 1;
  min-width: 0;
}

#jobList .home-job-card__update-time {
  flex-shrink: 0;
  padding-left: 8px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  font-size: 11px;
  font-weight: 500;
  color: #6b7580;
  line-height: 1.4;
  white-space: nowrap;
}

/* —— 热招职位展示区（保留样式供其他页复用） —— */
.hot-jobs {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 0 var(--space-sm);
}

.hot-jobs-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-lg);
  letter-spacing: 2px;
  position: relative;
}

.hot-jobs-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.hot-jobs-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.hot-tab {
  border: none;
  background: transparent;
  padding: 11px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.hot-tab:hover {
  color: rgb(26, 111, 212);
}

.hot-tab.active {
  color: rgb(26, 111, 212);
  font-weight: 600;
}

.hot-tab.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  background: rgb(26, 111, 212);
  border-radius: 2px 2px 0 0;
}

.hot-jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.job-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  color: inherit;
}

.job-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 111, 212, 0.2);
  transform: translateY(-2px);
  color: inherit;
}

.job-card.is-hidden {
  display: none;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.job-card-top h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.job-card-top h3 .online {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: #00a6a0;
  background: #e6f8f7;
  padding: 1px 6px;
  border-radius: var(--radius-xs);
}

.job-card-pay {
  flex-shrink: 0;
  color: var(--accent-dark);
  font-size: 17px;
  font-weight: 700;
}

.job-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-card-tags span {
  font-size: 12px;
  font-weight: 600;
  color: #1a6fd4;
  background: #eef5ff;
  border: 1px solid rgba(26, 111, 212, 0.18);
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  letter-spacing: 0.02em;
  box-shadow: 0 1px 2px rgba(26, 111, 212, 0.06);
}

.job-card-tags span:nth-child(2) {
  color: #1a7a4c;
  background: #eefaf3;
  border-color: rgba(26, 122, 76, 0.18);
  box-shadow: 0 1px 2px rgba(26, 122, 76, 0.06);
}

.job-card-tags span:nth-child(3) {
  color: #c45d12;
  background: #fff6ee;
  border-color: rgba(232, 120, 42, 0.2);
  box-shadow: 0 1px 2px rgba(232, 120, 42, 0.06);
}

.job-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-light);
}

.job-card-foot-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.job-addr {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(135deg, #1a6fd4 0%, #3b8eef 100%);
  padding: 4px 10px 4px 8px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(26, 111, 212, 0.28);
}

.job-addr::before {
  content: "";
  width: 11px;
  height: 13px;
  flex-shrink: 0;
  background: no-repeat center / contain;
  background-image: url("../images/location-pin.svg");
}

.job-co {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.co-logo {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-xs);
  background: #eef5ff url("../images/qiye-logo.png") center / cover no-repeat;
  color: transparent;
  font-size: 0;
  font-style: normal;
  display: inline-block;
  flex-shrink: 0;
  overflow: hidden;
}

.co-logo.c2,
.co-logo.c3,
.co-logo.c4,
.co-logo.c5,
.co-logo.c6 {
  background: #eef5ff url("../images/qiye-logo.png") center / cover no-repeat;
  color: transparent;
}

.job-ind {
  flex-shrink: 0;
  max-width: 48%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-jobs-more {
  text-align: center;
  margin-top: var(--space-lg);
}

.btn-more-jobs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 200px;
  padding: 13px 44px;
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-btn-pill);
  border: none;
  box-shadow: 0 4px 14px rgba(232, 120, 42, 0.28);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-more-jobs::after {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: transform 0.2s;
}

.btn-more-jobs:hover {
  color: #fff;
  background: linear-gradient(135deg, #ffa355 0%, #f09240 55%, var(--accent-dark) 100%);
  box-shadow: 0 6px 18px rgba(232, 120, 42, 0.4);
  transform: translateY(-1px);
}

.btn-more-jobs:hover::after {
  transform: translateX(3px);
}

.hot-bd {
  padding-top: 6px;
  padding-bottom: 6px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 100%);
}

/* —— 首页轮播 —— */
/* 运营素材约 1704×923，用固定比例随中栏宽度缩放，避免各分辨率 cover 裁切不一致 */
.carousel {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 1704 / 923;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f5bb8;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 2px 6px rgba(15, 79, 168, 0.1),
    0 14px 36px rgba(15, 79, 168, 0.24),
    0 28px 60px rgba(15, 35, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -28px 48px rgba(0, 0, 0, 0.14);
}

.carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 无 aspect-ratio 的旧环境：按素材比例用 padding 撑开高度 */
@supports not (aspect-ratio: 1) {
  .carousel {
    height: 0;
    padding-bottom: 54.17%; /* 923 / 1704 */
  }

  .carousel-viewport,
  .carousel > .carousel-arrow,
  .carousel > .carousel-dots {
    position: absolute;
  }

  .carousel-viewport {
    inset: 0;
    height: auto;
  }

  .carousel-arrow {
    top: 50%;
  }

  .carousel-dots {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.carousel-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 16%,
    transparent 78%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide {
  /* border-radius: var(--radius-lg); */
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0f5bb8;
  /* 减少部分浏览器缩放时背景图发糊/错位 */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: opacity 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 3;
  font-family: inherit;
}

.carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.carousel-arrow.prev {
  left: 0;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.carousel-arrow.next {
  right: 0;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, width 0.2s;
}

.carousel-dots button.active {
  width: 22px;
  border-radius: var(--radius-full);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(255, 255, 255, 0.35);
  transform: none;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card + .card {
  margin-top: var(--card-gap);
}

.card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.42);
}

.card-hd h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-hd h3::before {
  content: "";
  width: 3px;
  height: 16px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.card-hd a {
  font-size: 12px;
  color: var(--text-light);
  transition: color 0.2s;
}

.card-hd a:hover {
  color: var(--primary);
}

.card-bd {
  padding: 16px 18px;
}

/* 登录卡片 */
.login-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.login-tabs button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
}

.login-tabs button.active {
  color: var(--primary);
  font-weight: 600;
}

.login-tabs button.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  background: var(--primary);
}

.login-pane {
  display: none;
  padding: 18px;
}

.login-pane.active {
  display: block;
}

.wx-login {
  text-align: center;
  padding: 8px 0 4px;
}

.wx-qr {
  width: 148px;
  height: 148px;
  margin: 0 auto 12px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  box-sizing: border-box;
}

.wx-qr img {
  width: 100%;
  height: 100%;
  max-width: 132px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.wx-tip {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 6px;
}

.wx-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.field {
  position: relative;
  margin-bottom: 12px;
}

.field input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 0 12px 0 36px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.1);
}

.field .fi {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.45;
}

.field-row {
  display: flex;
  gap: 8px;
}

.field-row .field {
  flex: 1;
}

.btn-code {
  flex-shrink: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.btn-code:hover {
  background: #f0f6ff;
}

.btn-login {
  width: 100%;
  height: 42px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.btn-login:hover {
  background: var(--primary-dark);
}

.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
}

.login-links--bar {
  padding: 0 16px 16px;
  margin-top: 4px;
}

.login-links a {
  color: var(--primary);
}

/* 公告列表 */
.notice-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

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

.notice-list li::before {
  content: "·";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.notice-list a {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-list a:hover {
  color: var(--primary);
}

.notice-list .date {
  margin-left: auto;
  color: var(--text-light);
  font-size: 12px;
  flex-shrink: 0;
}

/* 动态条 */
.ticker {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  margin-top: var(--space-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  background: #ffe8e8;
  color: #d63c2e;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 22px;
}

.ticker-content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  color: var(--text-muted);
}

.ticker-content span strong {
  color: var(--primary);
  font-weight: 500;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 快捷入口（内页可用） */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  margin-top: var(--space-md);
}

.quick-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.quick-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 111, 212, 0.2);
  color: inherit;
}

.quick-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #fff;
}

.quick-icon.q1 {
  background: linear-gradient(135deg, #1a6fd4, #4da3ff);
}
.quick-icon.q2 {
  background: linear-gradient(135deg, #12a37f, #3dd4a8);
}
.quick-icon.q3 {
  background: linear-gradient(135deg, #e8782a, #f5a623);
}
.quick-icon.q4 {
  background: linear-gradient(135deg, #6b5ce7, #9b8cff);
}

.quick-item p {
  font-size: 13px;
  font-weight: 500;
}

/* 急聘列表 */
.hot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
  line-height: 1.4;
}

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

.hot-rank {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-xs);
  background: #dfe4ea;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hot-list li:nth-child(1) .hot-rank {
  background: #e74c3c;
}
.hot-list li:nth-child(2) .hot-rank {
  background: #e8782a;
}
.hot-list li:nth-child(3) .hot-rank {
  background: #f5a623;
}

.hot-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-weight: 500;
}

.hot-title:hover {
  color: var(--primary);
}

.hot-salary {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* —— 内页通用 —— */
.page-banner {
  background: linear-gradient(135deg, var(--logo-blue-dark) 0%, var(--logo-blue) 55%, var(--logo-blue-light) 100%);
  color: #fff;
  padding: 30px;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 2px 6px rgba(24, 144, 255, 0.12),
    0 12px 32px rgba(24, 144, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.page-banner h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.page-banner p {
  opacity: 0.92;
  font-size: 14px;
  line-height: 1.6;
}

/* 横幅外层：与正文同宽，避免通栏过宽 */
.page-banner-wrap {
  background: transparent;
  padding: var(--space-md) 0 0;
  margin-bottom: var(--space-md);
}

/* 内页增强横幅：左搜索 + 右数据 */
.page-banner--hero {
  padding: 28px 30px;
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse 68% 120% at 100% -10%, rgba(255, 255, 255, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 80% at -8% 110%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, var(--logo-blue-deep) 0%, var(--logo-blue-dark) 36%, var(--logo-blue) 72%, var(--logo-blue-light) 100%);
}

.page-banner--hero::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 42%, transparent 72%);
  pointer-events: none;
}

.page-banner--hero::after {
  content: "";
  position: absolute;
  left: 28%;
  bottom: -90px;
  width: 260px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.banner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.banner-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.banner-hero-copy {
  margin-bottom: 16px;
}

.banner-hero-copy h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.banner-hero-copy h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.28) 100%);
  box-shadow: 0 1px 6px rgba(255, 255, 255, 0.2);
}

.banner-hero-copy p {
  max-width: 52ch;
  line-height: 1.7;
  opacity: 0.94;
  font-size: 14px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.banner-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(15, 35, 95, 0.14),
    0 2px 8px rgba(15, 35, 95, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.72);
  width: 100%;
  max-width: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.banner-search:focus-within {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 8px 28px rgba(15, 35, 95, 0.16),
    0 0 0 3px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.banner-search select {
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 12px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  border-right: 1px solid var(--border);
  min-width: 82px;
}

.search-type--banner .search-type-btn {
  padding: 13px 14px;
  min-width: 86px;
}

.search-type--banner .search-type-menu {
  top: 100%;
}

.banner-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  min-width: 0;
  background: transparent;
}

.banner-search input::placeholder {
  color: var(--text-light);
}

.banner-search .btn-search {
  margin: 6px;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--logo-blue-dark) 0%, var(--logo-blue) 100%);
  box-shadow:
    0 4px 12px rgba(24, 144, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.banner-search .btn-search:hover {
  background: linear-gradient(135deg, var(--logo-blue-deep) 0%, var(--logo-blue-dark) 100%);
  box-shadow:
    0 6px 16px rgba(24, 144, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.banner-hotkeys {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 14px;
  font-size: 12px;
}

.banner-hotkeys > span {
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.banner-hotkeys a {
  color: #fff;
  opacity: 0.95;
  padding: 4px 12px;
  border-radius: var(--radius-btn-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.banner-hotkeys a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.banner-hotkeys--plain {
  margin-top: 6px;
}

.banner-hotkeys--plain > span {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-btn-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.banner-hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}

.banner-stat {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 4px 16px rgba(15, 35, 95, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.banner-stat:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(15, 35, 95, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.banner-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.banner-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.92;
  letter-spacing: 0.02em;
}

/* 兼容旧版底部统计条（如有残留） */
.banner-mini-stats {
  display: none;
}



.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  margin-bottom: var(--space-md);
}

.panel h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  line-height: 1.35;
}

/* 职位列表页 */
.job-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.job-filters-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
}

.job-filters > .filter-region-btn,
button.filter-region-btn {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  max-width: 160px;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  background-color: #ff8c42;
  background-image: linear-gradient(90deg, #ffb347 0%, #ff8c42 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.job-filters > .filter-region-btn:hover,
button.filter-region-btn:hover {
  filter: brightness(1.03);
  box-shadow: 0 6px 16px rgba(255, 140, 66, 0.34);
  transform: translateY(-1px);
  color: #ffffff;
}

.job-filters > .filter-region-btn.is-active,
button.filter-region-btn.is-active {
  box-shadow: 0 4px 14px rgba(255, 120, 40, 0.4);
}

.job-filters > .filter-region-btn .filter-region-btn__pin,
button.filter-region-btn .filter-region-btn__pin {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: center / contain no-repeat url("../images/location-pin.svg");
  filter: brightness(0) invert(1);
}

.job-filters > .filter-region-btn .filter-region-btn__text,
button.filter-region-btn .filter-region-btn__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
}

.area-modal[hidden] {
  display: none !important;
}

.area-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.area-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.area-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(560px, 86vh);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 48px rgba(15, 35, 95, 0.18);
  overflow: hidden;
}

.area-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #eef1f5;
}

.area-modal-hd h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.area-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f3f5f8;
  color: #667085;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.area-modal-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
  max-height: 380px;
  overflow: hidden;
}

.area-modal-col {
  overflow: auto;
  padding: 10px;
}

.area-modal-col--city {
  background: #f6f8fb;
  border-right: 1px solid #eef1f5;
}

.area-modal-option {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.area-modal-option:hover {
  background: rgba(26, 111, 212, 0.08);
}

.area-modal-option.is-active {
  background: rgba(26, 111, 212, 0.12);
  color: var(--primary);
}

.area-modal-empty {
  padding: 24px 12px;
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
}

.area-modal-ft {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid #eef1f5;
}

.area-modal-ft .btn-area-reset,
.area-modal-ft .btn-area-confirm {
  min-width: 88px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-btn-pill);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.area-modal-ft .btn-area-reset {
  border: 1px solid #d7dde6;
  background: #fff;
  color: #555;
}

.area-modal-ft .btn-area-confirm {
  border: none;
  background: linear-gradient(90deg, #2563eb 0%, #4a9eff 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}

.job-filters .filter-chip {
  padding: 12px 30px;
  border: none;
  border-radius: var(--radius-btn-pill);
  font-size: 16px;
  font-weight: 700;
  background: #e8ecf0;
  cursor: pointer;
  font-family: inherit;
  color: #444444;
  line-height: 1.2;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.job-filters .filter-chip:hover {
  background: #dde3ea;
  color: #333333;
}

.job-filters .filter-chip.active {
  background: linear-gradient(90deg, #2563eb 0%, #4a9eff 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.32);
}

.job-filters .filter-chip.active:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.36);
}

.job-list-more {
  text-align: center;
  margin-top: var(--space-lg);
  padding-bottom: 8px;
}

.job-list-more[hidden] {
  display: none;
}

.job-list-more .btn-more-jobs:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#jobList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
  margin-top: 6px;
  align-items: stretch;
}

#jobList .home-job-card {
  height: 100%;
}

.job-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 16px;
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.job-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 111, 212, 0.2);
  transform: translateY(-1px);
}

.job-item:last-child {
  border-bottom: 1px solid var(--border);
}

.job-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-item-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-item h4 {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.4;
}

.job-item h4 a:hover {
  color: var(--primary);
}

.job-item-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 10px;
  padding-top: 10px;
  border-top: 1px solid #f0f2f5;
}

.job-item-foot-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.job-item-foot .job-co {
  color: var(--text);
  font-weight: 500;
}

.job-item .job-pay {
  margin-bottom: 0;
  font-size: 16px;
}

.job-item .btn-apply {
  flex-shrink: 0;
  padding: 6px 14px;
}

.job-chip {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  background: #f5f7fa;
  border: 1px solid #e8ecf1;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-weight: 500;
}

.job-item .job-card-tags {
  margin: 0;
}

.job-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.job-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  font-size: 11px;
  padding: 2px 8px;
  background: #f5f7fa;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
}

.job-side {
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  #jobList {
    grid-template-columns: 1fr;
  }
}

.job-pay {
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.btn-apply {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 13px;
}

.btn-apply:hover {
  background: var(--primary-dark);
}

#talentList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  margin-top: 6px;
  align-items: stretch;
}

#talentList .home-talent-card {
  height: 100%;
}

@media (max-width: 1100px) {
  #talentList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  #talentList {
    grid-template-columns: 1fr;
  }
}

/* 人才页 */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.talent-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.talent-card:hover {
  border-color: rgba(26, 111, 212, 0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.talent-top {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dbeafe url("../images/touxiang.png") center 28% / cover no-repeat;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e8ecf0;
}

.avatar--f {
  background-image: url("../images/touxiang2.png");
  background-color: #ede9fe;
  background-position: center 22%;
}

.talent-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.talent-info p {
  font-size: 12px;
  color: var(--text-light);
}

.talent-expect {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.talent-expect strong {
  color: var(--accent-dark);
  font-weight: 600;
}

/* APP 下载页 */
.app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
}

.app-hero-copy h2 {
  font-size: 32px;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.app-hero-copy p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.app-stores {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f4fa8 0%, #1a6fd4 55%, #3b8eef 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 111, 212, 0.28);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.store-badge-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.store-badge-text strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-badge-text em {
  font-style: normal;
  font-size: 11px;
  opacity: 0.82;
}

/* 兼容旧类名（若其它页引用） */
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--text);
  color: #fff !important;
  border-radius: var(--radius-btn);
  font-size: 14px;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.store-btn small {
  display: block;
  font-size: 11px;
  opacity: 0.7;
}

.app-qr-row {
  display: flex;
  gap: 24px;
}

.app-qr-row--single {
  justify-content: flex-start;
}

.app-qr-item {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.app-qr-item .qr {
  width: 258px;
  height: 258px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  margin-bottom: 8px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-qr-item .qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
  max-width: none;
  max-height: none;
  animation: none;
  transform: none;
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.app-download-tip {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
  white-space: nowrap;
}

.app-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
  isolation: isolate;
  perspective: 1100px;
  perspective-origin: 55% 45%;
}

.app-hero-visual > img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform-origin: center center;
  filter: drop-shadow(-18px 22px 28px rgba(15, 79, 168, 0.22));
  animation: appPhoneTiltFloat 4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

/* APP 页点缀 */
.panel--app-hero {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(ellipse 55% 70% at 88% 42%, rgba(26, 111, 212, 0.12), transparent 68%),
    radial-gradient(ellipse 40% 50% at 8% 85%, rgba(26, 111, 212, 0.08), transparent 70%),
    var(--card);
  border: 1px solid var(--glass-border);
}

.app-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: rgba(26, 111, 212, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  pointer-events: none;
  user-select: none;
}

.app-tags li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  border: none;
  border-radius: var(--radius-btn);
  background: #eef5ff;
  color: #0f4fa8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(26, 111, 212, 0.08);
}

.app-tags li i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.app-tags li:nth-child(2) {
  background: #f0faf5;
  color: #1a7a4c;
  box-shadow: inset 0 0 0 1px rgba(26, 122, 76, 0.1);
}

.app-tags li:nth-child(2) i {
  background: #2dab6e;
}

.app-tags li:nth-child(3) {
  background: #fff6ee;
  color: #c45d12;
  box-shadow: inset 0 0 0 1px rgba(232, 120, 42, 0.14);
}

.app-tags li:nth-child(3) i {
  background: var(--accent);
}

.app-tags li:nth-child(4) {
  background: #f4f0ff;
  color: #5b4bb7;
  box-shadow: inset 0 0 0 1px rgba(91, 75, 183, 0.12);
}

.app-tags li:nth-child(4) i {
  background: #7b6bd6;
}

.app-tags li:nth-child(5) {
  background: #eef8fb;
  color: #0d7a8a;
  box-shadow: inset 0 0 0 1px rgba(13, 122, 138, 0.12);
}

.app-tags li:nth-child(5) i {
  background: #1aa0b5;
}

.app-download-block {
  display: inline-block;
}

.app-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.app-deco--orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 111, 212, 0.22) 0%, rgba(26, 111, 212, 0.05) 55%, transparent 72%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
}

.app-deco--ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(26, 111, 212, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  box-shadow: inset 0 0 0 18px rgba(26, 111, 212, 0.03);
}

.app-deco--dots {
  width: 120px;
  height: 80px;
  right: 8%;
  top: 12%;
  background-image: radial-gradient(rgba(26, 111, 212, 0.35) 1.5px, transparent 1.6px);
  background-size: 12px 12px;
  opacity: 0.55;
}

.app-float-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 111, 212, 0.1);
  box-shadow:
    0 12px 28px rgba(15, 79, 168, 0.14),
    0 2px 6px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(8px);
  color: var(--primary-deep);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: appBadgeFloat 3.6s ease-in-out infinite;
}

.app-float-badge-ico {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.app-float-badge-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.app-float-badge-body strong {
  font-size: 12px;
  font-weight: 700;
}

.app-float-badge-body em {
  font-style: normal;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.app-float-badge--top {
  top: 12%;
  left: 0;
  animation-delay: 0s;
}

.app-float-badge--top .app-float-badge-ico {
  background: linear-gradient(145deg, #1a6fd4, #3b8eef);
  color: #fff;
}

.app-float-badge--bottom {
  bottom: 14%;
  right: -4px;
  animation-delay: 1.2s;
}

.app-float-badge--bottom .app-float-badge-ico {
  background: linear-gradient(145deg, #1a9b63, #3cbc82);
  color: #fff;
}

@keyframes appBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes appPhoneTiltFloat {
  0%,
  100% {
    transform: rotateY(-18deg) rotateX(5deg) rotateZ(-1deg) translateY(0) scale(1.02);
  }
  50% {
    transform: rotateY(-18deg) rotateX(5deg) rotateZ(-1deg) translateY(-10px) scale(1.02);
  }
}

.app-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.app-step {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.app-step-num {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.app-step h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.app-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.app-phone-lg {
  width: 220px;
  max-width: 500px;
  height: 420px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 28px;
  border: 4px solid #333;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
}

.app-phone-lg .screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a6fd4 0%, #e8f3ff 35%, #fff 35%);
  padding: 40px 16px 16px;
}

/* APP 页整体约缩小 28%（保留约 72%），不用 overflow:hidden */
body.page-app .page-banner-wrap {
  padding-top: var(--space-md);
  margin-bottom: var(--space-md);
}

body.page-app .page-banner--hero {
  padding: 28px 30px;
}

body.page-app .banner-hero-copy h2 {
  font-size: 28px;
}

body.page-app .banner-hero-copy p {
  font-size: 14px;
}

body.page-app .banner-stat {
  padding: 16px 12px;
}

body.page-app .banner-stat strong {
  font-size: 22px;
}

body.page-app .banner-stat span {
  font-size: 12px;
}

body.page-app .main .panel {
  padding: 14px 18px;
  margin-bottom: 12px;
}

body.page-app .main .panel h3 {
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

body.page-app .app-hero {
  gap: 24px;
  padding: 8px 0;
}

body.page-app .app-hero-copy h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

body.page-app .app-hero-copy p {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.65;
}

body.page-app .app-eyebrow {
  font-size: 11px;
  margin-bottom: 8px;
  padding: 3px 8px;
}

body.page-app .app-tags {
  gap: 6px;
  margin-bottom: 16px;
}

body.page-app .app-tags li {
  gap: 5px;
  padding: 5px 10px 5px 8px;
  font-size: 11px;
  border-radius: var(--radius-btn);
}

body.page-app .app-tags li i {
  width: 5px;
  height: 5px;
}

body.page-app .app-download-block {
  margin-left: 225px;
}

body.page-app .store-badge {
  min-width: 180px;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
}

body.page-app .store-badge-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-btn);
}

body.page-app .store-badge-ico svg {
  width: 18px;
  height: 18px;
}

body.page-app .store-badge-text strong {
  font-size: 13px;
}

body.page-app .store-badge-text em {
  font-size: 10px;
}

body.page-app .app-stores {
  gap: 10px;
  margin-bottom: 12px;
  margin-left: 0;
}

body.page-app .store-btn {
  padding: 9px 16px;
  font-size: 13px;
  border-radius: var(--radius-btn);
}

body.page-app .store-btn small {
  font-size: 10px;
}

body.page-app .app-qr-row {
  gap: 16px;
  margin-left: 0;
}

body.page-app .app-qr-item {
  font-size: 12px;
}

body.page-app .app-qr-item .qr,
body.page-app .app-qr-item .qr--app {
  width: 258px;
  height: 258px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: var(--radius-btn);
}

body.page-app .app-hero-visual {
  perspective: 980px;
}

body.page-app .app-hero-visual > img {
  max-width: 300px;
  max-height: 440px;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.page-app .app-deco--orb {
  width: 220px;
  height: 220px;
}

body.page-app .app-deco--ring {
  width: 250px;
  height: 250px;
}

body.page-app .app-deco {
  opacity: 0.3;
}

body.page-app .app-float-badge {
  display: none;
}

body.page-app .app-steps {
  gap: 12px;
}

body.page-app .app-step {
  padding: 14px 12px 12px;
}

body.page-app .app-step-num {
  font-size: 16px;
  margin-bottom: 6px;
}

body.page-app .app-step h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

body.page-app .app-step p {
  font-size: 12px;
}

body.page-app .feature-row {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

body.page-app .feature-box {
  padding: 20px 18px;
}

body.page-app .feature-box .fi-lg {
  display: none;
}

body.page-app .feature-box h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

body.page-app .feature-box p {
  font-size: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-top: var(--space-sm);
}

.feature-box {
  text-align: left;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--card-strong);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-box:hover {
  border-color: rgba(26, 111, 212, 0.15);
  box-shadow: var(--shadow);
}

.feature-box .fi-lg {
  display: none;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* —— 页脚 —— */
.footer {
  background: rgba(22, 32, 48, 0.88);
  color: var(--text-on-dark);
  padding: 26px 0 12px;
  margin-top: var(--space-lg);
  font-size: 13px;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -6px 28px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 14px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer p {
  line-height: 1.8;
  max-width: 320px;
}

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

.footer a:not(.footer-icp-btn) {
  color: var(--text-on-dark);
}

.footer a:hover {
  color: #fff;
}

.footer-text {
  color: var(--text-on-dark);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

.footer--minimal {
  background: transparent;
  color: var(--text-muted);
  padding: 20px 0 28px;
  margin-top: var(--space-lg);
  border-top: none;
  box-shadow: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-icp-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-icp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 44px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-btn-pill);
  text-decoration: none;
  box-shadow:
    0 4px 18px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.28);
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-icp-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.footer-icp-btn:hover {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow:
    0 8px 28px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

.footer-icp-btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 2px 10px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.footer .footer-copyright {
  margin: 0;
  max-width: none;
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: nowrap;
}

/* 资质证照预览弹窗 */
.license-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.license-modal[hidden] {
  display: none;
}

.license-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.license-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(90vh, 920px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.license-modal-hd {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px 48px 14px 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.license-modal-hd h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.license-modal-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--radius-full);
  background: rgba(17, 17, 17, 0.06);
  color: #555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.license-modal-close:hover {
  background: rgba(17, 17, 17, 0.12);
  color: #111;
}

.license-modal-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background: #f5f7fa;
}

.license-modal-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

/* App 界面预览轮播 */
body.page-app .app-preview {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

body.page-app .app-preview-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

body.page-app .app-preview-hd-copy h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  padding-left: 12px;
  border-left: 3px solid var(--primary);
  line-height: 1.35;
}

body.page-app .app-preview-hd-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

body.page-app .app-preview-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

body.page-app .app-preview-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

body.page-app .app-preview-btn:hover {
  background: #fff;
  border-color: rgba(26, 111, 212, 0.28);
  transform: translateY(-1px);
}

body.page-app .app-preview-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

body.page-app .app-preview-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}

body.page-app .app-preview-viewport::-webkit-scrollbar {
  display: none;
}

body.page-app .app-preview-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-right: 2px;
}

body.page-app .app-preview-slide {
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
}

body.page-app .app-preview-slide img {
  display: block;
  width: 168px;
  height: auto;
  max-width: none;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 960px) {
  body.page-app .app-preview {
    margin-left: 0;
  }

  body.page-app .app-preview-slide img {
    width: 148px;
  }
}

/* —— 关于我们页 —— */
body.page-about .about-main {
  padding-top: 0;
}

body.page-about .about-section-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  line-height: 1.35;
}

body.page-about .about-section-title::after {
  display: none;
}

body.page-about .about-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: 32px;
  align-items: stretch;
  margin-bottom: var(--space-lg);
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--card);
  box-shadow: var(--shadow);
}

body.page-about .about-hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 111, 212, 0.12);
}

body.page-about .about-hero-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  object-fit: cover;
  object-position: top center;
}

body.page-about .about-hero-body {
  min-width: 0;
}

body.page-about .about-page-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.35;
}

body.page-about .about-prose-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding-left: 12px;
  border-left: 3px solid var(--primary);
  line-height: 1.4;
}

body.page-about .about-prose .about-prose-title:not(:first-child) {
  margin-top: 24px;
}

body.page-about .about-prose p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

body.page-about .about-prose p:last-child {
  margin-bottom: 0;
}

body.page-about .about-prose--panel {
  margin-top: var(--space-md);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.42);
}

body.page-about .about-block {
  margin-bottom: var(--space-lg);
}

body.page-about .about-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
}

body.page-about .about-advantage-card {
  min-width: 0;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

body.page-about .about-advantage-card:hover {
  border-color: rgba(26, 111, 212, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

body.page-about .about-advantage-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: #fff;
}

body.page-about .about-advantage-icon svg {
  width: 24px;
  height: 24px;
}

body.page-about .about-advantage-icon--blue {
  background: linear-gradient(135deg, #1a6fd4 0%, #3b8eef 100%);
}

body.page-about .about-advantage-icon--cyan {
  background: linear-gradient(135deg, #0e9aa7 0%, #3ec9d6 100%);
}

body.page-about .about-advantage-icon--green {
  background: linear-gradient(135deg, #1a9a5c 0%, #3ecf8e 100%);
}

body.page-about .about-advantage-icon--orange {
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 100%);
}

body.page-about .about-advantage-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

body.page-about .about-advantage-desc {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

body.page-about .about-contact-panel {
  margin-bottom: var(--space-md);
}

body.page-about .about-contact-panel .about-section-title {
  margin-bottom: var(--space-md);
}

body.page-about .about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
}

body.page-about .about-contact-item {
  min-width: 0;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

body.page-about .about-contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

body.page-about .about-contact-value {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.3;
}

body.page-about .about-contact-value a {
  color: inherit;
  text-decoration: none;
}

body.page-about .about-contact-value a:hover {
  color: var(--primary);
}

body.page-about .about-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

body.page-about .about-service-links-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

body.page-about .about-service-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-about .about-service-links-list li {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

body.page-about .about-service-links-list a {
  color: var(--primary);
  text-decoration: none;
}

body.page-about .about-service-links-list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

body.page-about .about-contact-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 960px) {
  body.page-about .about-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  body.page-about .about-hero-visual {
    min-height: 0;
    aspect-ratio: 3 / 4;
    max-width: 520px;
    margin: 0 auto;
  }

  body.page-about .about-hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  body.page-about .about-advantage-grid,
  body.page-about .about-contact-grid,
  body.page-about .about-service-links {
    grid-template-columns: 1fr;
  }
}

/* 工具图标（简易 SVG 内联替代） */
.ico-user,
.ico-lock,
.ico-phone {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ico-user {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

.ico-lock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z'/%3E%3C/svg%3E");
}

.ico-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E");
}

/* Toast */
.toast {
  position: fixed;
  top: calc(var(--site-header-h) + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(30, 41, 59, 0.92);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 1200;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* —— 右侧固定二维码卡片 + 快捷按钮 —— */
.float-side .site-float-qr {
  width: 148px;
}

.site-mini-qr__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(232, 120, 42, 0.35);
  box-shadow: none;
  overflow: hidden;
  text-align: center;
  transition: transform 0.25s ease;
}

.site-mini-qr__card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.site-mini-qr__badge {
  padding: 8px 10px 6px;
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-mini-qr__badge--app {
  background: linear-gradient(135deg, #1a6fd4 0%, #3b8eef 55%, #0f4fa8 100%);
}

.site-mini-qr__badge--service {
  background: linear-gradient(135deg, #12a37f 0%, #3cbc82 55%, #0d8a66 100%);
}

.site-mini-qr__img-wrap {
  padding: 12px 12px 8px;
  background: #fff;
}

.site-mini-qr__img-wrap img {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-btn);
}

.site-mini-qr__tip {
  margin: 0;
  padding: 0 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.float-side {
  position: fixed;
  right: 24px;
  top: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}

.float-side .site-float-qr,
.float-side .float-btn {
  pointer-events: auto;
}

.float-side #backTop {
  position: fixed;
  right: 24px;
  bottom: 40px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  color: #fff;
  box-shadow: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  padding: 0;
  text-decoration: none;
  font-family: inherit;
}

.float-btn:hover,
.float-help.is-open > .float-btn {
  color: #fff;
  background: linear-gradient(135deg, #ffa355 0%, #f09240 55%, var(--accent-dark) 100%);
  box-shadow: none;
}

.float-btn:hover {
  transform: translateY(-1px);
}

.float-btn svg {
  display: block;
}

.float-help {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* 扩大悬停热区，避免移向菜单时闪断 */
.float-help::before {
  content: "";
  position: absolute;
  right: 48px;
  top: -8px;
  bottom: -8px;
  width: 220px;
  pointer-events: none;
}

.float-help.is-open::before {
  pointer-events: auto;
}

.float-menu {
  position: absolute;
  right: 56px;
  bottom: 0;
  width: 148px;
  background: var(--card-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 6px 0;
  overflow: hidden;
  z-index: 2;
}

.float-menu[hidden],
.float-qr[hidden] {
  display: none !important;
}

.float-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.float-menu-item:hover,
.float-menu-item.is-active {
  background: #f3f5f7;
}

.fm-ico {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.fm-app {
  background-color: #1a6fd4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.fm-wechat {
  background-color: transparent;
  background-image: url("../images/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 客服微信：客服耳机图标 + 微信绿 */
.fm-service {
  background-color: #07c160;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M4 14v-2a8 8 0 0116 0v2'/%3E%3Crect x='3' y='12' width='3.5' height='5' rx='1.5' fill='%23fff'/%3E%3Crect x='17.5' y='12' width='3.5' height='5' rx='1.5' fill='%23fff'/%3E%3Cpath stroke='%23fff' stroke-width='1.8' stroke-linecap='round' d='M14.5 19.5a2.5 2.5 0 01-5 0'/%3E%3Ccircle cx='12' cy='19.5' r='1.1' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 15px 15px;
}

.float-qr {
  position: absolute;
  right: 214px;
  bottom: 0;
  width: 180px;
  background: var(--card-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 16px;
  text-align: center;
  z-index: 2;
}

.float-qr img {
  width: 140px;
  height: 140px;
  max-width: 140px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

.float-qr p {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* 注册完善信息弹层 */
.reg-modal[hidden] {
  display: none !important;
}

.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.reg-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.reg-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(88vh, 760px);
  overflow: auto;
  background: rgba(228, 236, 246, 0.88);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.28);
}

.reg-modal-hd {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--card-strong);
  border-bottom: 1px solid var(--border-light);
}

.reg-modal-hd h3 {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

.reg-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f5f7;
  border-radius: var(--radius-btn);
  font-size: 20px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.reg-modal-close:hover {
  background: #e8ecf1;
  color: var(--text);
}

.reg-form {
  padding: 14px 16px 18px;
}

.reg-card {
  background: var(--card-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 4px 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.reg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f5;
  cursor: pointer;
  overflow: visible;
}

.reg-card .reg-row:last-child {
  border-bottom: none;
}

.reg-row--avatar {
  align-items: flex-start;
}

.reg-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 96px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.reg-label em {
  color: #e24c3a;
  font-style: normal;
  margin-right: 2px;
}

.reg-label small {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  max-width: 180px;
  line-height: 1.4;
}

.reg-row input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  text-align: right;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
}

.reg-row input::placeholder {
  color: var(--text-light);
}

/* 自定义下拉 */
.reg-select {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.reg-select-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: #f7f9fc;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.reg-select-trigger:hover {
  border-color: #c5d4e8;
  background: #fff;
}

.reg-select.is-open .reg-select-trigger {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.12);
}

.reg-select-value {
  flex: 1;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reg-select-caret {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a93a0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.18s ease;
}

.reg-select.is-open .reg-select-caret {
  transform: rotate(180deg);
}

/* 地址类下拉：加宽，一行展示 省 / 市 / 区 */
.reg-select--addr .reg-select-trigger {
  width: 110px;
  min-width: 110px;
  max-width: 110px;
  padding: 0 10px;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.reg-select--addr .reg-select-value {
  text-align: center;
  flex: 0 1 auto;
}

.reg-select--addr .reg-select-menu {
  width: 110px;
  min-width: 110px;
  right: 0;
}

.reg-select--addr .reg-select-menu li {
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--radius-lg);
  white-space: nowrap;
}

.reg-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  bottom: auto;
  right: 0;
  z-index: 20;
  width: 56px;
  min-width: 56px;
  max-height: 240px;
  margin: 0;
  padding: 4px;
  list-style: none;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  box-sizing: border-box;
}

.reg-select-menu[hidden] {
  display: none !important;
}

.reg-select-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 4px;
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  box-sizing: border-box;
}

.reg-select-menu li:hover {
  background: #f0f6ff;
  color: var(--primary);
}

.reg-select-menu li.is-selected {
  background: #e8f1ff;
  color: var(--primary);
  font-weight: 600;
}

.reg-select-menu li.is-selected::after {
  content: none;
}

.reg-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 0 0 1px #e8ecf0;
}

.reg-avatar-preview {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/touxiang.png") center 28% / cover no-repeat;
  font-size: 0;
  color: transparent;
}

.reg-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 12px 0 10px;
  color: var(--text);
}

.reg-section-title::before {
  content: "";
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--primary);
}

.reg-card textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  margin-bottom: 12px;
  resize: vertical;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  min-height: 88px;
}

.reg-card textarea:focus {
  border-color: var(--primary);
}

.reg-submit {
  display: block;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: var(--radius-btn-pill);
  background: linear-gradient(135deg, #1a6fd4, #3b8eef);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(26, 111, 212, 0.28);
}

.reg-submit:hover {
  filter: brightness(1.05);
}

.home-job-card[data-card-type],
.home-talent-card[data-card-type] {
  cursor: pointer;
}

/* —— 骨架屏 —— */
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-block {
  background: linear-gradient(90deg, #e8edf3 25%, #f4f7fa 50%, #e8edf3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius);
}

.skeleton-job-card,
.skeleton-talent-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: var(--radius-lg);
  min-height: 168px;
}

.skeleton-job-card__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.skeleton-job-card__title {
  height: 20px;
  width: 42%;
}

.skeleton-job-card__salary {
  height: 20px;
  width: 24%;
}

.skeleton-job-card__company {
  height: 36px;
  width: 72%;
}

.skeleton-job-card__tags {
  display: flex;
  gap: 8px;
}

.skeleton-job-card__tag {
  height: 24px;
  width: 56px;
  border-radius: var(--radius-full);
}

.skeleton-job-card__footer {
  height: 16px;
  width: 55%;
  margin-top: auto;
}

.skeleton-talent-card__header {
  display: flex;
  gap: 12px;
}

.skeleton-talent-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-talent-card__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-talent-card__name {
  height: 18px;
  width: 38%;
}

.skeleton-talent-card__meta {
  height: 14px;
  width: 55%;
}

.skeleton-talent-card__tags {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.skeleton-talent-card__tag {
  height: 24px;
  width: 64px;
  border-radius: var(--radius-full);
}

.skeleton-talent-card__footer {
  height: 16px;
  width: 60%;
}

.carousel.is-loading {
  background: linear-gradient(135deg, #f3f6fa 0%, #e9eef5 50%, #f5f8fc 100%);
  border-color: #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 35, 95, 0.06);
}

.carousel.is-loading .carousel-arrow,
.carousel.is-loading .carousel-dots {
  opacity: 0;
  pointer-events: none;
}

.carousel.is-loading .carousel-viewport {
  background: transparent;
}

.carousel-skeleton {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(110deg, #eef2f7 8%, #f8fafc 18%, #eef2f7 33%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease infinite;
}

.carousel-skeleton::before,
.carousel-skeleton::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
}

.carousel-skeleton::before {
  left: 8%;
  right: 38%;
  top: 28%;
  height: 22px;
}

.carousel-skeleton::after {
  left: 8%;
  right: 52%;
  top: 58%;
  height: 14px;
}

.skeleton-hot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.skeleton-hot-rank {
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.skeleton-hot-title {
  flex: 1;
  height: 14px;
}

.skeleton-hot-salary {
  width: 52px;
  height: 14px;
  flex-shrink: 0;
}

.skeleton-partner-list {
  display: flex;
  gap: 20px;
  padding: 8px 0;
}

.skeleton-partner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--glass-border);
}

.skeleton-partner-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.skeleton-partner-name {
  height: 16px;
  width: 140px;
}

/* —— 详情弹窗 —— */
.detail-modal[hidden] {
  display: none !important;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.detail-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.detail-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: var(--detail-modal-width);
  height: var(--detail-modal-height);
  max-width: 96vw;
  max-height: 90vh;
  background: #f3f6fb;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow:
    0 28px 80px rgba(15, 35, 95, 0.22),
    0 8px 24px rgba(26, 111, 212, 0.08);
  overflow: hidden;
}

.detail-modal-hd {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.detail-modal-hd h3 {
  margin: 0;
  padding: 0 48px;
  font-size: 19px;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.02em;
  text-align: center;
}

.detail-modal-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.detail-modal-close:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text);
}

.detail-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 28%);
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.detail-modal-main {
  padding: 22px 24px 26px;
  overflow: auto;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.detail-modal-main::-webkit-scrollbar {
  display: none;
}

.detail-modal-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-height: 0;
  padding: 22px 20px;
  border-left: 1px solid #e2e8f0;
  text-align: center;
}

.detail-modal-aside-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 28px rgba(26, 111, 212, 0.08);
}

.detail-modal-qr {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  height: auto;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e8edf3;
  box-shadow: 0 6px 18px rgba(26, 111, 212, 0.1);
}

.detail-modal-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-modal-qr-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
}

.detail-modal-qr-tip {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
}

.detail-modal-qr-tip--sub {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e8edf3;
}

.detail-modal-qr-tip--sub + .detail-modal-qr {
  margin-top: 30px;
}

.detail-modal-loading {
  padding: 72px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.detail-modal-section {
  margin-bottom: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(15, 35, 95, 0.04);
}

.detail-modal-section--talent-intention,
.detail-modal-section--job-requirement {
  position: relative;
  overflow: hidden;
}

.detail-modal-section--talent-intention::before,
.detail-modal-section--job-requirement::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.detail-modal-section--talent-intention::before {
  background-image: url("../images/section-card-job-intention-bg.png");
}

.detail-modal-section--job-requirement::before {
  background-image: url("../images/section-card-scene-bg.png");
}

.detail-modal-section--talent-intention > *,
.detail-modal-section--job-requirement > * {
  position: relative;
  z-index: 1;
}

.detail-modal-section:last-child {
  margin-bottom: 0;
}

.detail-modal-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
}

.detail-modal-section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2563eb, #4a9eff);
  flex-shrink: 0;
}

.detail-modal-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e8edf3;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.08);
}

.detail-modal-hero-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.detail-modal-hero-salary {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  color: #f97316;
  padding: 6px 12px;
  background: #fff7ed;
  border-radius: var(--radius-lg);
}

.detail-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.detail-modal-tag {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: #eef5ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
}

.detail-modal-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.65;
}

.detail-modal-row:last-child {
  margin-bottom: 0;
}

.detail-modal-row-label {
  flex-shrink: 0;
  min-width: 76px;
  color: var(--text-light);
}

.detail-modal-row-value {
  color: var(--text);
  word-break: break-word;
}

.detail-modal-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  white-space: pre-wrap;
}

.detail-modal-profile {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e8edf3;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px rgba(26, 111, 212, 0.08);
}

.detail-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dbeafe center/cover no-repeat;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}

.detail-modal-profile-main {
  flex: 1;
  min-width: 0;
}

.detail-modal-name {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.detail-modal-notice {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f09240 0%, var(--accent) 55%, #d96a1a 100%);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  box-shadow: 0 4px 14px rgba(232, 120, 42, 0.28);
}

.detail-modal-exp-item {
  padding: 14px 0;
  border-bottom: 1px dashed #e8edf3;
}

.detail-modal-exp-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-modal-exp-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-modal-exp-title {
  font-weight: 700;
  color: #1e293b;
}

.detail-modal-exp-time {
  flex-shrink: 0;
  color: var(--text-light);
  font-size: 12px;
}

.hot-title-btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.hot-title-btn:hover {
  color: var(--primary);
}

@media (max-width: 820px) {
  .detail-modal-body {
    grid-template-columns: 1fr;
  }

  .detail-modal-aside {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }
}

/* —— 全站响应式 —— */
@media (max-width: 1400px) {
  :root {
    --content-width: 78%;
    --detail-modal-width: 52%;
  }
}

@media (max-width: 1200px) {
  :root {
    --content-width: 90%;
    --detail-modal-width: 62%;
  }

  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-layout .col-right {
    max-height: 420px;
  }

  .home-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .app-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .banner-hero-right {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-about .about-hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-about .about-hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  body.page-about .about-hero-visual img {
    min-height: 0;
    height: auto;
    max-height: 480px;
    object-fit: contain;
  }
}

@media (max-width: 992px) {
  :root {
    --content-width: 94%;
    --detail-modal-width: 88%;
    --detail-modal-height: 82%;
  }

  .carousel {
    /* 比例已由 aspect-ratio 统一控制，小屏不再写死高度 */
    border-radius: var(--radius-lg);
  }

  .stats-panel {
    flex-wrap: wrap;
    gap: 12px 8px;
    justify-content: center;
  }

  .stats-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }

  .stats-item:not(:last-child)::after {
    display: none;
  }

  .home-list-section-title {
    font-size: 20px;
    letter-spacing: 0;
  }

  .app-steps {
    grid-template-columns: 1fr;
  }

  body.page-app .app-download-block {
    margin-left: 0;
  }

  body.page-app .app-hero-visual > img {
    max-width: 280px;
  }

  body.page-about .about-advantage-grid,
  body.page-about .about-contact-grid,
  body.page-about .about-service-links {
    grid-template-columns: 1fr;
  }

  body.page-about .about-pillar-grid {
    grid-template-columns: 1fr;
  }

  .float-side {
    right: 12px;
  }

  .float-side #backTop {
    right: 12px;
    bottom: 20px;
    transform: scale(0.92);
    transform-origin: bottom right;
  }

  .float-side .site-float-qr {
    transform: scale(0.92);
    transform-origin: center right;
  }
}

@media (max-width: 768px) {
  :root {
    --content-width: 100%;
    --detail-modal-width: 100%;
    --detail-modal-height: 92%;
    --page-gutter: 14px;
    --header-h: 84px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
  }

  .main {
    padding-bottom: 32px;
  }

  .page-banner--hero {
    padding: 20px 16px;
  }

  .banner-hero-copy h2 {
    font-size: 22px;
  }

  .banner-hero-copy h2::after {
    width: 32px;
    margin-top: 8px;
  }

  .banner-hero-copy p {
    font-size: 13px;
  }

  .banner-hero-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .banner-stat {
    padding: 12px 10px;
  }

  .banner-stat strong {
    font-size: 18px;
  }

  .search-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .search-type {
    width: 100%;
    margin-right: 0;
  }

  .search-type-btn {
    width: 100%;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-xs);
  }

  .search-bar input {
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    padding: 8px 4px;
  }

  .btn-search {
    width: 100%;
    padding: 11px 16px;
  }

  .home-list-grid,
  #jobList,
  #talentList,
  .talent-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer p {
    max-width: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 16px 14px;
  }

  .detail-modal {
    padding: 0;
    align-items: stretch;
  }

  .detail-modal-panel {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    width: 36px;
  }

  .btn-more-jobs {
    min-width: 0;
    width: min(100%, 280px);
    padding: 12px 28px;
  }

  .footer-icp-wrap {
    gap: 10px;
  }

  .footer-icp-btn {
    padding: 12px 28px;
    width: min(100%, 320px);
    text-align: center;
  }

  .footer .footer-copyright {
    font-size: 12px;
    padding: 0 12px;
  }

  .license-modal {
    padding: 12px;
  }

  .license-modal-panel {
    max-height: 92vh;
  }

  .license-modal-hd h3 {
    font-size: 16px;
  }

  .license-modal-body {
    padding: 10px;
  }

  body.page-app .app-preview-hd {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-app .app-preview-slide img {
    width: 140px;
  }

  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .header-main {
    display: contents;
  }

  .header .nav:not(.nav--drawer) {
    display: none;
  }

  .brand {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    min-width: 0;
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1295;
    order: 2;
    margin-left: auto;
  }

  .nav.nav--drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1290;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: min(82vw, 300px);
    max-width: 300px;
    padding: calc(var(--header-h) + 8px) 14px 28px;
    margin: 0;
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border-right: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      8px 0 32px rgba(15, 35, 95, 0.14),
      inset -1px 0 0 rgba(26, 111, 212, 0.06);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    will-change: transform;
  }

  body.site-nav-open .nav.nav--drawer {
    transform: translateX(0);
  }

  .nav.nav--drawer a {
    width: 100%;
    padding: 15px 18px;
    font-size: 18px;
    font-weight: var(--fw-nav);
    text-align: left;
    box-sizing: border-box;
    line-height: 1.3;
  }

  .nav.nav--drawer a.active {
    box-shadow: 0 4px 14px rgba(232, 120, 42, 0.28);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text h1 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  :root {
    --page-gutter: 12px;
    --header-h: 80px;
  }

  .stats-item {
    flex: 1 1 100%;
  }

  .stats-num {
    font-size: 22px;
  }

  .carousel {
    border-radius: var(--radius);
  }

  .home-list-section-title {
    font-size: 20px;
  }

  .float-side .site-float-qr {
    width: 120px;
  }

  .site-mini-qr__img-wrap img {
    width: 96px;
    height: 96px;
  }

  .app-hero-copy h2,
  body.page-app .app-hero-copy h2 {
    font-size: 24px;
  }

  .app-float-badge {
    display: none;
  }

  .job-filters {
    flex-wrap: wrap;
  }

  .filter-region-btn {
    margin-left: 0;
  }

  .area-modal-body {
    grid-template-columns: 112px 1fr;
  }

  .area-modal-panel {
    max-height: min(620px, 90vh);
  }
}

/* —— 性能：减少离屏绘制与后台动画开销 —— */
#latestJobGrid,
#latestTalentGrid,
#jobList,
#talentList {
  contain: layout style;
}

.home-job-card[data-card-type],
.home-talent-card[data-card-type] {
  content-visibility: auto;
  contain-intrinsic-size: 320px 188px;
}

#homeCarousel,
.carousel-track {
  contain: layout style;
}

.ticker-content,
.partner-marquee-track {
  will-change: transform;
  backface-visibility: hidden;
}

body.is-page-hidden .ticker-content,
body.is-page-hidden .partner-marquee-track,
body.is-page-hidden .skeleton-block,
body.is-page-hidden .carousel-skeleton,
body.is-page-hidden .app-phone-visual,
body.is-page-hidden .app-float-badge,
.is-offscreen-paused,
.is-offscreen-paused .ticker-content,
.is-offscreen-paused .partner-marquee-track {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-content,
  .partner-marquee-row--left .partner-marquee-track,
  .partner-marquee-row--right .partner-marquee-track,
  .skeleton-block,
  .carousel-skeleton,
  .app-phone-visual,
  .app-float-badge {
    animation: none !important;
  }
}
