/* 保障资产页 — 效果图 1:1（H5 /app/assets/） */

.page-assets {
  background: #f8f9fb;
}

.page-assets .app-main {
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
}

/* —— 顶部蓝区 —— */
.assets-top-zone {
  padding-bottom: 4px;
  background: linear-gradient(180deg, #0b5de8 0%, #0554e8 42%, #0448d4 72%, #f8f9fb 100%);
}

.assets-header {
  position: relative;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 10px;
  color: #fff;
  text-align: center;
}

.assets-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.assets-header__action {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  background: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

.assets-header__action svg {
  width: 16px;
  height: 16px;
  opacity: 0.92;
}

.assets-check-wrap {
  margin: 0 15px 0;
  padding-bottom: 12px;
}

/* —— 灰底内容 —— */
.assets-body {
  padding: 0 15px 16px;
}

/* —— 支票领取主按钮 —— */
.assets-cta {
  margin: 0 0 12px;
}

.assets-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #1a6fff 0%, #0b54ff 55%, #0047e4 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(11, 84, 255, 0.35);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.assets-cta__btn:active:not(:disabled) {
  transform: scale(0.99);
  opacity: 0.95;
}

.assets-cta__btn:disabled {
  cursor: default;
  opacity: 1;
}

.assets-cta__btn--pending {
  background: linear-gradient(135deg, #8c94a3 0%, #6b7588 100%);
  box-shadow: 0 4px 12px rgba(107, 117, 136, 0.25);
}

.assets-cta__btn--success {
  background: linear-gradient(135deg, #2d9d6b 0%, #27ae60 100%);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.assets-cta__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.3px;
}

.assets-mail-panel {
  margin-top: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dce8ff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 45, 77, 0.06);
}

.assets-mail-panel[hidden] {
  display: none !important;
}

.assets-mail-panel .assets-mail-form .field {
  display: block;
  margin-bottom: 12px;
}

.assets-mail-panel .assets-mail-form .field span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #1c2b42;
}

.assets-mail-panel .assets-mail-form input,
.assets-mail-panel .assets-mail-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  box-sizing: border-box;
}

.assets-mail-panel .assets-mail-form textarea {
  resize: vertical;
  min-height: 72px;
}

/* 保障金条 */
.assets-fund-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  padding: 11px 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #ff8b00, #e67a2e);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 139, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
}

.assets-fund-strip[hidden] {
  display: none !important;
}

.assets-fund-strip em {
  font-style: normal;
  font-weight: 700;
}

/* —— 资产总览 Hero 卡片组 —— */
.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-card {
  position: relative;
  padding: 16px 14px 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 45, 77, 0.12);
}

