.common-dialog {
  width: 0;
  height: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
}
.common-dialog-body {
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.8) !important;
  filter: alpha(opacity=80) !important;
  position: fixed !important;
  top: 0;
  z-index: 99;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-dialog-content {
  border-radius: 4px;
  z-index: 999;
  width: 260px;
  height: 230px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.common-dialog-content img {
  width: 70px;
}
.common-dialog-content .tip {
  margin: 15px;
}
.common-dialog-content .close-btn {
  padding: 4px 25px;
  background: #FF4D00;
  color: #fff;
  border-radius: 2px;
}
