/**
 * 登录官网样式
 */

.home-page {
  --home-primary: #1677ff;
  --home-primary-dark: #0958d9;
  --home-primary-light: #e6f4ff;
  --home-text: rgba(0, 0, 0, 0.88);
  --home-text-secondary: rgba(0, 0, 0, 0.65);
  --home-text-muted: rgba(0, 0, 0, 0.45);
  --home-radius: 12px;
  --home-shadow: 0 8px 28px rgba(22, 119, 255, 0.1);
  --home-shadow-hover: 0 12px 36px rgba(22, 119, 255, 0.16);

  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #f5f7fb;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  text-align: left;
  color: var(--home-text);
  -webkit-font-smoothing: antialiased;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page .home-container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-page .ant-spin-nested-loading,
.home-page .ant-spin-nested-loading > .ant-spin-container {
  height: auto !important;
  min-height: 0 !important;
}

.home-page label:not(.ant-checkbox-wrapper):not(.ant-radio-wrapper) {
  display: block;
  margin: 0;
  color: var(--home-text-secondary) !important;
}

.home-page .ant-input {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border-radius: 8px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-page .ant-input:focus,
.home-page .ant-input:hover {
  border-color: var(--home-primary) !important;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.12) !important;
}

.home-page .ant-btn {
  width: auto !important;
  height: auto !important;
  font-size: 14px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

.home-page .ant-btn-lg {
  height: 40px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
  font-weight: 600 !important;
  margin-top: 0;
  letter-spacing: 0.02em;
}

.home-page h2 {
  font-size: 28px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  color: var(--home-text) !important;
}

.home-page h3 {
  font-size: 18px !important;
  text-align: center !important;
  color: var(--home-text) !important;
}

/* ---------- 顶栏 ---------- */
.home-page .home-page-header-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(22, 119, 255, 0.04);
}

.home-page .home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  min-height: 68px;
  padding: 12px 0;
}

.home-page .home-header-brand a {
  font-size: 22px;
  font-weight: 700;
  color: var(--home-primary) !important;
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.home-page .home-header-tagline {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--home-text-muted) !important;
  line-height: 1.4;
}

.home-page .home-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 4px;
}

.home-page .home-header-nav a {
  color: var(--home-text-secondary) !important;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.home-page .home-header-nav a:hover {
  color: var(--home-primary) !important;
  background: var(--home-primary-light);
}

.home-page .home-header-nav a.home-nav-login {
  color: #fff !important;
  background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
  font-weight: 500;
  margin-left: 4px;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.35);
}

.home-page .home-header-nav a.home-nav-login:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #4096ff 0%, var(--home-primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.4);
}

/* ---------- 首屏 ---------- */
.home-page .home-hero-block {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 35%, #f8fafc 70%, #ffffff 100%);
  overflow: hidden;
}

.home-page .home-hero-block::before,
.home-page .home-hero-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home-page .home-hero-block::before {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.12) 0%, transparent 70%);
}

.home-page .home-hero-block::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(22, 119, 255, 0.08) 0%, transparent 70%);
}

.home-page .home-hero-block .home-container {
  position: relative;
  z-index: 1;
}

/* 首屏：flex 两栏，左侧自适应、右侧固定宽度；等高 stretch */
.home-page .home-hero-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 40px;
}

.home-page .home-hero-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-page .home-hero-aside {
  flex: 0 0 400px;
  width: 400px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.home-page .home-hero-copy {
  width: 100%;
  padding-right: 0;
}

.home-page .home-hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  color: var(--home-primary-dark);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(22, 119, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.08);
}

.home-page .home-hero-title {
  margin: 0 0 16px !important;
  font-size: 36px !important;
  line-height: 1.3 !important;
  text-align: left !important;
  color: var(--home-text) !important;
}

.home-page .home-hero-title em {
  font-style: normal;
  color: var(--home-primary);
}

.home-page .home-hero-subtitle {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left !important;
  color: var(--home-text-secondary) !important;
}

.home-page .home-hero-tip {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.75;
  text-align: left !important;
  color: var(--home-text-muted) !important;
}

.home-page .home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(22, 119, 255, 0.1);
  border-bottom: 1px solid rgba(22, 119, 255, 0.1);
}

.home-page .home-hero-stat {
  flex: 1 1 120px;
  min-width: 100px;
}

