html,body{
    height:100%;

    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */

    background: #f7f7f7;
    color: #303133;
}
#app{
  height: 100%;
}
.ellipsis{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.ellipsis2{
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 这里是超出几行省略 */
  overflow: hidden;
}

.row{
  display: flex;
}
.row-between{
  display:flex;
  justify-content: space-between;
}
.row-align-center{
    display: flex;
    align-items: center;
}
.row-between-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.column{
  display: flex;
  flex-direction: column;
}
  .el-table th{
      background: #fafafa !important;
  }
  .el-color-predefine__color-selector{
      border: 1px solid #edeef2;
      box-sizing: border-box;
  }
  .el-form .el-form-item:last-child{
    margin-right: 0;
  }

  .el-icon.is-loading {
      animation: rotating 2s linear infinite;
  }
  .el-form-item .el-form-item{
    margin-bottom:10px;
  }
/*.el-select {
  min-width: 100px;
  max-width: 200px;
}*/