/* ==================== 滴答清单浅色卡片风 ==================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 主色：克制的蓝 */
  --primary: #1677FF;
  --primary-2: #4A91FF;
  --primary-soft: #EAF2FF;
  --primary-deep: #0E5FCE;

  --accent: #7B3FE4;

  /* 文字三阶 */
  --text-1: #1A2333;
  --text-2: #4A5568;
  --text-3: #8B95A8;

  /* 背景：极淡蓝灰底 + 卡片纯白（关键差异） */
  --bg: #F4F6FA;
  --bg-card: #FFFFFF;
  --bg-soft: #FAFBFD;

  --border: #E8ECF2;
  --border-soft: #EFF2F7;

  /* 阴影：克制 */
  --shadow-card: 0 1px 0 rgba(0, 0, 0, 0.02), 0 1px 2px rgba(20, 30, 60, 0.04);
  --shadow-card-hover: 0 1px 0 rgba(0, 0, 0, 0.02), 0 12px 28px rgba(20, 30, 60, 0.08);
  --shadow-phone: 0 30px 70px -20px rgba(20, 30, 60, 0.18), 0 12px 24px rgba(20, 30, 60, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', Inter, system-ui, sans-serif;
  font-size: 16px;
  color: var(--text-1);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.i { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.15em; }

/* ==================== 顶部导航 ==================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 246, 250, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.nav__inner {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.nav__logo-img {
  width: 30px; height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}
.nav__logo-img img { width: 100%; height: 100%; display: block; }

.nav__menu {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--text-2);
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  padding: 4px 0;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--text-1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--text-1);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
}

/* ==================== Hero ==================== */
.hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-1);
}
.hero__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-2);
  margin: 0 auto 36px;
  max-width: 580px;
  line-height: 1.7;
}
.hero__actions {
  display: inline-flex; gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__visual {
  margin-top: clamp(40px, 6vw, 70px);
  position: relative;
  display: flex;
  justify-content: center;
}

/* 大手机展示框（375x812 mock 用 scale 适配） */
.hero__phone-wrap {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #1A1A1A;
  border-radius: 36px;
  box-shadow: var(--shadow-phone);
}
.hero__phone-wrap > div {
  width: 320px;
  height: 693px; /* 320 * 812/375 */
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
}
.hero__phone-wrap .app-mock {
  transform: scale(0.853); /* 320/375 */
  border-radius: 0;
}
@media (max-width: 600px) {
  .hero__phone-wrap > div {
    width: 260px;
    height: 563px;
  }
  .hero__phone-wrap .app-mock {
    transform: scale(0.693);
  }
}

/* ==================== 按钮 ==================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(22, 119, 255, 0.3), 0 4px 12px rgba(22, 119, 255, 0.25);
}
.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(22, 119, 255, 0.3), 0 8px 20px rgba(22, 119, 255, 0.35);
}
.btn--ghost {
  background: var(--bg-card);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--text-3);
}
.btn .i { width: 16px; height: 16px; }

/* ==================== Section 通用：白色大圆角卡片 ==================== */
.section {
  padding: clamp(40px, 5vw, 80px) 0;
}
.section--last { padding-bottom: clamp(60px, 8vw, 120px); }

.section-card {
  background: var(--bg-card);
  border-radius: clamp(20px, 2vw, 32px);
  padding: clamp(40px, 5vw, 80px) clamp(24px, 4vw, 64px);
  border: 1px solid var(--border-soft);
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-1);
}
.section-subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-2);
  line-height: 1.7;
}

