react_hsbc_teller 2.0.7 → 2.0.8-5.1

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.
Files changed (70) hide show
  1. package/.babelrc +39 -39
  2. package/README.en.md +36 -36
  3. package/README.md +404 -52
  4. package/config/webpack.config.js +119 -119
  5. package/config/webpack.dev.js +108 -108
  6. package/config/webpack.prod.js +104 -104
  7. package/lib/hsbc.js +1 -1
  8. package/lib/hsbc.js.LICENSE.txt +24 -16
  9. package/package.json +110 -109
  10. package/packages/api/api.js +818 -570
  11. package/packages/api/server.js +50 -50
  12. package/packages/assets/img/icon_fail.jpg +0 -0
  13. package/packages/assets/img/icon_success.jpg +0 -0
  14. package/packages/assets/mp3/connect_error.mp3 +0 -0
  15. package/packages/assets/mp3/ipad_join_meeting.mp3 +0 -0
  16. package/packages/assets/mp3/ipad_leave_error.mp3 +0 -0
  17. package/packages/assets/mp3/ipad_leave_meeting.mp3 +0 -0
  18. package/packages/assets/mp3/ipad_low_power.mp3 +0 -0
  19. package/packages/assets/mp3/ipad_media_close.mp3 +0 -0
  20. package/packages/assets/mp3/media_error.mp3 +0 -0
  21. package/packages/assets/mp3/networkweak.mp3 +0 -0
  22. package/packages/assets/mp3/pip_close.mp3 +0 -0
  23. package/packages/assets/mp3/record_error.mp3 +0 -0
  24. package/packages/assets/mp3/share_stop_audio.mp3 +0 -0
  25. package/packages/assets/mp3/startMedia_error.mp3 +0 -0
  26. package/packages/assets/mp3/volume_error.mp3 +0 -0
  27. package/packages/common/index.esm.js +374 -374
  28. package/packages/demo/demo.js +325 -279
  29. package/packages/demo/index.js +3 -3
  30. package/packages/demo/pdf.js +94 -79
  31. package/packages/envconfig/envconfig.js +12 -12
  32. package/packages/index.js +2 -2
  33. package/packages/pages/components/step/step.jsx +25 -31
  34. package/packages/pages/foot/foot.jsx +235 -246
  35. package/packages/pages/foot/foot.less +85 -85
  36. package/packages/pages/header/header.jsx +15 -15
  37. package/packages/pages/header/header.less +51 -51
  38. package/packages/pages/index.jsx +52 -52
  39. package/packages/pages/multiModule/components/copy/agree.jsx +115 -0
  40. package/packages/pages/multiModule/components/copy/agree.less +105 -0
  41. package/packages/pages/multiModule/components/copy/copyTwo.jsx +682 -0
  42. package/packages/pages/multiModule/components/copy/copyTwo.less +180 -0
  43. package/packages/pages/multiModule/components/copy/copy_en.jsx +368 -0
  44. package/packages/pages/multiModule/components/copy/copy_en.less +145 -0
  45. package/packages/pages/multiModule/components/copy/copylist.jsx +291 -0
  46. package/packages/pages/multiModule/components/copy/copylist.less +83 -0
  47. package/packages/pages/multiModule/components/copy/risk.jsx +296 -0
  48. package/packages/pages/multiModule/components/copy/risk.less +123 -0
  49. package/packages/pages/multiModule/components/sign/signMy.jsx +308 -0
  50. package/packages/pages/multiModule/components/sign/signMy.less +128 -0
  51. package/packages/pages/multiModule/components/subscribe/subscribe.jsx +113 -0
  52. package/packages/pages/multiModule/components/subscribe/subscribe.less +82 -0
  53. package/packages/pages/multiModule/multiModule.jsx +26 -0
  54. package/packages/pages/multiModule/multiModule.less +20 -0
  55. package/packages/pages/sign/signMy.jsx +223 -221
  56. package/packages/pages/sign/signMy.less +129 -129
  57. package/packages/pages/video/video.css +667 -0
  58. package/packages/pages/video/video.jsx +8352 -6033
  59. package/packages/pages/video/video.less +724 -634
  60. package/packages/style/index.less +1 -1
  61. package/packages/style/reset.less +345 -345
  62. package/packages/utils/asrController.js +259 -0
  63. package/packages/utils/asyncComponent.jsx +26 -26
  64. package/packages/utils/mixin.js +27 -27
  65. package/packages/utils/setRem.js +10 -10
  66. package/packages/utils/utils.js +210 -0
  67. package/public/index.html +77 -77
  68. package/src/index.js +11 -11
  69. package/src/index.less +5 -5
  70. package/tsconfig.json +11 -11
