/* 生态合作子页：独立板式，色调沿用品牌蓝紫 */

.page-pt {
  --ink: #17233d;
  --muted: #657180;
  --line: #e6ebf4;
  --soft: #f6f7fb;
  --brand: #4348ff;
  background: #fff;
}

.pt-wrap {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

/* ===== 首屏：与首页同一浅紫底，顶栏连成一片 ===== */
.pt-hero {
  margin-top: 80px;
  padding: 48px 0 56px;
  background: rgba(214, 222, 254, 1);
  overflow: hidden;
}
.pt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.pt-hero-title {
  margin-bottom: 16px;
}
.pt-hero-title h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: 0;
}
.pt-hero-title h1:first-child {
  background: linear-gradient(
    340deg,
    rgb(183, 91, 255) 39.59%,
    rgb(0, 56, 255) 111.56%,
    rgb(0, 255, 224) 111.56%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pt-hero-title h1:last-child {
  background: linear-gradient(
    198deg,
    rgb(183, 91, 255) -7.41%,
    rgb(0, 56, 255) 105.56%,
    rgb(0, 255, 224) 111.56%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pt-hero-desc {
  max-width: 520px;
  color: rgb(51, 51, 51);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 28px;
}
.pt-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 33px;
  border-radius: 48px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(111deg, #3f43ff 0%, #7b5bff 52%, #b65bff 100%);
  box-shadow: 0 10px 24px rgba(63, 67, 255, 0.28);
}
.pt-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(63, 67, 255, 0.36);
}
.pt-ghost { color: #4348ff; font-size: 15px; font-weight: 500; }
.pt-hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #657180;
  font-size: 13px;
}
.pt-hero-marks span { display: inline-flex; align-items: center; gap: 6px; }
.pt-hero-marks span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b7bff;
}

.pt-paths {
  display: grid;
  gap: 12px;
}
.pt-path {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(67, 72, 255, 0.08);
}
.pt-path b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #4348ff;
}
.pt-path strong {
  display: block;
  margin-top: 8px;
  color: #17233d;
  font-size: 22px;
  font-weight: 600;
}
.pt-path p {
  margin-top: 8px;
  color: #657180;
  font-size: 14px;
  line-height: 23px;
}

/* ===== 锚点条 ===== */
.pt-jump {
  position: sticky;
  top: 80px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.pt-jump-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}
.pt-jump a {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.pt-jump a.is-on,
.pt-jump a:hover {
  color: var(--brand);
  background: #eef0ff;
}

/* ===== 通用区块 ===== */
.pt-sec { padding: 92px 0; scroll-margin-top: 112px; }
.pt-sec.is-white { background: #fff; }
.pt-sec.is-soft { background: var(--soft); }
.pt-sec.is-ink {
  color: #fff;
  background:
    radial-gradient(700px 360px at 88% 8%, rgba(123, 91, 255, 0.3), transparent 55%),
    linear-gradient(180deg, #141b36 0%, #1c1740 100%);
}
.pt-head { max-width: 860px; margin-bottom: 40px; }
.pt-label {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.pt-sec.is-ink .pt-label { color: #c4b5fd; }
.pt-head h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.28;
}
.pt-sec.is-ink .pt-head h2 { color: #fff; }
.pt-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}
.pt-sec.is-ink .pt-head p { color: rgba(255, 255, 255, 0.72); }

/* ===== 三种合作 ===== */
.way-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.way {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(63, 67, 255, 0.05);
}
.way.is-hit {
  color: #fff;
  background: linear-gradient(160deg, #2a2f8f 0%, #4348ff 48%, #9a55ff 100%);
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(67, 72, 255, 0.24);
}
.way .way-no {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.way.is-hit .way-no { color: #c4b5fd; }
.way h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
}
.way.is-hit h3 { color: #fff; }
.way > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 26px;
}
.way.is-hit > p { color: rgba(255, 255, 255, 0.82); }
.way ul {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.way li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 22px;
}
.way.is-hit li { color: #fff; }
.way li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b5bff;
}
.way.is-hit li::before { background: #fff; }

/* ===== 伙伴后台 ===== */
.dash-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.dash {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-bar strong { font-size: 15px; }
.dash-bar span { color: #baffdf; font-size: 12px; font-weight: 600; }
.dash-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.dash-nums article {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.dash-nums b {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.dash-nums i {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-style: normal;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
}
.dash-row em { font-style: normal; color: rgba(255, 255, 255, 0.55); }
.dash-side { display: grid; gap: 16px; }
.dash-side h3 { font-size: 22px; font-weight: 600; }
.dash-side p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 26px;
}
.dash-side ul { display: grid; gap: 10px; }
.dash-side li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 22px;
}
.dash-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b5fd;
}

/* ===== 五项扶持总览 ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.offer {
  padding: 24px 18px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.offer .of-no {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.offer h3 { margin-top: 10px; color: var(--ink); font-size: 18px; font-weight: 600; }
.offer p { margin-top: 8px; color: var(--muted); font-size: 13.5px; line-height: 22px; }

/* ===== 客资扶持 ===== */
.lead-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-points article {
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.lead-points h3 { color: var(--ink); font-size: 18px; font-weight: 600; }
.lead-points p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 23px; }

/* ===== 产品库 ===== */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.supply {
  padding: 24px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.supply b { color: var(--brand); font-size: 13px; font-weight: 600; }
.supply h3 { margin-top: 8px; color: var(--ink); font-size: 18px; font-weight: 600; }
.supply p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 23px; }
.catalog {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.catalog span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.supply-note {
  margin-top: 20px;
  padding: 22px 26px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(111deg, rgba(67, 72, 255, 0.08), rgba(182, 91, 255, 0.08));
  border: 1px solid var(--line);
}
.supply-note strong { color: var(--ink); font-size: 20px; font-weight: 600; }
.supply-note span { color: var(--muted); font-size: 15px; line-height: 24px; }

/* ===== 培训 / 售后 / 日常运营 ===== */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ops {
  padding: 30px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.ops .ops-no {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.ops h3 { margin-top: 10px; color: var(--ink); font-size: 22px; font-weight: 600; }
.ops > p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 24px; }
.ops ul { margin-top: 16px; display: grid; gap: 8px; }
.ops li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 22px;
}
.ops li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b5bff;
}

.pt-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 38px 42px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(111deg, #3f43ff 0%, #7b5bff 52%, #b65bff 100%);
}
.pt-end h2 { font-size: 28px; font-weight: 600; }
.pt-end p { margin-top: 8px; color: rgba(255, 255, 255, 0.86); font-size: 15px; }
.pt-end .pt-cta { background: #fff; color: #4348ff; box-shadow: none; }

@media (max-width: 1200px) {
  .pt-wrap { width: 960px; }
}

@media (max-width: 980px) {
  .page-pt .btn-login { display: none; }
  .page-pt .btn-trial { width: 88px; margin-left: 8px; }
  .pt-hero { min-height: auto; padding: 40px 0 52px; }
  .pt-hero-grid,
  .way-grid,
  .offer-grid,
  .lead-points,
  .dash-grid,
  .dash-nums,
  .supply-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }
  .pt-hero-actions { flex-wrap: wrap; }
  .pt-head h2 { font-size: 27px; }
  .pt-sec { padding: 56px 0; }
  .pt-end { flex-direction: column; align-items: flex-start; padding: 28px 22px; }
  .page-pt .site-header.is-open .nav { top: 80px; }
  .pt-hero-title h1 { font-size: 34px; line-height: 46px; }
}
