/* ============================================
   人才招募页面 - rczp.css
   蓝色科技风，与全站风格统一
   ============================================ */

/* ---- 页面Banner（复用gywm风格） ---- */
.page-banner {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: calc(var(--header-h) + var(--topbar-h));
  height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 40%, #1a5cff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
}
.page-banner .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(26,92,255,.4);
}
.page-banner p {
  font-size: 1.05rem;
  opacity: .75;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  opacity: .6;
  letter-spacing: 1px;
}
.breadcrumb a { color: #fff; transition: opacity .3s; }
.breadcrumb a:hover { opacity: 1; }

/* ---- Banner ---- */
.rczp-banner {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 35%, #1a5cff 70%, #00d4ff 100%);
}
.rczp-banner-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.rczp-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.rczp-bg-circle.c1 { width: 400px; height: 400px; right: -100px; top: -120px; }
.rczp-bg-circle.c2 { width: 200px; height: 200px; left: 10%; bottom: -60px; }
.rczp-bg-circle.c3 { width: 120px; height: 120px; right: 20%; top: 40%; background: rgba(0,212,255,.06); }

.rczp-bg-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.rczp-bg-line.l1 { width: 60%; left: 20%; top: 30%; animation: rczpLineMove 8s ease-in-out infinite; }
.rczp-bg-line.l2 { width: 40%; left: 50%; top: 65%; animation: rczpLineMove 10s ease-in-out infinite 3s; }

@keyframes rczpLineMove {
  0% { transform: translateX(-30%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(30%); opacity: 0; }
}

.rczp-bg-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,212,255,.5);
  box-shadow: 0 0 12px rgba(0,212,255,.3);
  animation: rczpDotPulse 3s ease-in-out infinite;
}
.rczp-bg-dot.d1 { left: 15%; top: 25%; animation-delay: 0s; }
.rczp-bg-dot.d2 { left: 70%; top: 15%; animation-delay: .8s; }
.rczp-bg-dot.d3 { left: 45%; top: 55%; animation-delay: 1.6s; }
.rczp-bg-dot.d4 { left: 85%; top: 50%; animation-delay: .4s; }
.rczp-bg-dot.d5 { left: 25%; top: 70%; animation-delay: 1.2s; }
.rczp-bg-dot.d6 { left: 60%; top: 80%; animation-delay: 2s; }

@keyframes rczpDotPulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(2); }
}

/* ---- 通用Section ---- */
.rczp-section { padding: 80px 0; }
.rczp-section:nth-child(even) { background: #f8fafc; }

/* ---- Section Title ---- */
.section-title { text-align: center; margin-bottom: 56px; }
.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--c-dark);
  margin-top: 6px;
}
.sec-sub {
  font-size: .95rem;
  color: var(--c-text-light);
  margin-top: 10px;
}

/* ---- 为什么选择网翼 ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 6px 28px rgba(26,92,255,.07);
  border: 1px solid rgba(26,92,255,.05);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-primary), #00d4ff);
  opacity: 0;
  transition: opacity .4s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,92,255,.16);
}
.why-card:hover::before { opacity: 1; }
.why-icon { font-size: 2.4rem; margin-bottom: 16px; }
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .9rem;
  color: var(--c-text-light);
  line-height: 1.75;
}

/* ---- 员工福利 ---- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-item {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,92,255,.06);
  border: 1px solid rgba(26,92,255,.04);
  transition: all .35s;
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26,92,255,.12);
  border-color: rgba(26,92,255,.12);
}
.benefit-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,92,255,.08), rgba(0,212,255,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  transition: all .35s;
}
.benefit-item:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, var(--c-primary), #00d4ff);
  transform: scale(1.08);
}
.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 8px;
}
.benefit-item p {
  font-size: .84rem;
  color: var(--c-text-light);
  line-height: 1.65;
}

/* ---- 热招职位 ---- */
.jobs-list { display: flex; flex-direction: column; gap: 24px; }
.job-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,92,255,.06);
  border: 1px solid rgba(26,92,255,.05);
  transition: all .35s;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,92,255,.14);
  border-color: rgba(26,92,255,.12);
}
.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.job-left h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job-tag {
  font-size: .78rem;
  padding: 4px 14px;
  border-radius: 999px;
  background: #f0f5ff;
  color: var(--c-text-light);
  font-weight: 500;
}
.job-tag.location { background: #fef3e2; color: #b86b0a; }
.job-tag.exp { background: #e8f8f0; color: #0a8a5c; }
.job-tag.edu { background: #f0e8ff; color: #6b3fc8; }
.job-salary {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-primary);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
}
.job-body {
  padding: 20px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.job-body.single-column {
  grid-template-columns: minmax(0, 1fr);
}
.job-body.single-column .job-desc {
  min-width: 0;
}
.job-block h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--c-primary);
}
.job-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-block li {
  font-size: .88rem;
  color: var(--c-text-light);
  line-height: 1.75;
  padding: 4px 0 4px 18px;
  position: relative;
}
.job-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
  opacity: .45;
}
.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: #fafbff;
  border-top: 1px solid rgba(0,0,0,.03);
}
.job-dept {
  font-size: .85rem;
  color: var(--c-text-dim);
}
.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  padding: 8px 24px;
  border: 2px solid var(--c-primary);
  border-radius: 999px;
  transition: all .3s;
}
.job-apply-btn:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateX(4px);
}

/* ---- 招聘流程 ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26,92,255,.06);
  border: 1px solid rgba(26,92,255,.05);
  position: relative;
  transition: all .35s;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(26,92,255,.14);
  border-color: var(--c-primary);
}
.step-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(26,92,255,.08);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: .82rem;
  color: var(--c-text-light);
  line-height: 1.65;
}
.step-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-primary);
  opacity: .3;
  align-self: center;
  padding: 0 8px;
  margin-top: 60px;
}

/* ---- 底部CTA ---- */
.rczp-cta {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #1a5cff 100%);
  padding: 90px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rczp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-content > p {
  font-size: 1rem;
  opacity: .8;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.cta-contact-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  flex-shrink: 0;
}
.cta-contact-item strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 2px;
}
.cta-contact-item p {
  font-size: .95rem;
  opacity: .85;
  margin: 0;
}
.cta-big-btn {
  font-size: 1.05rem;
  padding: 16px 48px;
  border-radius: 999px;
}

/* ---- 动画 ---- */
.animate-in {
  animation: fadeUp .7s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .job-body { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; gap: 16px; }
  .step-arrow { display: none; }
  .process-step { max-width: calc(50% - 8px); flex: none; }
}

@media (max-width: 768px) {
  .page-banner { height: 360px; margin-top: calc(var(--header-h) + var(--topbar-h)); }
  .page-banner h1 { font-size: 1.8rem; }
  .rczp-section { padding: 50px 0; }
  .why-grid,
  .benefit-grid { grid-template-columns: 1fr; }
  .process-step { max-width: 100%; }
  .job-header { flex-direction: column; align-items: flex-start; gap: 10px; padding: 22px 20px 16px; }
  .job-salary { margin-left: 0; }
  .job-body { padding: 16px 20px; }
  .job-footer { padding: 14px 20px; flex-direction: column; gap: 10px; align-items: flex-start; }
  .cta-contact-row { flex-direction: column; align-items: center; gap: 20px; }
  .rczp-cta { padding: 60px 0; }
}


/* 职位标题链接 */
.job-title-link { color: #1e293b; text-decoration: none; transition: color .2s; }
.job-title-link:hover { color: var(--c-primary); }