.hero-card--check {
  background: linear-gradient(135deg, #1a6fff 0%, #0b54ff 48%, #0047e4 100%);
  box-shadow: 0 8px 24px rgba(11, 84, 255, 0.32);
}

.hero-card--fund {
  background: linear-gradient(135deg, #ff9f43 0%, #ff8b00 52%, #e67a2e 100%);
  box-shadow: 0 8px 24px rgba(255, 139, 0, 0.28);
}

.hero-card--salary {
  background: linear-gradient(135deg, #34c759 0%, #27ae60 48%, #1e8f4f 100%);
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.28);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.hero-card__left {
  flex: 1;
  min-width: 0;
}

.hero-card__label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card__eye {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  background: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

.hero-card__eye .icon-eye {
  display: flex;
  width: 18px;
  height: 18px;
}

.hero-card__amount {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

.hero-card--check .hero-card__amount {
  color: #ffd980;
}

.hero-card--fund .hero-card__amount {
  color: #fff4e0;
}

.hero-card--salary .hero-card__amount {
  color: #e8ffe8;
}

.hero-card__illus {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 70px;
}

.hero-card__illus-img,
.hero-card__illus svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 4px 10px rgba(0, 40, 20, 0.18));
}

.hero-card--salary .hero-card__illus {
  width: 88px;
  height: 76px;
  margin-top: -4px;
}

.hero-card__illus-shield {
  position: absolute;
  right: 4px;
  top: 8px;
  width: 36px;
  height: 40px;
  background: linear-gradient(180deg, #7eb8ff 0%, #3d8bff 100%);
  border-radius: 6px 6px 14px 14px;
  box-shadow: 0 4px 12px rgba(0, 40, 120, 0.25);
  clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
}

.hero-card__illus-cards {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(-8deg);
  box-shadow: 0 4px 10px rgba(0, 30, 90, 0.2);
}

.hero-card__illus-cards::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 10px;
  width: 44px;
  height: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 保障金装饰 */
.hero-card__illus-coin {
  position: absolute;
  right: 8px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 220, 160, 0.25));
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 12px rgba(120, 60, 0, 0.2);
}

.hero-card__illus-coin::after {
  content: "保";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.hero-card__illus-ring {
  position: absolute;
  left: 4px;
  bottom: 6px;
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

/* 工资补贴装饰 */
.hero-card__illus-bars {
  position: absolute;
  right: 22px;
  bottom: 8px;
  width: 10px;
  height: 28px;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.42);
}

.hero-card__illus-bars::before,
.hero-card__illus-bars::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-card__illus-bars::before {
  left: -15px;
  height: 20px;
}

.hero-card__illus-bars::after {
  right: -15px;
  height: 38px;
}

.hero-card__illus-badge {
  position: absolute;
  left: 6px;
  top: 10px;
  width: 44px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotate(-6deg);
}

.hero-card__hint {
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.hero-card__actions {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.hero-card--salary .hero-card__redeem-btn {
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
}

.hero-card__redeem-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0b54ff;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 30, 90, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-card__redeem-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 30, 90, 0.18);
}

.hero-card__redeem-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23FFD76A'/%3E%3Ctext x='12' y='16' text-anchor='middle' font-size='12' font-weight='700' fill='%239A6B00'%3E¥%3C/text%3E%3C/svg%3E") center / contain no-repeat;
}

/* 工资卡：复用兑换现金按钮骨架，仅换色 */
.hero-card--salary .hero-card__redeem-btn {
  color: #15803d !important;
  background: linear-gradient(180deg, #fff 0%, #f0faf3 100%) !important;
  box-shadow: 0 4px 14px rgba(0, 50, 25, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.hero-card--salary .hero-card__redeem-btn:active {
  box-shadow: 0 2px 8px rgba(0, 50, 25, 0.18);
}

.hero-card__redeem-icon--salary {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%237EE09A'/%3E%3Ctext x='12' y='16' text-anchor='middle' font-size='11' font-weight='700' fill='%2315803d'%3E¥%3C/text%3E%3C/svg%3E");
}

/* —— 模块标题 —— */
.section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 10px;
}

.section-head__bar {
  width: 3px;
  height: 14px;
  background: #0b54ff;
  border-radius: 2px;
}

.section-head__bar--orange {
  background: #ff8b00;
}

.section-head__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a2d4d;
}

/* —— 三列个人资产 —— */
.trio-card {
  display: flex;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(26, 45, 77, 0.06);
  overflow: hidden;
}

.trio-card__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 12px;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.trio-card__col--border {
  border-left: 1px solid #eef2f8;
}

.trio-card__col:active {
  background: #f8fafc;
}

.trio-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  border-radius: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

.trio-card__icon--check {
  background-color: #eef4fc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b54ff' stroke-width='2'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M7 10h10M7 14h6'/%3E%3C/svg%3E");
}

.trio-card__icon--fund {
  background-color: #fff5eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8b00' stroke-width='2'%3E%3Cpath d='M12 3l7 4v6c0 4-3 7-7 8-4-1-7-4-7-8V7l7-4z'/%3E%3C/svg%3E");
}

.trio-card__icon--salary {
  background-color: #eefaf3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2'%3E%3Cpath d='M4 18v-4M8 18V8M12 18V12M16 18V6M20 18v-2'/%3E%3C/svg%3E");
}

.trio-card__title {
  font-size: 11px;
  color: #6b7588;
  text-align: center;
  line-height: 1.3;
}

.trio-card__amount {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.trio-card__amount--blue {
  color: #0b54ff;
}

.trio-card__amount--orange {
  color: #ff8b00;
}

.trio-card__amount--green {
  color: #27ae60;
}

.trio-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
  padding: 4px 10px;
  font-size: 10px;
  color: #8c94a3;
  background: #f4f6fa;
  border-radius: 999px;
}

.trio-card__arrow {
  font-size: 11px;
}

/* —— 我的收益 —— */
.earn-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px 12px;
  background: #fff8f1;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(255, 139, 0, 0.08);
}

.earn-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb347 0%, #ff8b00 100%);
  box-shadow: 0 4px 10px rgba(255, 139, 0, 0.25);
  position: relative;
}

.earn-card__icon::after {
  content: "薪";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.earn-card__body {
  flex: 1;
  min-width: 0;
}

.earn-card__label {
  font-size: 12px;
  color: #6b7588;
}

.earn-card__amount {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #ff8b00;
  line-height: 1.2;
}

.earn-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.earn-card__tag {
  font-size: 10px;
  color: #a67c52;
}

.earn-card__tag[hidden] {
  display: none !important;
}

.earn-card__btn {
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #ff8b00;
  border-radius: 999px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.earn-card__btn:active {
  opacity: 0.9;
}

/* —— 最近保障金动态 —— */
.assets-ledger {
  margin-bottom: 14px;
  padding: 14px 0 4px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.assets-ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}

.assets-ledger__head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.assets-ledger__head a {
  font-size: 12px;
  color: var(--gov-blue);
  text-decoration: none;
}

.assets-ledger__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.assets-ledger__list .ledger-row--assets {
  display: block;
  border-top: 1px solid #f0f2f5;
}

.assets-ledger__list .ledger-row--assets:first-child {
  border-top: 0;
}

.assets-ledger__list .ledger-row--assets > a,
.assets-ledger__list .ledger-row--assets:not(.ledger-row--link) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
}

.assets-ledger__list .ledger-row--link > a {
  position: relative;
  padding-right: 26px;
}

.assets-ledger__list .ledger-row--link > a:active {
  background: #f8f9fc;
}

.assets-ledger__list .ledger-row__info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.assets-ledger__list .ledger-row__info small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.assets-ledger__list .ledger-row__amt {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.assets-ledger__list .ledger-row__amt.in {
  color: var(--gov-green);
}

.assets-ledger__list .ledger-row__amt.out {
  color: var(--gov-red);
}

.assets-ledger__list .ledger-row__chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #c0c4cc;
  font-size: 16px;
}

/* —— 快捷入口 —— */
.quick-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 16px;
}

.quick-grid__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(50% - 5px);
  margin-bottom: 10px;
  padding: 12px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(26, 45, 77, 0.05);
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.quick-grid__item:active {
  background: #f6f9fc;
}

.quick-grid__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.quick-grid__icon--fund {
  background-color: #fff5eb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8b00' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v8M9 11h6'/%3E%3C/svg%3E");
}

.quick-grid__icon--check {
  background-color: #eef4fc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b54ff' stroke-width='2'%3E%3Crect x='4' y='6' width='16' height='12' rx='2'/%3E%3C/svg%3E");
}

.quick-grid__icon--income {
  background-color: #eefaf3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2'%3E%3Cpath d='M4 18v-4M8 18V8M12 18V12M16 18V6M20 18v-2'/%3E%3C/svg%3E");
}

.quick-grid__icon--promo {
  background-color: #fff0f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c41e22' stroke-width='2'%3E%3Cpath d='M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3C/svg%3E");
}

.quick-grid__icon--withdraw {
  background-color: #f3efff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b61ff' stroke-width='2'%3E%3Cpath d='M12 3v12M8 11l4 4 4-4M5 21h14'/%3E%3C/svg%3E");
}

.quick-grid__label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #1c2b42;
}

