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
| /* pages/drafts/drafts.wxss */
|
| view {
| display: flex;
| }
|
| .navbar {
| flex: none;
| display: flex;
| background: #fff;
| font-size: 18px;
| color: #999;
| height: 6vh;
| }
|
| .navbar .item {
| position: relative;
| flex: auto;
| text-align: center;
| line-height: 80rpx;
| }
|
| .navbar .item.active {
| color: #2195ff;
| }
|
| .navbar .item.active:after {
| content: "";
| display: block;
| position: absolute;
| bottom: 0;
| left: 0;
| right: 0;
| height: 4rpx;
| background: #2195ff;
| }
|
| span {
| color: #333;
| padding-right: 2vh;
| }
|
| .businessSchedule {
| font-size: 16px;
| padding: 2vh;
| margin: 2vh;
| background-color: #fff;
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| }
|
| .businessSchedule-top {
| display: flex;
| color: #333;
| align-items: center;
| padding-bottom: 1vh;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .businessSchedule-top-img {
| width: 3vh;
| height: 3vh;
| /* background-color: #999; */
| }
|
| .businessSchedule-top-title {
| padding-left: 1vh;
| }
|
| .businessSchedule-top-status {
| margin-left: auto;
| display: flex;
| justify-content: center;
| padding: 1vh;
| color: #999;
| font-size: 14px;
| }
|
| .businessSchedule-center {
| font-size: 14px;
| display: flex;
| padding: 1vh 0;
| color: #999;
| }
|
| .businessSchedule-bottom {
| display: flex;
| font-size: 14px;
| color: #999;
| }
|
| .drafts-load {
| display: flex;
| justify-content: center;
| color: #999;
| font-size: 14px;
| margin-bottom: 4vh;
| }
|
|