/* ==================== Showcase（左文右图 / 右文左图）==================== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.showcase--reverse .showcase__visual { order: -1; }

.showcase__text { padding: clamp(0px, 1vw, 16px) 0; }
.showcase__text .section-title { margin-bottom: 16px; }
.showcase__text .section-subtitle { margin-bottom: 24px; max-width: 480px; }
.showcase__points { list-style: none; }
.showcase__points li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-1);
}
.showcase__points .i {
  color: var(--primary);
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 3px;
}

.showcase__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.showcase__phone {
  width: clamp(220px, 26vw, 280px);
  aspect-ratio: 280 / 606;
  background: #1A1A1A;
  border-radius: clamp(28px, 3vw, 36px);
  padding: 8px;
  box-shadow: var(--shadow-phone);
  position: relative;
}
.showcase__phone-screen {
  width: 100%; height: 100%;
  background: #F5F5F5;
  border-radius: clamp(20px, 2.4vw, 28px);
  overflow: hidden;
  position: relative;
}
.showcase__phone-screen .app-mock {
  transform: scale(0.704);  /* 264px / 375 ≈ 0.704（按最大宽度 280 - padding*2） */
  border-radius: 0;
}
@media (max-width: 1100px) {
  .showcase__phone-screen .app-mock {
    transform: scale(0.6);
  }
}
@media (max-width: 768px) {
  .showcase__phone-screen .app-mock {
    transform: scale(0.704);  /* 移动端下手机 wrap 重新变大 */
  }
}

