:root {
  --orange: #153163;
  --ink: #1a1a1a;
  --muted: #999;
  --line: #eee;
  --bg: #f7f7f7;
  --header: 48px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
html { scroll-behavior: smooth; }
body.my-body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.my-main {
  flex: 1 0 auto;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.center { text-align: center; }

/* ===== 媒体空占位 ===== */
.media-slot {
  background: #e9e9e9;
  border: 1px dashed #cfcfcf;
  color: #9a9a9a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-slot:has(img) {
  border: 0;
  background: #ddd;
}
.media-slot-label {
  font-size: 12px;
  padding: 6px 10px;
  background: rgba(255,255,255,.65);
  border-radius: 6px;
}
.media-slot-full { position: absolute; inset: 0; border: 0; border-radius: 0; }
.media-slot-rect { width: 100%; height: 200px; border-radius: 12px; }
.about-video-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}
.media-slot-card { width: 78vw; max-width: 280px; height: 180px; border-radius: 12px; flex: none; }
.media-slot-tall { width: 70vw; max-width: 260px; height: 320px; border-radius: 12px; flex: none; }
.media-slot-sm { width: 100%; height: 120px; border-radius: 10px; margin-bottom: 10px; }
.media-slot-icon { width: 44px; height: 44px; border-radius: 10px; flex: none; }
.media-slot-city {
  position: absolute; right: 0; bottom: 0; width: 72px; height: 78px;
  border: 0; border-radius: 0; background: #d7e6f5; opacity: .9;
}

/* 默认：手机显示 / PC 隐藏（小屏） */
.only-pc { display: none !important; }
.only-m { display: block; }
.my-header-right.only-m { display: flex; }
.my-nav-pc { display: none; }

/* ===== Header ===== */
.my-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
  transition: background .2s ease;
}
.page-home .my-header { color: #fff; background: transparent; }
.page-home .my-header.is-solid,
.page-job .my-header,
.page-about .my-header,
.page-login .my-header,
.page-404 .my-header {
  background: #153363; color: #fff;
}
.my-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  width: max-content;
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.my-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.my-logo-mark {
  display: none;
}
.my-header-right {
  display: flex; align-items: center; gap: 2px;
  position: relative;
}
.my-ico {
  width: 40px; height: 40px; border: 0; background: transparent; color: inherit; cursor: pointer;
  position: relative;
}
.my-ico-menu::before {
  content: ""; position: absolute; left: 11px; right: 11px; top: 14px; height: 1.5px; background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}
.my-ico-menu.is-open::before {
  top: 50%; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  box-shadow: none;
  transform: rotate(45deg);
}
.my-ico-menu.is-open::after {
  content: ""; position: absolute; top: 50%; left: 12px; right: 12px; height: 1.5px; background: currentColor;
  transform: rotate(-45deg);
}

.my-mask {
  position: fixed; inset: 0; background: transparent; z-index: 90;
  display: none;
}
.my-mask.open { display: block; }

/* 手机端右上角下拉菜单（对标美云） */
.my-pop-nav {
  position: absolute;
  top: calc(100% + 2px);
  right: 4px;
  min-width: 132px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  overflow: hidden;
  z-index: 130;
  display: none;
}
.my-pop-nav.open {
  display: block;
}
.my-pop-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.my-pop-nav a:last-child { border-bottom: 0; }
.my-pop-nav a:active { background: #f7f7f7; }

/* ===== Home video（对标美云全屏背景） ===== */
.home-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  border: 0;
  z-index: 0;
}
.home-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}
.home-hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #cfd6de;
  z-index: 0;
}
.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===== Home ===== */
.home-screen {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.home-bg-slot { background: #000; }
.home-screen-inner {
  position: relative; z-index: 1;
  padding: calc(var(--header) + 12px) 20px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.home-search {
  width: 100%; max-width: 360px; height: 44px;
  margin-top: 230px;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 0 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.home-search input {
  flex: 1; border: 0; outline: none; background: transparent; font-size: 14px; color: #333;
}
.ico-search {
  width: 14px; height: 14px; border: 1.6px solid #999; border-radius: 50%; position: relative; flex: none;
}
.ico-search::after {
  content: ""; position: absolute; width: 6px; height: 1.6px; background: #999;
  right: -4px; bottom: -1px; transform: rotate(45deg);
}
.ico-search.light { border-color: rgba(255,255,255,.85); }
.ico-search.light::after { background: rgba(255,255,255,.85); }

.home-cards {
  width: 100%; max-width: 360px; margin-top: 28px;
  display: grid; gap: 12px;
}
.home-card {
  background: rgba(255,255,255,.92);
  border-radius: 12px; padding: 16px 18px; color: #111;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.home-card strong { display: block; font-size: 17px; margin-bottom: 4px; }
.home-card span { color: #111; font-size: 13px; }

.home-chevron {
  margin-top: 16px; color: #fff; font-size: 20px; opacity: .85;
  animation: bob 1.5s ease-in-out infinite;
}

/* ===== Blocks ===== */
.block { padding: 36px 16px; }
.block-gray { background: var(--bg); }
/* 手机内容区彩条装饰底（对标美云 caitiao1） */
.m-decor-bg > .block,
.m-decor-bg > .block.block-gray {
  background-color: #fff;
  background-image: url("../images/caitiao1.png");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
}
.block-title {
  margin: 0 0 18px; font-size: 24px; font-weight: 800; text-align: left;
}
.block-title.center { text-align: center; }
.underline-char {
  position: relative; display: inline-block;
}
.underline-char::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.quote-title { color: var(--ink); position: relative; padding-left: 8px; }
.quote-mark {
  color: var(--orange); font-style: normal; font-size: 36px;
  font-family: Georgia, serif; line-height: 0; margin-right: 2px;
  vertical-align: -8px;
}
.en-sub {
  margin: -10px 0 16px; color: var(--muted); font-size: 12px; letter-spacing: .04em;
}

.h-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.h-scroll::-webkit-scrollbar { display: none; width: 0; height: 0; } /* Chrome/Safari */
.h-scroll > * { scroll-snap-align: center; }

.talent-lead { margin: 0; text-align: center; color: #888; font-size: 13px; }
.talent-strong {
  margin: 4px 0 18px; text-align: center; font-size: 20px; font-weight: 800;
}
.talent-scroll {
  align-items: stretch;
  margin: 0 -16px;
  padding: 0 16px;
}
.reason-single {
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.reason-single .talent-card {
  width: 100%;
  max-width: 334px;
}
.talent-card {
  flex: none;
  width: 78vw;
  max-width: 334px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.talent-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 12px;
  background: #eee;
}
.talent-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.talent-card p { margin: 0; color: #666; font-size: 13px; line-height: 1.7; }

.lead-desc { text-align: center; color: #888; font-size: 13px; margin: -8px 0 16px; }
.lead-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px;
}
.lead-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
  min-height: 0;
}
.lead-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lead-tile-wide {
  grid-column: 1 / -1;
  aspect-ratio: 330 / 160;
}
.lead-tile-sm { aspect-ratio: 1 / 1; }
.lead-tile-tall {
  grid-column: 2;
  grid-row: 2 / span 2;
  aspect-ratio: 160 / 330;
}
.lead-tile-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
}
.lead-tile-copy h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.lead-tile-copy p {
  margin: 0;
  font-size: 12px;
  opacity: .92;
  line-height: 1.4;
}
.lead-tile-tall .lead-tile-copy h3 { font-size: 15px; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-q-mark {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}
.faq-q-text { flex: 1; min-width: 0; }
.faq-q-arrow {
  flex: none;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #bbb;
  border-bottom: 1.5px solid #bbb;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform .2s ease;
}
.faq-item.open .faq-q-arrow {
  transform: rotate(225deg);
  margin-top: 4px;
}
.faq-a {
  display: none;
  padding: 0 28px 16px 32px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { display: block; }

.btn-more {
  display: inline-flex; align-items: center; justify-content: center;
  height: 34px; padding: 0 18px; border: 1px solid #ddd; border-radius: 999px;
  color: #666; font-size: 13px; line-height: 1; background: #fff;
  box-sizing: border-box; vertical-align: middle;
}

.list-title { margin: 0 0 12px; font-size: 16px; }
.job-list { display: grid; gap: 10px; }
.job-row {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px;
}
.job-row h4 { margin: 0 0 4px; font-size: 15px; }
.job-row p { margin: 0; color: #999; font-size: 12px; }
.salary { color: var(--orange); font-weight: 700; font-size: 14px; white-space: nowrap; }
.empty { text-align: center; padding: 28px; color: #999; background: var(--bg); border-radius: 12px; }
.pager { margin-top: 16px; text-align: center; }
.pager .pagination { display: inline-flex; gap: 6px; list-style: none; padding: 0; }
.pager a, .pager span { display: inline-block; padding: 5px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; }

.inner-top {
  padding: calc(var(--header) + 20px) 16px 20px;
  background: #111; color: #fff;
}
.inner-top h1 { margin: 0 0 6px; font-size: 22px; }
.inner-top p { margin: 0; opacity: .7; font-size: 13px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.tags span {
  background: #fff4ee; color: var(--orange); border-radius: 999px; padding: 4px 10px; font-size: 12px;
}
.h { margin: 20px 0 8px; font-size: 16px; }
.rich { color: #333; font-size: 14px; line-height: 1.8; }
.about-text { margin-top: 14px; color: #666; font-size: 14px; line-height: 1.8; }
.about-m {
  padding-top: var(--header);
}
.about-m-intro {
  margin-top: 16px;
  text-align: center;
}
.about-m-intro h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  text-align: left;
}
.about-m-intro p {
  margin: 0 0 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.about-m-intro .btn-more {
  margin-top: 8px;
}
.about-intro-copy {
  margin-top: 16px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}
.about-intro-copy h3 { margin: 0 0 10px; font-size: 18px; }
.about-intro-copy p { margin: 0 0 10px; color: #555; font-size: 14px; line-height: 1.8; }
.about-talent-grid,
.about-lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.about-lead-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-lead-item img {
  width: 100%; height: 160px; object-fit: cover; display: block;
}
.about-lead-item h3 { margin: 12px 14px 4px; font-size: 16px; }
.about-lead-item p { margin: 0 14px 16px; color: #666; font-size: 13px; }
.about-benefit {
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-benefit img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.about-benefit h3 { margin: 16px 16px 8px; font-size: 18px; }
.about-benefit p { margin: 0 16px 18px; color: #555; line-height: 1.8; }

.apply-bar {
  position: sticky; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
}
.btn-primary {
  appearance: none; border: 0; cursor: pointer;
  background: var(--orange); color: #fff; font-weight: 600;
  border-radius: 999px; height: 40px; line-height: 40px; padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-block { width: 100%; }
.muted { color: #999; font-size: 12px; }

/* ===== 投递简历页 ===== */
.apply-page {
  flex: 1;
  margin-top: var(--header);
  padding: 20px 16px 40px;
  background:
    linear-gradient(180deg, #eef2f8 0%, #f7f8fb 40%, #fff 100%);
}
.apply-card {
  width: min(980px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(21, 49, 99, .08);
  padding: 22px 18px 28px;
}
.apply-back {
  display: inline-block;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.apply-back:hover { color: var(--orange); }
.apply-head h1 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}
.apply-job-box {
  background: #f5f7fb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
}
.apply-job-box strong {
  display: block;
  font-size: 16px;
  color: #153163;
  margin-bottom: 4px;
}
.apply-job-box p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.apply-salary {
  display: inline-block;
  margin-top: 8px;
  color: #c45c26;
  font-size: 15px;
  font-weight: 700;
}
.apply-form { display: block; }
.apply-sec {
  margin-top: 28px;
  padding-top: 8px;
}
.apply-sec-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
}
.apply-sec-tip {
  margin: 0 0 18px;
  font-size: 13px;
  color: #999;
}
.apply-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 36px;
}
.apply-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 10px 12px;
}
.apply-label {
  text-align: right;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}
.apply-label em {
  color: #e54d42;
  font-style: normal;
  margin-right: 2px;
}
.apply-item input[type="text"],
.apply-item input[type="tel"],
.apply-item input[type="email"],
.apply-item input[type="number"],
.apply-item input[type="date"],
.apply-item input[type="month"],
.apply-item select,
.apply-item textarea {
  width: 100%;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  padding: 0 12px;
  outline: none;
  background: #fff;
  color: #333;
  font-size: 14px;
  box-sizing: border-box;
}
.apply-item input[type="text"],
.apply-item input[type="tel"],
.apply-item input[type="email"],
.apply-item input[type="number"],
.apply-item input[type="date"],
.apply-item input[type="month"],
.apply-item select {
  height: 40px;
}
.apply-item textarea {
  padding: 10px 12px;
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}
.apply-item input:focus,
.apply-item select:focus,
.apply-item textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(21, 49, 99, .08);
}
.apply-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  min-height: 40px;
}
.apply-radios label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.apply-radios input { accent-color: var(--orange); }
.apply-phone {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px;
}
.apply-end-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.apply-end-wrap input[type="month"] { flex: 1; }
.apply-check-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.apply-check-inline input { accent-color: var(--orange); }
.apply-upload {
  position: relative;
  margin-top: 8px;
}
.apply-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  z-index: 2;
}
.apply-upload-ui {
  border: 1px dashed #cfd6e4;
  border-radius: 8px;
  background: #fafbfd;
  padding: 22px 16px;
  text-align: center;
  transition: border-color .15s ease, background .15s ease;
}
.apply-upload-ui strong {
  display: block;
  font-size: 14px;
  color: #153163;
  margin-bottom: 4px;
}
.apply-upload-ui p {
  margin: 0;
  font-size: 12px;
  color: #999;
}
.apply-upload-name {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #333;
  word-break: break-all;
}
.apply-upload-ui.has-file {
  border-color: var(--orange);
  background: #f3f6fb;
}
.apply-upload-ui.has-file .apply-upload-name { display: block; }
.apply-upload-ui.has-file p { display: none; }
.apply-submit {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 46px;
  margin: 28px auto 0;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.apply-submit:active { opacity: .92; }
.apply-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

.my-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: #000 !important;
  color: #fff !important;
  text-align: center;
  padding: 18px 16px 22px;
  font-size: 12px;
  line-height: 1.9;
  border: 0 !important;
  width: 100%;
}
.my-footer p {
  margin: 0 auto;
  color: #fff !important;
  max-width: 100%;
}
.my-footer a,
.my-footer a:visited,
.my-footer a:hover {
  color: #fff !important;
  margin: 0 2px;
}
.my-footer .beian-gongan {
  display: inline-block;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* ===================== PC 端（对标 meiyun PC） ===================== */
@media (min-width: 992px) {
  :root { --header: 64px; }

  .only-pc { display: block !important; }
  .only-m,
  .my-header-right.only-m { display: none !important; }

  .my-header {
    padding: 0 max(24px, calc((100% - 1200px) / 2));
    background: transparent !important;
    color: #222;
    max-width: none;
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }
  .my-header .my-logo,
  .my-header .my-nav-pc {
    flex: none;
  }
  /* 顶栏内容区按 1200 居中：logo 左、导航右，整体落在 1200 内容宽内 */
  .my-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 40px;
  }
  .my-logo {
    justify-self: start;
    width: max-content;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .my-nav-pc {
    display: flex !important;
    align-items: center;
    gap: 36px;
    margin-left: 0;
    justify-self: end;
  }
  .my-nav-pc a {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    padding: 6px 0;
  }
  .page-home .my-nav-pc a { color: #222; }
  .my-nav-pc a.active::after,
  .my-nav-pc a:hover::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: #153163;
  }
  /* 用描边模拟加粗，避免 font-weight 变宽导致导航位移 */
  .my-nav-pc a:hover,
  .my-nav-pc a.active {
    color: #111;
    text-shadow: 0.45px 0 0 currentColor, -0.45px 0 0 currentColor;
  }
  .page-home .my-header.is-solid,
  .page-job .my-header,
  .page-about .my-header {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }
  .my-logo-img {
    height: 48px;
    max-width: 280px;
  }

  /* PC 首页全屏 */
  .pc-home {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  .pc-home-bg { background: #000; }
  .pc-home-inner {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 24px 120px;
  }
  .pc-home-slogan {
    margin: 0 0 36px;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #111;
    text-align: center;
  }
  .pc-home-slogan em {
    color: var(--orange);
    font-style: normal;
  }
  .pc-home-search {
    width: min(720px, 86vw);
    height: 56px;
    display: flex; align-items: center; gap: 10px;
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 10px 36px rgba(0,0,0,.16);
  }
  .pc-home-search input {
    flex: 1; border: 0; outline: none; background: transparent;
    font-size: 16px; color: #333;
  }
  .pc-search-btn {
    border: 0; cursor: pointer;
    height: 44px; padding: 0 28px;
    border-radius: 999px;
    background: var(--orange); color: #fff;
    font-size: 15px; font-weight: 600;
  }
  .pc-sound {
    position: absolute; left: 20px; top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px; height: 40px; border-radius: 50%;
    border: 0; padding: 0;
    background: rgba(0,0,0,.28);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .pc-sound:hover { background: rgba(0,0,0,.42); }
  .pc-sound svg {
    width: 22px; height: 22px; fill: currentColor;
    display: none;
  }
  .pc-sound.is-muted .ico-sound-off { display: block; }
  .pc-sound:not(.is-muted) .ico-sound-on { display: block; }

  .pc-wrap {
    width: min(1200px, calc(100% - 80px));
    margin-left: auto; margin-right: auto;
    padding-left: 0; padding-right: 0;
  }
  .center-head { text-align: center !important; padding-left: 0; }
  .en-sub.center { text-align: center; }
  .lead-desc.center { text-align: center; }
  .about-intro-copy .btn-more { display: inline-flex; margin-top: 8px; }

  .pc-env-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .pc-env-item {
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
  }
  .about-env-row { margin-top: 8px; }
  .about-env-row .pc-env-item { height: 200px; }

  .about-hero {
    position: relative;
    height: 42vh; min-height: 320px;
    overflow: hidden;
  }
  .about-hero-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .about-hero-mask {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff; text-align: center;
  }
  .about-hero-mask h1 { margin: 0 0 8px; font-size: 42px; font-weight: 800; }
  .about-hero-mask p { margin: 0; opacity: .85; letter-spacing: .08em; }

  .about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
  }
  .about-talent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 12px;
  }
  .about-talent-grid .talent-card {
    width: auto; max-width: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
  }
  .about-talent-grid .talent-card h3 { padding: 0 14px; margin: 12px 0 6px; }
  .about-talent-grid .talent-card p { padding: 0 14px 16px; margin: 0; color: #666; font-size: 13px; line-height: 1.7; }

  .about-lead-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 12px;
  }
  .about-lead-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
  }
  .about-lead-item img {
    width: 100%; height: 160px; object-fit: cover; display: block;
  }
  .about-lead-item h3 { margin: 12px 14px 4px; font-size: 16px; }
  .about-lead-item p { margin: 0 14px 16px; color: #666; font-size: 13px; }

  .about-benefit {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
  }
  .about-benefit img {
    width: 100%; height: 280px; object-fit: cover; display: block;
  }
  .about-benefit h3 { margin: 0 0 10px; font-size: 22px; }
  .about-benefit p { margin: 0; color: #555; line-height: 1.8; padding-right: 24px; }

  .block { padding: 64px 0; }
  .block-title { font-size: 32px; margin-bottom: 10px; }
  .quote-mark { font-size: 48px; }

  .page-job .my-header { color: #222; }
  .inner-top {
    padding: calc(var(--header) + 40px) 0 40px;
    background: #f7f7f7; color: #111;
  }
  .inner-top > * ,
  .block > .tags,
  .block > .h,
  .block > .rich {
    width: min(900px, calc(100% - 80px));
    margin-left: auto; margin-right: auto;
  }
  .apply-bar {
    width: min(900px, calc(100% - 80px));
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 12px 12px 0 0;
  }

  .my-footer {
    padding: 22px 40px 28px;
    font-size: 13px;
    text-align: center;
  }
}

/* ===== 职位列表页 /social ===== */
body:has(.jobs-board),
body:has(.jobs-m) {
  background: #fff;
}
body:has(.jobs-board) .page-job .my-header,
body:has(.jobs-board) .my-header,
body:has(.jobs-m) .page-job .my-header,
body:has(.jobs-m) .my-header {
  background: #153163 !important;
  color: #fff;
  box-shadow: none;
}
@media (min-width: 992px) {
  body:has(.jobs-board) .page-job .my-header,
  body:has(.jobs-board) .my-header,
  body:has(.jobs-m) .page-job .my-header,
  body:has(.jobs-m) .my-header {
    background: #fff !important;
    color: #222;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }
}

.jobs-banner {
  position: relative;
  margin-top: var(--header);
  line-height: 0;
  overflow: hidden;
  background: #153163;
}
.jobs-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----- 手机端社会招聘（对标美云） ----- */
.jobs-m {
  margin-top: var(--header);
  padding-top: 12px;
  background: #fff;
  padding-bottom: 72px;
}
.jobs-m-banner {
  margin: 0 20px 12px;
  height: 116px;
  line-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7f0;
}
.jobs-m-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.jobs-m-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: var(--header);
  z-index: 20;
}
.jobs-m-search {
  flex: 1;
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #f5f5f5;
  border-radius: 18px;
}
.jobs-m-search-ico {
  width: 16px;
  height: 16px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='rgba(0,0,0,.45)' d='M7.714 14.143a6.429 6.429 0 1 0 0-12.857 6.429 6.429 0 0 0 0 12.857ZM7.714 0a7.714 7.714 0 0 1 5.891 12.696l4.207 4.207a.643.643 0 0 1-.91.909l-4.206-4.207A7.714 7.714 0 1 1 7.715 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.jobs-m-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #333;
  font-size: 14px;
  line-height: 1;
  height: 100%;
  padding: 0;
  -webkit-appearance: none;
}
.jobs-m-search input::placeholder { color: #999; }
.jobs-m-type-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 36px;
  padding: 0 4px 0 8px;
  border: 0;
  background: transparent;
  color: #262626;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.jobs-m-type-btn i {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #666;
}
.jobs-m-type-btn.is-open i {
  border-top: 0;
  border-bottom: 5px solid #666;
}

.jobs-m-type-panel {
  position: fixed;
  left: 0; right: 0;
  top: calc(var(--header) + 56px);
  bottom: 0;
  z-index: 95;
  background: rgba(0,0,0,.35);
}
.jobs-m-type-panel-inner {
  background: #fff;
  padding: 8px 16px 16px;
  max-height: 70vh;
  overflow: auto;
}
.jobs-m-type-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 15px;
  cursor: pointer;
}
.jobs-m-type-item input { accent-color: var(--orange); width: 16px; height: 16px; }
.jobs-m-type-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.jobs-m-type-actions a,
.jobs-m-type-actions button {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1;
}
.jobs-m-type-actions a {
  border: 1px solid #ddd;
  color: #666;
  background: #fff;
}
.jobs-m-type-actions button {
  border: 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.jobs-m-list {
  padding: 8px 16px 24px;
  background: #fff;
}
.jobs-m-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 4px 14px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  color: #141414;
}
.jobs-m-item-left {
  min-width: 0;
  flex: 1;
}
.jobs-m-item-left h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.35;
}
.jobs-m-item-left h3 .jobs-hot-ico {
  width: 16px;
  height: 18px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}
.jobs-m-item-left p {
  margin: 0;
  color: #888;
  font-size: 13px;
  line-height: 1.4;
}
.jobs-m-item-left em {
  font-style: normal;
  margin: 0 4px;
  color: #ccc;
}
.jobs-m-item-right {
  text-align: right;
  flex: none;
}
.jobs-m-item-right .jobs-salary {
  font-size: 15px;
  margin-bottom: 6px;
  white-space: nowrap;
}
.jobs-m-item-right span {
  display: block;
  color: #999;
  font-size: 12px;
}
.jobs-m-empty,
.jobs-m-end {
  text-align: center;
  color: #999;
  padding: 28px 0 12px;
  font-size: 13px;
}

.jobs-board {
  background: #fff;
  color: #222;
  padding: 24px 16px 48px;
}
.jobs-board-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.jobs-filter,
.jobs-hot {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
}
.jobs-filter-head,
.jobs-hot-head,
.jobs-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.jobs-filter-head a,
.jobs-hot-head a,
.jobs-share {
  color: var(--orange);
  font-size: 13px;
}
.jobs-filter-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  border: 0; background: transparent; color: #222;
  font-size: 15px; font-weight: 600; padding: 8px 0; cursor: pointer;
}
.jobs-filter-toggle span {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #999;
}
.jobs-filter-search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #e5e5e5; border-radius: 4px; padding: 0 10px; height: 34px;
  margin-bottom: 10px;
}
.jobs-filter-search input {
  flex: 1; border: 0; outline: none; background: transparent; color: #333; font-size: 13px;
}
.jobs-check {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0; color: #444; font-size: 14px; cursor: pointer;
}
.jobs-check input { accent-color: var(--orange); }

.jobs-search {
  display: flex; gap: 10px; margin-bottom: 14px;
}
.jobs-search input {
  flex: 1; height: 44px; border: 1px solid #e5e5e5; border-radius: 4px;
  padding: 0 14px; background: #fff; color: #333; font-size: 14px;
}
.jobs-search button {
  height: 44px; padding: 0 22px; border: 0; border-radius: 4px;
  background: var(--orange); color: #fff; font-weight: 600; cursor: pointer;
}
.jobs-meta { color: #888; font-size: 13px; }

.jobs-list-dark { border-top: 1px solid #eee; }
.jobs-item {
  border-bottom: 1px solid #eee;
  transition: background-color .15s ease;
}
.jobs-item:hover {
  background: #f3f6fb;
}
.jobs-item.is-open {
  background: transparent;
}
.jobs-item.is-open:hover {
  background: transparent;
}
.jobs-item-summary {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 18px 12px;
  cursor: pointer;
}
.jobs-item-left h3 {
  margin: 0 0 8px; font-size: 16px; font-weight: 600; color: #111;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.jobs-item-left p { margin: 0; color: #888; font-size: 13px; }
.jobs-item-left em { font-style: normal; margin: 0 4px; color: #ccc; }
.jobs-item-right {
  text-align: right;
  flex: none;
  min-width: 140px;
}
.jobs-item-right strong,
.jobs-salary {
  display: block; color: var(--orange); font-size: 20px; font-weight: 700; margin-bottom: 8px;
  white-space: nowrap;
}
.jobs-item-right span { color: #999; font-size: 12px; }
.jobs-item-panel {
  padding: 0 12px 20px;
  border-top: 1px dashed #eee;
}
.jobs-item-panel[hidden] { display: none !important; }
.jobs-item-panel-loading {
  padding: 18px 0;
  color: #999;
  font-size: 13px;
}
.jobs-item-panel-sec { margin-top: 16px; }
.jobs-item-panel-sec h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.jobs-item-panel-sec .rich {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.jobs-item-panel-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.jobs-item-panel-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 40px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
}
.jobs-item-panel-more {
  color: #666;
  font-size: 13px;
}
.jobs-item-panel-more:hover { color: var(--orange); }
.jobs-empty, .jobs-end {
  text-align: center; color: #999; padding: 28px 0 12px; font-size: 13px;
}
.jobs-pager { margin-top: 12px; }
.jobs-pager .pagination { display: flex; justify-content: center; gap: 6px; list-style: none; padding: 0; }
.jobs-pager a, .jobs-pager span {
  display: inline-block; padding: 5px 10px; border: 1px solid #e5e5e5; border-radius: 4px;
  color: #666; font-size: 12px;
}

.jobs-hot-ico {
  display: inline-block;
  width: 22px;
  height: 24px;
  flex: none;
  vertical-align: -4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff475a' d='M12.5 2.2c.3 2.1-1 4-2.4 5.5-1.6 1.7-3.4 3.2-3.6 5.6-.2 2.4 1.3 4.7 3.5 5.6-1.4-2 .1-4 1.6-4.7.1 2.7 1.7 4.2 3.9 4.2 3.1 0 5.5-2.6 5.5-5.9 0-3.6-2.5-5.8-4.5-7.8-1.1-1.1-2.1-2.4-2.5-3.9-1.2 1.4-1.5 3.2-1.5 5.2z'/%3E%3Cpath fill='%23ffd166' d='M12.2 13.2c-.7 1-.7 2.2-.1 3.2 1.1-.3 1.9-1.3 1.9-2.5 0-.9-.5-1.6-1.1-2.2-.3.5-.5 1-.7 1.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.jobs-hot-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.jobs-hot-item span { display: block; color: #222; font-size: 14px; margin-bottom: 4px; }
.jobs-hot-item em { color: #999; font-style: normal; font-size: 12px; }

/* 手机端岗位详情弹窗 */
.job-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.job-sheet[hidden] { display: none !important; }
.job-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}
.job-sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .28s ease;
}
.job-sheet.is-open .job-sheet-mask {
  opacity: 1;
}
.job-sheet-panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: 48px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translate3d(0, 100%, 0);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.job-sheet.is-open .job-sheet-panel {
  transform: translate3d(0, 0, 0);
}
.job-sheet-close {
  position: absolute;
  top: 6px; left: 8px;
  z-index: 2;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  font-size: 28px; line-height: 1;
  color: #999; cursor: pointer;
}
.job-sheet-scroll {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px 18px 20px;
}
.job-sheet-loading {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 14px;
}
.job-sheet-head-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #141414;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-right: 8px;
}
.job-sheet-head-title .jobs-hot-ico {
  width: 18px; height: 20px;
  margin-top: 2px;
}
.job-sheet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
  color: #888;
  font-size: 13px;
}
.job-sheet-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.job-sheet-date {
  display: inline-block;
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #888;
  font-size: 12px;
  margin-bottom: 18px;
}
.job-sheet-sec {
  margin-bottom: 18px;
}
.job-sheet-sec h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  line-height: 1.2;
}
.job-sheet-sec .rich {
  color: #444;
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}
.job-sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-sheet-tags span {
  display: inline-block;
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
}
.job-sheet-bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #eee;
  background: #fff;
}
.job-sheet-share {
  flex: 1;
  height: 40px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  background: #fff;
  color: var(--orange);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.job-sheet-apply {
  flex: 1.4;
  height: 40px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.jobs-share-tip {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translate(-50%, 8px);
  z-index: 320;
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(21, 49, 99, .92);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.jobs-share-tip.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===== 登录 / 注册 ===== */
.auth-page {
  min-height: 0;
  flex: 1;
  margin-top: var(--header);
  padding: 28px 16px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(180deg, #eef2f8 0%, #f7f8fb 45%, #fff 100%);
}
.auth-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(21, 49, 99, .08);
  padding: 28px 22px 24px;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.auth-tabs a {
  text-align: center;
  padding: 10px 0 12px;
  color: #888;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.auth-tabs a.active {
  color: var(--orange);
}
.auth-tabs a.active::after {
  content: "";
  position: absolute;
  left: 20%; right: 20%;
  bottom: -1px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.auth-form { display: grid; gap: 14px; }
.auth-field { display: grid; gap: 6px; }
.auth-field > span {
  font-size: 13px;
  color: #666;
}
.auth-field input[type="text"],
.auth-field input[type="password"],
.auth-field input[type="email"],
.auth-field input[type="tel"] {
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
  background: #fff;
  color: #222;
  font-size: 14px;
}
.auth-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(21, 49, 99, .08);
}
.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
}
.auth-check input { accent-color: var(--orange); }
.auth-submit {
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.auth-submit:active { opacity: .92; }
.auth-tip {
  margin: 16px 0 0;
  text-align: center;
  color: #888;
  font-size: 13px;
}
.auth-tip a { color: var(--orange); font-weight: 600; }
.auth-captcha {
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-captcha .form-control {
  flex: 1;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}
.auth-captcha .input-group-btn {
  flex: none;
  display: flex;
  align-items: center;
}
.auth-captcha img {
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #eee;
}

@media (min-width: 992px) {
  .auth-page { padding: 48px 24px 72px; align-items: center; }
  .auth-card { padding: 36px 32px 28px; }
  .apply-page { padding: 40px 24px 64px; }
  .apply-card { padding: 36px 40px 40px; }
  .apply-head h1 { font-size: 24px; }
  .apply-rows { grid-template-columns: 1fr 1fr; }
  .apply-item { grid-template-columns: 118px minmax(0, 1fr); }
}

@media (min-width: 992px) {
  .jobs-board { padding: 28px 24px 64px; display: block !important; }
  .jobs-board-inner {
    grid-template-columns: 220px minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
  }
  .jobs-banner { display: block !important; }
}

/* ===== 职位详情页 ===== */
.job-detail-page {
  flex: 1;
  margin-top: var(--header);
  padding: 16px 16px 40px;
  background:
    linear-gradient(180deg, #eef2f8 0%, #f7f8fb 40%, #fff 100%);
}
.job-detail-card {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(21, 49, 99, .08);
  padding: 20px 18px 28px;
}
.job-detail-back {
  display: inline-block;
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}
.job-detail-back:hover { color: var(--orange); }
.job-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.job-detail-head h1 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.35;
}
.job-detail-meta {
  margin: 0;
  color: #888;
  font-size: 13px;
}
.job-detail-meta em {
  font-style: normal;
  margin: 0 6px;
  color: #ccc;
}
.job-detail-salary {
  flex: none;
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}
.job-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.job-detail-tags span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f3f6fb;
  color: #456;
  font-size: 12px;
}
.job-detail-sec {
  margin-top: 22px;
}
.job-detail-sec h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  line-height: 1.2;
}
.job-detail-rich {
  color: #555;
  font-size: 14px;
  line-height: 1.85;
}
.job-detail-related {
  display: grid;
  gap: 10px;
}
.job-detail-related a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafbfd;
}
.job-detail-related a:hover {
  border-color: #d7deea;
  background: #f3f6fb;
}
.job-detail-related strong {
  font-size: 14px;
  color: #222;
  font-weight: 600;
}
.job-detail-related span {
  flex: none;
  font-size: 12px;
  color: #888;
}
.job-detail-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #eee;
}
.job-detail-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 100%;
  height: 42px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
}
.job-detail-back-list {
  font-size: 13px;
  color: #666;
}
.job-detail-back-list:hover { color: var(--orange); }

@media (min-width: 992px) {
  .job-detail-page { padding: 32px 24px 64px; }
  .job-detail-card { padding: 28px 36px 36px; }
  .job-detail-head h1 { font-size: 26px; }
  .job-detail-salary { font-size: 26px; }
}

/* ===== 404 ===== */
.err404 {
  min-height: calc(100vh - var(--header) - 90px);
  min-height: calc(100dvh - var(--header) - 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header) + 40px) 24px 48px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(21, 49, 99, 0.08), transparent 70%),
    linear-gradient(180deg, #f5f7fb 0%, #fff 55%);
}
.err404-code {
  font-size: clamp(72px, 18vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--orange);
  opacity: 0.92;
  margin-bottom: 12px;
}
.err404-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.err404-desc {
  margin: 0 0 28px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.err404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.err404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 42px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.err404-btn-primary {
  background: var(--orange);
  color: #fff;
}
.err404-btn-primary:hover { background: #0f244c; color: #fff; }
.err404-btn-ghost {
  background: #fff;
  color: var(--orange);
  border: 1px solid var(--orange);
}
.err404-btn-ghost:hover { background: #f0f3f8; }

@media (min-width: 992px) {
  .page-404 .my-header {
    background: #fff !important;
    color: #222;
  }
  .err404 {
    padding-top: calc(var(--header) + 56px);
  }
  .err404-title { font-size: 28px; }
  .err404-desc { font-size: 15px; max-width: 420px; }
  .err404-btn { min-width: 148px; height: 44px; }
}


