 //覆盖一些element-ui样式 覆盖css样式可在这里添加
.el-upload {
  input[type="file"] {
    display: none !important;
  }
}

.el-upload__input {
  display: none;
}


//暂时性解决diolag 问题 https://github.com/ElemeFE/element/issues/2461
.el-dialog {
  transform: none;
  left: 0;
  position: relative;
  margin: 0 auto;
}

//element ui upload
.upload-container {
  .el-upload {
    width: 100%;
    .el-upload-dragger {
      width: 100%;
      height: 200px;
    }
  }
}
.el-date-editor .el-range-separator {
  width:6%;
}

.el-progress-bar__outer{
  background-color: rgba(79, 91, 161, 0.25);
}
 .el-table thead tr,
 .el-table thead th{
   background-color: #fcfcfc;
 }
 .el-table thead {
   color:#404040;
   font-weight: 500;
 }
 .el-input__inner {
   height:32px;
   border-radius:2px;
 }
 .el-button, .el-button--medium, .el-button--mini, .el-button--small, .el-textarea__inner, .el-pagination {
   border-radius: 2px;
 }
 .el-date-editor .el-range__icon , .el-date-editor .el-range-separator{
  line-height: 25px;
 }
 .el-input__icon {
   line-height: 34px;
 }