home.css
1.2 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
.icon {
width: 2em;
height: 2em;
vertical-align: 0;
fill: #FFFFFF;
overflow: hidden;
}
.icon-area {
width:100px;
height:44px;
background:#333A3C;
border-radius:22px;
border: 0px;
}
.icon-stop {
width:100px;
height:44px;
border-radius:22px;
border: 0px;
background:#FB5252;
}
.icon-stop:hover {
background: rgba(251,82,82,0.8);
}
.icon-stop:active {
background:#FB5252;
}
.icon-area:hover {
background: rgba(54, 56, 60, 0.8);
}
.icon-area:active {
background: rgba(54, 56, 60, 1);
}
.home-header {
width: 100%;
height: 84px;
background-color: #000000;
text-align: center;
}
.home-header-title {
font-size:24px;
font-family:PingFang SC;
font-weight:bold;
color:rgba(255,255,255,1);
line-height:84px;
}
.main-style {
background-color: #000000;
}
.el-row {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.el-col {
border-radius: 4px;
}
.bg-purple-dark {
background: #99a9bf;
}
.bg-purple {
background: #d3dce6;
}
.bg-purple-light {
background: #e5e9f2;
}
.grid-content {
border-radius: 4px;
min-height: 36px;
color: #FFFFFF;
}
.row-bg {
padding: 10px 0;
background-color: #f9fafc;
}