.home-page .home-hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--home-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.home-page .home-hero-stat-icon {
  display: block;
  font-size: 20px;
  color: var(--home-primary);
  margin-bottom: 6px;
  opacity: 0.85;
}

.home-page .home-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.home-page .home-trust-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--home-primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 16px;
}

.home-page .home-hero-links .ant-btn .anticon {
  margin-right: 6px;
}

.home-page .home-hero-stat span {
  font-size: 13px;
  color: var(--home-text-muted);
}

.home-page .home-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .home-hero-links .home-hero-btn {
  min-width: 112px;
  border-radius: 8px !important;
}

.home-page .home-hero-links .home-hero-btn--ghost {
  background: #fff !important;
  border-color: #d9d9d9 !important;
  color: var(--home-text-secondary) !important;
}

.home-page .home-hero-links .home-hero-btn--ghost:hover {
  color: var(--home-primary) !important;
  border-color: var(--home-primary) !important;
}

/* 登录区：撑满右侧栏高度，与左侧对齐 */
.home-page .home-login-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 8px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(22, 119, 255, 0.15) 0%, rgba(22, 119, 255, 0.05) 100%);
  box-shadow: var(--home-shadow);
}

.home-page .home-login-container::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background-image: url('/static/images/login-panel-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.home-page .home-login-container::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 100%);
  z-index: 1;
}

.home-page .home-login-container > * {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-page .home-login-panel {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 24px 26px 22px;
  border: none;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.home-page .home-login-panel .ant-spin-nested-loading,
.home-page .home-login-panel .ant-spin-container {
  width: 100% !important;
  display: block !important;
}

.home-page .home-login-panel-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--home-primary);
  background: var(--home-primary-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(22, 119, 255, 0.12);
}

.home-page .home-login-panel-title {
  margin: 0 0 6px !important;
  font-size: 20px !important;
  text-align: center !important;
  color: var(--home-text) !important;
}

.home-page .home-login-panel-desc {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: var(--home-text-muted) !important;
}

/* 输入框 - antd 5 */
.home-page .home-login-panel .ant-input-affix-wrapper {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 11px !important;
  font-size: 14px !important;
  background: #ffffff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper-lg,
.home-page .home-login-panel .ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 11px !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper .ant-input,
.home-page .home-login-panel .ant-input-affix-wrapper-lg .ant-input {
  width: 100% !important;
  max-width: none !important;
  height: 34px !important;
  min-height: 34px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 0 !important;
  color: rgba(0, 0, 0, 0.88) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper .ant-input::placeholder,
.home-page .home-login-panel .ant-input-affix-wrapper-lg .ant-input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper .ant-input:focus,
.home-page .home-login-panel .ant-input-affix-wrapper-lg .ant-input:focus {
  box-shadow: none !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper:hover,
.home-page .home-login-panel .ant-input-affix-wrapper-lg:hover {
  border-color: #595959 !important;
  background: #ffffff !important;
}

.home-page .home-login-panel .ant-input-affix-wrapper-focused,
.home-page .home-login-panel .ant-input-affix-wrapper:focus,
.home-page .home-login-panel .ant-input-affix-wrapper-lg:focus,
.home-page .home-login-panel .ant-input-affix-wrapper-lg-focused {
  border-color: var(--home-primary) !important;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.2) !important;
  background: #ffffff !important;
}

.home-page .home-login-panel .ant-input-prefix {
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
  margin-inline-end: 8px;
}

.home-page .home-login-panel .ant-input-prefix .anticon {
  font-size: 14px !important;
}

.home-page .home-login-panel input.ant-input {
  width: 100% !important;
  max-width: none !important;
}

.home-page .home-login-field-gap {
  height: 12px;
}

.home-page .home-login-submit.ant-btn {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 36px !important;
  margin-top: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%) !important;
  box-shadow: 0 4px 14px rgba(22, 119, 255, 0.35) !important;
}

.home-page .home-login-submit.ant-btn:hover {
  background: linear-gradient(135deg, #4096ff 0%, var(--home-primary) 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 119, 255, 0.4) !important;
}

.home-page .home-login-extra {
  margin-top: 14px;
  text-align: center;
}

.home-page .home-login-extra .ant-checkbox-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--home-text-secondary) !important;
  font-size: 13px;
  line-height: 1.5;
}

.home-page .home-login-extra .ant-checkbox + span {
  padding-inline-start: 8px;
}

/* ---------- 内容区块 ---------- */
.home-page .home-section {
  display: block;
  width: 100%;
  padding: 64px 0;
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
}

.home-page .home-section--white {
  background: #fff;
}

.home-page .home-section--gray {
  background: #f5f7fb;
}

.home-page .home-section-title {
  position: relative;
}

.home-page .home-section-subtitle {
  margin: 8px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--home-text-muted) !important;
  line-height: 1.6;
}

