ListCardItem.less 1.35 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 48
    .check {
    }
49
  }
50 51 52
  .checkstationdiv {
    display: flex;
    padding: 10px 0;
53

54 55 56 57 58
    .ant-checkbox-group {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      // align-items: center;
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
      .ant-checkbox-wrapper {
        width: 30%;
        margin-bottom: 8px;
      }
    }
  }

  .isSearch {
    color: red;
    background-color: yellow;
  }

  .btnBox {
    position: sticky;
    bottom: 0px;
    background-color: #fff;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
}