|
@@ -0,0 +1,209 @@
|
|
1
|
+.BaoXiuDetail {
|
|
2
|
+ width: 100%;
|
|
3
|
+ min-height: 100%;
|
|
4
|
+ position: relative;
|
|
5
|
+ background: #f8f8f8;
|
|
6
|
+}
|
|
7
|
+.BaoXiuDetail > .TopLine {
|
|
8
|
+ width: 100%;
|
|
9
|
+ height: 20px;
|
|
10
|
+ background-color: #f8f8f8;
|
|
11
|
+ background: #f8f8f8;
|
|
12
|
+}
|
|
13
|
+.BaoXiuDetail > .TopInfo {
|
|
14
|
+ padding: 0 30px;
|
|
15
|
+ background: #fff;
|
|
16
|
+ position: relative;
|
|
17
|
+ overflow: hidden;
|
|
18
|
+}
|
|
19
|
+.BaoXiuDetail > .TopInfo > .flex-h {
|
|
20
|
+ align-items: center;
|
|
21
|
+ border-top: 2px solid rgba(0, 0, 0, 0.08);
|
|
22
|
+}
|
|
23
|
+.BaoXiuDetail > .TopInfo > .flex-h:first-child {
|
|
24
|
+ border-top: none;
|
|
25
|
+}
|
|
26
|
+.BaoXiuDetail > .TopInfo > .flex-h:first-child > text:first-child {
|
|
27
|
+ color: #333;
|
|
28
|
+ font-weight: bold;
|
|
29
|
+ font-size: 32px;
|
|
30
|
+}
|
|
31
|
+.BaoXiuDetail > .TopInfo > .flex-h > text {
|
|
32
|
+ font-size: 28px;
|
|
33
|
+ color: #999;
|
|
34
|
+ line-height: 98px;
|
|
35
|
+ white-space: nowrap;
|
|
36
|
+ overflow: hidden;
|
|
37
|
+ text-overflow: ellipsis;
|
|
38
|
+}
|
|
39
|
+.BaoXiuDetail > .TopInfo > .flex-h > text:first-child {
|
|
40
|
+ margin-right: 20px;
|
|
41
|
+}
|
|
42
|
+.BaoXiuDetail > .Detail {
|
|
43
|
+ padding: 0 30px;
|
|
44
|
+ background: #fff;
|
|
45
|
+ position: relative;
|
|
46
|
+ overflow: hidden;
|
|
47
|
+ margin-top: 20px;
|
|
48
|
+ padding-bottom: 40px;
|
|
49
|
+}
|
|
50
|
+.BaoXiuDetail > .Detail > text {
|
|
51
|
+ display: block;
|
|
52
|
+ width: 100%;
|
|
53
|
+ font-size: 30px;
|
|
54
|
+ color: #333;
|
|
55
|
+ font-weight: bold;
|
|
56
|
+ line-height: 98px;
|
|
57
|
+ border-bottom: 2px solid rgba(0, 0, 0, 0.08);
|
|
58
|
+}
|
|
59
|
+.BaoXiuDetail > .Detail > .flex-h {
|
|
60
|
+ margin-top: 40px;
|
|
61
|
+ margin-bottom: 40px;
|
|
62
|
+}
|
|
63
|
+.BaoXiuDetail > .Detail > .flex-h > .Line {
|
|
64
|
+ width: 50px;
|
|
65
|
+ position: relative;
|
|
66
|
+ overflow: visible;
|
|
67
|
+ border-left: 2px dashed #F35844;
|
|
68
|
+}
|
|
69
|
+.BaoXiuDetail > .Detail > .flex-h > .Line > view {
|
|
70
|
+ width: 14px;
|
|
71
|
+ height: 14px;
|
|
72
|
+ background: #F35844;
|
|
73
|
+ border-radius: 100%;
|
|
74
|
+ position: absolute;
|
|
75
|
+ left: -8px;
|
|
76
|
+ top: 30px;
|
|
77
|
+}
|
|
78
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item {
|
|
79
|
+ position: relative;
|
|
80
|
+ overflow: visible;
|
|
81
|
+ background: rgba(243, 88, 68, 0.08);
|
|
82
|
+ padding: 20px;
|
|
83
|
+}
|
|
84
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item::after {
|
|
85
|
+ content: '';
|
|
86
|
+ width: 0;
|
|
87
|
+ height: 0;
|
|
88
|
+ display: block;
|
|
89
|
+ position: absolute;
|
|
90
|
+ left: -40px;
|
|
91
|
+ top: 16px;
|
|
92
|
+ border-color: transparent rgba(243, 88, 68, 0.08) transparent transparent;
|
|
93
|
+ border-style: solid dashed solid solid;
|
|
94
|
+ border-width: 20px;
|
|
95
|
+}
|
|
96
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view {
|
|
97
|
+ width: 100%;
|
|
98
|
+ position: relative;
|
|
99
|
+ overflow: hidden;
|
|
100
|
+}
|
|
101
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList {
|
|
102
|
+ position: relative;
|
|
103
|
+ overflow: hidden;
|
|
104
|
+ margin-bottom: 40px;
|
|
105
|
+}
|
|
106
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Title {
|
|
107
|
+ align-items: center;
|
|
108
|
+}
|
|
109
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Title > text {
|
|
110
|
+ font-size: 24px;
|
|
111
|
+ color: #999;
|
|
112
|
+ line-height: 40px;
|
|
113
|
+ overflow: hidden;
|
|
114
|
+ white-space: nowrap;
|
|
115
|
+ text-overflow: ellipsis;
|
|
116
|
+}
|
|
117
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Title > text.Red {
|
|
118
|
+ color: #F35844;
|
|
119
|
+}
|
|
120
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Title > text.Green {
|
|
121
|
+ color: #14DC05;
|
|
122
|
+}
|
|
123
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Title > text.Blue {
|
|
124
|
+ color: #77A5F0;
|
|
125
|
+}
|
|
126
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Text {
|
|
127
|
+ font-size: 24px;
|
|
128
|
+ color: #333;
|
|
129
|
+ line-height: 40px;
|
|
130
|
+ margin-top: 10px;
|
|
131
|
+}
|
|
132
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Text > text.Blue {
|
|
133
|
+ color: #77A5F0;
|
|
134
|
+}
|
|
135
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .Text > text.Red {
|
|
136
|
+ color: #F35844;
|
|
137
|
+ font-size: 34px;
|
|
138
|
+}
|
|
139
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .ImgList {
|
|
140
|
+ font-size: 0;
|
|
141
|
+}
|
|
142
|
+.BaoXiuDetail > .Detail > .flex-h > .flex-item > view > .StepList > .ImgList > view {
|
|
143
|
+ display: inline-block;
|
|
144
|
+ vertical-align: middle;
|
|
145
|
+ width: 136px;
|
|
146
|
+ height: 136px;
|
|
147
|
+ position: relative;
|
|
148
|
+ overflow: hidden;
|
|
149
|
+ margin-top: 12px;
|
|
150
|
+ margin-right: 12px;
|
|
151
|
+ background: #f8f8f8;
|
|
152
|
+}
|
|
153
|
+.BaoXiuDetail > .Detail > .BottomBtn {
|
|
154
|
+ position: relative;
|
|
155
|
+ overflow: hidden;
|
|
156
|
+ margin-top: 30px;
|
|
157
|
+}
|
|
158
|
+.BaoXiuDetail > .Detail > .BottomBtn.active > text {
|
|
159
|
+ color: #fff;
|
|
160
|
+ background: #F35844;
|
|
161
|
+}
|
|
162
|
+.BaoXiuDetail > .Detail > .BottomBtn > text {
|
|
163
|
+ width: 100%;
|
|
164
|
+ display: block;
|
|
165
|
+ text-align: center;
|
|
166
|
+ font-size: 34px;
|
|
167
|
+ line-height: 98px;
|
|
168
|
+ border-radius: 98px;
|
|
169
|
+ color: #F35844;
|
|
170
|
+ background: #fff;
|
|
171
|
+ border: 2px solid #F35844;
|
|
172
|
+ box-sizing: border-box;
|
|
173
|
+}
|
|
174
|
+.BaoXiuDetail .LianXiPopup {
|
|
175
|
+ padding: 0 30px;
|
|
176
|
+ position: relative;
|
|
177
|
+ overflow: visible;
|
|
178
|
+ padding-bottom: 40px;
|
|
179
|
+}
|
|
180
|
+.BaoXiuDetail .LianXiPopup > text {
|
|
181
|
+ width: 100%;
|
|
182
|
+ display: block;
|
|
183
|
+ font-size: 24px;
|
|
184
|
+ color: #999;
|
|
185
|
+ line-height: 40px;
|
|
186
|
+ text-align: center;
|
|
187
|
+ margin-bottom: 30px;
|
|
188
|
+}
|
|
189
|
+.BaoXiuDetail .LianXiPopup > text:first-child {
|
|
190
|
+ font-size: 34px;
|
|
191
|
+ color: #333;
|
|
192
|
+ margin-bottom: 10px;
|
|
193
|
+ margin-top: -30px;
|
|
194
|
+}
|
|
195
|
+.BaoXiuDetail .LianXiPopup > .flex-h {
|
|
196
|
+ border-top: 2px solid rgba(0, 0, 0, 0.08);
|
|
197
|
+}
|
|
198
|
+.BaoXiuDetail .LianXiPopup > .flex-h > text {
|
|
199
|
+ font-size: 30px;
|
|
200
|
+ line-height: 100px;
|
|
201
|
+ color: #77A5F0;
|
|
202
|
+}
|
|
203
|
+.BaoXiuDetail .LianXiPopup > .flex-h > text:first-child {
|
|
204
|
+ color: #333;
|
|
205
|
+}
|
|
206
|
+.BaoXiuDetail .LianXiPopup > .flex-h > text:last-child {
|
|
207
|
+ font-size: 40px;
|
|
208
|
+ margin-left: 10px;
|
|
209
|
+}
|