#Dialog {
  width: 100vw;
  height: 0;
}

.dialog-close {
  position: fixed;
  top: 0;
  right: 0;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.hj-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .6);
  overflow: auto
}

.hj-overlay-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  overflow: auto;
}

.hj-dialog {
  --hj-dialog-width: fit-content;
  --hj-dialog-margin-top: 15vh;
  --hj-dialog-bg-color: #fff;
  --hj-dialog-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.04), 0px 8px 20px rgba(0, 0, 0, 0.08);
  --hj-dialog-title-font-size: 18px;
  --hj-dialog-content-font-size: 14px;
  --hj-dialog-font-line-height: 24px;
  --hj-dialog-padding-primary: 20px;
  --hj-dialog-border-radius: 2px;
  position: relative;
  margin: var(--hj-dialog-margin-top, 15vh) auto 50px;
  background: var(--hj-dialog-bg-color);
  border-radius: var(--hj-dialog-border-radius);
  box-shadow: var(--hj-dialog-box-shadow);
  box-sizing: border-box;
  width: var(--hj-dialog-width);
}

.hj-dialog-header {
  padding: 20px;
  padding-bottom: 10px;
  position: relative;
  font-size: var(--hj-dialog-title-font-size);
  font-weight: 520;
  color: #0d0d0d;
  border-bottom: 1px solid #f0f0f0;
}

.hj-dialog-header span {
  font-size: 18px;
}

.hj-dialog-close {
  position: absolute;
  top: 6px;
  right: 0;
  padding: 0;
  width: 54px;
  height: 54px;
  background: 0 0;
  border: none;
  outline: 0;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hj-dialog-close .iconfont {
  color: #909399;
  font-size: inherit;
  height: 1em;
  width: 1em;
  line-height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  fill: currentColor;
}