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
| /* 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 {
| display: flex;
| width: 234rpx;
| color: #545C63;
| }
|
| .remainder-text {
| width: 112rpx;
| height: 40rpx;
| color: #545C63;
| }
|
| .remaining-time {
| margin-left: 6rpx;
| width: 116rpx;
| height: 40rpx;
| }
|
| .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;
| }
|
|