.nq-pay-dialog.el-dialog {
  width: 680px !important;
  max-width: 96vw;
  border-radius: 0 !important;
  overflow: hidden;
}

.nq-pay-dialog .el-dialog__header {
  display: none;
}

.nq-pay-dialog .el-dialog__body {
  padding: 0 !important;
}

.nq-pay {
  --nq-p-accent: #165dff;
  background: #fff;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.nq-pay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0e52e6 0%, #165dff 50%, #4d7dff 100%);
  color: #fff;
}

.nq-pay__header-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.nq-pay__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
}

.nq-pay__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 22px;
}

.nq-pay__order {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  background: #f0f5ff;
  border: 1px solid #d6e4ff;
  margin-bottom: 16px;
}

.nq-pay__order-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.nq-pay__order-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #165dff;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.nq-pay__order-tip {
  font-size: 14px;
  font-weight: 600;
  color: #1d39c4;
  margin-bottom: 4px;
}

.nq-pay__order-id {
  font-size: 12px;
  color: #597ef7;
}

.nq-pay__order-right {
  text-align: right;
  font-size: 12px;
  color: #1d39c4;
  line-height: 1.7;
}

.nq-pay__price {
  font-size: 28px;
  font-weight: 800;
  color: #165dff;
  font-variant-numeric: tabular-nums;
}

.nq-pay__notice {
  padding: 12px 14px;
  margin-bottom: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  font-size: 12px;
  line-height: 1.65;
  color: #92400e;
}

.nq-pay__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #f5f7fa;
  border: 1px solid #eef0f4;
  font-size: 13px;
}

.nq-pay__options .pay-order-balance,
.nq-pay__options .pay-order-coin-num {
  color: var(--nq-p-accent);
  font-weight: 600;
}

.nq-pay__options .pay-order-coin-detail {
  color: var(--nq-p-accent);
  cursor: pointer;
  margin-left: 4px;
}

.nq-pay__methods-title {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 10px;
}

.nq-pay__methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.nq-pay__method {
  position: relative;
  padding: 12px 10px;
  border: 1px solid #eef0f4;
  background: #fafbfc;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nq-pay__method:hover {
  border-color: #b3ccff;
  background: #f0f5ff;
}

.nq-pay__method.is-active {
  border-color: var(--nq-p-accent);
  background: rgba(22, 93, 255, 0.06);
  box-shadow: inset 0 0 0 1px var(--nq-p-accent);
}

.nq-pay__method-img {
  height: 28px;
  max-width: 80px;
  object-fit: contain;
}

.nq-pay__method-text {
  font-size: 12px;
  color: #606266;
  line-height: 1.4;
}

.nq-pay__method .el-icon-check {
  position: absolute;
  top: 6px;
  right: 6px;
  color: var(--nq-p-accent);
  font-size: 14px;
  opacity: 0;
}

.nq-pay__method.is-active .el-icon-check {
  opacity: 1;
}

.nq-pay__panel {
  padding: 16px;
  background: #f5f7fa;
  border: 1px solid #eef0f4;
  text-align: center;
}

.nq-pay__panel .qr-content {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nq-pay__panel .pay-qr-text {
  margin-top: 12px;
  font-size: 12px;
  color: #909399;
  line-height: 1.6;
}

.nq-pay__panel .custom-text-title {
  font-size: 13px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 10px;
  text-align: left;
}

.nq-pay__panel .custom-btn {
  margin-top: 14px;
  width: 100%;
  height: 40px !important;
  border-radius: 0 !important;
  background: var(--nq-p-accent) !important;
  border-color: var(--nq-p-accent) !important;
}

.nq-pay__credit-tip {
  padding: 10px 14px;
  margin-bottom: 16px;
  background: #eff6ff;
  border-left: 3px solid var(--nq-p-accent);
  font-size: 12px;
  color: #1d4ed8;
}

.nq-pay__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid #eef0f4;
  background: #fafafa;
  flex-shrink: 0;
}

