/* 立即咨询弹窗 + 区块间咨询条 */
.no-v4-consult-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.no-v4-consult-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.no-v4-consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.no-v4-consult-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 28px 24px 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 280ms var(--no-ease, cubic-bezier(0.22, 1, 0.36, 1));
}

.no-v4-consult-modal.is-open .no-v4-consult-modal-panel {
  transform: translateY(0) scale(1);
}

.no-v4-consult-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.no-v4-consult-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a2540;
  margin-bottom: 6px;
}

.no-v4-consult-modal-desc {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 18px;
}

.no-v4-consult-qr-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.no-v4-consult-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.no-v4-consult-wxid-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 8px;
}

.no-v4-consult-wxid-label {
  font-size: 13px;
  color: #86868b;
}

.no-v4-consult-wxid {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0a2540;
  padding: 6px 12px;
  background: #f5f5f7;
  border-radius: 8px;
  -webkit-user-select: all;
  user-select: all;
  cursor: text;
}

.no-v4-consult-copy-btn {
  font-size: 13px;
  font-weight: 600;
  color: #0a2540;
  background: #f5e6c8;
  border: 1px solid rgba(184, 137, 42, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 180ms ease;
}

.no-v4-consult-copy-btn:hover {
  background: #edd9a8;
}

.no-v4-consult-copy-btn.is-copied {
  background: #e8f5e9;
  border-color: rgba(46, 125, 50, 0.35);
  color: #2e7d32;
}

.no-v4-consult-hint {
  font-size: 12px;
  color: #aeaeb2;
  line-height: 1.5;
}

.no-v4-consult-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 130;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.92);
  color: #fff;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.no-v4-consult-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.no-v4-consult-strip {
  padding: 28px 0;
  background: linear-gradient(180deg, rgba(245, 230, 200, 0.35) 0%, rgba(251, 251, 253, 0) 100%);
  border-top: 1px solid rgba(184, 137, 42, 0.12);
  border-bottom: 1px solid rgba(184, 137, 42, 0.08);
}

.no-v4-consult-strip--dark {
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.04) 0%, rgba(10, 37, 64, 0.01) 100%);
  border-color: rgba(10, 37, 64, 0.08);
}

.no-v4-consult-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

@media (min-width: 640px) {
  .no-v4-consult-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.no-v4-consult-strip-text {
  font-size: 15px;
  color: #4a6278;
  line-height: 1.55;
  max-width: 520px;
}

.no-v4-consult-strip-text strong {
  color: #0a2540;
  font-weight: 600;
}

.no-v4-consult-strip-btn {
  flex-shrink: 0;
}

button.no-v4-btn[data-consult-open],
button.no-v4-hero-float-consult {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.no-v4-nav .no-v4-btn[data-consult-open] {
  appearance: none;
}

.no-v4-mobile-subnav button[data-consult-open] {
  flex-shrink: 0;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.no-v4-mobile-subnav button[data-consult-open]:hover {
  color: #f0d088;
}

.no-v4-nav.on-light + .no-v4-mobile-subnav button[data-consult-open] {
  color: rgba(29, 29, 31, 0.62);
}

.no-v4-nav.on-light + .no-v4-mobile-subnav button[data-consult-open]:hover {
  color: #0a2540;
}

button.no-v4-home-impact-persona-more {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  padding: 0;
}