.quick-grid__arrow {
  font-size: 16px;
  color: #c5cdd8;
}

/* —— 温馨提示 —— */
.tips-card {
  position: relative;
  margin-bottom: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #f5f9ff 0%, #eef4fc 100%);
  border: 1px solid #dce8ff;
  border-radius: 10px;
  overflow: hidden;
}

.tips-card__watermark {
  position: absolute;
  right: -12px;
  bottom: -16px;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  pointer-events: none;
  background: linear-gradient(180deg, #7eb8ff, #0b54ff);
  clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
}

.tips-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tips-card__icon {
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #3d8bff, #0b54ff);
  clip-path: polygon(50% 0%, 100% 18%, 100% 72%, 50% 100%, 0% 72%, 0% 18%);
}

.tips-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0b54ff;
}

.tips-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tips-card__block {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 84, 255, 0.08);
}

.tips-card__block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.tips-card__item-title {
  margin: 0 0 6px;
  padding-left: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0b54ff;
  line-height: 1.35;
  border-left: 3px solid #0b54ff;
}

.tips-card__item-text {
  margin: 0;
  padding-left: 11px;
  font-size: 12px;
  color: #5a6f94;
  line-height: 1.65;
  text-align: justify;
}

.tips-card__item-note {
  margin: 0;
  padding: 10px 12px;
  font-size: 11px;
  color: #8c94a3;
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}

