/* =========================================================
   友帮手 · 银龄守护 — Web 端静态页
   内容与 mobile 版一致，适配桌面浏览器
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, "Hiragino Sans GB", "Source Han Sans CN", sans-serif;
  color: #1f2937;
  background: #eef3fb;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

/* ---------- 顶部蓝色顶栏（只放 logo + 图标） ---------- */
.top-wrap {
  background: linear-gradient(180deg, #4f8ef8 0%, #6aa3ff 100%);
  padding-bottom: 18px;
}

/* ---------- 顶栏 ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 12px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}
.topbar .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.topbar-actions { display: flex; gap: 10px; }
.round {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: grid; place-items: center;
  transition: background .2s;
}
.round:hover { background: rgba(255,255,255,0.3); }

/* ---------- 提示条（独立悬浮胶囊） ---------- */
.notice {
  width: fit-content;
  max-width: 800px;
  margin: -8px auto 0;
  padding: 0 24px;
}
.notice-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #c8dbff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  color: #2a6df0;
  box-shadow: 0 6px 18px -8px rgba(15,29,58,0.18);
}
.notice .bell { font-size: 14px; }
.notice b { color: #ff6a3d; font-weight: 700; padding: 0 3px; }
.notice em { font-style: normal; }

/* ---------- Hero（白底独立卡片） ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 14px auto 0;
  padding: 36px 32px 32px;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px -8px rgba(15,29,58,0.18);
}
.hero-text { flex: 1; min-width: 0; }
.hero-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f1d3a;
  letter-spacing: 1px;
}
.divider {
  width: 64px; height: 4px;
  background: #2a6df0;
  border-radius: 3px;
  margin: 14px 0 10px;
}
.sub { font-size: 16px; color: #2a3a55; margin-bottom: 18px; font-weight: 500; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, background .2s;
}
.btn-blue {
  background: linear-gradient(180deg, #4f8ef8 0%, #2a6df0 100%);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(42, 109, 240, 0.5);
}
.btn-blue:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(42, 109, 240, 0.6); }
.btn-blue:active { transform: translateY(1px); }

.hero-art { width: 200px; flex: 0 0 200px; }
.hero-art img { width: 100%; filter: drop-shadow(0 10px 24px rgba(15,29,58,0.2)); }

/* ---------- 内容区 ---------- */
.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 24px;
}

/* ---------- 领取保单 ---------- */
.claim-wrap { padding: 24px 0 8px; }
.claim-btn {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5b95ff 0%, #2a6df0 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  box-shadow:
    0 12px 28px -10px rgba(42, 109, 240, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform .15s, box-shadow .2s;
}
.claim-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -10px rgba(42, 109, 240, 0.65); }
.claim-btn:active { transform: translateY(1px); }

/* ---------- 两张图标卡 ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px 0 8px;
}
.action-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #6aa3ff 0%, #3a7df2 100%);
  color: #fff;
  border-radius: 16px;
  padding: 22px 22px 22px 24px;
  box-shadow: 0 12px 28px -14px rgba(42, 109, 240, 0.4);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.action-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(42, 109, 240, 0.5);
}
.ac-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
.ac-text a { font-size: 14px; opacity: .92; transition: opacity .2s; }
.ac-text a:hover { opacity: 1; }
.ac-icon { flex: 0 0 auto; }
.watermark {
  position: absolute;
  right: 16px;
  bottom: 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.18);
  font-family: "Arial Black", Arial, sans-serif;
  pointer-events: none;
}

/* ---------- 咨询条 ---------- */
.hotline {
  text-align: center;
  color: #6b7a96;
  font-size: 14px;
  padding: 20px 0 10px;
}
.hotline em { color: #2a6df0; font-style: normal; font-weight: 600; margin: 0 3px; }

/* ---------- 客服浮窗 ---------- */
.cs-fab {
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 50;
}
.cs-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(15,29,58,0.25);
  border: 2px solid #2a6df0;
  overflow: hidden;
}
.cs-tip {
  font-size: 11px;
  color: #fff;
  background: #2a6df0;
  padding: 3px 8px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(15,29,58,0.2);
  white-space: nowrap;
}

/* ---------- 备案 ---------- */
.icp-wrap {
  text-align: center;
  padding: 14px 24px 20px;
  font-size: 12px;
  color: #8a94a6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  border-top: 1px solid #e4eaf2;
  margin-top: auto;
}
.icp-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8a94a6;
  transition: color .2s;
}
.icp-link:hover { color: #2a6df0; }
.icp-dot { color: #c1c8d3; }

/* ---------- 响应式（平板/手机） ---------- */
@media (max-width: 700px) {
  .topbar { padding: 12px 16px 10px; }
  .topbar .title { font-size: 18px; }
  .hero { flex-direction: column; padding: 28px 16px 20px; gap: 20px; }
  .hero-text h2 { font-size: 26px; }
  .hero-art { width: 160px; flex: 0 0 160px; }
  .content { padding: 0 16px 16px; }
  .cards { grid-template-columns: 1fr; }
  .cs-fab { right: 14px; bottom: 70px; }
  .icp-wrap { padding: 12px 16px 16px; }
}
