/**
 * 全局轻提示：与后台截图一致——直角矩形、无圆角无阴影、纯色底、白圆标；
 * 无遮罩；默认约 1.5s 自动消失（见 flash-modal.js）
 */

/* 成功/提示主色（与天蓝条一致，贴近截图 #34b5e5） */
.flash-toast-wrap {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20000;
  width: auto;
  max-width: min(420px, calc(100vw - 24px));
  pointer-events: none;
  box-sizing: border-box;
}

.flash-toast-wrap .flash-toast {
  pointer-events: auto;
}

.flash-toast {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 16px 42px 16px 16px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.flash-toast--success,
.flash-toast--info {
  background: #34b5e5;
}

.flash-toast--danger {
  background: #e53935;
}

.flash-toast--warning {
  background: #fb8c00;
}

.flash-toast__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flash-toast__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* 截图：白底圆 + 圆内对勾/符号（与条底色区分） */
.flash-toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flash-toast--success .flash-toast__icon,
.flash-toast--info .flash-toast__icon {
  color: #34b5e5;
}

.flash-toast--danger .flash-toast__icon {
  color: #c62828;
}

.flash-toast--warning .flash-toast__icon {
  color: #e65100;
}

.flash-toast__check {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.flash-toast__info-letter {
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
}

.flash-toast__bang {
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.flash-toast__warn {
  font-size: 16px;
  line-height: 1;
}

.flash-toast__main {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.flash-toast__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.35;
}

.flash-toast__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  word-break: break-word;
}

/* 审核页等：页内说明块（非全屏浮层） */
.review-inline-notice {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid #1e88e5;
  font-size: 15px;
  line-height: 1.55;
  color: #1c1c1e;
}

.review-inline-notice p {
  margin: 0;
}

.review-inline-notice--warning {
  border-top-color: #f9a825;
  background: #fffaf0;
}
