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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@import "~antd/dist/antd.css";
body,
html,
#root {
width: 100%;
height: 100%;
overflow: hidden;
margin: 0 !important;
padding: 0 !important;
}
.header-item {
color: rgb(100, 157, 255);
}
.ceil {
color: rgba(255, 255, 255, 0.4);
}
.img {
background-size: auto 86px;
background-repeat: no-repeat;
background-position: top center;
width: 100%;
height: 86px;
color: aliceblue;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
}
.bgtext {
background-image: linear-gradient(0deg, #77cde2 0%, #ffffff 100%);
background-clip: text;
-webkit-text-fill-color: transparent;
}
.fixder {
position: fixed;
width: 400px;
right: 380px;
top: 90px;
background-image: linear-gradient(
0deg,
rgba(52, 131, 242, 0.8) 0%,
rgba(52, 131, 242, 0.4) 100%
);
z-index: 999999;
border-radius: 8px;
padding: 12px;
}
.spread {
display: flex;
justify-content: space-between;
align-items: center;
color: #ffffff;
border-bottom: rgba(216, 216, 216, 0.4) solid 2px;
padding-bottom: 12px;
margin-bottom: 12px;
}
.spreaditem {
display: flex;
justify-content: space-between;
align-items: center;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 6px;
background-color: rgba(70, 119, 255, 0.4);
padding: 8px;
> div:first-child {
width: 140px;
flex-shrink: 0;
//text-indent: 8px;
position: relative;
word-break: break-all;
// &::before{
// position: absolute;
// left: 0;
// top: 4px;
// width: 2px;
// height: 14px;
// content: '';
// background-color: #d6dbff;
// }
}
> div:last-child {
flex: 1;
text-align: right;
word-break: break-all;
color: #ffffff !important;
}
}
.status {
position: fixed;
width: 209px;
left: 380px;
top: 90px;
background-image: linear-gradient(
0deg,
rgba(52, 131, 242, 0.6) 0%,
rgba(52, 131, 242, 0.1) 100%
);
z-index: 999999;
border-radius: 8px;
padding: 12px;
color: #ffffff;
}