<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.dialog-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
  z-index: 2014;
}

.el-dialog__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  z-index: 2015;
}

.el-dialog {
  width: 420px;
  position: relative;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid #ebeef5;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
  top: 50%;
  transform: translate(0, -50%);
}

.el-dialog__header {
  flex-shrink: 0;
  font-size: 1.1em;
  font-weight: 500;
  border-bottom: 1px solid #DCDFE6;
  background-color: #f8f8f8;
  border-radius: 4px 4px 0 0;
  padding: .6em 0 .6em 1em;
  user-select: none;
}

.el-dialog__header--title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.el-dialog__body {
  color: #606266;
  word-break: break-all;
  padding: .8em 1em;
}

.el-dialog__footer {
  flex-shrink: 0;
  text-align: right;
  padding: .4em 1em .8em 1em;
}

.el-dialog__body p {
  line-height: 28px;
  margin: 4px 0;
}

</pre></body></html>