bhd-components 0.7.3 → 0.7.4

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 (49) hide show
  1. package/README.md +1 -1
  2. package/dist/{0650d749.esm.es5.development.js → 4d37fec9.esm.es5.development.js} +9435 -1276
  3. package/dist/ad151cc6.esm.es5.production.js +485 -0
  4. package/dist/index.esm.es5.development.css +11898 -896
  5. package/dist/index.esm.es5.development.js +1832 -651
  6. package/dist/index.esm.es5.production.css +1 -1
  7. package/dist/index.esm.es5.production.js +1 -1
  8. package/dist/vendor.esm.es5.development.esm.es5.development.css +2 -1
  9. package/dist/vendor.esm.es5.production.esm.es5.production.css +1 -1
  10. package/es2017/customerService/contactsList.js +2 -2
  11. package/es2017/customerService/function.d.ts +6 -1
  12. package/es2017/customerService/function.js +64 -15
  13. package/es2017/customerService/index.d.ts +3 -0
  14. package/es2017/customerService/index.js +589 -252
  15. package/es2017/customerService/index.module.less +596 -109
  16. package/es2017/customerService/index2.module.less +586 -109
  17. package/es2017/customerService/screenshotTool.d.ts +9 -0
  18. package/es2017/customerService/screenshotTool.js +127 -0
  19. package/es2017/icons/components/custom-knowledge_content.d.ts +4 -0
  20. package/es2017/icons/components/custom-knowledge_content.js +24 -0
  21. package/es2017/icons/components/custom-screenshot.d.ts +4 -0
  22. package/es2017/icons/components/custom-screenshot.js +25 -0
  23. package/es2017/icons/components/custom-video-abstraction.d.ts +4 -0
  24. package/es2017/icons/components/custom-video-abstraction.js +22 -0
  25. package/es2017/icons/components/custom-wenhao_round.d.ts +4 -0
  26. package/es2017/icons/components/custom-wenhao_round.js +22 -0
  27. package/es2017/icons/components/index.d.ts +4 -0
  28. package/es2017/icons/components/index.js +4 -0
  29. package/esm/customerService/contactsList.js +6 -2
  30. package/esm/customerService/function.d.ts +6 -1
  31. package/esm/customerService/function.js +65 -15
  32. package/esm/customerService/index.d.ts +3 -0
  33. package/esm/customerService/index.js +594 -283
  34. package/esm/customerService/index.module.less +596 -109
  35. package/esm/customerService/index2.module.less +586 -109
  36. package/esm/customerService/screenshotTool.d.ts +9 -0
  37. package/esm/customerService/screenshotTool.js +128 -0
  38. package/esm/icons/components/custom-knowledge_content.d.ts +4 -0
  39. package/esm/icons/components/custom-knowledge_content.js +26 -0
  40. package/esm/icons/components/custom-screenshot.d.ts +4 -0
  41. package/esm/icons/components/custom-screenshot.js +27 -0
  42. package/esm/icons/components/custom-video-abstraction.d.ts +4 -0
  43. package/esm/icons/components/custom-video-abstraction.js +24 -0
  44. package/esm/icons/components/custom-wenhao_round.d.ts +4 -0
  45. package/esm/icons/components/custom-wenhao_round.js +24 -0
  46. package/esm/icons/components/index.d.ts +4 -0
  47. package/esm/icons/components/index.js +4 -0
  48. package/package.json +3 -1
  49. package/dist/24d37cb8.esm.es5.production.js +0 -468
@@ -2,6 +2,15 @@
2
2
 
3
3
  // @import "../common.module.less"
4
4
 
5
+ // :global{
6
+ // .ant-drawer-header{
7
+ // display: none !important;
8
+ // }
9
+ // .ant-drawer-body{
10
+ // padding: 0 !important;
11
+ // }
12
+ // }
13
+
5
14
  .service_ChatWindow_Drawer,
6
15
  .ChatWindow_Modal {
7
16
  width: 100% !important;
@@ -102,6 +111,54 @@
102
111
  margin: 0 4px;
103
112
  margin-left: 23px;
104
113
  }
