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
| /* pages/bookServices/examination/questionSchedule/questionSchedule.wxss */
| .schedule {
| background-color: #ffffff;
| padding: 20rpx;
| font-size: 28rpx;
| border-radius: 20rpx;
| }
|
| .schedule-top {
| display: flex;
| justify-content: space-between;
| }
|
| .question-schedule {
| color: #000;
| }
|
| .schedule-progress {
| margin-top: 20rpx;
| }
|
| .remainder {
| color: #545C63;
| }
|
| .parimary-color {
| color: #ff6c00;
| }
|
| .question-num {
| margin-left: 10rpx;
| }
|
| .submit-message {
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding: 40rpx 20rpx;
| color: #000;
| font-size: 28rpx;
| }
|
|