.home-page .home-section-line {
  display: block;
  width: 56px;
  height: 4px;
  margin: 14px auto 36px;
  background: linear-gradient(90deg, var(--home-primary) 0%, #69b1ff 100%);
  border-radius: 4px;
}

.home-page .home-section-desc {
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--home-text-secondary) !important;
  background: var(--home-primary-light);
  border-radius: var(--home-radius);
  border-left: 4px solid var(--home-primary);
}

.home-page .home-intro-text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.75) !important;
}

.home-page .home-intro-lead {
  max-width: 960px;
  margin: 0 auto 8px;
}

.home-page .home-intro-cards {
  margin-top: 8px;
}

.home-page .home-intro-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: var(--home-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.home-page .home-intro-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--home-primary), #69b1ff);
}

.home-page .home-intro-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--home-primary);
  background: var(--home-primary-light);
  border-radius: 10px;
}

.home-page .home-intro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
}

.home-page .home-intro-card .ant-card-body {
  padding: 20px !important;
}

.home-page .home-intro-card-value {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--home-text) !important;
  line-height: 1.5;
}

/* 平台优势 */
.home-page .home-advantage-card {
  height: 100%;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: var(--home-radius);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .home-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
}

.home-page .home-advantage-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-primary), #4096ff);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.25);
}

.home-page .home-advantage-card h3 {
  margin: 0 0 10px !important;
  font-size: 17px !important;
}

.home-page .home-advantage-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-text-secondary) !important;
}

/* 适用场景 */
.home-page .home-scenario-card {
  height: 100%;
  padding: 24px 18px;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid #eef0f4;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s;
}

.home-page .home-scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 119, 255, 0.35);
  box-shadow: var(--home-shadow);
}

.home-page .home-scenario-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--home-primary);
  background: var(--home-primary-light);
  border-radius: 50%;
}

.home-page .home-scenario-card h3 {
  margin: 0 0 10px !important;
  font-size: 16px !important;
}

.home-page .home-scenario-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--home-text-secondary) !important;
  text-align: left;
}

/* 核心功能 */
.home-page .home-feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.home-page .home-feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--home-primary);
  background: var(--home-primary-light);
  border-radius: 12px;
}

.home-page .home-feature-index {
  font-size: 28px;
  font-weight: 700;
  color: rgba(22, 119, 255, 0.15);
  line-height: 1;
}

.home-page .home-feature-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.home-page .home-feature-tags .ant-tag {
  margin: 0;
  border-radius: 4px;
}
.home-page .home-feature-card {
  height: 100%;
  padding: 28px 20px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: var(--home-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.home-page .home-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 119, 255, 0.2);
  box-shadow: var(--home-shadow-hover);
}

.home-page .home-feature-item .home-feature-img {
  height: 160px;
  margin-bottom: 20px;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

.home-page .home-feature-card:hover .home-feature-img {
  transform: scale(1.03);
}

.home-page .home-feature-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--home-text-secondary) !important;
}

/* 表格 */
.home-page .home-modules-table {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.home-page .home-modules-table .ant-table-thead > tr > th {
  background: linear-gradient(180deg, #f0f5ff 0%, #e6f4ff 100%) !important;
  color: var(--home-text) !important;
  font-weight: 600 !important;
}

/* 微信服务卡片 */
.home-page .home-wechat-card {
  height: 100%;
  text-align: left;
  border-radius: var(--home-radius) !important;
  border-top: 3px solid var(--home-primary) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page .home-wechat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow) !important;
}

.home-page .home-wechat-card .ant-card-head {
  border-bottom-color: #f0f0f0 !important;
}

.home-page .home-wechat-card .ant-card-head-title {
  font-weight: 600 !important;
  color: var(--home-text) !important;
}

.home-page .home-wechat-card-title .anticon {
  margin-right: 8px;
  color: var(--home-primary);
}

.home-page .home-wechat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.75) !important;
}

.home-page .home-wechat-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.home-page .home-wechat-check {
  color: #52c41a;
  margin-top: 4px;
  flex-shrink: 0;
}

