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 | page { background: white; }
.main { background: #eee; width: 100%; height: 100%; }
.top_view { height:60px; padding-top:10px; padding-left:15px; background:#fff;
}
.top_text_before { font-size: 14px; color: #222; }
.top_text_after { font-size: 14px; color: #333; margin-left: 3px; }
.divider10 { height: 10px; background: #eee; }
.order_service { font-size: 13px; color: #888; padding-top: 10px; background: #fff; padding-left: 15px; padding-bottom: 10px; margin-top: 10px; }
.content_view { background: #fff; padding-bottom: 15px; }
.divider1 { height: 1px; background: #eee; }
.icon { width: 30px; height: 30px; margin-left: 15px; margin-top: 10px; border-radius: 15px; }
.title_text { font-size: 16px; color: #222; margin-left: 5px; margin-top: 10px; }
.content_text { margin-left: 15px; font-size: 14px; color: #888; }
.money_view { padding-left: 15px; background: #fff; height: 43px; margin-top: 10px; display: flex; }
.money_before { font-size: 14px; color: #222; margin-top: 10px; }
.money_text { font-size: 20px; color: #e85858; right: 15px; position: absolute; margin-top: 5px; }
.pay_button { background: #48c17b; border-radius: 51px; font-size: 16px; color: #fff; height: 28px; margin-right: 15px; margin-left: 15px; margin-top: 70px; text-align: center; padding-top: 5px; padding-bottom: 5px; }
|