/* 官网跳转提示页 */
.go-jump-page {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1e272e;
  background: #eef1f8;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

.go-jump-page *,
.go-jump-page *::before,
.go-jump-page *::after {
  box-sizing: border-box;
}

.go-jump-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(108, 92, 231, 0.14), transparent),
    linear-gradient(180deg, #f0f3fa 0%, #eef1f8 100%);
  pointer-events: none;
  z-index: 0;
}

.go-jump-header {
  position: relative;
  z-index: 1;
  padding: 20px 16px 0;
  text-align: center;
}

.go-jump-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  text-decoration: none;
  color: #1e272e;
}

.go-jump-brand-text {
  font-size: 18px;
  font-weight: 800;
}

.go-jump-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}

.go-jump-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px 20px;
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.1);
}

.go-jump-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), rgba(253, 121, 168, 0.08));
  border: 1px solid rgba(214, 48, 49, 0.18);
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.go-jump-warn-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 22px;
  text-align: center;
}

.go-jump-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #2d3436;
}

.go-jump-desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #636e72;
}

.go-jump-dest {
  margin: 0 0 18px;
  font-size: 13px;
  color: #636e72;
  word-break: break-all;
  line-height: 1.5;
}

.go-jump-dest span {
  color: #b2bec3;
  margin-right: 4px;
}

.go-jump-dest strong {
  color: #6c5ce7;
  font-weight: 700;
}

/* 默认纵向排列，避免 H5 上按钮被挤到卡片外 */
.go-jump-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding-top: 14px;
  border-top: 1px dashed rgba(108, 92, 231, 0.15);
}

.go-jump-timer {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636e72;
}

.go-jump-timer span {
  font-weight: 800;
  color: #6c5ce7;
  font-size: 17px;
}

.go-jump-btn {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
  -webkit-tap-highlight-color: transparent;
}

.go-jump-back {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  padding: 0 8px;
}

.go-jump-back a {
  color: #6c5ce7;
  text-decoration: none;
  word-break: break-word;
}

.go-jump-back-arrow {
  margin-right: 4px;
}

@media (min-width: 520px) {
  .go-jump-main {
    padding: 32px 20px 48px;
  }

  .go-jump-card {
    padding: 28px 26px 24px;
  }

  .go-jump-title {
    font-size: 20px;
  }

  .go-jump-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .go-jump-timer {
    text-align: left;
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .go-jump-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 120px;
    flex-shrink: 0;
  }
}
