ListCardItem.less 947 Bytes
Newer Older
1

2
.divBox {
3 4
  display: flex;
  flex-wrap: wrap;
5
  border: 1px solid #b5b8c8;
6
  margin-top: 20px;
7
  margin-right: 10px;
Maofei94's avatar
Maofei94 committed
8
  min-height: 50px;
Maofei94's avatar
Maofei94 committed
9
  padding: 10px 20px;
10 11 12
  .topCheckbox{
    height: 20px;
    background-color: #fff;
Maofei94's avatar
Maofei94 committed
13 14 15 16 17 18
    margin: -20px 0 0 0;
    font-weight: bold;
    line-height: 20px;
    span{
      font-size: 15px;
    }
19 20 21
  }
  .checkdiv {
    display: flex;
Maofei94's avatar
Maofei94 committed
22 23 24 25 26 27 28
    padding: 10px 0;
    .ant-checkbox-group{
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      .ant-checkbox-group-item{
Maofei94's avatar
Maofei94 committed
29 30 31 32 33
        flex:0 0 auto;
        flex-shrink: 0;
        flex-grow: 0;
        margin-right: 60px;
        // min-width: 180px;
Maofei94's avatar
Maofei94 committed
34 35 36
        margin-bottom: 5px;
      }
    }
37 38 39
    .check {
    } 
  }
40
}
Maofei94's avatar
Maofei94 committed
41 42 43
.isSearch{
  color: red;
  background-color: yellow;
Maofei94's avatar
Maofei94 committed
44 45 46 47 48 49 50 51 52 53
}
.btnBox{
  position: sticky;
  bottom: 0px;
  background-color: #fff;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
Maofei94's avatar
Maofei94 committed
54
}