@@ -1,635 +1,725 @@
1
- .publishVideo1{
2
- width: 100px;
3
- height: 100px
4
- }
5
- .mixedvideo{
6
- display: none;
7
- position:absolute;
8
- object-fit: cover
9
- }
10
- .imgClass{
11
- width: 100%;
12
- height: 100%;
13
- float: right
14
- }
15
- .imgClassVoice{
16
- width: 25Px;
17
- height: 24Px;
18
- margin-bottom: 4Px;
19
- }
20
- .sharedScreen{
21
- font-size: 10px;
22
- position: absolute;
23
- height: 30px;
24
- line-height: 30px;
25
- color: red;
26
- }
27
- .wrapper {
28
- overflow: auto;
29
- display: flex;
30
- flex-direction: column;
31
- height: 100%;
32
- width: 20%;
33
- background: #f3f3f3;
34
- text-align: center;
35
- margin-left: 20px;
36
- // display: grid;
37
- // grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
38
- // grid-template-rows: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
39
- }
40
- .isNoVideo{
41
- display: none;
42
- }
43
- .itemed {
44
- text-align: center;
45
- // border: 1px solid #fff;
46
- color: #fff;
47
- font-weight: bold;
48
- min-height: 170px;
49
- position: relative;
50
- background: #333;
51
- margin-bottom: 20px;
52
- border-radius: 6px;
53
- }
54
- .videoFit{
55
- object-fit: cover !important;
56
- }
57
- // .isBack {
58
- // transform: rotateY(180deg);
59
- // // background: #333;
60
- // }
61
- .video1{
62
- width: 100%;
63
- height: 100%;
64
- object-fit: cover;
65
- border-radius: 6px;
66
- }
67
- .videoTab{
68
- width: 100%;
69
- height: 100%;
70
- object-fit: contain;
71
- border-radius: 6px;
72
- }
73
- .video{
74
- width: 100%;
75
- height: 100%;
76
- object-fit: cover;
77
- border-radius: 6px;
78
- }
79
- .video1Div{
80
- width: 100%;
81
- height: 100%;
82
- }
83
- .health{
84
- padding: 20Px;
85
- background: #f0f0f0;
86
- }
87
- .healthVideo{
88
- height: ~"calc(100vh - 12.9125rem)";
89
- width: 100%;
90
- display: inline-flex;
91
- }
92
- .all{
93
- height: 100%
94
- }
95
- .ownClass{
96
- height: calc(100vh - 15px);
97
- object-fit: cover;
98
- width: 100%;
99
- }
100
- .publishVideoClass{
101
- height: 100%;
102
- width: 100%;
103
- object-fit: cover;
104
- border-radius: 6px;
105
- }
106
- .publishVideoDiv{
107
- height: 100%;
108
- width: 100%;
109
- border-radius: 6px;
110
- }
111
- .invitationSpan{
112
- margin-top: 5px;
113
- margin-right: 15px;
114
- float: right;
115
- height: 37px !important;
116
- width: 80px !important;
117
- font-size: 16px !important;
118
- border: 1px #3E505D solid!important;
119
- background: #3E505D !important;
120
- color: #fff!important;
121
- }
122
- .inputClick{
123
- width: 65%;
124
- height: 46px;
125
- border-radius: 2px;
126
- // border: 0px;
127
- outline: none;
128
- font-size: 17px;
129
- padding: 0 5px;
130
- border: 1px #707070 solid;
131
- }
132
- .modalSpan{
133
- margin-right: 20px;
134
- font-size: 17px;
135
- color: #666666;
136
- }
137
- .invitationImg{
138
- width: 20px;
139
- height: 20px;
140
- }
141
- .invitationButton{
142
- color: #1a9adc !important;
143
- border: none !important;
144
- background: #fff !important;
145
- }
146
- .invitationDiv{
147
- margin-left: 40px;
148
- margin-bottom: 15px;
149
- input::-webkit-inner-spin-button {
150
- -webkit-appearance: none;
151
- appearance: none;
152
- margin: 0;
153
- }
154
- }
155
- .faceImg{
156
- width: 60%;
157
- margin-bottom: 20Px;
158
- }
159
- .faceBody{
160
- text-align: center;
161
- height: 100%;
162
- width: ~"calc(100% - 150px)";
163
- .faceCardImg{
164
- // height: 100%;
165
- }
166
- .resuleCard{
167
- text-align: -webkit-left;
168
- padding: 0Px 2Px;
169
- div{
170
- font-size: 13Px;
171
- color: #646464;
172
- margin: 10Px 20Px;
173
- input{
174
- border: #DCDCDC 1px solid;
175
- width: 15rem;
176
- height: 2rem;
177
- line-height: 2rem;
178
- margin-left: 15px;
179
- }
180
- span{
181
- display: inline-block;
182
- min-width: 5rem;
183
- }
184
- }
185
- }
186
- }
187
- .content{
188
- height: 200px;
189
- border-radius: 4px;
190
- border:1px dashed #DDDDDD;
191
- margin: 24px;
192
- margin-bottom: 3rem;
193
- flex:1;
194
-
195
- }
196
- .ant-spin-nested-loading,.ant-spin-container{
197
- height: 100%;
198
- }
199
- .projection{
200
- width: 80%;
201
- position: relative;
202
- // background: #fff;
203
- color: #333;
204
- border-radius: 0 4px 4px 4px;
205
- text-align: left;
206
- // height: ~"calc(100vh - 130px)";
207
- // position: absolute;
208
- // z-index: 1;
209
- // background: #fff;
210
- .videoDiv{
211
- width: 100%;
212
- height: 100%;
213
- .video{
214
- width: 100%;
215
- height: 100%;
216
- background: rgba(0, 0, 0, 0.65);
217
- }
218
- }
219
- }
220
- .customerTitle{
221
- background: rgba(0, 0, 0, 0.65);
222
- display: inline-flex;
223
- position: absolute;
224
- align-items: center;
225
- // top: 0;
226
- left: 10px;
227
- // width: 80px;
228
- line-height: 40px;
229
-
230
- bottom: 10px;
231
- height: 40px;
232
- // background: rgba(219, 0, 17, 0.1);
233
- border-radius: 4px;
234
- // transform: rotateY(180deg);
235
- // color: #DB0011;
236
- // font-size: 14px;
237
- }
238
- .tellerTitle{
239
- background: rgba(0, 0, 0, 0.65);
240
- display: inline-flex;
241
- position: absolute;
242
- // top: 0;
243
- left: 10px;
244
- // width: 80px;
245
- line-height: 40px;
246
-
247
- bottom: 10px;
248
- height: 40px;
249
- // background: rgba(219, 0, 17, 0.1);
250
- border-radius: 4px;
251
- // transform: rotateY(180deg);
252
- // color: #DB0011;
253
- font-size: 14px;
254
- }
255
- .titleBig{
256
- max-width: 30%;
257
- }
258
- .titleSamlle{
259
- max-width: 70%;
260
- }
261
- .titleName{
262
- white-space: nowrap;
263
- text-overflow: ellipsis;
264
- overflow: hidden;
265
- padding-right: 10px;
266
- }
267
- .themeClass{
268
- position: absolute;
269
- top: 0;
270
- left: 0;
271
- right: 0;
272
- bottom: 0;
273
- margin: auto;
274
- width: 500px;
275
- height: 300px;
276
- font-size: 22px;
277
- color: #222222;
278
- font-weight: 600;
279
- ul{
280
- li{
281
- list-style: none;
282
- margin: 21px 0;
283
- text-align: left;
284
- span{
285
- font-size: 20px;
286
- width: 143px;
287
- text-align: left;
288
- display: inline-block;
289
- }
290
- .labelClass{
291
- font-size: 16px;
292
- text-align: left;
293
- display: inline-block;
294
- }
295
- }
296
- }
297
- }
298
- .button{
299
- display: inline-flex;
300
- // width: 100%;
301
- // position: absolute;
302
- // z-index: 1;
303
- // top: 0;
304
- // left: 0;
305
- .selectSee{
306
- max-width: 8rem;
307
- height: 32px;
308
- text-align: center;
309
- background: #303D46;
310
- border-radius: 0 0 0.104167rem 0.104167rem;
311
- border: 0.052083rem solid #303D46;
312
- color: #ffffff;
313
- font-size: 14px;
314
- }
315
- .noSelest{
316
- max-width: 8rem;
317
- height: 32px;
318
- text-align: center;
319
- background: #D7D8D6;
320
- border-radius: 0 0 0.104167rem 0.104167rem;
321
- border: 0.052083rem solid #D7D8D6;
322
- color: #303D46;
323
- font-size: 14px;
324
- }
325
- div{
326
- font-size: 16px;
327
- color: #FFFFFF;
328
- padding: 6px 13px;
329
- }
330
- }
331
- .envClass {
332
- margin-bottom: 0;
333
- padding-left: 1.25rem;
334
- }
335
- .ant-collapse > .ant-collapse-item > .ant-collapse-header{
336
- font-weight: bold;
337
- }
338
- .ant-collapse > .ant-collapse-item.panel-error > .ant-collapse-header{
339
- color: red;
340
- }
341
- .voiceClass{
342
- width: 25Px;
343
- height: 25.3Px;
344
- margin-bottom: 1Px;
345
- }
346
- .cameraAnMicrophone{
347
- margin: 10px 20px;
348
- }
349
- .ant-modal-header{
350
- // padding: 36px 30px 30px 30px !important;
351
- border-bottom: none !important;
352
- }
353
- .ant-modal-body{
354
- padding: 0 !important;
355
- }
356
- .ant-modal-title{
357
- font-size: 22px !important;
358
- color: #333333 !important;
359
- }
360
- .ant-modal-footer {
361
- margin-top: 0px!important;
362
- // padding: 0px 0px 0px!important;
363
- }
364
-
365
- .modelButtonCancel{
366
- width: 100px!important;
367
- height: 40px!important;
368
- font-size: 16px!important;
369
- color: #333!important;
370
- border: 1px #333 solid!important;
371
- background: #fff!important;
372
- border-spacing: 20px!important;
373
- }
374
- .modelNoButton{
375
- margin-left: 10px;
376
- }
377
- .modelButtonCancelOne{
378
- width: 170px!important;
379
- height: 40px!important;
380
- font-size: 16px!important;
381
- color: #5C5C5C!important;
382
- border: 1px #5C5C5C solid!important;
383
- border-spacing: 20px!important;
384
- background: #d9d9d9!important;
385
- }
386
- .modelButtonOkInvitation{
387
- width: 170px!important;
388
- height: 40px!important;
389
- font-size: 16px!important;
390
- color: #ffffff!important;
391
- border: 1px #DB0011 solid!important;
392
- background: #DB0011!important;
393
- border-spacing: 20px!important;
394
- }
395
- .modelButtonOk{
396
- width: 100px!important;
397
- height: 40px!important;
398
- font-size: 16px!important;
399
- color: #ffffff!important;
400
- border: 1px #DB0011 solid!important;
401
- background: #DB0011!important;
402
- border-spacing: 20px!important;
403
- }
404
- .modelButtonNo{
405
- width: 100px!important;
406
- height: 40px!important;
407
- font-size: 16px!important;
408
- color: #5C5C5C!important;
409
- border: 1px #5C5C5C solid!important;
410
- background: #d9d9d9!important;
411
- border-spacing: 20px!important;
412
- }
413
- .modelButtonFaceOk{
414
- width: 170px!important;
415
- height: 40px!important;
416
- font-size: 16px!important;
417
- color: #333!important;
418
- border: 1px #333 solid!important;
419
- background: #fff!important;
420
- border-spacing: 20px!important;
421
- }
422
- .modelButtonFaceOkColor{
423
- min-width: 170px!important;
424
- height: 40px!important;
425
- font-size: 16px!important;
426
- color: #ffffff!important;
427
- border: 1px #DB0011 solid!important;
428
- background: #DB0011!important;
429
- border-spacing: 20px!important;
430
- }
431
- .modelButtonFaceOkColorFile{
432
- width: 170px!important;
433
- height: 40px!important;
434
- font-size: 16px!important;
435
- color: #5C5C5C!important;
436
- border: 1px #5C5C5C solid!important;
437
- background: #d9d9d9!important;
438
- border-spacing: 20px!important;
439
- }
440
- .endModal{
441
- font-size: 16px;
442
- padding: 56px 30px 0px 30px;
443
- color: #333333;
444
- }
445
- .inspection{
446
- font-size: 16px;
447
- margin: 20px 50px;
448
- }
449
- .CustomerSelectTitle{
450
- margin-bottom: 10px;
451
- }
452
- .errorClassName{
453
- .ant-message-notice-content{
454
- min-width: 500px;
455
- min-height: 44px;
456
- background: #F9F2F3;
457
- border: 1px #E5B2B5 solid;
458
- font-size: 16px;
459
- color: #252525;
460
- text-align: center;
461
- padding: 7px;
462
- }
463
-
464
- img{
465
- margin-right: 8px;
466
- width: 16px;
467
- height: 16px;
468
- margin-bottom: 3px;
469
- }
470
-
471
- }
472
- .successClassName{
473
- .ant-message-notice-content{
474
- min-width: 500px;
475
- height: 44px;
476
- background: #E5F2F2;
477
- border: 1px #99CECC solid;
478
- font-size: 16px;
479
- color: #252525;
480
- text-align: center;
481
- padding: 7px;
482
- }
483
-
484
- img{
485
- margin-right: 8px;
486
- width: 16px;
487
- height: 16px;
488
- margin-bottom: 3px;
489
- }
490
-
491
- }
492
- .errorClassFace{
493
- min-width: 350px;
494
- min-height: 44px;
495
- background: #F9F2F3;
496
- border: 1px #E5B2B5 solid;
497
- font-size: 16px;
498
- color: #252525;
499
- text-align: center;
500
- padding: 7px;
501
-
502
- img{
503
- margin-right: 8px;
504
- width: 16px;
505
- height: 16px;
506
- margin-bottom: 3px;
507
- }
508
- }
509
- .videoErrorClass{
510
- height: 60px;
511
- margin: 15px;
512
- }
513
- .successClassFace{
514
- min-width: 350px;
515
- height: 44px;
516
- background: #E5F2F2;
517
- border: 1px #99CECC solid;
518
- font-size: 16px;
519
- color: #252525;
520
- text-align: center;
521
- padding: 7px;
522
-
523
- img{
524
- margin-right: 8px;
525
- width: 16px;
526
- height: 16px;
527
- margin-bottom: 3px;
528
- }
529
-
530
- }
531
- .radio {
532
- position: relative;
533
- display: inline-block;
534
- font-weight: 400;
535
- padding-left: 25px;
536
- text-align: left;
537
- width: 100%;
538
- display: flex;
539
- }
540
-
541
- .radio input {
542
- position: absolute;
543
- left: -9999px;
544
- }
545
-
546
- .radio i {
547
- display: block;
548
- position: absolute;
549
- top: 50%;
550
- left: 2px;
551
- width: 12px;
552
- height: 12px;
553
- transform: translateY(-50%);
554
- outline: 0;
555
- border: 1px solid rgb(133, 133, 133);
556
- background: transparent;
557
- border-radius: 50%;
558
- transition: border-color .3s;
559
- -webkit-transition: border-color .3s;
560
- box-sizing: content-box;
561
- }
562
-
563
- .radio input+i:after {
564
- position: absolute;
565
- content: '';
566
- top: 50%;
567
- left: 50%;
568
- transform: translate(-50%,-50%);
569
- width: 50%;
570
- height: 50%;
571
- border-radius: 50%;
572
- background-color: #269792;
573
- // border: 1px solid #269792;
574
- opacity: 0;
575
- transition: opacity .1s;
576
- -webkit-transition: opacity .1s;
577
- box-sizing: content-box;
578
- }
579
-
580
- .radio input:checked+i:after {
581
- opacity: 1;
582
- }
583
- .errorClassInvitationColor{
584
- background: #F9F2F3;
585
- border: 1px #E5B2B5 solid;
586
- }
587
- .errorClassInvitation{
588
- width: 90%;
589
- height: 50px;
590
- margin: 50px 30px 0px;
591
- img{
592
- margin: 15px 20px;
593
- width: 18px;
594
- height: 18px;
595
- }
596
- }
597
- .linkClass{
598
- margin: 20px 40px;
599
- font-size: 14px;
600
- word-break: break-all;
601
- }
602
- .speakerTitle{
603
- color: red;
604
- }
605
- .selectCustomer{
606
- font-size: 16px;
607
- margin: 20Px 40px;
608
- }
609
- .faceImgCard{
610
- width: 25rem;
611
- margin-bottom: 10px;
612
- height: 13.5rem;
613
- }
614
- .faceImgCardTwo{
615
- margin-bottom: 0px !important;
616
- }
617
- .titleDiv{
618
- font-size: 1.2rem;
619
- margin: 10px 0;
620
- }
621
- .videoListClass{
622
- align-content: flex-start;
623
- flex-wrap: wrap;
624
- display: inline-flex;
625
- }
626
- .videoMinutuListClass{
627
- width: 50%;
628
- }
629
- .videoMinutuClass{
630
- width: 100%;
631
- }
632
- .imgDIV{
633
- margin: 0 !important;
634
- text-align:center;
1
+ .publishVideo1{
2
+ width: 100px;
3
+ height: 100px
4
+ }
5
+ .mixedvideo{
6
+ display: none;
7
+ position:absolute;
8
+ object-fit: cover
9
+ }
10
+ .imgClass{
11
+ width: 100%;
12
+ height: 100%;
13
+ float: right
14
+ }
15
+ .imgClassVoice{
16
+ width: 25Px;
17
+ height: 24Px;
18
+ margin-bottom: 4Px;
19
+ }
20
+ .sharedScreen{
21
+ font-size: 10px;
22
+ position: absolute;
23
+ height: 30px;
24
+ line-height: 30px;
25
+ color: red;
26
+ }
27
+ .wrapper {
28
+ overflow: auto;
29
+ display: flex;
30
+ flex-direction: column;
31
+ height: 100%;
32
+ width: 20%;
33
+ background: #f3f3f3;
34
+ text-align: center;
35
+ margin-left: 20px;
36
+ // display: grid;
37
+ // grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
38
+ // grid-template-rows: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
39
+ }
40
+ .isNoVideo{
41
+ display: none;
42
+ }
43
+ .itemed {
44
+ text-align: center;
45
+ // border: 1px solid #fff;
46
+ color: #fff;
47
+ font-weight: bold;
48
+ min-height: 170px;
49
+ position: relative;
50
+ background: #333;
51
+ margin-bottom: 20px;
52
+ border-radius: 6px;
53
+ }
54
+ .videoFit{
55
+ object-fit: cover !important;
56
+ }
57
+ // .isBack {
58
+ // transform: rotateY(180deg);
59
+ // // background: #333;
60
+ // }
61
+ .video1{
62
+ width: 100%;
63
+ height: 100%;
64
+ object-fit: cover;
65
+ border-radius: 6px;
66
+ }
67
+ .videoTab{
68
+ width: 100%;
69
+ height: 100%;
70
+ object-fit: contain;
71
+ border-radius: 6px;
72
+ }
73
+ .video{
74
+ width: 100%;
75
+ height: 100%;
76
+ object-fit: cover;
77
+ border-radius: 6px;
78
+ }
79
+ .video1Div{
80
+ width: 100%;
81
+ height: 100%;
82
+ }
83
+ .health{
84
+ padding: 20Px;
85
+ background: #f0f0f0;
86
+ }
87
+ .healthVideo{
88
+ height: ~"calc(100vh - 12.9125rem)";
89
+ width: 100%;
90
+ display: inline-flex;
91
+ }
92
+ .all{
93
+ height: 100%
94
+ }
95
+ .ownClass{
96
+ height: calc(100vh - 15px);
97
+ object-fit: cover;
98
+ width: 100%;
99
+ }
100
+ .publishVideoClass{
101
+ height: 100%;
102
+ width: 100%;
103
+ object-fit: cover;
104
+ border-radius: 6px;
105
+ }
106
+ .publishVideoDiv{
107
+ height: 100%;
108
+ width: 100%;
109
+ border-radius: 6px;
110
+ }
111
+ .invitationSpan{
112
+ margin-top: 5px;
113
+ margin-right: 15px;
114
+ float: right;
115
+ height: 37px !important;
116
+ width: 80px !important;
117
+ font-size: 16px !important;
118
+ border: 1px #3E505D solid!important;
119
+ background: #3E505D !important;
120
+ color: #fff!important;
121
+ }
122
+ .inputClick{
123
+ width: 65%;
124
+ height: 46px;
125
+ border-radius: 2px;
126
+ // border: 0px;
127
+ outline: none;
128
+ font-size: 17px;
129
+ padding: 0 5px;
130
+ border: 1px #707070 solid;
131
+ }
132
+ .modalSpan{
133
+ margin-right: 20px;
134
+ font-size: 17px;
135
+ color: #666666;
136
+ }
137
+ .invitationImg{
138
+ width: 20px;
139
+ height: 20px;
140
+ }
141
+ .invitationButton{
142
+ color: #1a9adc !important;
143
+ border: none !important;
144
+ background: #fff !important;
145
+ }
146
+ .invitationDiv{
147
+ margin-left: 40px;
148
+ margin-bottom: 15px;
149
+ input::-webkit-inner-spin-button {
150
+ -webkit-appearance: none;
151
+ appearance: none;
152
+ margin: 0;
153
+ }
154
+ }
155
+ .faceImg{
156
+ width: 60%;
157
+ margin-bottom: 20Px;
158
+ }
159
+ .faceBody{
160
+ text-align: center;
161
+ height: 100%;
162
+ width: ~"calc(100% - 150px)";
163
+ .faceCardImg{
164
+ // height: 100%;
165
+ }
166
+ .resuleCard{
167
+ text-align: -webkit-left;
168
+ padding: 0Px 2Px;
169
+ div{
170
+ font-size: 13Px;
171
+ color: #646464;
172
+ margin: 10Px 20Px;
173
+ input{
174
+ border: #DCDCDC 1px solid;
175
+ width: 15rem;
176
+ height: 2rem;
177
+ line-height: 2rem;
178
+ margin-left: 15px;
179
+ }
180
+ span{
181
+ display: inline-block;
182
+ min-width: 5rem;
183
+ }
184
+ }
185
+ }
186
+ }
187
+ .content{
188
+ height: 200px;
189
+ border-radius: 4px;
190
+ border:1px dashed #DDDDDD;
191
+ margin: 24px;
192
+ margin-bottom: 3rem;
193
+ flex:1;
194
+
195
+ }
196
+ .ant-spin-nested-loading,.ant-spin-container{
197
+ height: 100%;
198
+ }
199
+ .projection{
200
+ width: 80%;
201
+ position: relative;
202
+ // background: #fff;
203
+ color: #333;
204
+ border-radius: 0 4px 4px 4px;
205
+ text-align: left;
206
+ // height: ~"calc(100vh - 130px)";
207
+ // position: absolute;
208
+ // z-index: 1;
209
+ // background: #fff;
210
+ .videoDiv{
211
+ width: 100%;
212
+ height: 100%;
213
+ .video{
214
+ width: 100%;
215
+ height: 100%;
216
+ background: rgba(0, 0, 0, 0.65);
217
+ }
218
+ }
219
+ }
220
+ .customerTitle{
221
+ background: rgba(0, 0, 0, 0.65);
222
+ display: inline-flex;
223
+ position: absolute;
224
+ align-items: center;
225
+ // top: 0;
226
+ left: 10px;
227
+ // width: 80px;
228
+ line-height: 40px;
229
+
230
+ bottom: 10px;
231
+ height: 40px;
232
+ // background: rgba(219, 0, 17, 0.1);
233
+ border-radius: 4px;
234
+ // transform: rotateY(180deg);
235
+ // color: #DB0011;
236
+ // font-size: 14px;
237
+ }
238
+ .tellerTitle{
239
+ background: rgba(0, 0, 0, 0.65);
240
+ display: inline-flex;
241
+ position: absolute;
242
+ // top: 0;
243
+ left: 10px;
244
+ // width: 80px;
245
+ line-height: 40px;
246
+
247
+ bottom: 10px;
248
+ height: 40px;
249
+ // background: rgba(219, 0, 17, 0.1);
250
+ border-radius: 4px;
251
+ // transform: rotateY(180deg);
252
+ // color: #DB0011;
253
+ font-size: 14px;
254
+ }
255
+ .titleBig{
256
+ max-width: 30%;
257
+ }
258
+ .titleSamlle{
259
+ max-width: 70%;
260
+ }
261
+ .titleName{
262
+ white-space: nowrap;
263
+ text-overflow: ellipsis;
264
+ overflow: hidden;
265
+ padding-right: 10px;
266
+ }
267
+ .themeClass{
268
+ position: absolute;
269
+ top: 0;
270
+ left: 0;
271
+ right: 0;
272
+ bottom: 0;
273
+ margin: auto;
274
+ width: 500px;
275
+ height: 300px;
276
+ font-size: 22px;
277
+ color: #222222;
278
+ font-weight: 600;
279
+ transform: translateX(-100px);
280
+ ul{
281
+ li{
282
+ list-style: none;
283
+ margin: 21px 0;
284
+ text-align: left;
285
+ span{
286
+ font-size: 20px;
287
+ width: 143px;
288
+ text-align: left;
289
+ display: inline-block;
290
+ }
291
+ .labelClass{
292
+ font-size: 16px;
293
+ text-align: left;
294
+ display: inline-block;
295
+ }
296
+ }
297
+ }
298
+ }
299
+ .button{
300
+ display: inline-flex;
301
+ // width: 100%;
302
+ // position: absolute;
303
+ // z-index: 1;
304
+ // top: 0;
305
+ // left: 0;
306
+ .selectSee{
307
+ max-width: 8rem;
308
+ height: 32px;
309
+ text-align: center;
310
+ background: #303D46;
311
+ border-radius: 0 0 0.104167rem 0.104167rem;
312
+ border: 0.052083rem solid #303D46;
313
+ color: #ffffff;
314
+ font-size: 14px;
315
+ }
316
+ .noSelest{
317
+ max-width: 8rem;
318
+ height: 32px;
319
+ text-align: center;
320
+ background: #D7D8D6;
321
+ border-radius: 0 0 0.104167rem 0.104167rem;
322
+ border: 0.052083rem solid #D7D8D6;
323
+ color: #303D46;
324
+ font-size: 14px;
325
+ }
326
+ div{
327
+ font-size: 16px;
328
+ color: #FFFFFF;
329
+ padding: 6px 13px;
330
+ }
331
+ }
332
+ .envClass {
333
+ margin-bottom: 0;
334
+ padding-left: 1.25rem;
335
+ }
336
+ .ant-collapse > .ant-collapse-item > .ant-collapse-header{
337
+ font-weight: bold;
338
+ }
339
+ .ant-collapse > .ant-collapse-item.panel-error > .ant-collapse-header{
340
+ color: #DA0110;
341
+ }
342
+ .ant-collapse-ghost > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box{
343
+ padding-top: 0 !important;
344
+ }
345
+ .ant-collapse-header{
346
+ img{
347
+ width: 16px;
348
+ height: 16px;
349
+ margin-left: 10px;
350
+ margin-bottom: 1px;
351
+ }
352
+ }
353
+ .voiceClass{
354
+ width: 25Px;
355
+ height: 25.3Px;
356
+ margin-bottom: 1Px;
357
+ }
358
+ .cameraAnMicrophone{
359
+ margin: 10px 20px;
360
+ }
361
+ .ant-modal-header{
362
+ // padding: 36px 30px 30px 30px !important;
363
+ border-bottom: none !important;
364
+ }
365
+ .ant-modal-body{
366
+ padding: 0 !important;
367
+ }
368
+ .ant-modal-title{
369
+ font-size: 22px !important;
370
+ color: #333333 !important;
371
+ }
372
+ .ant-modal-footer {
373
+ margin-top: 0px!important;
374
+ // padding: 0px 0px 0px!important;
375
+ }
376
+
377
+ .modelButtonCancel{
378
+ width: 100px!important;
379
+ height: 40px!important;
380
+ font-size: 16px!important;
381
+ color: #333!important;
382
+ border: 1px #333 solid!important;
383
+ background: #fff!important;
384
+ border-spacing: 20px!important;
385
+ }
386
+ .modelNoButton{
387
+ margin-left: 10px;
388
+ }
389
+ .modelButtonCancelOne{
390
+ width: 170px!important;
391
+ height: 40px!important;
392
+ font-size: 16px!important;
393
+ color: #5C5C5C!important;
394
+ border: 1px #5C5C5C solid!important;
395
+ border-spacing: 20px!important;
396
+ background: #d9d9d9!important;
397
+ }
398
+ .modelButtonOkInvitation{
399
+ width: 170px!important;
400
+ height: 40px!important;
401
+ font-size: 16px!important;
402
+ color: #ffffff!important;
403
+ border: 1px #DB0011 solid!important;
404
+ background: #DB0011!important;
405
+ border-spacing: 20px!important;
406
+ }
407
+ .modelButtonOk{
408
+ width: 100px!important;
409
+ height: 40px!important;
410
+ font-size: 16px!important;
411
+ color: #ffffff!important;
412
+ border: 1px #DB0011 solid!important;
413
+ background: #DB0011!important;
414
+ border-spacing: 20px!important;
415
+ }
416
+ .modelButtonNo{
417
+ width: 100px!important;
418
+ height: 40px!important;
419
+ font-size: 16px!important;
420
+ color: #5C5C5C!important;
421
+ border: 1px #5C5C5C solid!important;
422
+ background: #d9d9d9!important;
423
+ border-spacing: 20px!important;
424
+ }
425
+ .modelButtonFaceOk{
426
+ width: 170px!important;
427
+ height: 40px!important;
428
+ font-size: 16px!important;
429
+ color: #333!important;
430
+ border: 1px #333 solid!important;
431
+ background: #fff!important;
432
+ border-spacing: 20px!important;
433
+ }
434
+ .modelButtonFaceOkColor{
435
+ min-width: 170px!important;
436
+ height: 40px!important;
437
+ font-size: 16px!important;
438
+ color: #ffffff!important;
439
+ border: 1px #DB0011 solid!important;
440
+ background: #DB0011!important;
441
+ border-spacing: 20px!important;
442
+ }
443
+ .modelButtonFaceOkColorFile{
444
+ min-width: 170px!important;
445
+ height: 40px!important;
446
+ font-size: 16px!important;
447
+ color: #5C5C5C!important;
448
+ border: 1px #5C5C5C solid!important;
449
+ background: #d9d9d9!important;
450
+ border-spacing: 20px!important;
451
+ }
452
+ .endModal{
453
+ font-size: 16px;
454
+ padding: 56px 30px 0px 30px;
455
+ color: #333333;
456
+ }
457
+ .ipadModal{
458
+ font-size: 16px;
459
+ padding: 36px 30px 0px 30px;
460
+ color: #333333;
461
+ }
462
+ .ipadModal .ant-modal-body{
463
+ display: flex;
464
+ align-items: center;
465
+ flex-direction: column;
466
+ }
467
+ .ipadCode{
468
+ margin-top: 16px;
469
+ margin-bottom: 16px;
470
+ margin-left: 30px;
471
+ position: relative;
472
+ }
473
+ .inspection{
474
+ font-size: 16px;
475
+ margin: 20px 50px;
476
+ }
477
+ .CustomerSelectTitle{
478
+ margin-bottom: 10px;
479
+ }
480
+ .errorClassName{
481
+ .ant-message-notice-content{
482
+ min-width: 500px;
483
+ min-height: 44px;
484
+ background: #F9F2F3;
485
+ border: 1px #E5B2B5 solid;
486
+ font-size: 16px;
487
+ color: #252525;
488
+ text-align: center;
489
+ padding: 7px;
490
+ }
491
+
492
+ img{
493
+ margin-right: 8px;
494
+ width: 16px;
495
+ height: 16px;
496
+ margin-bottom: 3px;
497
+ }
498
+
499
+ }
500
+ .successClassName{
501
+ .ant-message-notice-content{
502
+ min-width: 500px;
503
+ height: 44px;
504
+ background: #E5F2F2;
505
+ border: 1px #99CECC solid;
506
+ font-size: 16px;
507
+ color: #252525;
508
+ text-align: center;
509
+ padding: 7px;
510
+ }
511
+
512
+ img{
513
+ margin-right: 8px;
514
+ width: 16px;
515
+ height: 16px;
516
+ margin-bottom: 3px;
517
+ }
518
+
519
+ }
520
+ .errorClassFace{
521
+ min-width: 350px;
522
+ min-height: 44px;
523
+ background: #F9F2F3;
524
+ border: 1px #E5B2B5 solid;
525
+ font-size: 16px;
526
+ color: #252525;
527
+ text-align: center;
528
+ padding: 7px;
529
+
530
+ img{
531
+ margin-right: 8px;
532
+ width: 16px;
533
+ height: 16px;
534
+ margin-bottom: 3px;
535
+ }
536
+ }
537
+ .videoErrorClass{
538
+ height: 60px;
539
+ margin: 15px;
540
+ }
541
+ .successClassFace{
542
+ min-width: 350px;
543
+ height: 44px;
544
+ background: #E5F2F2;
545
+ border: 1px #99CECC solid;
546
+ font-size: 16px;
547
+ color: #252525;
548
+ text-align: center;
549
+ padding: 7px;
550
+
551
+ img{
552
+ margin-right: 8px;
553
+ width: 16px;
554
+ height: 16px;
555
+ margin-bottom: 3px;
556
+ }
557
+
558
+ }
559
+ .radio {
560
+ position: relative;
561
+ display: inline-block;
562
+ font-weight: 400;
563
+ padding-left: 25px;
564
+ text-align: left;
565
+ width: 100%;
566
+ display: flex;
567
+ }
568
+
569
+ .radio input {
570
+ position: absolute;
571
+ left: -9999px;
572
+ }
573
+
574
+ .radio i {
575
+ display: block;
576
+ position: absolute;
577
+ top: 50%;
578
+ left: 2px;
579
+ width: 12px;
580
+ height: 12px;
581
+ transform: translateY(-50%);
582
+ outline: 0;
583
+ border: 1px solid rgb(133, 133, 133);
584
+ background: transparent;
585
+ border-radius: 50%;
586
+ transition: border-color .3s;
587
+ -webkit-transition: border-color .3s;
588
+ box-sizing: content-box;
589
+ }
590
+
591
+ .radio input+i:after {
592
+ position: absolute;
593
+ content: '';
594
+ top: 50%;
595
+ left: 50%;
596
+ transform: translate(-50%,-50%);
597
+ width: 50%;
598
+ height: 50%;
599
+ border-radius: 50%;
600
+ background-color: #269792;
601
+ // border: 1px solid #269792;
602
+ opacity: 0;
603
+ transition: opacity .1s;
604
+ -webkit-transition: opacity .1s;
605
+ box-sizing: content-box;
606
+ }
607
+
608
+ .radio input:checked+i:after {
609
+ opacity: 1;
610
+ }
611
+ .errorClassInvitationColor{
612
+ background: #F9F2F3;
613
+ border: 1px #E5B2B5 solid;
614
+ }
615
+ .errorClassInvitation{
616
+ width: 90%;
617
+ height: 50px;
618
+ margin: 50px 30px 0px;
619
+ img{
620
+ margin: 15px 20px;
621
+ width: 18px;
622
+ height: 18px;
623
+ }
624
+ }
625
+ .linkClass{
626
+ margin: 20px 40px;
627
+ font-size: 14px;
628
+ word-break: break-all;
629
+ }
630
+ .speakerTitle{
631
+ color: red;
632
+ }
633
+ .selectCustomer{
634
+ font-size: 16px;
635
+ margin: 20Px 40px;
636
+ }
637
+ .faceImgCard{
638
+ width: 25rem;
639
+ margin-bottom: 10px;
640
+ height: 13.5rem;
641
+ }
642
+ .faceImgCardTwo{
643
+ margin-bottom: 0px !important;
644
+ }
645
+ .titleDiv{
646
+ font-size: 1.2rem;
647
+ margin: 10px 0;
648
+ }
649
+ .videoListClass{
650
+ align-content: flex-start;
651
+ flex-wrap: wrap;
652
+ display: inline-flex;
653
+ }
654
+ .videoMinutuListClass{
655
+ width: 50%;
656
+ }
657
+ .videoMinutuClass{
658
+ width: 100%;
659
+ }
660
+ .imgDIV{
661
+ margin: 0 !important;
662
+ text-align:center;
663
+ }
664
+ .QRCode{
665
+ position: absolute;
666
+ right: -200px;
667
+ top: 30px;
668
+ display: flex;
669
+ flex-direction: column;
670
+ align-items: center;
671
+ .num{
672
+ background: #DB0011;
673
+ border-radius: 20px;
674
+ padding: 0 15px;
675
+ text-align: center;
676
+ line-height: 40px;
677
+ height: 40px;
678
+ color: white;
679
+ margin-top: 5px;
680
+ }
681
+ .sessionDiv{
682
+ display: flex;
683
+ flex-direction: column;
684
+ span{
685
+ margin-bottom: 3px;
686
+ font-size: 16px;
687
+ font-weight: bold;
688
+ text-align: center;
689
+ }
690
+ }
691
+ &.flex{
692
+ position: initial;
693
+ flex-direction: row;
694
+ .sessionDiv{
695
+ margin-left: 20px;
696
+ }
697
+ .num{
698
+ margin-top: 0px;
699
+ font-weight: 500;
700
+ font-size: 1rem;
701
+ }
702
+ }
703
+ &.center{
704
+ position: initial;
705
+ .ipadCode{
706
+ margin-left: 0px;
707
+ }
708
+ .num{
709
+ margin-top: 0px;
710
+ font-weight: 500;
711
+ font-size: 1rem;
712
+ margin-bottom: 0.5rem;
713
+ }
714
+ }
715
+ }
716
+ body {
717
+ font-size: 100%;
718
+ }
719
+ .currentDevice{
720
+ color: #DB0011;
721
+ }
722
+ .sliderClass{
723
+ width: 70%;
724
+ margin-left: 1.25rem;
635
725
  }