114
+
115
+ .popover_main{
116
+ position: relative;
117
+ z-index: 99;
118
+ .popover{
119
+ padding: 8px;
120
+ border-radius: 4px;
121
+ line-height: 1.5;
122
+ color: rgba(0, 0, 0, 0.65);
123
+ position: absolute;
124
+ border: 1px solid rgba(0, 0, 0, 0.15);
125
+ background-color: #fff;
126
+ white-space: nowrap;
127
+ font-size: 14px;
128
+ position: absolute;
129
+ top: 26px;
130
+ left: -30px;
131
+ display: none;
132
+ &::after{
133
+ content: "";
134
+ position: absolute;
135
+ width: 0;
136
+ height: 0;
137
+ z-index: 99;
138
+ border: 6px solid;
139
+ border-color: transparent transparent #fff transparent;
140
+ top: -12px;
141
+ left: 32px;
142
+ }
143
+ &::before{
144
+ content: "";
145
+ position: absolute;
146
+ z-index: 99;
147
+ width: 0;
148
+ height: 0;
149
+ border: 6px solid;
150
+ border-color: transparent transparent rgba(0, 0, 0, 0.15) transparent;
151
+ top: -13px;
152
+ left: 32px;
153
+ }
154
+ }
155
+ &:hover{
156
+ .popover{
157
+ display: block;
158
+ }
159
+ }
160
+
161
+ }
105
162
  }
106
163
  }
107
164
  }
@@ -193,11 +250,98 @@
193
250
  visibility: visible;
194
251
  }
195
252
  }
253
+ .operate_modal_bottom {
254
+ display: flex;
255
+ justify-content: space-between;
256
+ align-items: center;
257
+ // position: sticky;
258
+ bottom: 0;
259
+
260
+ .operate {
261
+ display: inline-block;
262
+ padding: 8px;
263
+ line-height: 1;
264
+ color: @color-text-tertiary-Tr;
265
+ i {
266
+ color: @color-text-tertiary-Tr;
267
+ font-size: 16px;
268
+ cursor: pointer;
269
+ svg {
270
+ color: @color-icon-fill-Tr;
271
+ }
272
+ &:hover {
273
+ svg {
274
+ color: @color-data-visualization-01;
275
+ }
276
+ }
277
+ }
278
+ .active {
279
+ // color: @color-background-primary-base;
280
+ svg {
281
+ color: @color-text-primary;
282
+ }
283
+ }
284
+ span {
285
+ margin: 0 8px;
286
+ cursor: pointer;
287
+ }
288
+ }
289
+ .stop_generate {
290
+ // position: absolute;
291
+ font-size: 12px;
292
+ color: @color-text-tertiary-Tr;
293
+ display: inline-block;
294
+ padding: 8px 0;
295
+ cursor: pointer;
296
+ .icon {
297
+ display: inline-block;
298
+ width: 10px;
299
+ height: 10px;
300
+ border-radius: 2px;
301
+ background-color: @color-text-tertiary-Tr;
302
+ margin-right: 4px;
303
+ }
304
+ .find_teacher {
305
+ padding: 2px 8px;
306
+ border-radius: 2px;
307
+ background-color: @color-background-filltertiary-Tr;
308
+ color: @color-text-tertiary-Tr;
309
+ font-size: 12px;
310
+ line-height: 1;
311
+ &:hover{
312
+ color: @color-text-primary;
313
+ }
314
+ }
315
+ }
316
+ .stop_generate:hover{
317
+ color: @color-text-primary;
318
+ span{
319
+ color: @color-text-primary;
320
+ }
321
+ }
322
+ .stop_findTeacher {
323
+ font-size: 12px;
324
+ color: @color-text-tertiary-Tr;
325
+ display: inline-block;
326
+ padding: 8px 0;
327
+ cursor: pointer;
328
+ span {
329
+ padding: 0px 8px;
330
+ background-color: @color-background-filltertiary-Tr;
331
+ color: @color-text-tertiary-Tr;
332
+ &:hover{
333
+ color: @color-text-primary;
334
+ }
335
+ }
336
+ }
337
+
338
+ }
339
+
196
340
  .main_content {
197
341
  position: relative;
198
342
 
199
343
  .content {
200
-
344
+ position: relative;
201
345
  max-width: 100%;
202
346
  // width: 100%;
203
347
  //以下优化ai返回的内容的样式
@@ -239,16 +383,144 @@
239
383
  }
240
384
  }
241
385
  pre {
242
- background: rgba(0, 0, 0, 0.05);
386
+ background: @color-background-fillquaternary;
387
+ border: 1px solid @color-border-secondary-Tr;
388
+ border-top: none;
389
+
243
390
  padding: 12px;
244
391
  line-height: 1.5;
245
392
  margin: 4px 0;
393
+ border-radius: 0 0 4px 4px;
246
394
  }
