circularDiagram.scss
2.3 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
.circle_main {
//
display: flex;
// background: red;
.circle_main_left {
width: 50%;
.circle_left_show {
margin: 40rpx 44rpx;
height: 224rpx;
}
.deviceNum {
font-family: DINAlternate-Bold;
font-size: 40rpx;
color: #323241;
letter-spacing: 0;
font-weight: 700;
}
.deviceCont {
font-family: PingFangSC-Regular;
font-size: 28rpx;
color: #323241;
letter-spacing: 0;
font-weight: 400;
}
}
.circle_main_right {
width: 50%;
// background: red;
.circle_right_show {
margin: 40rpx 44rpx;
display: flex;
align-items: center;
height: 224rpx;
.status_num_total,
.num_total_str {
font-family: PingFangSC-Regular;
font-size: 24rpx;
color: #9898A0;
letter-spacing: 0;
// text-align: right;
font-weight: 400;
}
.num_total {
font-family: PingFangSC-Semibold;
font-size: 40rpx;
color: #323241;
letter-spacing: 0;
text-align: right;
font-weight: 600;
margin: 0 4rpx;
}
.num_total_str {
font-size: 30rpx;
margin: 0 4rpx;
}
}
}
.circle_left_content {
display: flex;
// background: red;
.left_content {
flex: 1;
margin-left: 24rpx;
.left_content_num {
font-family: DINAlternate-Bold;
font-size: 48rpx;
color: #323241;
letter-spacing: 0;
text-align: center;
font-weight: 700;
}
.left_content_text {
font-family: PingFangSC-Regular;
font-size: 24rpx;
color: #9898A0;
letter-spacing: 0;
text-align: left;
font-weight: 400;
margin-top: 14rpx;
}
}
.right_content {
flex: 1;
.right_content_num {
font-family: DINAlternate-Bold;
font-size: 48rpx;
color: #F53F3F;
letter-spacing: 0;
text-align: center;
font-weight: 700;
}
.offLine {
color: #323241;
}
.right_content_text {
font-family: PingFangSC-Regular;
font-size: 24rpx;
color: #9898A0;
letter-spacing: 0;
text-align: left;
font-weight: 400;
margin-top: 14rpx;
}
}
}
}