/* 加速提取 · LZW 红金主题 */

.jx-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 88px);
  background: var(--app-bg, #f5f0eb);
}

.jx-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 70% at 92% 8%, rgba(212, 160, 23, 0.32), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(200, 16, 46, 0.35), transparent 50%),
    linear-gradient(155deg, #7a1020 0%, #8b1a2a 52%, #8b1528 100%);
}
.jx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  pointer-events: none;
}
.jx-hero-glow {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 110, 0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: jx-glow-pulse 4s ease-in-out infinite;
}
.jx-hero-bolt {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top, 0px));
  right: 24px;
  font-size: 52px;
  line-height: 1;
  color: rgba(245, 215, 110, 0.12);
  pointer-events: none;
}
@keyframes jx-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.jx-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
}
.jx-nav .back {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
}
.jx-nav .meta .k {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.72;
}
.jx-nav .meta .t {
  font-size: 17px;
  font-weight: 700;
  margin-top: 2px;
}

.jx-hero-body {
  position: relative;
  z-index: 2;
  padding: 4px 20px 0;
}
.jx-hero-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  background: rgba(245, 215, 110, 0.18);
  border: 1px solid rgba(245, 215, 110, 0.35);
  color: #f5d76e;
  margin-bottom: 8px;
}
.jx-hero-body h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.jx-hero-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.88;
  max-width: 92%;
}

.jx-summary {
  position: relative;
  z-index: 2;
  margin: 18px 16px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.jx-summary .lab {
  font-size: 12px;
  opacity: 0.82;
}
.jx-summary .val {
  font-size: 26px;
  font-weight: 800;
  color: #f5d76e;
  font-family: var(--app-display, serif);
}
.jx-summary .val small {
  font-size: 13px;
  font-weight: 600;
  margin-left: 2px;
  opacity: 0.9;
}

.jx-body {
  padding: 16px 16px 0;
}

.jx-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(139, 21, 40, 0.06);
}
.jx-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.jx-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  padding-left: 10px;
  border-left: 3px solid #c8102e;
}
.jx-section-hint {
  font-size: 11px;
  color: #999;
}

.jx-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jx-channel {
  position: relative;
  padding: 14px 14px 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #eee5df;
  background: linear-gradient(135deg, #fff 0%, #faf7f4 100%);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.jx-channel:active {
  transform: scale(0.98);
}
.jx-channel.is-on {
  border-color: #c8102e;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.12);
}
.jx-channel.is-on::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #d4a017, #c8102e);
}
.jx-channel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.jx-channel-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.jx-channel-fee {
  font-size: 13px;
  font-weight: 800;
  color: #c8102e;
  white-space: nowrap;
}
.jx-channel-fee em {
  font-style: normal;
  font-size: 18px;
  font-family: var(--app-display, serif);
}
.jx-channel-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.45;
}
.jx-channel-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
}
.jx-channel.is-on .jx-channel-check {
  border-color: #c8102e;
  background: #c8102e;
  box-shadow: inset 0 0 0 3px #fff;
}

.jx-pays {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jx-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #eee5df;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.jx-pay.is-on {
  border-color: #c8102e;
  background: #fff8f8;
}
.jx-pay .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  flex-shrink: 0;
}
.jx-pay.is-on .radio {
  border-color: #c8102e;
  background: radial-gradient(circle at center, #c8102e 40%, #fff 42%);
}
.jx-pay .logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.jx-pay .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.jx-pay .name {
  font-size: 14px;
  color: #333;
}

.jx-tip-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(200, 16, 46, 0.08);
}
.jx-tip-card .lzw-popup-body {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
}
.jx-tip-card .lzw-popup-body ul {
  margin: 8px 0;
  padding-left: 18px;
}
.jx-tip-card .lzw-popup-body li {
  margin-bottom: 4px;
}
.jx-tip-card .lzw-popup-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #999;
}

.jx-empty-pay {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.jx-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(245, 240, 235, 0) 0%, rgba(245, 240, 235, 0.95) 30%, #f5f0eb 100%);
}
.jx-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #d4a017 0%, #c8102e 100%);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.28);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.jx-submit:active:not(:disabled) {
  transform: scale(0.98);
}
.jx-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* 我的页 · 加速提取说明弹窗 */
.lzw-accel-dialog.van-dialog {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff9f5 0%, #fff 28%);
}
.lzw-accel-dialog .van-dialog__header {
  padding-top: 22px;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
}
.lzw-accel-dialog .van-dialog__content {
  padding: 12px 20px 16px;
}
.lzw-accel-dialog-body,
.lzw-accel-dialog .lzw-popup-body {
  text-align: left;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  padding: 4px 2px 8px;
  box-sizing: border-box;
}
.lzw-accel-dialog .lzw-accel-tip-card .lzw-popup-body {
  padding: 0;
}
.lzw-accel-dialog .lzw-accel-tip-card .lzw-accel-popup-intro {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}
.lzw-accel-dialog .lzw-accel-tip-card .lzw-accel-popup-cards {
  gap: 10px;
  margin: 0 0 12px;
}
.lzw-accel-dialog .lzw-accel-tip-card .lzw-accel-card {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #eee5df;
  box-shadow: none;
  background: #fff;
}
.lzw-accel-popup-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.lzw-accel-popup-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe8b8, #ffd080);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.12);
}
.lzw-accel-popup-intro,
.lzw-accel-dialog .lzw-accel-popup-intro {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.lzw-accel-popup-cards,
.lzw-accel-dialog .lzw-accel-popup-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
}
.lzw-accel-card,
.lzw-accel-dialog .lzw-accel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(200, 16, 46, 0.1);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.06);
}
.lzw-accel-card-main {
  min-width: 0;
  flex: 1;
}
.lzw-accel-card-name,
.lzw-accel-dialog .lzw-accel-card-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.lzw-accel-card-desc,
.lzw-accel-dialog .lzw-accel-card-desc {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}
.lzw-accel-card-fee,
.lzw-accel-dialog .lzw-accel-card-fee {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}
.lzw-accel-card-fee em,
.lzw-accel-dialog .lzw-accel-card-fee em {
  font-style: normal;
  color: #c8102e;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.lzw-accel-card-fee small,
.lzw-accel-dialog .lzw-accel-card-fee small {
  margin-left: 2px;
  font-size: 11px;
  color: #c8102e;
}
.lzw-accel-dialog .lzw-popup-body ul {
  margin: 10px 0;
  padding-left: 18px;
}
.lzw-accel-dialog .lzw-popup-body li {
  margin-bottom: 6px;
}
.lzw-accel-dialog .lzw-popup-body em {
  font-style: normal;
  color: #c8102e;
  font-weight: 700;
}
.lzw-popup-note,
.lzw-accel-dialog .lzw-popup-note {
  margin: 0;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.lzw-accel-dialog .van-dialog__footer {
  padding: 4px 20px 20px;
  gap: 10px;
}
.lzw-accel-dialog .van-dialog__cancel {
  border-radius: 10px;
}
.lzw-accel-dialog .van-dialog__confirm {
  border-radius: 10px;
  background: linear-gradient(135deg, #d4a017, #c8102e);
  color: #fff;
  border: none;
}
