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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
| .check-card-edit-box {
| line-height: 1.5;
| .ant-col {
| float: left;
| }
| .card-cell {
| position: relative;
| border: 1px solid #bcbcbc;
| border-radius: 4px;
| padding: 4px 6px;
| margin-bottom: 12px;
|
| .bg-mask {
| position: absolute;
| top: 0;
| left: 0;
| right: 0;
| bottom: 0;
| opacity: 1;
| border-radius: 4px;
| background-color: transparent;
| }
| }
| .card-pic-cell {
| position: relative;
| border: 1px solid #e8e8e8;
| border-radius: 4px;
| background-size: cover;
| background-position: center;
| margin-bottom: 12px;
| overflow: hidden;
|
| .content-wrap {
| position: absolute;
| top: 6px;
| left: 6px;
| right: 6px;
| bottom: 6px;
| .content-center {
| position: relative;
| top: 50%;
| transform: translate(0px, -50%);
| }
| }
| }
| .card-color-cell {
| border: 1px solid transparent;
| border-radius: 4px;
| padding: 4px 6px;
| background-size: cover;
| background-position: center;
| margin-bottom: 12px;
| min-height: 32px;
| }
|
| .content-line {
| display: block;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| position: relative;
| z-index: 1;
| }
| .no-margin-bottom {
| margin-bottom: 2px;
| }
| }
| .check-card-edit-box.border-hide {
| .card-cell {
| border: 0px;
| }
| }
|
|