.tips-card__item {
  margin: 0;
  font-size: 12px;
  color: #5a6f94;
  line-height: 1.55;
}

.btn--block {
  display: block;
  width: 100%;
  margin-top: 4px;
}

/* —— 邀请不足提示弹窗 —— */
.assets-hint-modal[hidden] {
  display: none !important;
}

.assets-hint-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.assets-hint-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.assets-hint-modal__panel {
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 20px 18px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.assets-hint-modal__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #1c2b42;
  text-align: center;
}

.assets-hint-modal__msg {
  margin: 0 0 18px;
  font-size: 14px;
  color: #5a6f94;
  line-height: 1.55;
  text-align: center;
}

.assets-housing-gap {
  margin: 12px 14px 0;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(26, 92, 138, 0.18);
  box-shadow: 0 2px 10px rgba(26, 92, 138, 0.06);
}

.assets-housing-gap h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #1a5c8a;
}

.assets-housing-gap p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #5a6f94;
}

.assets-housing-gap__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assets-housing-gap__actions a {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f2fa;
  color: #1a5c8a;
  font-size: 12px;
  text-decoration: none;
}

/* —— 支票兑换现金底部弹层 —— */
.check-redeem-sheet[hidden] {
  display: none !important;
}

.check-redeem-sheet {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.check-redeem-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 48, 0.52);
  animation: redeem-fade-in 0.22s ease;
}

.check-redeem-sheet__panel {
  position: relative;
  width: 100%;
  max-width: var(--shell-max, 430px);
  max-height: min(88vh, 640px);
  overflow: auto;
  padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(11, 84, 255, 0.14);
  animation: redeem-slide-up 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes redeem-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes redeem-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.check-redeem-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #8a9bb5;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.check-redeem-sheet__hero {
  overflow: hidden;
  line-height: 0;
  background: linear-gradient(180deg, #dce9ff 0%, #f0f6ff 100%);
}

.check-redeem-sheet__hero svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 240px;
}

.check-redeem-sheet.is-success .check-redeem-sheet__hero {
  background: linear-gradient(180deg, #ddf3e6 0%, #f4fcf7 100%);
}

.check-redeem-sheet__illus {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 200;
  object-fit: cover;
}

.check-redeem-sheet__bonus {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #0b54ff;
  text-align: center;
  background: linear-gradient(135deg, #f0f6ff, #fafcff);
  border: 1px solid #d8e6ff;
  border-radius: 10px;
}

.check-redeem-sheet__bonus[hidden] {
  display: none !important;
}

.check-redeem-sheet__bonus strong {
  color: #ffb020;
  font-weight: 700;
}

.check-redeem-sheet__body {
  padding: 16px 18px 8px;
}

.check-redeem-sheet__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a2d4d;
  text-align: center;
}

.check-redeem-sheet__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6f94;
  text-align: center;
}

.check-redeem-sheet__progress {
  margin-top: 16px;
}

.check-redeem-sheet__progress-bar {
  height: 10px;
  overflow: hidden;
  background: #e8eef8;
  border-radius: 999px;
}

.check-redeem-sheet__progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3d8bff, #0b54ff);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.check-redeem-sheet__progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #0b54ff;
  font-weight: 600;
}

.check-redeem-sheet__invite {
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #f0f6ff, #fafcff);
  border: 1px solid #d8e6ff;
  border-radius: 12px;
}

.check-redeem-sheet__invite-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.check-redeem-invite-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8eef8;
  border: 2px dashed #b8c9e8;
  position: relative;
}

.check-redeem-invite-dot.is-done {
  background: linear-gradient(135deg, #3d8bff, #0b54ff);
  border-style: solid;
  border-color: transparent;
}

.check-redeem-invite-dot.is-done::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.check-redeem-sheet__invite-hint {
  margin: 0;
  font-size: 13px;
  color: #3d5a80;
  text-align: center;
  line-height: 1.5;
}

.check-redeem-sheet__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.check-redeem-step {
  flex: 1;
  max-width: 96px;
  text-align: center;
}

.check-redeem-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #8a9bb5;
  background: #eef2f8;
  border-radius: 50%;
}

.check-redeem-step em {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: #8a9bb5;
}

