@charset "UTF-8";

/* 商家入驻 - 淡紫主色，紫色仅作点缀 */
.sj-page {
  --accent: #7c6cf0;
  --accent-hover: #6b5ce7;
  --lavender: #f4f2fa;
  --lavender-deep: #ebe8f4;
  --text: #2d2a3a;
  --text-secondary: #5c5a6a;
  --text-muted: #8e8c9a;
  --border: #e8e6ef;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(45, 42, 58, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 42, 58, 0.08);
  --r: 16px;
  margin-top: -8px;
  background: #f9f8fc;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  padding-bottom: 56px;
}

/* ========== 顶部欢迎（无轮播） ========== */
.sj-hero {
  padding: 32px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.sj-hero-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.sj-hero-main {
  padding: 36px 40px 40px;
  border-right: 1px solid var(--border);
}

.sj-hero-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--lavender);
  border-radius: 6px;
  margin-bottom: 16px;
}

.sj-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.35;
}

.sj-hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 22px;
}

.sj-hero-desc strong {
  color: var(--accent);
  font-weight: 600;
}

.sj-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.sj-hero-list li {
  position: relative;
  padding: 8px 0 8px 16px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.sj-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.sj-hero-list em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.sj-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.sj-btn-primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(124, 108, 240, 0.35);
}

.sj-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #fff !important;
}

.sj-btn-secondary {
  background: var(--white);
  color: var(--text) !important;
  border: 1px solid var(--border);
}

.sj-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: var(--lavender);
}

.sj-btn-disabled {
  background: #ececf0;
  color: #a8a6b3 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.sj-hero-aside {
  padding: 28px 24px;
  background: var(--lavender);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.sj-hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.sj-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.sj-stat-icon--1 { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.sj-stat-icon--2 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.sj-stat-icon--3 { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.sj-hero-stat b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.sj-hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== 优势 ========== */
.sj-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.sj-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: 0.2s;
}

.sj-feat:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sj-feat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sj-feat-icon svg {
  width: 24px;
  height: 24px;
}

.sj-feat-icon--a { background: #fef9e7; }
.sj-feat-icon--a svg { fill: #d97706; }
.sj-feat-icon--b { background: #eff6ff; }
.sj-feat-icon--b svg { fill: #2563eb; }
.sj-feat-icon--c { background: #ecfdf5; }
.sj-feat-icon--c svg { fill: #059669; }
.sj-feat-icon--d { background: #fdf2f8; }
.sj-feat-icon--d svg { fill: #db2777; }

.sj-feat h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.sj-feat p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ========== 提示 ========== */
.sj-notice {
  padding: 24px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.sj-notice-box {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.sj-notice-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.sj-notice-box strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.sj-notice-box p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin: 0;
}

/* ========== 内容块 ========== */
.sj-body {
  padding: 28px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.sj-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}

.sj-block-hd {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--border);
  background: #fcfbfe;
}

.sj-block-hd h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.sj-block-hd p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ========== 丰富步骤条 ========== */
.sj-flow {
  padding: 28px 20px 32px;
  position: relative;
}

.sj-flow-progress {
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--lavender-deep);
  border-radius: 4px;
  z-index: 0;
}

.sj-flow-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--accent), #a99bf5);
  border-radius: 4px;
}

.sj-flow-list {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sj-flow-item {
  flex: 1;
  min-width: 0;
}

.sj-flow-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px 18px;
  text-align: center;
  transition: all 0.25s;
  height: 100%;
  box-sizing: border-box;
}

.sj-flow-card:hover {
  border-color: #d4d0e8;
  box-shadow: 0 12px 28px rgba(45, 42, 58, 0.1);
  transform: translateY(-4px);
}

.sj-flow-no {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--lavender);
  padding: 2px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.sj-flow-icon {
  width: 56px;
  height: 56px;
  margin: 8px auto 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sj-flow-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.sj-flow-icon--1 { background: linear-gradient(145deg, #6366f1, #818cf8); }
.sj-flow-icon--2 { background: linear-gradient(145deg, #0ea5e9, #38bdf8); }
.sj-flow-icon--3 { background: linear-gradient(145deg, #10b981, #34d399); }
.sj-flow-icon--4 { background: linear-gradient(145deg, #f59e0b, #fbbf24); }
.sj-flow-icon--5 { background: linear-gradient(145deg, var(--accent), #a99bf5); }

.sj-flow-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.4;
}

.sj-flow-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ========== 入驻指南：内容左 + 导航右 ========== */
.sj-guide-wrap {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 320px;
}

.sj-guide-body {
  flex: 1;
  order: 1;
  padding: 24px 28px 32px !important;
  border: none !important;
  width: auto !important;
  margin: 0 !important;
  min-height: 280px;
  overflow: auto;
  background: var(--white);
}

.sj-guide-body .wst-tab-item {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.sj-guide-body .wst-tab-item img {
  max-width: 100%;
  height: auto;
}

.sj-guide-body table {
  width: 100%;
  border-collapse: collapse;
}

.sj-guide-nav {
  order: 2;
  flex-shrink: 0;
  width: 200px;
  margin: 0 !important;
  padding: 16px 0 !important;
  float: none !important;
  height: auto !important;
  border: none !important;
  border-left: 1px solid var(--border) !important;
  background: #faf9fd !important;
  display: flex !important;
  flex-direction: column !important;
}

.sj-guide-nav li {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 14px 20px !important;
  text-align: left !important;
  font-size: 13px !important;
  color: var(--text-secondary) !important;
  border: none !important;
  border-left: 3px solid transparent !important;
  border-bottom: 1px solid var(--border) !important;
  line-height: 1.5 !important;
  cursor: pointer;
  transition: 0.2s;
  white-space: normal;
  word-break: break-all;
}

.sj-guide-nav li:last-child {
  border-bottom: none !important;
}

.sj-guide-nav li:hover {
  color: var(--accent) !important;
  background: var(--lavender) !important;
}

.sj-guide-nav li.on {
  color: var(--accent) !important;
  font-weight: 600 !important;
  background: var(--white) !important;
  border-left-color: var(--accent) !important;
  border-top: none !important;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
  .sj-hero-card {
    grid-template-columns: 1fr;
  }

  .sj-hero-main {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sj-hero-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sj-hero-stat {
    flex: 1;
    min-width: 140px;
  }

  .sj-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .sj-flow-progress {
    display: none;
  }

  .sj-flow-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sj-flow-item {
    flex: 0 0 calc(33.33% - 12px);
  }

  .sj-guide-wrap {
    flex-direction: column-reverse;
  }

  .sj-guide-nav {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    border-left: none !important;
    border-top: 1px solid var(--border) !important;
    padding: 0 !important;
  }

  .sj-guide-nav li {
    flex: 1;
    min-width: 120px;
    text-align: center !important;
    border-left: none !important;
    border-bottom: none !important;
    border-top: 3px solid transparent !important;
  }

  .sj-guide-nav li.on {
    border-left: none !important;
    border-top-color: var(--accent) !important;
  }
}

@media (max-width: 600px) {
  .sj-features {
    grid-template-columns: 1fr;
  }

  .sj-flow-item {
    flex: 0 0 calc(50% - 10px);
  }

  .sj-hero-btns {
    flex-direction: column;
  }

  .sj-btn {
    width: 100%;
  }

  .sj-hero-aside {
    flex-direction: column;
  }
}
