/* Turing Console 首次访问提示弹窗 */
.ac-console-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(4px);
}

.ac-console-modal {
  width: min(440px, 100%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  color: #1d2129;
}

.ac-console-modal-hd {
  padding: 22px 24px 0;
}

.ac-console-modal-hd .eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0052d9;
}

.ac-console-modal-hd h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: #1d2129;
}

.ac-console-modal-bd {
  padding: 14px 24px 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #4e5969;
}

.ac-console-modal-bd p {
  margin: 0 0 12px;
}

.ac-console-modal-bd ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.ac-console-modal-bd li {
  margin-bottom: 6px;
}

.ac-console-modal-ft {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px 22px;
}

.ac-console-btn-ghost,
.ac-console-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.ac-console-btn-ghost {
  background: #f2f3f5;
  color: #4e5969;
}

.ac-console-btn-ghost:hover {
  background: #e5e6eb;
}

.ac-console-btn-primary {
  background: #0052d9;
  color: #fff;
}

.ac-console-btn-primary:hover {
  background: #0047c2;
  color: #fff;
}

@media (max-width: 480px) {
  .ac-console-modal-ft {
    flex-direction: column-reverse;
  }

  .ac-console-btn-ghost,
  .ac-console-btn-primary {
    width: 100%;
  }
}
