.notice {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.78125vw 1.0416666667vw 0.7291666667vw 0.8333333333vw;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.88);
  flex-shrink: 0;
  display: none;
  z-index: 10000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}
.notice svg {
  width: 1.25vw;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.notice p {
  color: #fff;
  font-weight: 500;
  margin-left: 0.3125vw;
}
.notice.show {
  display: flex;
}
.notice.success {
  display: flex;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #C4ADFF;
  padding: 0.9375vw 1.5625vw;
  box-shadow: 0 8px 32px rgba(102, 51, 238, 0.22);
}
.notice.success svg {
  display: none;
}
.notice.success p {
  margin-left: 0;
  color: #6333EE;
  background: none;
  -webkit-text-fill-color: #6333EE;
  font-size: 1.04167vw;
  font-weight: 600;
}

.dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
  display: none;
}
.dialog .content {
  width: 57.2916666667vw;
  position: relative;
  background: #000;
}
.dialog .content .close {
  position: absolute;
  right: 1.0416666667vw;
  top: 1.0416666667vw;
  cursor: pointer;
  z-index: 10;
}
.dialog .content .close svg {
  width: 1.25vw;
  height: fit-content;
}
.dialog .content video {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}
.dialog.on {
  display: flex;
}

@media screen and (max-width: 768px) {
  .notice {
    top: auto;
    bottom: 24vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 22px;
    width: auto;
    max-width: 86%;
  }
  .notice svg {
    width: 16px;
  }
  .notice p {
    margin-left: 6px;
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
  }
  .notice.success {
    padding: 14px 22px;
  }
  .notice.success p {
    font-size: 15px;
  }
  .dialog .content {
    width: 90%;
  }
  .dialog .content .close {
    right: 10px;
    top: 10px;
  }
  .dialog .content .close svg {
    width: 24px;
  }
  .dialog .content video {
    width: 100%;
    max-height: 40vh;
  }
}

/*# sourceMappingURL=utils.css.map */