395
+ // 最后一行操作按钮
396
+ .operate_modal_bottom{
397
+ position: relative;
398
+ top: 10px ;
399
+ &::before{
400
+ content: '';
401
+ display: block;
402
+ width: calc(100% + 32px);
403
+ height: 1px;
404
+ background-color: rgba(0, 0, 0, 0.06);
405
+ position: absolute;
406
+ bottom: 40px;
407
+ left: -16px;
408
+ }
409
+ &>p{
410
+ padding: 12px 0;
411
+ }
412
+ .find_teacher{
413
+ padding: 0;
414
+ background-color: transparent;
415
+ color: @color-text-primary;
416
+ }
417
+ .operate{
418
+ :global{
419
+ .anticon{
420
+ display: inline-block;
421
+ width: 20px;
422
+ height: 20px;
423
+ &:hover{
424
+ background-color: @color-background-filltertiary-Tr;
425
+ }
426
+ }
427
+ }
428
+ }
429
+ }
430
+
247
431
  }
248
432
  .sign{
249
433
  background-color: #1890ff;
250
434
  color: #fff;
251
435
  }
436
+
437
+
438
+ // //视频摘要内容
439
+ // .video_abstract{
440
+ // .title{
441
+ // position: relative;
442
+ // p{
443
+ // color: #000;
444
+ // font-size: 14px;
445
+ // font-weight: 600;
446
+ // line-height: 150%; /* 21px */
447
+ // position: relative;
448
+ // z-index: 2;
449
+ // }
450
+ // span{
451
+ // display: block;
452
+ // width: 56px;
453
+ // height: 6px;
454
+ // background-color: @color-background-primary-weak-hover;
455
+ // position: absolute;
456
+ // bottom: 0px;
457
+
458
+ // }
459
+
460
+ // }
461
+ // .abstract{
462
+ // padding: 16px 0;
463
+ // color: @color-text-Tr;
464
+ // font-size: 14px;
465
+ // line-height: 150%; /* 21px */
466
+ // border-bottom: 1px solid @color-border-secondary-Tr;
467
+ // margin-bottom: 16px;
468
+ // border-width: calc(100% + 32px);
469
+ // border-left: -18px;
470
+ // }
471
+ // .main_knowledge{
472
+ // .item{
473
+ // color: @color-text-Tr;
474
+ // font-size: 14px;
475
+ // line-height: 150%; /* 21px */
476
+ // .brief_summary{
477
+ // padding-right: 100px;
478
+ // position: relative;
479
+ // display: flex;
480
+ // margin: 16px 0;
481
+ // .video_time{
482
+ // padding: 4px 8px;
483
+ // background-color: #CCE7FF;
484
+ // color: @color-text-info;
485
+ // font-size: 12px;
486
+ // line-height: 1;
487
+ // position: absolute;
488
+ // right: 0;
489
+ // }
490
+ // .icon{
491
+ // display: inline-block;
492
+ // width: 21px;
493
+ // height: 21px;
494
+ // margin-right: 4px;
495
+ // svg{
496
+ // color:@color-icon-fill-Tr;
497
+ // }
498
+ // }
499
+ // .icon_active{
500
+ // svg{
501
+ // color:@color-icon-hover;
502
+ // }
503
+ // }
504
+ // }
505
+ // .brief_summary_con{
506
+ // margin-top: 16px;
507
+ // padding-left: 46px;
508
+ // position: relative;
509
+ // &::before{
510
+ // content: '';
511
+ // display: block;
512
+ // width: 6px;
513
+ // height: 6px;
514
+ // border-radius: 50%;
515
+ // background-color: @color-text-quaternary-Tr;
516
+ // position: absolute;
517
+ // left: 30px;
518
+ // top: 8px;
519
+ // }
520
+ // }
521
+ // }
522
+ // }
523
+ // }
252
524
  }
253
525
  .operate_modal {
254
526
  // display: none;
@@ -295,110 +567,27 @@
295
567
  }
296
568
  .ask_question {
297
569
  cursor: pointer;
298
- color: @color-text-tertiary-Tr;
570
+ color: @color-text-primary;
299
571
  font-size: 12px;
300
572
  line-height: 1;
301
- padding: 2px 8px;
302
- background-color: @color-background-filltertiary-Tr;
303
- margin-right: 16px;
304
- &:hover{
305
- color: @color-text-primary;
306
- }
573
+ // padding: 2px 8px;
574
+ // background-color: @color-background-filltertiary-Tr;
575
+ // margin-right: 16px;
576
+ // &:hover{
577
+ // color: @color-text-primary;
578
+ // }
307
579
  }
