whychdw
2019-07-05 7ab97c4ada45550abc7f440d60549b249726a9ff
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
.page-container {
    position: relative;
    height: 100%;
    overflow-y: auto;
}
.page-container.page-container-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-container .graph{
    height: 100%;
}
 
/* height */
.h500 {
    height: 500px;
}
.h600 {
    height: 600px;
}
/* bg-color */
.bg-white {
    background-color: #FFFFFF;
}
.bg-primary {
    background-color: #2d8cf0
}
.bg-info {
    background-color: #2db7f5;
}
.bg-success {
    background-color: #19be6b;
}
.bg-error {
    background-color: #ed4014;
}
/* margin */
.mrt8 {
    margin-top: 8px;
}
.mrr8 {
    margin-right: 8px;
}
/* table cell bg */
 
.ivu-table .bg-error {
    background-color: #ed4014;
    color: #FFFFFF;
}
 
/*滚动条整体样式*/
::-webkit-scrollbar{
    width: 10px;/*竖向滚动条的宽度*/
    height: 10px;/*横向滚动条的高度*/
}
::-webkit-scrollbar-thumb{/*滚动条里面的小方块*/
    background: #666666;
    border-radius: 5px;
}
::-webkit-scrollbar-track{/*滚动条轨道的样式*/
    background: #ccc;
    border-radius: 5px;
}