  /*输入框*/
  
  .el-input__inner {
      border: 1px solid #e7e7e7;
  }
  
  .el-form-item__label {
      padding: 10px 4px 10px 0;
      font-size: 12px;
      line-height: 1;
  }
  
  .el-form-item__content {
      font-size: 12px;
      line-height: 30px;
  }
  
  .el-form {
      .el-col {
          .el-input__inner {
              height: 30px;
          }
      }
      .el-input,
      .el-textarea {
          font-size: 12px;
          width: 420px;
          .el-input__inner::-webkit-input-placeholder,
          .el-textarea__inner::-webkit-input-placeholder {
              color: #ccc;
          }
          .el-input__inner:-moz-placeholder,
          .el-textarea__inner:-moz-placeholder {
              color: #ccc;
          }
          .el-input__inner::-moz-placeholder,
          .el-textarea__inner::-moz-placeholder {
              color: #ccc;
          }
          .el-input__inner:-ms-input-placeholder,
          .el-textarea__inner:-ms-input-placeholder {
              color: #ccc;
          }
          .el-input__inner {
              padding: 0 5px;
              border: 1px solid #e7e7e7;
              vertical-align: middle;
              border-radius: 0;
              &:focus {
                  border-color: #2aafff;
                  outline: 0;
                  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
                  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
                  color: #333;
              }
              &:disabled {
                  background-color: #f1f1f1;
                  border-color: #e7e7e7;
                  cursor: not-allowed !important;
              }
          }
          .el-textarea__inner {
              //width:388px;
              padding: 5px;
              height: 66px;
              border: 1px solid #e7e7e7;
              line-height: 22px;
              resize: none;
              vertical-align: middle;
              color: #333;
              border-radius: 0;
              &:focus {
                  border-color: #2aafff;
                  outline: 0;
                  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
                  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
                  color: #333;
              }
              &:disabled {
                  border-color: #e7e7e7;
                  background: #f1f1f1;
              }
          }
      }
      .el-date-editor--datetimerange {
          width: 350px;
      }
      .el-date-editor--time {
          min-width: 300px;
      }
      .el-input .is-error,
      .el-textarea .is-error {
          border-color: #ff0000;
          &:focus {
              border-color: #ff0000;
              -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(255, 0, 0, .3);
              box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px rgba(255, 0, 0, .3);
          }
      }
      .el-form-item__error {
          font-size: 12px;
          line-height: 1;
          padding-top: 3px;
      }
  }
  
  .el-form-item {
      margin-bottom: 20px;
  }
  
  .form-bottom-action .el-button {
      min-width: 88px;
  }