308
580
  }
309
581
  }
310
- .operate_modal_bottom {
311
- display: flex;
312
- justify-content: space-between;
313
- align-items: center;
314
- // position: sticky;
315
- bottom: 0;
316
582
 
317
- .operate {
318
- display: inline-block;
319
- padding: 8px;
320
- line-height: 1;
321
- color: @color-text-tertiary-Tr;
322
- i {
323
- color: @color-text-tertiary-Tr;
324
- font-size: 16px;
325
- cursor: pointer;
326
- svg {
327
- color: @color-icon-fill-Tr;
328
- }
329
- &:hover {
330
- svg {
331
- color: @color-data-visualization-01;
332
- }
333
- }
334
- }
335
- .active {
336
- // color: @color-background-primary-base;
337
- svg {
338
- color: @color-text-primary;
339
- }
340
- }
341
- span {
342
- margin: 0 8px;
343
- cursor: pointer;
344
- }
345
- }
346
- .stop_generate {
347
- // position: absolute;
348
- font-size: 12px;
349
- color: @color-text-tertiary-Tr;
350
- display: inline-block;
351
- padding: 8px 0;
352
- cursor: pointer;
353
- .icon {
354
- display: inline-block;
355
- width: 10px;
356
- height: 10px;
357
- border-radius: 2px;
358
- background-color: @color-text-tertiary-Tr;
359
- margin-right: 4px;
360
- }
361
- .find_teacher {
362
- padding: 2px 8px;
363
- border-radius: 2px;
364
- background-color: @color-background-filltertiary-Tr;
365
- color: @color-text-tertiary-Tr;
366
- font-size: 12px;
367
- line-height: 1;
368
- &:hover{
369
- color: @color-text-primary;
370
- }
371
- }
372
- }
373
- .stop_generate:hover{
374
- color: @color-text-primary;
375
- span{
376
- color: @color-text-primary;
377
- }
378
- }
379
- .stop_findTeacher {
380
- font-size: 12px;
381
- color: @color-text-tertiary-Tr;
382
- display: inline-block;
383
- padding: 8px 0;
384
- cursor: pointer;
385
- span {
386
- padding: 0px 8px;
387
- background-color: @color-background-filltertiary-Tr;
388
- color: @color-text-tertiary-Tr;
389
- &:hover{
390
- color: @color-text-primary;
391
- }
392
- }
393
- }
394
-
395
- }
396
583
  }
397
584
  .content {
398
585
  padding: 12px 16px;
399
586
  // max-width: 80%;
400
587
  display: inline-block;
401
588
  font-size: 14px;
589
+
590
+
402
591
  }
403
592
  }
404
593
  .left {
@@ -423,13 +612,123 @@
423
612
  }
424
613
 