/* 流程 */
.home-page .home-process-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 20px;
  background: #fff;
  border-radius: var(--home-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.home-page .home-process-wrap .ant-steps-item-title {
  font-weight: 600 !important;
}

/* 关于我们 */
.home-page .home-process-wrap .ant-steps-item-title {
  font-weight: 600 !important;
}

/* FAQ */
.home-page .home-faq-collapse {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid #eef0f4;
  overflow: hidden;
}

.home-page .home-faq-collapse .ant-collapse-item {
  border-bottom: 1px solid #f0f0f0 !important;
}

.home-page .home-faq-collapse .ant-collapse-header {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--home-text) !important;
  padding: 16px 20px !important;
}

.home-page .home-faq-answer {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--home-text-secondary) !important;
}

/* CTA 横幅 */
.home-page .home-cta-banner {
  padding: 48px 0;
  background: linear-gradient(135deg, #1677ff 0%, #0958d9 50%, #003eb3 100%);
}

.home-page .home-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-page .home-cta-text h2 {
  margin: 0 0 8px !important;
  font-size: 26px !important;
  text-align: left !important;
  color: #fff !important;
}

.home-page .home-cta-text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85) !important;
}

.home-page .home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-page .home-cta-actions .ant-btn-primary {
  height: 44px !important;
  padding: 0 24px !important;
  background: #fff !important;
  color: var(--home-primary) !important;
  border: none !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.home-page .home-cta-actions .home-cta-btn-ghost {
  height: 44px !important;
  color: #fff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
}

.home-page .home-cta-actions .home-cta-btn-ghost:hover {
  color: #fff !important;
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.home-page .home-about-block {
  text-align: left;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid #eef0f4;
  height: 100%;
}

.home-page .home-about-block--accent {
  background: linear-gradient(160deg, #f0f7ff 0%, #fff 100%);
  border-color: rgba(22, 119, 255, 0.2);
}

.home-page .home-about-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.home-page .home-about-block-head .anticon {
  font-size: 22px;
  color: var(--home-primary);
}

.home-page .home-about-block-head h4 {
  margin: 0 !important;
  color: var(--home-primary) !important;
}

.home-page .home-about-icon {
  margin-right: 8px;
  color: var(--home-primary);
  opacity: 0.75;
}

.home-page .home-legal-block {
  text-align: left;
}

.home-page .home-legal-block .ant-typography {
  color: rgba(0, 0, 0, 0.75) !important;
}

.home-page .home-legal-block .ant-typography h4 {
  color: var(--home-text) !important;
}

/* 页脚 */
.home-page .home-footer-brand {
  margin-bottom: 16px;
}

.home-page .home-footer-brand strong {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.home-page .home-footer-brand span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.home-page .home-site-footer {
  padding: 32px 16px 40px;
  text-align: center;
  background: linear-gradient(180deg, #0d1a2d 0%, #001529 100%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.85;
}

.home-page .home-site-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65) !important;
}

.home-page .home-site-footer a {
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.home-page .home-site-footer a:hover {
  color: #69b1ff !important;
}

.home-page .home-site-footer-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

/* 旧版残留 */
.home-page .home-layout-wrapper,
.home-page .home-func-wrapper,
.home-page .home-banner,
.home-page .line {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  float: none !important;
}

.home-page .line {
  display: none !important;
}

@media (min-width: 992px) {
  .home-page .home-hero-layout {
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .home-page .home-hero-aside {
    min-height: 100%;
  }
}

@media (max-width: 991px) {
  .home-page .home-hero-layout {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 28px;
  }

  .home-page .home-hero-aside {
    flex: 1 1 auto;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
  }

  .home-page .home-login-container {
    min-height: auto;
    flex: none;
  }
  .home-page .home-hero-block {
    padding: 36px 0 44px;
  }

  .home-page .home-hero-title {
    font-size: 28px !important;
  }

  .home-page .home-hero-copy {
    margin-bottom: 0;
  }

  .home-page .home-login-container {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .home-page .home-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-page .home-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .home-header-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .home-page .home-hero-title {
    font-size: 24px !important;
  }

  .home-page .home-hero-stats {
    gap: 16px;
  }

  .home-page .home-section {
    padding: 44px 0;
  }

  .home-page .home-login-panel {
    padding: 36px 28px 32px;
    min-width: 0;
  }

  .home-page .home-login-container {
    min-width: 0;
    width: 100%;
  }
}