.check-redeem-step.is-done span {
  color: #fff;
  background: #27ae60;
}

.check-redeem-step.is-done em {
  color: #27ae60;
  font-weight: 600;
}

.check-redeem-step.is-active span {
  color: #fff;
  background: linear-gradient(135deg, #3d8bff, #0b54ff);
  box-shadow: 0 4px 12px rgba(11, 84, 255, 0.28);
}

.check-redeem-step.is-active em {
  color: #0b54ff;
  font-weight: 700;
}

.check-redeem-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 18px 4px;
}

.check-redeem-sheet__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}

.check-redeem-sheet__btn[hidden] {
  display: none !important;
}

.check-redeem-sheet__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #3d8bff 0%, #0b54ff 100%);
  box-shadow: 0 6px 18px rgba(11, 84, 255, 0.28);
}

.check-redeem-sheet__btn--gold {
  color: #7a4e00;
  background: linear-gradient(135deg, #ffe9a8 0%, #ffc84a 100%);
  box-shadow: 0 6px 16px rgba(255, 176, 32, 0.28);
}

.check-redeem-sheet__btn--ghost {
  color: #5a6f94;
  background: #f2f5fa;
}

.check-redeem-sheet.is-success .check-redeem-sheet__title {
  color: #1e8f4f;
}

/* —— 工资提取底部弹层 —— */
.salary-withdraw-sheet[hidden] {
  display: none !important;
}

.salary-withdraw-sheet {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.salary-withdraw-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 48, 0.52);
  animation: redeem-fade-in 0.22s ease;
}

.salary-withdraw-sheet__panel {
  position: relative;
  width: 100%;
  max-width: var(--shell-max, 430px);
  max-height: min(90vh, 680px);
  overflow: auto;
  padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(39, 174, 96, 0.14);
  animation: redeem-slide-up 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.salary-withdraw-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #8a9bb5;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.salary-withdraw-sheet__hero {
  overflow: hidden;
  line-height: 0;
  background: linear-gradient(180deg, #d8f5e0 0%, #f2fcf5 100%);
}

.salary-withdraw-sheet__hero svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 240px;
}

.salary-withdraw-sheet.is-success .salary-withdraw-sheet__hero {
  background: linear-gradient(180deg, #ddf3e6 0%, #f4fcf7 100%);
}

.salary-withdraw-sheet__body {
  padding: 16px 18px 8px;
}

.salary-withdraw-sheet__badge {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #1e8f4f;
  background: #e8f8ed;
  border-radius: 999px;
}

.salary-withdraw-sheet__badge[hidden] {
  display: none !important;
}

.salary-withdraw-sheet__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1a2d4d;
  text-align: center;
}

.salary-withdraw-sheet__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a6f94;
  text-align: center;
}

.salary-withdraw-sheet__stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.salary-withdraw-sheet__stats[hidden] {
  display: none !important;
}

.salary-withdraw-stat {
  flex: 1;
  max-width: 110px;
  padding: 10px 8px;
  text-align: center;
  background: linear-gradient(135deg, #f0faf3, #fafcfa);
  border: 1px solid #c8edd4;
  border-radius: 10px;
}

.salary-withdraw-stat span {
  display: block;
  font-size: 11px;
  color: #5a9a6e;
}

.salary-withdraw-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #27ae60;
  font-variant-numeric: tabular-nums;
}

.salary-withdraw-sheet__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.salary-withdraw-step {
  flex: 1;
  max-width: 96px;
  text-align: center;
}

.salary-withdraw-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #8a9bb5;
  background: #eef2f8;
  border-radius: 50%;
}

.salary-withdraw-step em {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: #8a9bb5;
}

.salary-withdraw-step.is-done span {
  color: #fff;
  background: #27ae60;
}

.salary-withdraw-step.is-done em {
  color: #27ae60;
  font-weight: 600;
}

.salary-withdraw-step.is-active span {
  color: #fff;
  background: linear-gradient(135deg, #5fd080, #27ae60);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.28);
}

.salary-withdraw-step.is-active em {
  color: #1e8f4f;
  font-weight: 700;
}

.salary-withdraw-sheet__rules {
  margin: 14px 0 0;
  padding: 12px 14px 12px 28px;
  font-size: 12px;
  line-height: 1.65;
  color: #5a6f94;
  background: #f6fcf8;
  border: 1px solid #d8f0de;
  border-radius: 10px;
}

.salary-withdraw-sheet__rules li + li {
  margin-top: 6px;
}

.salary-withdraw-sheet__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 18px 4px;
}