425
614
  li .content {
426
- .association_problem li {
427
- color: #5991ef;
428
- font-size: 14px;
429
- font-weight: 400;
430
- line-height: 1.8;
615
+ .association_problem{
616
+ padding-left: 0;
617
+ li {
618
+ padding-top: 16px;
619
+ color: #5991ef;
620
+ font-size: 14px;
621
+ font-weight: 400;
622
+ line-height: 1.8;
623
+ cursor: pointer;
624
+ list-style-type: none;
625
+ }
626
+ }
627
+
628
+ .img_con{
629
+ width: 100%;
630
+ text-align: center;
631
+ position: relative;
632
+ border-radius: 4px;
633
+ overflow: hidden;
634
+ display: inline-flex;
635
+ margin-top: 24px;
636
+ .mask_zoom{
637
+ position: absolute;
638
+ top: 0;
639
+ left: 0;
640
+
641
+ width: 100%;
642
+ height: 100%;
643
+ background-color: rgba(0, 0, 0, 0.3);
644
+ border-radius: 4px;
645
+ display: none;
646
+ align-items: center;
647
+ justify-content: center;
648
+ svg{
649
+ font-size: 20px;
650
+ color: #fff;
651
+ cursor: pointer;
652
+ }
653
+
654
+ }
655
+ &:hover{
656
+ .mask_zoom{
657
+ display: flex;
658
+ }
659
+ }
660
+ }
661
+
662
+ .copyCode{
663
+ display: flex;
664
+ justify-content: flex-end;
665
+ align-items: center;
666
+ border-radius: 4px 4px 0px 0px;
667
+ border: 1px solid @color-border-secondary-Tr;
668
+ border-bottom-color: @color-border-secondary-Tr;
669
+ background: @color-background-fillquaternary-Tr;
670
+ text-align: right;
671
+ height: 37px;
672
+ line-height: 37px !important;
673
+ padding: 0 !important;
674
+ padding-right: 16px !important;
675
+ position: relative;
676
+ top: 6px;
431
677
  cursor: pointer;
432
- list-style-type: none;
678
+ font-weight: 400 !important;
679
+ .icon{
680
+ display: none;
681
+ }
682
+ :global{
683
+ .copy{
684
+ display: block;
685
+ }
686
+ }
687
+ svg{
688
+ color: @color-text-Secondary-Tr;
689
+ margin-right: 8px;
690
+ font-size: 16px;
691
+ position: relative;
692
+ top: 2px;
693
+ }
694
+ }
695
+ :global{
696
+ .copy_success{
697
+
698
+ .copyCode{
699
+ color:@color-text-primary;
700
+ }
701
+ .copy{
702
+ display: none;
703
+ }
704
+ .copy_success_flag{
705
+ display: inline-block;
706
+ svg{
707
+ color:@color-text-primary;
708
+ }
709
+ }
710
+ }
711
+ }
712
+ p>code{
713
+ border: none;
714
+ background-color: @color-background-fillsecondary-Tr;
715
+ border-radius: 2px;
716
+ color: #000;
717
+ padding: 0 2px;
718
+ }
719
+ li{
720
+ ::marker {
721
+ font-weight: 600;
722
+ }
723
+ p{
724
+ font-weight: 400 !important;
725
+ strong{
726
+ border-bottom: 6px solid @color-background-primary-weak-hover;
727
+ height: 20px;
728
+ display: inline-block;
729
+ }
730
+ }
731
+
433
732
  }
434
733
  }
435
734
  .time {
@@ -593,6 +892,24 @@
593
892
  }
594
893
  }
595
894
  }
895
+ .issues_list_flag {
896
+ position: absolute;
897
+ bottom: 60px;
898
+ margin: 0 16px;
899
+ // padding-bottom: 4px;
900
+ line-height: 1;
901
+ // padding-top: 24px;
902
+ p{
903
+ padding: 8px 16px;
904
+ background-color: #fff;
905
+ border-radius: 38px;
906
+ cursor: pointer;
907
+ &:hover{
908
+ background-color: @color-background-primary-weak;
909
+ color: @color-border-primary;
910
+ }
911
+ }
912
+ }
596
913
  .Drawer_buttom {
597
914
  display: flex;
598
915
  align-items: flex-end;
@@ -631,6 +948,94 @@
631
948
  background-color: #fff !important;
632
949
  }
633
950
  }
951
+
952
+ .picture_layout{
953
+ display: flex;
954
+ align-items: center;
955
+ padding-bottom: 12px;
956
+ border-bottom: 1px solid @color-border-secondary-Tr;
957
+ margin-bottom: 12px;
958
+ &:hover{
959
+ // background-color: rgba(0, 0, 0, 0.02);
960
+ cursor: pointer;
961
+ }
962
+ .left{
963
+ width: 90px;
964
+ height: 60px;
965
+ position: relative;
966
+ border-radius: 4px;
967
+
968
+ img{
969
+ width: 100%;
970
+ height: 100%;
971
+ border-radius: 4px;
972
+ overflow: hidden;
973
+ }
974
+ .icon_close{
975
+ position: absolute;
976
+ top: -8px;
977
+ right: -8px;
978
+ z-index: 2;
979
+ span{
980
+ font-size: 18px;
981
+ color: rgba(0, 0, 0, 0.45);
982
+ }
983
+ }
984
+ .icon_zoom{
985
+ position: absolute;
986
+ background: rgba(0,0,0,0.3);
987
+ width: 100%;
988
+ height: 100%;
989
+ top: 0;
990
+ text-align: center;
991
+ display: none;
992
+ align-items: center;
993
+ justify-content: center;
994
+ border-radius: 4px;
995
+ :global{
996
+ .anticon{
997
+ color: #fff;
998
+ }
999
+ }
1000
+ .anticon{
1001
+ color: #fff;
1002
+ font-size: 18px;
1003
+ }
1004
+ }
1005
+ &:hover{
1006
+ .icon_zoom{
1007
+ display: flex;
1008
+ }
1009
+ }
1010
+ }
1011
+ .right{
1012
+ margin-left: 24px;
1013
+ p{
1014
+ display: inline-flex;
1015
+ align-items: center;
1016
+ padding: 2px 8px;
1017
+ background-color: @color-background-filltertiary-Tr;
1018
+ color: @color-text-Tr;
1019
+ line-height: 1.5;
1020
+ &:first-child{
1021
+ margin-bottom: 8px;
1022
+ }
1023
+ span{
1024
+ margin-right: 4px;
1025
+ }
1026
+ :global {
1027
+ .anticon{
1028
+ vertical-align: middle !important;
1029
+ }
1030
+ }
1031
+
1032
+ svg{
1033
+ color: @color-text-Tr;
1034
+ font-size: 20px;
1035
+ }
1036
+ }
1037
+ }
1038
+ }
634
1039
  }
