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
| .tab-manage {
| position: relative;
| padding: 16px 20px 80px;
|
| .tab-search {
| .ant-input-search {
| max-width: 300px;
| }
| }
| .tab-thaw {
| text-align: right;
| }
| .tab-list {
| padding-top: 20px;
| margin-left: -10px;
| margin-right: -10px;
| .ant-col {
| padding: 0 10px 30px;
| }
| .tab-card {
| .ant-card-body {
| position: relative;
| padding: 20px 0;
| img {
| max-width: 100%;
| }
| .tab-operation {
| position: absolute;
| top: -10px;
| right: 10px;
| opacity: 0;
| transition: all 0.1s linear;
|
| button {
| margin-left: 10px;
| }
| }
| }
| }
| .tab-card:hover {
| .ant-card-body {
| .tab-operation {
| top: 10px;
| opacity: 1;
| }
| }
| }
| }
| .ant-empty {
| margin: 25vh 0;
| }
| > .ant-spin {
| position: fixed;
| z-index: 10;
| left: calc(50vw - 22px);
| top: calc(50vh - 70px);
| }
| }
|
|