index.scss 889 Bytes
.searchs{
  height: 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin:16px 0 20px 0;
  .buttons{
    width: 266px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .buttonlight {
    width: 88px;
    height: 32px;
    background-color: #e8e9fe;
    color: #4e59c7;
    border: 1px solid #4e59c7;
    box-sizing: border-box;
    margin-top: 4px;
    &:hover{
      background-color: rgba(78, 89, 199, 0.8);
      color: #fff;
    }
  }
  .buttondark {
    width: 88px;
    height: 32px;
    background-color: #4e59c7;
    color: #ffffff;
    border: 1px solid #4e59c7;
    box-sizing: border-box;
    margin-top: 4px;
    &:hover{
      background-color: rgba(78, 89, 199, 0.8);
      color: #fff;
    }
  }
  .searchzone{
    .el-form-item{
      margin-bottom: 0;
    }
  }

}