635
1040
  & > .no_AI {
636
1041
  width: 100%;
@@ -638,9 +1043,9 @@
638
1043
  padding-right: 12px;
639
1044
  }
640
1045
  }
641
- .voice {
1046
+ .screenshot {
642
1047
  position: absolute;
643
- right: 18px;
1048
+ right: 16px;
644
1049
  bottom: 10px;
645
1050
  color: rgba(0, 0, 0, 0.65);
646
1051
  i {
@@ -650,13 +1055,13 @@
650
1055
  font-size: 20px;
651
1056
  }
652
1057
  }
653
- .voice_btn {
654
- width: 32px;
655
- cursor: pointer;
656
- position: absolute;
657
- bottom: -5px;
658
- right: -10px;
659
- }
1058
+ // .voice_btn {
1059
+ // width: 32px;
1060
+ // cursor: pointer;
1061
+ // position: absolute;
1062
+ // bottom: -5px;
1063
+ // right: -10px;
1064
+ // }
660
1065
  }
661
1066
  .disabled{
662
1067
  cursor:not-allowed !important;
@@ -692,6 +1097,13 @@
692
1097
 
693
1098
  max-height: 36px;
694
1099
  word-break: break-all;
1100
+
1101
+ display: flex;
1102
+ align-items: center;
1103
+ img{
1104
+ margin-right: 8px;
1105
+ width: 60px;
1106
+ }
695
1107
  }
696
1108
  }
697
1109
  .delete_quote {
@@ -1393,3 +1805,78 @@
1393
1805
  }
1394
1806
  }
1395
1807
  }
1808
+
1809
+ //截图功能
1810
+ .screenshot_Modal{
1811
+ position: fixed;
1812
+ top: 0;
1813
+ left: 0;
1814
+ z-index: 99;
1815
+ width:100% !important;
1816
+ height: 100% !important;
1817
+ background-color: transparent !important;
1818
+ // background-color: burlywood;
1819
+ .ReactCrop{
1820
+
1821
+ }
1822
+ :global{
1823
+ .ReactCrop__child-wrapper{
1824
+ position: fixed;
1825
+ width: 100% !important;
1826
+ height: 100% !important;
1827
+ top: 0 !important;
1828
+ left: 0 !important
1829
+ }
1830
+ }
1831
+ :global{
1832
+ .ReactCrop{
1833
+ width: 100% !important;
1834
+ height: 100% !important;
1835
+ top: 0 !important;
1836
+ left: 0 !important;
1837
+ }
1838
+
1839
+ }
1840
+
1841
+ .screenshot_Modal_btn{
1842
+ position: fixed !important;
1843
+ z-index: 999;
1844
+ border-radius: 4px;
1845
+ background: #FFF;
1846
+ padding: 8px 12px;
1847
+ width: 88px;
1848
+ display: flex;
1849
+ justify-content: space-around;
1850
+ align-items: center;
1851
+ &>span{
1852
+ display: inline-block;
1853
+ width: 24px;
1854
+ height: 24px;
1855
+ border-radius: 2px;
1856
+ text-align: center;
1857
+ .anticon{
1858
+ padding-top: 3.5px;
1859
+ }
1860
+ &:hover{
1861
+ background-color: rgba(0, 0, 0, 0.04);
1862
+ }
1863
+ svg{
1864
+ font-size: 18px;
1865
+ color: rgba(244, 82, 59, 1);
1866
+ }
1867
+
1868
+ }
1869
+ &>span:nth-child(2){
1870
+ display: inline-block;
1871
+ width: 24px;
1872
+ height: 24px;
1873
+ border-radius: 2px;
1874
+ &:hover{
1875
+ background-color: rgba(0, 0, 0, 0.04);
1876
+ }
1877
+ svg{
1878
+ color: rgba(35, 217, 195, 1);
1879
+ }
1880
+ }
1881
+ }
1882
+ }