/* * {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

html,
body,
#root,
#root>div {
  height: 100%
}

html {
  font-size: 62.5%;
}

.el-message-box {
  border: 2px solid #eee;
}

#root .el-input-number__decrease,
#root .el-input-number__increase {
  color: #000;
}

#root .el-input-number__decrease.is-disabled,
#root .el-input-number__increase.is-disabled {
  color: #d1dbe5;
}

.el-message {
  z-index: 999999999 !important;
}

.el-input-number>.el-input>.el-input__inner {
  text-align: right;
}

.el-select-dropdown {
  z-index: 999999999 !important;
}

.el-input__inner {
  border: 1px solid #ccc;
  border-radius: 2px;
}

.el-button {
  border-radius: 0 !important;
}

.el-button--small {
  border: 1px solid #bfcbd9;
}

.el-input__inner.has-value {
  background-color: rgb(250, 230, 205);
  background-clip: border-box;
}

ul {
  list-style: none;
}

.el-input__icon {
  color: #888 !important;
}

body {
  -webkit-font-smoothing: antialiased;
}

.el-input__inner::placeholder {
  color: grey;
}

.el-input__icon+.el-input__inner {
  padding-right: 20px;
}

.el-button--small {
  height: 26px;
}

.el-button [class*=" el-icon-"],
.el-button [class^=el-icon-] {
  color: #20A0FF;
}

.el-button--primary [class*=" el-icon-"],
.el-button--primary [class^=el-icon-] {
  color: #fff;
}

.el-input__inner {
  height: 26px !important;
  font-size: 11px;
  width: 100%;
}

.el-breadcrumb__item__inner,
.el-breadcrumb__separator {
  color: #000 !important;
}

.el-breadcrumb__item__inner:hover {
  cursor: text;
}

.el-button--text {
  border-width: 0;
}

.el-button--primary {
  border-color: #20a0ff;
}

.el-dialog__wrapper {
  outline: 0;
}

.el-select-dropdown {
  left: 0 !important;
}

.el-select-dropdown__item,
.el-cascader-menu__item {
  padding: 3px 10px;
  height: 26px;
  font-size: 11px;
}

.el-input__icon {
  font-size: 12px;
}

.el-cascader__label {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.el-message-box__btns {
  display: flex;
  flex-direction: row-reverse;
}

.el-message-box__btns>.el-button {
  margin-left: 10px;
}

.el-form-item__error {
  padding-top: 0;
  top: 87%;
} */

/* ==========================================================================
   loader - 进度条
   ========================================================================== */

.egenieLoader {
  width: 400px;
  height: 200px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  display: inline-block;
  left: 0;
  background: white;
  text-align: center;
  right: 0;
  border: solid 2px #bebebe;
  box-shadow: gray 3px 3px 25px;
  z-index: 999999999999999;
}

.egenieLoader .loaderText {
  width: 100%;
  height: 15%;
  background: green;
  color: white;
  text-align: center;
  font-size: 20px;
  overflow: hidden;
}

.egenieLoader .loaderNumber {
  position: absolute;
  top: 42%;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.egenieLoader .comfirm-btn {
  margin-top: 45px;
  color: rgb(255, 255, 255);
  background: rgb(247, 186, 42);
  border-color: transparent;
  display: inline-block;
  box-sizing: border-box;
  min-width: 60px;
  cursor: pointer;
  font-size: 12px;
  height: 26px;
  line-height: 26px;
  margin-left: 10px;
  transition: all 0.5s;
}

.egenieLoader .loaderBar {
  width: 80%;
  height: 30px;
  margin: 13% auto 0 auto;
  border: solid 1px #bebebe;
}

.egenieLoader .loaderBar .loaderBarChild {
  width: 1%;
  background: #d2d217;
  transition: width 1s;
  background-size: 1000px;
  height: 100%;
  animation: load 20s linear infinite;
  animation-iteration-count: infinite;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, rgba(255, 255, 255, 0.3) 5px, rgba(255, 255, 255, 0.3) 18px);
}

.egenieLoader .loaderBar .loaderCompete {
  animation: none;
  background-color: green;
}

@keyframes load {
  0% {
    background-position-x: 0;
  }

  100% {
    background-position-x: 2000px;
  }
}