/* ============================================================
   首页 - OKX 风 USDT 理财
   ============================================================ */

.home-page {
  background: var(--color-bg);
}

/* 理财三档卡片 */
.plan {
  display: flex;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  background: var(--color-primary-bg);
  align-items: stretch;
  transition: transform 0.2s;
}

.plan:active {
  transform: scale(0.99);
}

.plan:last-child {
  margin-bottom: 0;
}

.plan-l {
  flex: 0 0 110px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 14px;
  position: relative;
}

.plan-l .plan-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.plan-l .plan-tag.tag-hot {
  background: var(--color-danger);
}

.plan-l .plan-tag.tag-best {
  background: var(--color-brand);
  color: #1A1A1A;
}

.plan-l .plan-rate {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.plan-l .plan-rate .u {
  font-size: 14px;
  margin-left: 1px;
  opacity: 0.85;
}

.plan-l .plan-sub {
  font-size: 10px;
  opacity: 0.8;
  margin-top: 4px;
}

.plan-mid .plan-l {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
}

.plan-best .plan-l {
  background: linear-gradient(135deg, #FCD535 0%, #F0B90B 100%);
  color: #1A1A1A;
}

.plan-r {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.plan-r .plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.plan-r .plan-meta {
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.6;
}

.plan-r .plan-cta {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  align-self: flex-start;
  background: #fff;
  padding: 5px 14px;
  border-radius: 999px;
}