king
2021-11-17 c51f5e007a3e03c9d6731ab7f28f0080de009990
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.mk-icon-box {
  display: block;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  line-height: 32px;
  padding: 0px 0px 0px 10px;
 
  .anticon.trigger {
    float: right;
    line-height: 32px;
    padding: 0 10px;
    border-left: 1px solid #d9d9d9;
  }
  .close.anticon {
    float: right;
    margin-top: 8px;
    margin-right: 8px;
    background: #fff;
    color: rgba(0, 0, 0, 0.45);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }
}
.mk-icon-box:hover {
  border-color: #1890ff;
  .close.anticon {
    opacity: 1;
  }
}
.mk-icon-box::after {
  content: ' ';
  display: block;
  clear: both;
}
.mk-icon-wrap {
  .ant-col {
    text-align: center;
    line-height: 55px;
    .anticon {
      font-size: 30px;
      cursor: pointer;
    }
  }
  .active.ant-col {
    .anticon {
      color: #1890ff;
    }
  }
}