style.css
2.01 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
:root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
html, body {
position: absolute;
padding: 0;
margin: 0;
min-height: 100%;
width: 100%;
}
body {
background-color: #ffffff;
min-height: 100%;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
#app {
min-height: 100%;
}
@media (prefers-color-scheme: light) {
}
#app-header {
padding: 0;
position: fixed;
width: 100%;
z-index: 99;
}
#app-main {
width: 100%;
min-width: 1200px;
padding: 60px 0 0 0;
min-height: calc(100vh - 75px);
}
#app-footer {
padding: 0;
}
.body_wrap {
background-color: #FAFAFA;
padding: 20px 0;
}
.w80 {
width: 80%;
margin: 0 auto;
padding: 0;
min-width: 1200px;
}
.primary-btn {
background: linear-gradient(91deg, #546AD2, #727BFF);
}
.primary-btn.reverse {
color: #475EE3;
background: #FFFFFF;
}
ul {
padding: 0px;
margin: 0px;
list-style: none;
}
.common_con {
padding: 20px;
background-color: #ffffff;
position: relative;
}
.table_wrap {
min-height: 400px;
}
:focus-visible {
outline: none;
}
.loader_warp {
display: flex;
justify-content: center;
position: absolute;
z-index: 999;
width: 100%;
left: 0;
top: 0;
height: 100%;
padding-top: 200px;
min-height: 400px;
background-color: rgba(255,255,255,0.5);
}
.loader {
border: 4px solid rgba(0, 0, 0, 0.1); /* 轻颜色的边框 */
border-radius: 50%; /* 圆形 */
border-top: 4px solid #3498db; /* 蓝色边框 */
width: 40px; /* 加载器的宽度 */
height: 40px; /* 加载器的高度 */
animation: spin 2s linear infinite; /* 应用加载动画 */
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}