#fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  z-index: 1012;
}

#dialog {
  position: absolute;
  z-index: 1015;
  font-size: 14px;
  padding: 0;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding-bottom: 30px;
}

#dialog-title {
  margin: 30px 0;
  padding: 0;
  position: relative;
  display: block;
  color: #333;
}

#dialog-title:before {
  padding-right: 27px;
}

#dialog-close {
  position: absolute;
  outline: none;
  right: 30px;
  top: 30px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: none;
  background-color: #fff;
  font-size: 12px;
  color: #666;
}

#dialog-close:hover {
  color: #3F82FC;
}

#dialog-close:before {
  margin: 0 4px 8px;
}

#dialog-content {
  padding: 0 30px;
  background: #fff;
  line-height: 28px;
  min-height: 80px;
  display: table;
  word-break: break-all;
  clear: both;
}

#dialog-content .content-div {
  display: table-cell;
  vertical-align: middle;
}

#dialog-foot {
  margin: 30px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

#dialog-foot button {
  margin-left: 30px;
}

#dialog-foot button:first-child {
  margin-left: 0;
}

#dialog-foot.dialog-middle {
  text-align: center;
}

#dialog-foot.dialog-right {
  text-align: right;
}

#dialog-foot.dialog-left {
  text-align: left;
}

#dialog-foot.dialog-left button {
  margin-left: 0;
  margin-right: 30px;
}

#dialog-foot.dialog-center {
  text-align: center;
}
