ListCardItem.less 1.04 KB
Newer Older
1
.divBox {
2 3
  display: flex;
  flex-wrap: wrap;
4
  border: 1px solid #b5b8c8;
5
  margin-top: 20px;
6
  margin-right: 10px;
Maofei94's avatar
Maofei94 committed
7
  min-height: 50px;
Maofei94's avatar
Maofei94 committed
8
  padding: 10px 20px;
9 10

  .topCheckbox {
11 12
    height: 20px;
    background-color: #fff;
Maofei94's avatar
Maofei94 committed
13 14 15
    margin: -20px 0 0 0;
    font-weight: bold;
    line-height: 20px;
16 17

    span {
Maofei94's avatar
Maofei94 committed
18 19
      font-size: 15px;
    }
20
  }
21

22 23
  .checkdiv {
    display: flex;
Maofei94's avatar
Maofei94 committed
24
    padding: 10px 0;
25 26

    .ant-checkbox-group {
Maofei94's avatar
Maofei94 committed
27 28 29 30
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
31 32 33 34

      .ant-checkbox-wrapper {
        width: 100%;
        margin-bottom: 8px;
Maofei94's avatar
Maofei94 committed
35
      }
36 37 38 39 40 41 42 43 44

      // .ant-checkbox-group-item {
      //   flex: 0 0 auto;
      //   flex-shrink: 0;
      //   flex-grow: 0;
      //   margin-right: 60px;
      //   // min-width: 180px;
      //   margin-bottom: 5px;
      // }
Maofei94's avatar
Maofei94 committed
45
    }
46 47

    .check {}
48
  }
49
}
50 51

.isSearch {
Maofei94's avatar
Maofei94 committed
52 53
  color: red;
  background-color: yellow;
Maofei94's avatar
Maofei94 committed
54
}
55 56

.btnBox {
Maofei94's avatar
Maofei94 committed
57 58 59 60 61 62 63 64
  position: sticky;
  bottom: 0px;
  background-color: #fff;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
Maofei94's avatar
Maofei94 committed
65
}