
// ==================================自定义修改element样式----------input组件==========================================
// ---------------form中input行间隔---------------------------
.el-form-item {
  margin-bottom: 3px;
  .el-form-item__label {
    font-size: 14px;
    color: #606266;
    padding-right: 6px;
  }
  .el-input,.el-select {
    /*djg2020-10-26 修改margin-bottom:10px 改为 7px*/
    margin-bottom: 10px;
    & + .el-form-item__error {
      color: rgba(255, 0, 0, 1);
      top: calc(100% - 13px);
    }
  }
  .el-input.el-input--medium,.el-select.el-select--medium ,.el-date-editor--daterange.el-range-editor--medium{
    margin-bottom: 9px;
    & + .el-form-item__error {
      color: rgba(255, 0, 0, 1);
      top: calc(100% - 13px);
    }
  }
  .el-input.el-input--small,.el-select.el-select--small,.el-date-editor--daterange.el-range-editor--small {
    margin-bottom: 4px;
    & + .el-form-item__error {
      color: rgba(255, 0, 0, 1);
      top: calc(100% - 11px);	//small
    }
  }
  .el-input.el-input--mini,.el-select.el-select--mini ,.el-date-editor--daterange.el-range-editor--mini{
    margin-bottom: 0;
    & + .el-form-item__error {
      color: rgba(255, 0, 0, 1);
      top: calc(100% - 9px);
    }
  }
  /*djg2020-10-26 新增针对textarea的控制*/
  .el-textarea{
    margin-bottom: 4px;
    & + .el-form-item__error {
      color: rgba(255, 0, 0, 1);
      top: calc(100% - 11px);	//small
    }
  }

}
/*djg 2020-10-29 修改disabled的组件字体颜色*/
.el-input.is-disabled .el-input__inner, .el-textarea.is-disabled .el-textarea__inner {
  color: #909399;
}
