.e-dialog-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 99998;
  display: none;
}

.e-dialog {
  width: 480px;
  height: 262px;
  position: fixed;
  z-index: 99999;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border: 1px solid #ef8200;
  background: linear-gradient(225deg,
      rgba(224, 113, 10, 0.8) 0%,
      rgba(143, 55, 16, 0.8) 45%,
      rgba(58, 21, 5, 0.7) 100%);
}

.e-dialog-top {
  height: 42px;
  line-height: 42px;
  background: url("./top-bg.png");
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: rgb(255, 251, 168);
  border: 1px solid #ef8200;
}

.e-dialog-top .e-dialog-close {
  font-size: 20px;
  position: absolute;
  top: 0px;
  cursor: pointer;
  right: 10px;
  width: 30px;
}

.e-dialog-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #decaaa;
}

.e-dialog-content .img {
  width: 80px;
  height: 80px;
  margin-top: 15px;
}

.e-dialog-content .text {
  margin: 15px 0 25px 0;
}

.e-dialog-content .checkBtn {
  width: 144px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  background: linear-gradient(144deg, #ff1b1b 0%, #ff7a00 100%);
  cursor: pointer;
}