/* 浮动标签（参考滴答的"和客户沟通方案"） */
.showcase__chip {
  position: absolute;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card-hover);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  white-space: nowrap;
  animation: chipFloat 5s ease-in-out infinite;
}
.showcase__chip .i { color: var(--primary); width: 16px; height: 16px; }
.showcase__chip--success .i { color: var(--primary); }
.showcase__chip--warning .i { color: #FF8F1F; }

.showcase__chip--tl { top: 8%; left: 0; }
.showcase__chip--br { bottom: 12%; right: 0; animation-delay: 2.5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 968px) {
  .showcase { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .showcase--reverse .showcase__visual { order: 0; }
  .showcase__text { display: flex; flex-direction: column; align-items: center; }
  .showcase__points { text-align: left; }
  .showcase__visual { min-height: auto; }
  .showcase__chip { display: none; }
}

/* ==================== 三步流程 ==================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 56px);
}
.step {
  background: var(--bg-soft);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
}
.step__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.step__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==================== 评价区 ==================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 56px);
}
.review {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  display: flex; flex-direction: column;
  gap: 14px;
}
.review__author {
  display: flex; align-items: center; gap: 10px;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1677FF, #7B3FE4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.review__name { font-size: 14px; font-weight: 500; color: var(--text-1); }
.review__role { font-size: 12px; color: var(--text-3); }
.review__quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .reviews { grid-template-columns: 1fr; }
}

/* ==================== 下载 CTA ==================== */
.cta {
  text-align: center;
  background: linear-gradient(180deg, #1A2440 0%, #0B0E16 100%);
  color: #fff;
  border-radius: clamp(20px, 2vw, 32px);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(22, 119, 255, 0.5), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.cta__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 36px;
}
.cta__cards {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto;
}
.cta__card {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  text-align: left;
  transition: all .2s;
}
.cta__card:not(.cta__card--disabled):hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.cta__card--disabled { opacity: 0.4; cursor: not-allowed; }
.cta__card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta__card-icon .i { width: 22px; height: 22px; color: #fff; }
.cta__card-text { flex: 1; }
.cta__card-title { font-size: 15px; font-weight: 600; }
.cta__card-meta { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }
.cta__hint {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* ==================== 页脚 ==================== */
.footer {
  background: var(--bg);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.footer__brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand-row span { font-weight: 600; font-size: 16px; }
.footer__slogan {
  color: var(--text-3);
  font-size: 13px;
  max-width: 280px;
  line-height: 1.7;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-1);
}
.footer__col a {
  display: block;
  color: var(--text-2);
  font-size: 13px;
  padding: 5px 0;
  transition: color .15s;
}
.footer__col a:hover { color: var(--primary); }
.footer__bottom {
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-3);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==================== 文档页 ==================== */
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 32px) clamp(60px, 8vw, 100px);
}
.doc__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.doc__meta {
  color: var(--text-3);
  font-size: 13px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.doc__body {
  font-size: 15px;
  line-height: 2;
  color: var(--text-1);
  white-space: pre-wrap;
  background: var(--bg-card);
  padding: clamp(24px, 4vw, 48px);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
}

@media (max-width: 768px) {
  .doc__body { font-size: 14px; line-height: 1.9; }
}


/* ==================== App 模拟器（HTML 重建 App 界面） ==================== */
/*
 * 设计说明：app-mock 用绝对宽高 375x812（iPhone 13 mini 的逻辑分辨率）
 * 通过外层容器 transform: scale 缩放到手机壳里，保证内容比例真实、文字清晰。
 */
.app-mock-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.app-mock {
  width: 375px;
  height: 812px;
  background: #F5F5F5;
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0; left: 0;
  transform-origin: top left;
  color: #1A1A1A;
  font-size: 13px;
  overflow: hidden;
}

/* 状态栏 */
.am-status {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
}
.am-status--dark { color: #1A1A1A; }
.am-status__icons {
  display: flex; gap: 4px; align-items: center;
}

/* 蓝色头部 */
.am-blue {
  background: linear-gradient(180deg, #1677FF 0%, #4A91FF 100%);
  color: #fff;
  padding: 60px 16px 40px;
  position: relative;
}
.am-blue__greet { font-size: 13px; opacity: .85; margin-bottom: 4px; }
.am-blue__title { font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.am-cov {
  display: flex; align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  padding: 10px 12px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.am-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.am-avatar svg { width: 18px; height: 18px; }
.am-cov__name { font-size: 13px; color: #fff; line-height: 1.3; }
.am-cov__sub { font-size: 11px; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }

/* 卡片 */
.am-card {
  background: #fff;
  border-radius: 12px;
  margin: 12px 12px 0;
  overflow: hidden;
}
.am-card--floating {
  margin-top: -24px;
  position: relative; z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.am-card__header {
  padding: 14px 16px;
  border-bottom: 1px solid #EEE;
  display: flex; justify-content: space-between; align-items: center;
}
.am-card__title { font-size: 15px; font-weight: 600; }
.am-card__more { font-size: 13px; color: #999; }

/* 数据概览 */
.am-stats {
  display: flex;
  padding: 16px 0;
}
.am-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #EEE;
  padding: 0 6px;
}
.am-stat:last-child { border-right: none; }
.am-stat__num {
  font-size: 20px;
  font-weight: 600;
  font-family: 'DIN Alternate', -apple-system, sans-serif;
}
.am-stat__num--green { color: #00B578; }
.am-stat__num--red { color: #FF3141; }
.am-stat__label { font-size: 12px; color: #999; margin-top: 4px; }

/* 待审核条 */
.am-banner {
  margin: 12px 12px 0;
  padding: 12px 14px;
  background: linear-gradient(90deg, #FFF6E6, #FFE9C9);
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
}
.am-banner__icon {
  width: 22px; height: 22px;
  color: #FF8F1F;
  flex-shrink: 0;
}
.am-banner__text { flex: 1; }
.am-banner__title { font-size: 13px; font-weight: 500; color: #A85A00; }
.am-banner__sub { font-size: 11px; color: #A85A00; opacity: .7; margin-top: 2px; }
.am-banner__btn {
  padding: 6px 14px;
  background: #FF8F1F;
  color: #fff;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
}

/* 任务行 */
.am-row {
  display: flex; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #EEE;
}
.am-row:last-child { border-bottom: none; }
.am-row__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}
.am-row__icon svg { width: 18px; height: 18px; }
.am-row__icon--orange { background: #FFF1E0; color: #FF8F1F; }
.am-row__icon--green { background: #E6F7EE; color: #00B578; }
.am-row__icon--blue { background: #E6F0FF; color: #1677FF; }
.am-row__icon--purple { background: #F0E6FF; color: #7B3FE4; }
.am-row__main { flex: 1; min-width: 0; }
.am-row__title { font-size: 15px; line-height: 1.3; }
.am-row__desc { font-size: 12px; color: #999; margin-top: 2px; }
.am-tag {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
}
.am-tag--warn { background: #FFF1E0; color: #FF8F1F; }
.am-tag--success { background: #E6F7EE; color: #00B578; }
.am-tag--gray { background: #F2F2F2; color: #999; }
.am-row__btn {
  background: #1677FF;
  color: #fff;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 12px;
  white-space: nowrap;
}
.am-row__btn--ghost { background: #E6F0FF; color: #1677FF; }

/* 底部 Tab */
.am-tabbar {
  display: flex;
  background: #fff;
  border-top: 1px solid #EEE;
  padding: 8px 0 24px;
  margin-top: auto;
}
.am-tab {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #999;
}
.am-tab--active { color: #1677FF; }
.am-tab svg {
  width: 22px; height: 22px;
  margin-bottom: 2px;
}

/* 账本页 */
.am-amount {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
  font-family: 'DIN Alternate', -apple-system, sans-serif;
}
.am-amount-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}

/* 流水分组日期 */
.am-group-head {
  display: flex; justify-content: space-between;
  padding: 12px 16px 4px;
  font-size: 12px;
}
.am-group-head__date { color: #666; font-weight: 500; }
.am-group-head__sum { color: #999; }

.am-row__amount {
  font-size: 16px;
  font-weight: 600;
  font-family: 'DIN Alternate', -apple-system, sans-serif;
}
.am-row__amount--green { color: #00B578; }
.am-row__amount--red { color: #FF3141; }

/* 操作三栏卡 */
.am-actions {
  display: flex;
}
.am-action {
  flex: 1;
  padding: 16px 0;
  text-align: center;
  border-right: 1px solid #EEE;
}
.am-action:last-child { border-right: none; }
.am-action svg { width: 20px; height: 20px; margin-bottom: 4px; color: #555; }
.am-action--highlight svg { color: #1677FF; }
.am-action__label { font-size: 12px; color: #1A1A1A; }
.am-action--highlight .am-action__label { color: #1677FF; font-weight: 500; }

/* 催一催页 */
.am-poke {
  background: #fff;
  padding: 30px 16px 20px;
  text-align: center;
}
.am-poke__icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #FFF1E0;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.am-poke__icon-wrap svg { width: 42px; height: 42px; color: #FF8F1F; }
.am-poke__title { font-size: 18px; font-weight: 600; }
.am-poke__sub { font-size: 13px; color: #999; margin-top: 8px; }
.am-poke__sub b { color: #FF3141; font-weight: 500; }
.am-poke-task {
  display: flex; align-items: center;
  background: #E6F0FF;
  padding: 14px;
  border-radius: 12px;
  margin-top: 24px;
  text-align: left;
  gap: 10px;
}
.am-poke-task__name { font-size: 14px; font-weight: 500; }
.am-poke-task__desc { font-size: 12px; color: #999; margin-top: 2px; }

/* 力度选项 */
.am-poke-options {
  background: #fff;
  margin: 12px;
  border-radius: 12px;
}
.am-poke-opt {
  display: flex; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #EEE;
  gap: 10px;
}
.am-poke-opt:last-child { border-bottom: none; }
.am-poke-opt__icon { width: 24px; height: 24px; color: #4A5568; }
.am-poke-opt--active .am-poke-opt__icon { color: #1677FF; }
.am-poke-opt__main { flex: 1; }
.am-poke-opt__name { font-size: 15px; display: flex; align-items: center; gap: 6px; }
.am-poke-opt__desc { font-size: 12px; color: #999; margin-top: 2px; }
.am-poke-opt__radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid #DDD;
  display: flex; align-items: center; justify-content: center;
}
.am-poke-opt--active .am-poke-opt__radio {
  background: #1677FF;
  border-color: #1677FF;
}
.am-poke-opt--active .am-poke-opt__radio svg {
  width: 12px; height: 12px;
  color: #fff;
}

.am-card__more svg {
  width: 14px; height: 14px;
  color: #999;
  vertical-align: middle;
}
