@charset "UTF-8";
.global-toast-viewport[data-v-097fe307] {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.777778vw;
  pointer-events: none;
}
.global-toast[data-v-097fe307] {
  width: fit-content;
  max-width: calc(100vw - 3.555556vw);
  min-height: 3.733333vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.888889vw;
  padding: 0.888889vw 1.6vw;
  border: 0.088889vw solid var(--Color-Divider-level-1);
  border-radius: 0.888889vw;
  background: var(--Color-background-level-6);
  box-shadow: 0 1.777778vw 5.333333vw rgb(from var(--Color-background-level-1) r g b/32%);
  backdrop-filter: blur(1.6vw);
}
.global-toast__icon[data-v-097fe307] {
  position: relative;
  width: 1.422222vw;
  height: 1.422222vw;
  border-radius: 88.8vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.global-toast__icon--error[data-v-097fe307] {
  background: var(--Color-secondary-level-4);
}
.global-toast__icon--info[data-v-097fe307],
.global-toast__icon--text[data-v-097fe307],
.global-toast__icon--activity[data-v-097fe307] {
  background: var(--Color-theme-level-1);
}
.global-toast__icon--success[data-v-097fe307],
.global-toast__icon--bonus[data-v-097fe307],
.global-toast__icon--recharge[data-v-097fe307],
.global-toast__icon--deduction[data-v-097fe307] {
  background: var(--Color-secondary-level-2);
}
.global-toast__icon-mark[data-v-097fe307] {
  position: absolute;
  inset: 0;
}
.global-toast__icon-mark[data-v-097fe307]::before,
.global-toast__icon-mark[data-v-097fe307]::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 88.8vw;
  background: var(--Color-text-level-4);
  transform: translateX(-50%);
}
.global-toast__icon-mark[data-v-097fe307]::before {
  top: 20%;
  width: 0.177778vw;
  height: 46%;
}
.global-toast__icon-mark[data-v-097fe307]::after {
  bottom: 18%;
  width: 0.177778vw;
  height: 0.177778vw;
}
.global-toast__text[data-v-097fe307] {
  color: var(--Color-text-level-1);
  font-family: "PingFang SC", "Inter", sans-serif;
  font-size: 1.244444vw;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (min-width: 768px) {
.global-toast[data-v-097fe307] {
    max-width: min(420px, 100vw - 64px);
    min-height: 48px;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--Color-Divider-level-1);
    background: var(--Color-background-level-6);
    box-shadow: 0 28px 96px rgb(from var(--Color-background-level-1) r g b/50%), 0 0 0 1px rgb(from var(--Color-text-level-1) r g b/4%) inset;
}
.global-toast--error[data-v-097fe307] {
    border-color: rgb(from var(--Color-secondary-level-4) r g b/42%);
    box-shadow: 0 28px 96px rgb(from var(--Color-background-level-1) r g b/50%), 0 0 32px rgb(from var(--Color-secondary-level-4) r g b/12%), 0 0 0 1px rgb(from var(--Color-text-level-1) r g b/4%) inset;
}
.global-toast__icon[data-v-097fe307] {
    width: 24px;
    height: 24px;
}
.global-toast__icon--error[data-v-097fe307] {
    background: var(--Color-secondary-level-4);
    box-shadow: none;
}
.global-toast__icon-mark[data-v-097fe307]::before {
    width: 3px;
}
.global-toast__icon-mark[data-v-097fe307]::after {
    width: 3px;
    height: 3px;
}
.global-toast__text[data-v-097fe307] {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0;
}
}
/**
 * H5 断点：项目 postcss-mobile-forever 会把 src 下的 px 按 1125 基准换算成 vw，
 * 但 toast 是全端通用组件，写 14px 之类 PC 视觉值在 H5 上会被压成 4~5px。
 * 这里在移动端断点内直接用 vw（postcss 不会二次处理 vw），保证 375 屏视觉尺寸合理。
 */
@media (max-width: 767px) {
.global-toast[data-v-097fe307] {
    max-width: 89.3334vw;
    min-height: 10.6666vw;
    gap: 2.1333vw;
    padding: 2.6666vw 4.8vw;
    border-radius: 2.6666vw;
}
.global-toast__icon[data-v-097fe307] {
    width: 4.2666vw;
    height: 4.2666vw;
}
.global-toast__text[data-v-097fe307] {
    font-size: 3.7333vw;
    line-height: 1.4;
}
}
.global-toast-fade-enter-active[data-v-097fe307],
.global-toast-fade-leave-active[data-v-097fe307] {
  transition: opacity var(--global-toast-transition-duration) ease, transform var(--global-toast-transition-duration) ease;
}
.global-toast-fade-enter-from[data-v-097fe307],
.global-toast-fade-leave-to[data-v-097fe307] {
  opacity: 0;
  transform: scale(0.96);
}
@media (min-width: 768px) and (min-height: 0px){
.global-toast-viewport[data-v-097fe307]{
    inset: 0;
    z-index: 2147483600;
    padding: 20px;
}
.global-toast[data-v-097fe307]{
    min-height: 42px;
    gap: 10px;
    border: 1px solid var(--Color-Divider-level-1);
    border-radius: 10px;
    background: var(--Color-background-level-6);
    box-shadow: 0 20px 60px rgb(from var(--Color-background-level-1) r g b/32%);
    backdrop-filter: blur(18px);
    max-width: calc(1125px - 40px);
    padding: 10px 18px;
}
.global-toast__icon[data-v-097fe307]{
    height: 16px;
    border-radius: 999px;
    flex-shrink: 0;
    width: 16px;
}
.global-toast__icon--error[data-v-097fe307]{
    background: var(--Color-secondary-level-4);
}
.global-toast__icon--info[data-v-097fe307],
.global-toast__icon--text[data-v-097fe307],
.global-toast__icon--activity[data-v-097fe307]{
    background: var(--Color-theme-level-1);
}
.global-toast__icon--success[data-v-097fe307],
.global-toast__icon--bonus[data-v-097fe307],
.global-toast__icon--recharge[data-v-097fe307],
.global-toast__icon--deduction[data-v-097fe307]{
    background: var(--Color-secondary-level-2);
}
.global-toast__icon-mark[data-v-097fe307]{
    inset: 0;
}
.global-toast__icon-mark[data-v-097fe307]::before,
.global-toast__icon-mark[data-v-097fe307]::after{
    border-radius: 999px;
    background: var(--Color-text-level-4);
}
.global-toast__icon-mark[data-v-097fe307]::before{
    width: 2px;
}
.global-toast__icon-mark[data-v-097fe307]::after{
    height: 2px;
    width: 2px;
}
.global-toast__text[data-v-097fe307]{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}
.global-toast-fade-enter-from[data-v-097fe307],
.global-toast-fade-leave-to[data-v-097fe307]{
    opacity: 0;
}
}