shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
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
* {
    margin: 0;
    padding: 0;
}
 
.universal-container .universal-box>div {
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* width: 100%; */
    height: 100%;
    scrollbar-width: thin;
    box-sizing: border-box;
    overflow-y: auto !important;
}
 
 
::-webkit-scrollbar {
    width: 0.4em;
}
 
/* æ¨ªå‘滚动条样式 */
::-webkit-scrollbar:horizontal {
 
    height: 0.5em;
 
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    /* background: rgba(255, 0, 0, 0.8); */
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
 
::-webkit-scrollbar-thumb:window-inactive {
 
    background: rgba(169, 169, 169, 0.4);
 
}
 
.universal-container .universal-box table {
    font-size: 12px;
    color: #333333;
    width: 100%;
    border-width: 1px;
    border-collapse: collapse;
}
 
.universal-container .universal-box table th,
.universal-container .universal-box table td {
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #3131311a;
    text-align: left;
    text-align: center;
    line-height: 1.4;
}