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
126
127
128
129
130
131
| /* pages/mExtra/pSupervisiontask/pSupervisiontask.wxss */
| .page__hd {
| position: fixed;
| width: 100%;
| padding: 0;
| z-index: 2;
| background-color: #009e91;
| }
|
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 100vh;
| background: linear-gradient(#009e91, #00c4b3);
| }
|
| .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;
| max-width: 48vw;
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
|
| .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);
| white-space: nowrap;
| }
|
| .search-btn:active {
| background-color: rgba(255, 255, 255, 0.534);
| }
|
| .more {
| color: white;
| }
|
| .tab-card {
| color: white;
| margin: 4px 16px;
| border: 1px solid white;
| border-radius: 4px;
| font-size: 14px;
| display: flex;
| justify-content: space-around;
| }
| .tab-card>view{
| padding: 4px;
| width: 100%;
| text-align: center;
| }
|
| .tab-card>view:active {
| background-color: rgba(255, 255, 255, 0.534);
| }
|
| .tab-card__selected {
| background-color: white;
| color: #009e91;
| }
|
| .card-subtask {
| position: relative;
| color: #009e91;
| background-color: rgba(255, 255, 255, 0.918);
| margin: 4px 16px;
| border-radius: 4px;
| padding: 4px 4px 4px 16px;
| font-size: 14px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
|
| .card-subtask>text {
| color: #00c4b3;
| margin-right: 16px;
| font-size: 12px;
| }
|
| .card-subtask>image{
| width: 40px;
| height: 40px;
| position: absolute;
| top: 0px;
| left: 0px;
| opacity: 1.0;
| }
|
| button {
| white-space: nowrap;
| background-color: #009e91;
| max-width: 60px;
| font-size: 12px;
| padding: 8px;
| color: white;
| }
|
| .btn-share {
|
| }
|
|