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
| /* pages/classicCase/index.wxss */
|
| .header {
| font-size: 16px;
| display: flex;
| font-weight: bolder;
| justify-content: center;
| margin-top: 12px;
| margin-bottom: 8px;
| }
|
| .subTitleBox {
| color: rgba(0, 0, 0, 0.6);
| margin: 0 16px;
| display: flex;
| border-bottom: 1px dashed rgba(0, 0, 0, 0.20);
| justify-content: space-between;
| }
|
| .subTitle {
| font-size: 12px;
| margin-right: 120px;
| margin-bottom: 12px;
|
| }
|
| .img {
| height: 12px;
| width: 12px;
| margin-right: 4px;
| }
|
| .headerTitle {
| max-width: 500px;
| margin: 12px 60px 0px 60px;
| font-weight: 600;
| }
|
| .popup-box {
| position: fixed;
| z-index: 100;
| top: 0;
| left: 0;
| background-color: rgba(0, 0, 0, 0.5);
| width: 100%;
| height: 100%;
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
| .overBox {
| background-color: #fff;
| width: 300px;
| z-index: 101;
| position: absolute;
| box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.16);
| border-radius: 8px;
| }
|
| .judgment {
| font-size: 17px;
| line-height: 24px;
| display: flex;
| justify-content: center;
| margin-top: 20px;
| }
|
| .help {
| color: rgba(23, 26, 29, 0.6);
| font-size: 14px;
| margin: 12px 20px;
| }
|
| .star {
| z-index: 102;
| margin: 0px 20px 16PX 20PX;
| }
|
| .buttonBox {
| display: flex;
| border-top: 1px solid rgba(126, 134, 142, 0.16);
| height: 48px;
| font-size: 17px;
| }
|
| .think {
| flex: 1;
| display: flex;
| justify-content: center;
| align-items: center;
| border-right: 1px solid rgba(126, 134, 142, 0.16);
| }
|
| .judgmentFinish {
| flex: 1;
| display: flex;
| justify-content: center;
| align-items: center;
| color: rgba(209, 2, 28, 1);
| }
|
|