.nq-pay__footer .el-button--primary {
  min-width: 120px;
  height: 40px !important;
  border-radius: 0 !important;
  background: var(--nq-p-accent) !important;
  border-color: var(--nq-p-accent) !important;
  font-weight: 600 !important;
}

.nq-pay__footer .cancel-btn {
  height: 40px !important;
  border-radius: 0 !important;
}

/* 线下支付 / 凭证上传弹窗 */
.nq-proof-dialog.el-dialog {
  width: 720px !important;
  max-width: 96vw;
  border-radius: 0 !important;
  overflow: hidden;
}

.nq-proof-dialog .el-dialog__header {
  display: none;
}

.nq-proof-dialog .el-dialog__body {
  padding: 0 !important;
}

.nq-proof {
  --nq-proof-accent: #165dff;
  background: #fff;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.nq-proof__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
}

.nq-proof__header--pay .nq-proof__order {
  margin: 0 0 6px;
  font-size: 12px;
  opacity: 0.9;
}

.nq-proof__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.nq-proof__amount {
  font-size: 26px;
  font-weight: 800;
  margin-left: 6px;
}

.nq-proof__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nq-proof__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.nq-proof__body {
  padding: 20px 24px;
}

.nq-proof__method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--nq-proof-accent);
  background: rgba(22, 93, 255, 0.06);
  font-size: 13px;
  color: #262626;
}

.nq-proof__method img {
  height: 24px;
}

.nq-proof__method .el-icon-check {
  color: var(--nq-proof-accent);
}

.nq-proof__unpaid {
  padding: 14px 16px;
  margin-bottom: 16px;
  background: #f0f5ff;
  border: 1px solid #d6e4ff;
  font-size: 13px;
  color: #303133;
}

.nq-proof__unpaid strong {
  font-size: 20px;
  color: var(--nq-proof-accent);
  margin-left: 4px;
}

.nq-proof__credit {
  margin: 6px 0 0;
  font-size: 12px;
  color: #909399;
}

.nq-proof__bank {
  position: relative;
  padding: 16px;
  margin-bottom: 20px;
  background: #f5f7fa;
  border: 1px solid #eef0f4;
}

.nq-proof__bank-html {
  font-size: 13px;
  line-height: 1.7;
  color: #303133;
}

.nq-proof__copy {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: #fff;
  color: var(--nq-proof-accent);
  cursor: pointer;
  padding: 6px 8px;
  border: 1px solid #eef0f4;
}

.nq-proof__steps {
  margin-bottom: 20px;
}

.nq-proof__steps .is-fail {
  color: #f53f3f;
}

.nq-proof__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  border-radius: 50%;
  background: #f53f3f;
  color: #fff;
  font-size: 11px;
  cursor: help;
}

.nq-proof__upload-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #262626;
}

.nq-proof__uploader .el-upload-dragger {
  width: 100%;
  border-radius: 0;
  border-color: #dcdfe6;
  background: #fafbfc;
}

.nq-proof__files {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nq-proof__file {
  margin: 0;
  padding: 10px 14px;
  background: #f5f7fa;
  border: 1px solid #eef0f4;
  font-size: 13px;
  color: var(--nq-proof-accent);
  cursor: pointer;
}

.nq-proof__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #eef0f4;
  background: #fafafa;
}

.nq-proof__footer .el-button {
  border-radius: 0 !important;
  min-width: 100px;
}

.nq-proof__footer .el-button--primary {
  background: var(--nq-proof-accent) !important;
  border-color: var(--nq-proof-accent) !important;
}

.nq-proof-confirm .el-dialog__header {
  display: none;
}

.nq-proof-confirm__body {
  padding: 8px 4px 4px;
  font-size: 14px;
  color: #303133;
  line-height: 1.6;
}

.nq-proof-confirm__btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.nq-proof-confirm__btns .el-button {
  border-radius: 0 !important;
}
