riku
2026-03-05 9465dc404f7e7cd56100e4859ee0946a3fef7b09
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
/* pages/mService/pDevicedata/pDevicedata.wxss */
.page__hd {
  padding: 0;
}
 
.card {
  margin: 0 12px;
  padding: 4px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.795);
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.13);
}
.flex-h>view {
  white-space: nowrap;
}
.flex-h>text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.banner-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: linear-gradient(#009e91, #00c4b3);
}
 
.radar-panel {
  width: 100%;
  height: 35vh;
  color: white;
}
 
.title {
  color: white;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 4px;
}
 
.select-time {
  color: white;
  margin: 0 16px 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
 
.select-time .select-time-text {
  border-radius: 4px;
  border: 1px solid white;
  text-align: center;
  padding: 2px 8px;
  margin-right: 4px;
}
 
.table-row {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  color: white;
  font-size: 14px;
}
 
.table-row>text{
  display: block;
  width: 100%;
  border: 1px solid white;
  border-top: 0px;
  border-left: 0px;
  text-align: center;
}
 
.table-row .table-row__first-td {
  width: 100px;
  border-left: 1px solid white;
}
 
.table-row-first>text{
  border: 1px solid white;
  border-left: 0px;
  font-weight: 600;
  background-color: rgba(253, 253, 253, 0.158);
}
 
.more {
  color: white;
}
 
.search-btn {
  border-radius: 4px;
  border: 1px solid white;
  text-align: center;
  padding: 2px 0;
  color: #009e91;
  flex: 1;
  margin-left: 8px;
  background-color: rgb(255, 255, 255);
}
 
.search-btn:active {
  background-color: rgba(255, 255, 255, 0.534);
}