/*异常弹层 start*/
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  background-color: #000;
}

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.error-dialog {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 3100;
  width: 560px;
  margin-left: -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  outline: none;
  font-family: "Segoe UI", "Noto Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.error-dialog.hide {
  display: none;
}

.error-dialog .modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
  font-size: 17px;
}

.error-dialog .modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1;
}

.error-dialog .modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
  line-height: 0;
}

.error-dialog .error-dialog-ok {
  border-radius: 5px;
  padding: 7px 12px;
  border: 1px solid #e42a22;
  border-color: #bc1e17;
  background-image: -moz-linear-gradient(top, #e42a22, #bc1e17);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e42a22), to(#bc1e17));
  background-image: -webkit-linear-gradient(top, #e42a22, #bc1e17);
  background-image: -o-linear-gradient(top, #e42a22, #bc1e17);
  background-image: linear-gradient(#e42a22 0%, #bc1e17 100%);
  box-shadow: none;
  color: #ffffff;
  text-shadow: none;
  font-weight: bold;
  display: inline-block;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  font-family: "Segoe UI", "Noto Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 12px;
  width: auto;
  height: auto;
}
/*异常弹层 end*/


/*确认弹层 start*/
.confirm-modal-floor {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.confirm-modal {
  width: 530px;
  height: 183px;
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -265px;
  margin-top: -91px;
  z-index: 3100;
  display: none;
}

.confirm-modal .close-btn-banner {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border: 23px solid #F3F7FF;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 4px 0 0;
  cursor: default;
}

.confirm-modal .close-btn {
  color: #859EFF;
  font-size: 22px;
  position: absolute;
  top: -20px;
  left: 4px;
  cursor: pointer;
}

.confirm-modal .confirm-text {
  font-size: 22px;
  text-align: center;
  padding: 42px 20px 32px;
}

.confirm-modal .confirm-modal-footer {
  text-align: center;
}

.confirm-modal .modal-btn {
  display: inline-block;
  width: 170px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid;
  text-decoration: none;
  box-shadow: 0px 4px 4px 0px rgba(180, 220, 253, 0.4);
}

.confirm-modal .confirm-btn {
  color: #fff;
  border-color: transparent;
  background-color: #6097ff;
  margin-right: 16px;
}

.confirm-modal .cancel-btn {
  color: #4082FF;
  border-color: #4082FF;
  background-color: rgba(255, 255, 255, 1);
}

.confirm-modal .modal-btn:hover {
  color: #fff;
  background: #5172ff;
  box-shadow: 0 4px 4px 0 rgba(180, 220, 253, 0.73);
}
/*确认弹层 end*/
