react_hsbc_teller 0.3.4 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hsbc.js +1 -1
- package/lib/hsbc.js.LICENSE.txt +21 -0
- package/package.json +2 -1
- package/packages/api/api.js +20 -0
- package/packages/assets/img/icon_huatong.png +0 -0
- package/packages/pages/foot/foot.jsx +78 -76
- package/packages/pages/video/video.jsx +369 -77
- package/packages/pages/video/video.less +23 -15
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
z-index: 2000;
|
|
53
53
|
}
|
|
54
54
|
.videoFit{
|
|
55
|
-
object-fit:
|
|
55
|
+
object-fit: contain !important;
|
|
56
56
|
}
|
|
57
57
|
.itemPublic {
|
|
58
58
|
grid-column-start: 1;
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
}
|
|
63
63
|
.isBack {
|
|
64
64
|
transform: rotateY(180deg);
|
|
65
|
-
background: #333;
|
|
65
|
+
// background: #333;
|
|
66
66
|
}
|
|
67
67
|
.video1{
|
|
68
68
|
width: 100%;
|
|
@@ -150,11 +150,11 @@
|
|
|
150
150
|
// background: #fff;
|
|
151
151
|
.button{
|
|
152
152
|
display: inline-flex;
|
|
153
|
-
width: 100%;
|
|
153
|
+
// width: 100%;
|
|
154
154
|
position: absolute;
|
|
155
155
|
z-index: 1;
|
|
156
156
|
top: 0;
|
|
157
|
-
left:
|
|
157
|
+
left: 0;
|
|
158
158
|
.selectSee{
|
|
159
159
|
background: #00847F;
|
|
160
160
|
border-radius: 0px 0px 2px 2px;
|
|
@@ -183,27 +183,35 @@ border-radius: 0px 0px 2px 2px;
|
|
|
183
183
|
}
|
|
184
184
|
.customerTitle{
|
|
185
185
|
position: absolute;
|
|
186
|
-
top: 0;
|
|
186
|
+
// top: 0;
|
|
187
|
+
bottom: 0;
|
|
187
188
|
left: 0px;
|
|
188
|
-
width:
|
|
189
|
+
width: 30%;
|
|
189
190
|
line-height: 30px;
|
|
190
191
|
height: 30px;
|
|
191
|
-
background: rgba(219, 0, 17, 0.1);
|
|
192
|
+
// background: rgba(219, 0, 17, 0.1);
|
|
192
193
|
border-radius: 4px 0px 2px 0px;
|
|
193
|
-
color: #DB0011;
|
|
194
|
-
font-size: 14px;
|
|
194
|
+
// color: #DB0011;
|
|
195
|
+
// font-size: 14px;
|
|
195
196
|
}
|
|
196
197
|
.tellerTitle{
|
|
197
198
|
position: absolute;
|
|
198
|
-
top: 0;
|
|
199
|
+
// top: 0;
|
|
199
200
|
right: 0px;
|
|
200
|
-
width: 80px;
|
|
201
|
+
// width: 80px;
|
|
201
202
|
line-height: 30px;
|
|
203
|
+
|
|
204
|
+
bottom: 0;
|
|
202
205
|
height: 30px;
|
|
203
|
-
background: rgba(219, 0, 17, 0.1);
|
|
206
|
+
// background: rgba(219, 0, 17, 0.1);
|
|
204
207
|
border-radius: 4px 0px 2px 0px;
|
|
205
|
-
transform: rotateY(
|
|
206
|
-
|
|
207
|
-
color: #DB0011;
|
|
208
|
+
transform: rotateY(180deg);
|
|
209
|
+
// color: #DB0011;
|
|
208
210
|
font-size: 14px;
|
|
211
|
+
}
|
|
212
|
+
.titleBig{
|
|
213
|
+
width: 30%;
|
|
214
|
+
}
|
|
215
|
+
.titleSamlle{
|
|
216
|
+
width: 70%;
|
|
209
217
|
}
|