@charset "UTF-8";
/*弹出层相关*/
.edlg-btn {
  color: #fff;
  min-width: 1rem;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  border-radius: 0.5em;
  margin: 0 0.25em;
  padding: 0.12rem 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.edlg-blue {
  background-color: #0063de;
  color: #fff;
}

.edlg-blue:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

.edlg-white {
  background-color: #ecf1ff;
  color: #0063de;
  transition: all 0.3s;
}

.edlg-white:hover,
.edlg-white:focus,
.edlg-white:active {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.edlg-tip {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 987654321;
}

.edlg-mask {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 987654321;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.edlg-tip .edlg-mask {
  background-color: transparent;
}

.edlg-msg {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 987654321;
  max-width: 500px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  padding: 12px 25px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.edlg-tip.show .edlg-mask {
  visibility: visible;
  opacity: 1;
}

.edlg-tip.show .edlg-msg {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.edlg-load {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 987654321;
}

.edlg-load-cont {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 987654321;
  max-width: 500px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.edlg-load-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background-image: url(../images/load.gif);
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.edlg-load-title {
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 10px;
}

.edlg-load.show .edlg-mask {
  visibility: visible;
  opacity: 1;
}

.edlg-load.show .edlg-load-cont {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.edlg-confirm {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 987654321;
  border-radius: 2px 2px 0 0;
}

.edlg-confirm-dialog {
  width: auto;
  min-width: 300px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 987654321;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.edlg-confirm-title {
  padding: 0 80px 0 20px;
  height: 46px;
  line-height: 46px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  cursor: move;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.edlg-confirm-cont {
  width: 100%;
  position: relative;
  padding: 20px;
  line-height: 24px;
  word-break: break-all;
  overflow: hidden;
  font-size: 14px;
}

.edlg-confirm-btns {
  text-align: right;
  padding: 0 15px 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 0;
}

.edlg-confirm-close {
  font-size: 16px;
  color: #666;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 46px;
  width: 46px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.edlg-confirm-close:hover {
  opacity: 0.7;
}

.edlg-confirm-btns .c-btn {
  margin-left: 10px;
}

.edlg-confirm-btns .c-btn:first-child {
  margin-left: 0;
}

.edlg-confirm.show .edlg-mask {
  visibility: visible;
  opacity: 1;
}

.edlg-confirm.show .edlg-confirm-dialog {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.edlg-html {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 987654321;
  border-radius: 2px 2px 0 0;
}

.edlg-html-dialog {
  width: auto;
  min-width: 300px;
  width: 4rem;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 987654321;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 0.6rem 0 0.5rem;
  border-radius: 0.16rem;
}

.edlg-html-title {
  display: none;
  padding: 0 80px 0 10px;
  height: 46px;
  line-height: 46px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  cursor: move;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.edlg-html-cont {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0 0.2rem;
  line-height: calc( 30 / 18);
  /* word-break: break-all; */
  overflow: auto;
}

.edlg-html-close {
  color: #666;
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  width: 1em;
  height: 1em;
  text-align: center;
  cursor: pointer;
  background-image: url(../images/dlg-off1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.edlg-html-close:hover {
  background-image: url(../images/dlg-off2.png);
}

.edlg-html.show .edlg-mask {
  visibility: visible;
  opacity: 1;
}

.edlg-html.show .edlg-html-dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.edlg-html-icon {
  width: 1em;
  height: 1em;
  margin: 0 auto 0.2rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.edlg-html-icon.success {
  background-image: url(../images/dlg1.png);
}

.edlg-html-icon.error {
  background-image: url(../images/dlg2.png);
}

.edlg-confirm-dialog {
  max-width: calc(100% - 20px);
}

.edlg-confirm-cont {
  max-width: 500px;
}

.edlg-html-dialog {
  max-width: calc(100% - 20px);
}

.edlg-html-cont {
  max-width: 100%;
}

.edlg-html-btns {
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

/*弹出层相关 end*/