.salary-withdraw-sheet__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.salary-withdraw-sheet__btn[hidden] {
  display: none !important;
}

.salary-withdraw-sheet__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #5fd080 0%, #27ae60 100%);
  box-shadow: 0 6px 18px rgba(39, 174, 96, 0.28);
}

.salary-withdraw-sheet__btn--ghost {
  color: #5a6f94;
  background: #f2f5fa;
}

.salary-withdraw-sheet.is-success .salary-withdraw-sheet__title {
  color: #1e8f4f;
}

/* —— 工资提取 · 七一筹备主题 —— */
.salary-withdraw-sheet--celebrate .salary-withdraw-sheet__panel {
  box-shadow: 0 -8px 40px rgba(196, 30, 34, 0.18);
}

.salary-withdraw-sheet--celebrate .salary-withdraw-sheet__hero {
  background: linear-gradient(180deg, #c41e22 0%, #ff6b4a 100%);
}

.salary-withdraw-sheet--celebrate .salary-withdraw-sheet__hero svg,
.salary-withdraw-sheet--celebrate .salary-withdraw-sheet__hero-img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 240px;
  object-fit: cover;
}

.salary-withdraw-sheet__fest-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 10px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #c41e22;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff4e0, #ffe9a8);
  border: 1px solid #ffd54f;
  border-radius: 999px;
}

.salary-withdraw-sheet--celebrate .salary-withdraw-sheet__title {
  color: #8b1014;
}

.salary-withdraw-countdown {
  margin-top: 16px;
  padding: 14px 12px 12px;
  text-align: center;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  border: 1px solid #f5d4a8;
  border-radius: 14px;
}

.salary-withdraw-countdown[hidden],
.salary-withdraw-queue[hidden],
.salary-withdraw-accel[hidden] {
  display: none !important;
}

.salary-withdraw-countdown__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #9a6b00;
}

.salary-withdraw-countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.salary-withdraw-countdown__unit {
  min-width: 52px;
  padding: 8px 6px 6px;
  background: linear-gradient(180deg, #c41e22, #e8353a);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(196, 30, 34, 0.22);
}

.salary-withdraw-countdown__unit strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.salary-withdraw-countdown__unit span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.salary-withdraw-countdown__sep {
  margin: 0 2px;
  font-size: 18px;
  font-weight: 800;
  font-style: normal;
  color: #c41e22;
}

.salary-withdraw-countdown__note {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: #8a9bb5;
}

.salary-withdraw-queue {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  background: #fff9f5;
  border: 1px solid #f0dcc8;
  border-radius: 12px;
}

.salary-withdraw-queue__pulse {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #27ae60;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.5);
  animation: salary-queue-pulse 1.6s ease infinite;
}

@keyframes salary-queue-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

.salary-withdraw-queue__text {
  flex: 1;
  min-width: 0;
}

.salary-withdraw-queue__text strong {
  display: block;
  font-size: 14px;
  color: #1a2d4d;
}

.salary-withdraw-queue__text p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #5a6f94;
}

.salary-withdraw-queue__no {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  font-style: normal;
  color: #c41e22;
  font-variant-numeric: tabular-nums;
}

.salary-withdraw-accel {
  margin-top: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f8fff9, #f0faf3);
  border: 1px solid #c8edd4;
  border-radius: 12px;
}

.salary-withdraw-accel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #5a9a6e;
}

.salary-withdraw-accel__head strong {
  font-size: 12px;
  font-weight: 700;
  color: #1e8f4f;
}

.salary-withdraw-accel__bar {
  height: 8px;
  overflow: hidden;
  background: #dff0e4;
  border-radius: 999px;
}

.salary-withdraw-accel__fill {
  display: block;
  width: 12%;
  height: 100%;
  background: linear-gradient(90deg, #5fd080, #27ae60);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.salary-withdraw-accel__hint {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: #5a6f94;
}

.salary-withdraw-sheet__btn--gold {
  color: #7a4e00;
  background: linear-gradient(135deg, #ffe9a8 0%, #ffc84a 100%);
  box-shadow: 0 6px 16px rgba(255, 176, 32, 0.28);
}

.hero-card--salary .hero-card__illus svg,
.hero-card--salary .hero-card__illus-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
